diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f4d6604a73532a9f3df497e53424e34a08defcc..0cdb40fae3fb1a10f93047c2a5a5de695778ecb8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,33 +20,27 @@ default: # test saqc with python 3.7 python37: stage: test - except: - - schedules image: python:3.7 script: - - pytest tests/core tests/funcs tests/integration dios/test - - python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv + - pytest tests/core tests/funcs tests/integration dios/test -Werror + - python -m saqc --config ressources/data/config.csv --data ressources/data/data.csv --outfile /tmp/test.csv # test saqc with python 3.8 python38: stage: test - except: - - schedules script: - - pytest tests/core tests/funcs tests/integration dios/test - - python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv + - pytest tests/core tests/funcs tests/integration dios/test -Werror + - python -m saqc --config ressources/data/config.csv --data ressources/data/data.csv --outfile /tmp/test.csv # test saqc with python 3.9 python39: stage: test - except: - - schedules image: python:3.9 script: - - pytest tests/core tests/funcs tests/integration - - python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv + - pytest tests/core tests/funcs tests/integration dios/test -Werror + - python -m saqc --config ressources/data/config.csv --data ressources/data/data.csv --outfile /tmp/test.csv # check if everthing is properly formatted @@ -60,12 +54,10 @@ black: # make (visual) coverage in gitlab merge request diff's coverage: stage: test - except: - - schedules allow_failure: true script: - pip install pytest-cov coverage - - pytest --cov=saqc tests/core tests/funcs + - pytest --cov=saqc tests/core tests/funcs -Werror after_script: - coverage xml @@ -105,7 +97,7 @@ fuzzy: only: - schedules script: - - pytest tests/fuzzy + - pytest tests/fuzzy -Werror # test lib saqc @@ -114,5 +106,5 @@ testLib: only: - schedules script: - - pytest tests/lib + - pytest tests/lib -Werror diff --git a/README.md b/README.md index 02262fd5cad0080554a16c15d59c9d418ca7216c..dce9fa2b991795df90649c93e5f6a9abd58b8720 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,46 @@ -[](https://git.ufz.de/rdm-software/saqc/-/commits/develop) -# System for automated Quality Control (SaQC) - -Quality Control of numerical data requires a significant amount of -domain knowledge and practical experience. Finding a robust setup of -quality tests that identifies as many suspicious values as possible, without -removing valid data, is usually a time-consuming endeavor, -even for experts. - -SaQC is both, a Python framework and a command line application, that -addresses the exploratory nature of quality control by offering a -continuously growing number of quality check routines through a flexible -and simple configuration system. +<img src="sphinx-doc/ressources/images/Representative/UFZLogo.jpg" width="400"/> -Below its user interface, SaQC is highly customizable and extensible. -A modular structure and well-defined interfaces make it easy to extend -the system with custom quality checks. Furthermore, even core components like -the flagging scheme are exchangeable. +<img src="sphinx-doc/ressources/images/Representative/RDMlogo.jpg" align="right" width="180"/> - -## Why? -During the implementation of data workflows in environmental sciences, -our experience shows a significant knowledge gap between the people -collecting data and those responsible for the processing and the -quality-control of these datasets. -While the former usually have a solid understanding of the underlying -physical properties, measurement principles and the resulting errors, -the latter are mostly software developers with expertise in -data processing. +# System for automated Quality Control (SaQC) -The main objective of SaQC is to bridge this gap by allowing both -parties to focus on their strengths: The data collector/owner should be -able to express his/her ideas in an easy way, while the actual -implementation of the algorithms is left to the respective developers. +Anomalies and errors are the rule not the exception when working with +time series data. This is especially true, if such data originates +from in-situ measurements of environmental properties. +Almost all applications, however, implicily rely on data, that complies +with some definition of 'correct'. +In order to infer reliable data products and tools, there is no alternative +to quality control. SaQC provides all the building blocks to comfortably +bridge the gap between 'usually faulty' and 'expected to be corrected' in +a accessible, consistent, objective and reproducible way. +For a (continously improving) overview of features, typical usage patterns, +the specific system components and how to customize `SaQC` to your specific +needs, please refer to our +[online documentation](https://rdm-software.pages.ufz.de/saqc/index.html). -## How? -`SaQC` is both a command line application controlled by a text based configuration file and a python -module with a simple API. +## Installation -While a good (but still growing) number of predefined and highly configurable -[functions](docs/FunctionIndex.md) are included and ready to use, SaQC -additionally ships with a python based -[extension language](docs/GenericFunctions.md) for quality and general -purpose data processing. +SaQC is available on the Python Package Index ([PyPI](https://pypi.org/)) and +can be installed using [pip](https://pip.pypa.io/en/stable/): +```sh +python -m pip install saqc +``` +For a more detailed installion guide, see the [installation guide](https://rdm-software.pages.ufz.de/saqc/getting_started/InstallationGuide.html). -For a more specific round trip to some of SaQC's possibilities, we refer to -our [GettingStarted](docs/GettingStarted.md). +## Usage +`SaQC` is both, a command line application controlled by a text based configuration +and a python module with a simple API. ### SaQC as a command line application -Most of the magic is controlled by a -[semicolon-separated text file](saqc/docs/ConfigurationFiles.md) listing the variables of the -dataset and the routines to inspect, quality control and/or process them. -The content of such a configuration could look like this: +The command line application is controlled by a semicolon-separated text +file listing the variables in the dataset and the routines to inspect, +quality control and/or process them. The content of such a configuration +could look like this: ``` varname ; test @@ -66,8 +51,8 @@ SM2 ; flagMissing() SM2 ; flagMad(window="30d", z=3.5) ``` -As soon as the basic inputs, a dataset and the configuration file are -prepared, running SaQC is as simple as: +As soon as the basic inputs, dataset and configuration file, are +prepared, `SaQC` is run with: ```sh saqc \ --config path_to_configuration.txt \ @@ -93,52 +78,6 @@ saqc = (SaQC(data) data, flags = saqc.getResult() ``` -## Installation - -### Python Package Index -SaQC is available on the Python Package Index ([PyPI](https://pypi.org/)) and -can be installed using [pip](https://pip.pypa.io/en/stable/): -```sh -python -m pip install saqc -``` -For a more detailed installion guide, see [GettingStarted](docs/GettingStarted.md). - -### Anaconda -Currently we don't provide pre-build conda packages but the installing of `SaQC` -using the [conda package manager](https://docs.conda.io/en/latest/) is -straightforward: -1. Create an anaconda environment including all the necessary dependencies with: - ```sh - conda env create -f environment.yml - ``` -2. Load the freshly created environment with: - ```sh - conda activate saqc - ``` - -### Manual installation - -The latest development version is directly available from the -[gitlab](https://git.ufz.de/rdm-software/saqc) server of the -[Helmholtz Center for Environmental Research](https://www.ufz.de/index.php?en=33573). -More details on how to install using the gitlab server are available -[here](docs/GettingStarted.md). - -### Python version -The minimum Python version required is 3.7. - -## License -Copyright(c) 2019, -Helmholtz Centre for Environmental Research - UFZ. -All rights reserved. - -The "System for Automated Quality Control" is free software. You can -redistribute it and/or modify it under the terms of the GNU General -Public License as published by the free Software Foundation either -version 3 of the License, or (at your option) any later version. See the -[license](LICENSE.txt) for details. - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +A more detailed description of the Python API is available in the +[respective section](https://rdm-software.pages.ufz.de/saqc/getting_started/TutorialAPI.html) +of the documentation. diff --git a/dios/dios/base.py b/dios/dios/base.py index 11392b4869beadbe04c0b20703140e7a42bbc556..dfa64defc3a9d6da63a5f930c6d878703f0edcd0 100644 --- a/dios/dios/base.py +++ b/dios/dios/base.py @@ -1,4 +1,8 @@ #!/usr/bin/env python +from __future__ import annotations + +from copy import deepcopy, copy as shallowcopy +from typing import Mapping, Hashable, Any, Sequence, overload from . import operators as ops from . import pandas_bridge as pdextra @@ -23,8 +27,12 @@ __copyright__ = "Copyright 2018, Helmholtz-Zentrum für Umweltforschung GmbH - U class _DiosBase: @property @abstractmethod - def _constructor(self): - pass + def _constructor(self) -> type[_DiosBase]: + raise NotImplementedError + + def _finalize(self, other: _DiosBase): + self._attrs = other._attrs + return self def __init__( self, @@ -36,8 +44,8 @@ class _DiosBase: fastpath=False, ): - # set via property - self.cast_policy = cast_policy + self._attrs = {} + self.cast_policy = cast_policy # set via property # we are called internally if fastpath: @@ -98,6 +106,9 @@ class _DiosBase: if pdextra.is_iterator(data): data = list(data) + if _is_dios_like(data) and not data.columns.is_unique: + raise ValueError("columns index must have unique values") + if _is_dios_like(data) or isinstance(data, dict): if columns is None: pass # data is dict-like @@ -128,7 +139,8 @@ class _DiosBase: raise TypeError("data type not understood") for k in data: - self._insert(k, pd.Series(data[k], index=index)) + s = pd.Series(data[k], index=index, dtype=object).infer_objects() + self._insert(k, s) # ---------------------------------------------------------------------- # checks @@ -173,6 +185,22 @@ class _DiosBase: val.name = col self._data.at[col] = val.copy(deep=True) + @overload + def __getitem__(self, key: str | int) -> pd.Series: + ... + + @overload + def __getitem__(self, key: slice) -> pd.Series: + ... + + @overload + def __getitem__(self, key: "_DiosBase" | pd.DataFrame) -> "_DiosBase": + ... + + @overload + def __getitem__(self, key: Sequence[str | int]) -> "_DiosBase": + ... + def __getitem__(self, key): """dios[key] -> dios/series""" # scalar -> select a column @@ -202,7 +230,7 @@ class _DiosBase: if self._is_valid_columns_index(data): return self._constructor( data=data, itype=self.itype, cast_policy=self.cast_policy, fastpath=True - ) + )._finalize(self) raise TypeError(f"cannot index columns with this type, {type(key)}") @@ -331,6 +359,19 @@ class _DiosBase: # ------------------------------------------------------------------------------ # Base properties and basic dunder magic + @property + def attrs(self) -> dict[Hashable, Any]: + """ + Dictionary of global attributes of this dataset. + """ + if self._attrs is None: + self._attrs = {} + return self._attrs + + @attrs.setter + def attrs(self, value: Mapping[Hashable, Any]) -> None: + self._attrs = dict(value) + @property def columns(self): """The column labels of the DictOfSeries""" @@ -452,7 +493,7 @@ class _DiosBase: return self.copy(deep=True) def __copy__(self): - return self.copy(deep=True) + return self.copy(deep=False) def copy(self, deep=True): """Make a copy of this DictOfSeries' indices and data. @@ -471,15 +512,20 @@ class _DiosBase: -------- pandas.DataFrame.copy """ - data = self._data.copy() + data = self._data.copy() # always copy the outer hull series if deep: for c, series in self.items(): data.at[c] = series.copy() - return self._constructor( + new = self._constructor( data=data, itype=self.itype, cast_policy=self.cast_policy, fastpath=True ) + copyfunc = deepcopy if deep else shallowcopy + new._attrs = copyfunc(self._attrs) + + return new + def copy_empty(self, columns=True): """ Return a new DictOfSeries object, with same properties than the original. @@ -530,7 +576,7 @@ class _DiosBase: return self._constructor( data=data, itype=self.itype, cast_policy=self.cast_policy, fastpath=True - ) + )._finalize(self) # ------------------------------------------------------------------------------ # Operators @@ -544,7 +590,11 @@ class _DiosBase: raise type(e)(f"'{ops.OP_MAP[op]} dios' failed: " + str(e)) from e return new - def _op2(self, op, other, align=True, inplace=False): + def _op2_inplace(self, op, other, align=True) -> None: + new = self._op2(op, other, align) + self._data = new._data + + def _op2(self, op, other, align=True) -> "_DiosBase": def raiseif(kself, kother, s): if kself != kother: raise ValueError( @@ -583,10 +633,6 @@ class _DiosBase: except Exception as e: raise type(e)(f"'dios {ops.OP_MAP[op]} other' failed: " + str(e)) from e - if inplace: - self._data = new._data - return None - return new # unary @@ -608,13 +654,13 @@ class _DiosBase: __truediv__ = ftools.partialmethod(_op2, op.truediv) __floordiv__ = ftools.partialmethod(_op2, op.floordiv) __pow__ = ftools.partialmethod(_op2, op.pow) - __iadd__ = ftools.partialmethod(_op2, op.add, inplace=True) - __isub__ = ftools.partialmethod(_op2, op.sub, inplace=True) - __imul__ = ftools.partialmethod(_op2, op.mul, inplace=True) - __imod__ = ftools.partialmethod(_op2, op.mod, inplace=True) - __itruediv__ = ftools.partialmethod(_op2, op.truediv, inplace=True) - __ifloordiv__ = ftools.partialmethod(_op2, op.floordiv, inplace=True) - __ipow__ = ftools.partialmethod(_op2, op.pow, inplace=True) + __iadd__ = ftools.partialmethod(_op2_inplace, op.add) + __isub__ = ftools.partialmethod(_op2_inplace, op.sub) + __imul__ = ftools.partialmethod(_op2_inplace, op.mul) + __imod__ = ftools.partialmethod(_op2_inplace, op.mod) + __itruediv__ = ftools.partialmethod(_op2_inplace, op.truediv) + __ifloordiv__ = ftools.partialmethod(_op2_inplace, op.floordiv) + __ipow__ = ftools.partialmethod(_op2_inplace, op.pow) # bool __and__ = ftools.partialmethod(_op2, op.and_) __or__ = ftools.partialmethod(_op2, op.or_) diff --git a/dios/dios/dios.py b/dios/dios/dios.py index 2f908e8f280c2550056829f7283927f4d021cd70..da9f4ca1993a30630cb032a3a12ff410c43e797d 100644 --- a/dios/dios/dios.py +++ b/dios/dios/dios.py @@ -1,3 +1,6 @@ +from __future__ import annotations +from typing import Any, Mapping, Hashable + from .base import _DiosBase, _is_dios_like from .lib import Opts, OptsFields, dios_options from .lib import _find_least_common_itype @@ -42,26 +45,8 @@ class DictOfSeries(_DiosBase): the ``itype``. """ - def __init__( - self, - data=None, - columns=None, - index=None, - itype=None, - cast_policy="save", - fastpath=False, - ): - super().__init__( - data=data, - columns=columns, - index=index, - itype=itype, - cast_policy=cast_policy, - fastpath=fastpath, - ) - @property - def _constructor(self): + def _constructor(self) -> type[DictOfSeries]: """Return the class. Useful for construction in the elder class. A import of DictOfSeries would end up cyclic.""" return DictOfSeries @@ -69,7 +54,7 @@ class DictOfSeries(_DiosBase): def _construct_like_self(self, **kwargs): kwargs.setdefault("itype", self.itype) kwargs.setdefault("cast_policy", self.cast_policy) - return self._constructor(**kwargs) + return self._constructor(**kwargs)._finalize(self) @property def indexes(self): @@ -223,7 +208,9 @@ class DictOfSeries(_DiosBase): yield from df.iterrows() else: for idx, row in df.iterrows(): - yield idx, self._constructor(data=row.to_dict(), index=[idx]) + yield idx, self._constructor( + data=row.to_dict(), index=[idx] + )._finalize(self) # ------------------------------------------------------------------------------ # Broadcasting and Reducing @@ -460,6 +447,8 @@ class DictOfSeries(_DiosBase): result.at[c] = pd.Series(val) itype = _find_least_common_itype(result) result = self._constructor(data=result, itype=itype, fastpath=True) + result._finalize(self) + return result def reduce_columns(self, func, initial=None, skipna=False): @@ -822,6 +811,8 @@ class DictOfSeries(_DiosBase): # was set before. Missing locations are already # nans, present locations are set. df[c] = series.copy() + + df.attrs = self.attrs return df @property diff --git a/dios/dios/indexer.py b/dios/dios/indexer.py index 8f325b282acb458f66a0170231f983ab905f009e..10ccbd304a918be0925f53956eb1bb7a34da22df 100644 --- a/dios/dios/indexer.py +++ b/dios/dios/indexer.py @@ -258,7 +258,9 @@ class _aLocIndexer(_Indexer): if lowdim: return data.squeeze() else: - return self.obj._constructor(data=data, fastpath=True, **kws) + return self.obj._constructor(data=data, fastpath=True, **kws)._finalize( + self.obj + ) def __setitem__(self, key, value): rowkeys, colkeys, _ = self._unpack_key_aloc(key) diff --git a/dios/test/test__ops__.py b/dios/test/test__ops__.py index ef2d3074729c464fdbd43d2ad78965280f9b47ea..2ee9f579b86fa1d8257636d673a46d45790f336b 100644 --- a/dios/test/test__ops__.py +++ b/dios/test/test__ops__.py @@ -1,4 +1,6 @@ #!/usr/bin/env python +import pytest + from .test_setup import * @@ -21,6 +23,8 @@ def test__eq__(left, right): assert res == exp +@pytest.mark.filterwarnings("ignore: invalid value encountered in long_scalars") +@pytest.mark.filterwarnings("ignore: divide by zero encountered in long_scalars") @pytest.mark.parametrize("left", diosFromMatr(DATA_ALIGNED)) @pytest.mark.parametrize("right", diosFromMatr(DATA_ALIGNED)) @pytest.mark.parametrize("op", OP2) @@ -39,6 +43,8 @@ def test__op2__aligningops(left, right, op): assert res == exp +@pytest.mark.filterwarnings("ignore: invalid value encountered in long_scalars") +@pytest.mark.filterwarnings("ignore: divide by zero encountered in long_scalars") @pytest.mark.parametrize("left", diosFromMatr(DATA_UNALIGNED)) @pytest.mark.parametrize("right", diosFromMatr(DATA_UNALIGNED)) @pytest.mark.parametrize("op", OPNOCOMP) diff --git a/dios/test/test__setget__aloc.py b/dios/test/test__setget__aloc.py index 3c76c82450ef9ba606b5434dc8fcb6915e2571d3..2c47ec19e0502c89bfb7f5c910df44e46e0f26a8 100644 --- a/dios/test/test__setget__aloc.py +++ b/dios/test/test__setget__aloc.py @@ -4,7 +4,9 @@ from pandas.core.dtypes.common import is_scalar pytestmark = pytest.mark.skip -@pytest.mark.parametrize(("idxer", "exp"), [("a", s1), ("c", s3), ("x", pd.Series())]) +@pytest.mark.parametrize( + ("idxer", "exp"), [("a", s1), ("c", s3), ("x", pd.Series(dtype=float))] +) def test__getitem_aloc_singleCol(dios_aligned, idxer, exp): di = dios_aligned.aloc[:, idxer] assert isinstance(di, pd.Series) diff --git a/dios/test/test_setup.py b/dios/test/test_setup.py index 2bd04548693cafd10eeb0d3fff0a1656871e2731..0a59193bfe53689dbe5645bd74268d7cf9f381de 100644 --- a/dios/test/test_setup.py +++ b/dios/test/test_setup.py @@ -24,10 +24,10 @@ except ModuleNotFoundError: import pandas as pd import numpy as np -a = pd.Series(range(0, 70, 7)) -b = pd.Series(range(5, 15, 1)) -c = pd.Series(range(7, 107, 10)) -d = pd.Series(range(0, 10, 1)) +a = pd.Series(range(0, 70, 7), dtype=int) +b = pd.Series(range(5, 15, 1), dtype=int) +c = pd.Series(range(7, 107, 10), dtype=int) +d = pd.Series(range(0, 10, 1), dtype=int) s1, s2, s3, s4 = a, b, c, d @@ -330,8 +330,7 @@ OP1 = list(_OP1_MAP) def diosFromMatr(mlist): l = [] for m in mlist: - m = np.array(m) - l.append(DictOfSeries(m.copy())) + l.append(DictOfSeries({i: li.copy() for i, li in enumerate(m)})) return tuple(l) diff --git a/environment.yml b/environment.yml deleted file mode 100644 index aabe58efcf1dab30195217d3e75e53abe969cf63..0000000000000000000000000000000000000000 --- a/environment.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: saqc -channels: - - defaults -dependencies: - - numpy - - pandas - - scipy - - matplotlib - - numba - - click - - scikit-learn - - pyarrow - - PyWavelets - - pip - - pip: - - python-intervals - - dtw - - mlxtend - - outlier-utils diff --git a/requirements.txt b/requirements.txt index f1f8206244a79cf318b3a9dbc50407362262ae3d..1f9510979613e3a9e7a33d24e12ed37b54412251 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,6 @@ Click==8.0.1 dtw==1.4.0 hypothesis==6.23.1 matplotlib==3.4.3 -mlxtend==0.19.0 numba==0.54.0 numpy==1.20.3 outlier-utils==0.0.3 @@ -10,7 +9,7 @@ pyarrow==4.0.1 pandas==1.3.3 pytest==6.2.5 pytest-lazy-fixture==0.6.3 -PyWavelets==1.1.1 scikit-learn==1.0 scipy==1.7.1 typing_extensions==3.10.0.2 +seaborn==0.11.2 diff --git a/ressources/data/config.csv b/ressources/data/config.csv index e23612fb9682a0a5e9344967f2b15f65f6d64ab3..1f11becdb3eada375a1b1ef8fa1ffd9917abbcc3 100644 --- a/ressources/data/config.csv +++ b/ressources/data/config.csv @@ -1,6 +1,8 @@ varname ; test -#----------;--------------------------------------- +#----------; ----------------------------------------------------- SM2 ; shift(freq="15Min") -SM2 ; flagMissing() -'SM(1|2)+' ; flagRange(min=10, max=60) +'SM(1|2)+' ; flagMissing() +SM1 ; flagRange(min=10, max=60) +SM2 ; flagRange(min=10, max=40) SM2 ; flagMAD(window="30d", z=3.5) +Dummy ; flagGeneric(field=["SM1", "SM2"], func=(isflagged(x) | isflagged(y))) diff --git a/ressources/data/config_ci.csv b/ressources/data/config_ci.csv deleted file mode 100644 index e5b883102b8a541fc9fc89e6e1ffb7c8f4e1ca55..0000000000000000000000000000000000000000 --- a/ressources/data/config_ci.csv +++ /dev/null @@ -1,8 +0,0 @@ -varname ; test -#-------; ----------------------------------------------------- -SM2 ; shift(freq="15Min") -'.*' ; flagRange(min=10, max=60) -SM2 ; flagMissing() -SM2 ; flagRange(min=10, max=60) -SM2 ; flagMAD(window="30d", z=3.5) -Dummy ; genericFlag(func=(isflagged(SM1) | isflagged(SM2))) diff --git a/saqc/__init__.py b/saqc/__init__.py index 34f673b943c96f4b085e3f7af3c7d2f8aa4c7921..7bd3bb9011a94d76edd502681c34855fee6c9d42 100644 --- a/saqc/__init__.py +++ b/saqc/__init__.py @@ -1,19 +1,19 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +"""The system for automated quality controll package.""" __version__ = "1.4" # import order: from small to big -from saqc.constants import * +from saqc.constants import ( + UNFLAGGED, + GOOD, + DOUBTFUL, + BAD, +) + from saqc.core import ( - flagging, - processing, - initFlagsLike, Flags, - FloatTranslator, - DmpTranslator, - PositionalTranslator, - SimpleTranslator, SaQC, fromConfig, ) diff --git a/saqc/__main__.py b/saqc/__main__.py index fbfa1a706ab2b7b4cbecbb4bb2e4c6dd397ffaca..1326bd0be4a96628804a86b826963aad6e7297a1 100644 --- a/saqc/__main__.py +++ b/saqc/__main__.py @@ -11,26 +11,13 @@ import numpy as np import pandas as pd import pyarrow as pa -from saqc.core import ( - fromConfig, - FloatTranslator, - DmpTranslator, - PositionalTranslator, - SimpleTranslator, -) +from saqc.core.reader import fromConfig +from saqc.core.core import TRANSLATION_SCHEMES logger = logging.getLogger("SaQC") -SCHEMES = { - "simple": SimpleTranslator, - "float": FloatTranslator, - "positional": PositionalTranslator, - "dmp": DmpTranslator, -} - - def _setupLogging(loglvl): logger.setLevel(loglvl) handler = logging.StreamHandler() @@ -86,6 +73,7 @@ def writeData(writer_dict, df, fname): "-d", "--data", type=click.Path(exists=True), + multiple=True, required=True, help="path to the data file", ) @@ -95,7 +83,7 @@ def writeData(writer_dict, df, fname): @click.option( "--scheme", default=None, - type=click.Choice(SCHEMES.keys()), + type=click.Choice(tuple(TRANSLATION_SCHEMES.keys())), help="the flagging scheme to use", ) @click.option("--nodata", default=np.nan, help="nodata value") @@ -106,19 +94,24 @@ def writeData(writer_dict, df, fname): help="set output verbosity", ) def main(config, data, scheme, outfile, nodata, log_level): + # data is always a list of data files _setupLogging(log_level) reader, writer = setupIO(nodata) - data = readData(reader, data) + _data = [] + for dfile in data: + df = readData(reader, dfile) + _data.append(df) + data = _data saqc = fromConfig( config, data=data, - scheme=SCHEMES[scheme or "simple"](), + scheme=TRANSLATION_SCHEMES[scheme or "simple"](), ) - data_result, flags_result = saqc.getResult() + data_result, flags_result = saqc.result.data, saqc.result.flags if outfile: diff --git a/saqc/constants.py b/saqc/constants.py index 7d4cb5f621c4eb0509325e09fcc0ae4ff9448de5..781de815580c477a125a5bacb6b4f10af93fac68 100644 --- a/saqc/constants.py +++ b/saqc/constants.py @@ -1,21 +1,110 @@ #!/usr/bin/env python +""" +The module comprises flag value constants in use throughout saqc. +The constants order as follows (from "worse" to "best"): + +:py:const:`~saqc.constants.BAD` > :py:const:`~saqc.constants.DOUBTFUL` > :py:const:`~saqc.constants.GOOD` > +:py:const:`~saqc.constants.UNFLAGGED` +""" __all__ = [ - "UNTOUCHED", "UNFLAGGED", "DOUBTFUL", "BAD", "GOOD", - "DOUBT", + "ENVIRONMENT", + "FILTER_ALL", + "FILTER_NONE", ] + import numpy as np +import scipy.stats as st +import saqc.lib.ts_operators as ts_ops + +# ---------------------------------------------------------------------- +# global flag constants +# ---------------------------------------------------------------------- -UNTOUCHED = np.nan +#: A :py:mod:`flag level constant <saqc.constants>` +#: , evaluating to the level, that indicates, no flag has been assigned to yet. UNFLAGGED = -np.inf + +#: A :py:mod:`flag level constant <saqc.constants>` +#: , evaluating to the lowest level level of flagging, that is +#: not :py:const:`UNFLAGGED <saqc.constants.UNFLAGGED>`. GOOD = 0 + +#: A :py:mod:`flag level constant <saqc.constants>` +#: , evaluating to a somewhat modest flag level. DOUBTFUL = 25.0 + +#: A :py:mod:`flag level constant <saqc.constants>` +#: , evaluating to the highest (internal) flag level available. BAD = 255.0 -# aliases -DOUBT = DOUBTFUL + +# ---------------------------------------------------------------------- +# global dfilter constants +# ---------------------------------------------------------------------- + +#: A :py:mod:`dfilter constant <saqc.constants>` +#: , mask/filter all flagged data. +FILTER_ALL = -np.inf + +#: A :py:mod:`dfilter constant <saqc.constants>` +#: , mask/filter no data at all. +FILTER_NONE = np.inf + + +# ---------------------------------------------------------------------- +# other +# ---------------------------------------------------------------------- + +#: A :py:mod:`flag level constant <saqc.constants>` +ENVIRONMENT = { + # Not A number Constant. + "NAN": np.nan, + # Pointwise absolute Value Function. + "abs": np.abs, + # Maximum Value Function. Ignores NaN. + "max": np.nanmax, + # Minimum Value Function. Ignores NaN. + "min": np.nanmin, + # Mean Value Function. Ignores NaN. + "mean": np.nanmean, + # Summation. Ignores NaN. + "sum": np.nansum, + # Standart Deviation. Ignores NaN. + "len": len, + # Pointwise Exponential. + "exp": np.exp, + # Pointwise Logarithm. + "log": np.log, + # Logarithm, returning NaN for zero input, instead of -inf. + "nanLog": ts_ops.zeroLog, + # Standart Deviation. Ignores NaN. + "std": np.nanstd, + # Variance. Ignores NaN. + "var": np.nanvar, + # Median. Ignores NaN. + "median": np.nanmedian, + # Count Number of values. Ignores NaNs. + "count": ts_ops.count, + # Identity. + "id": ts_ops.identity, + # Returns a Series` diff. + "diff": ts_ops.difference, + # Scales data to [0,1] Interval. + "scale": ts_ops.normScale, + # Standardize with Standart Deviation. + "zScore": lambda x: st.zscore(x, nan_policy="omit"), + # Standardize with Median and MAD. + "madScore": ts_ops.standardizeByMedian, + # Standardize with Median and inter quantile range. + "iqsScore": ts_ops.standardizeByIQR, + "GOOD": GOOD, + "BAD": BAD, + "UNFLAGGED": UNFLAGGED, + "DOUBTFUL": DOUBTFUL, +} diff --git a/saqc/core/__init__.py b/saqc/core/__init__.py index efb119fc34739b57589eccc03a2ea8e530f87642..cf86db46d2572cdca0c32b7ae2bc098bfa52ddef 100644 --- a/saqc/core/__init__.py +++ b/saqc/core/__init__.py @@ -1,13 +1,13 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -from saqc.core.register import flagging, processing +from saqc.core.register import register, flagging, processing from saqc.core.flags import Flags, initFlagsLike from saqc.core.core import SaQC -from saqc.core.translator import ( - FloatTranslator, - DmpTranslator, - PositionalTranslator, - SimpleTranslator, +from saqc.core.translation import ( + FloatScheme, + DmpScheme, + PositionalScheme, + SimpleScheme, ) from saqc.core.reader import fromConfig diff --git a/saqc/core/core.py b/saqc/core/core.py index 6b729178193a6193d11365db365f8a57c0ed6296..b7bb6050b0069252e7c63958e2d57bc744e1820f 100644 --- a/saqc/core/core.py +++ b/saqc/core/core.py @@ -2,253 +2,233 @@ # -*- coding: utf-8 -*- from __future__ import annotations -import inspect import warnings -import copy as stdcopy -from typing import Any, Callable, Tuple, Union, Optional +from typing import ( + Any, + Callable, + List, + Sequence, + Hashable, + Tuple, +) +from copy import deepcopy, copy as shallowcopy import pandas as pd import numpy as np from dios import DictOfSeries, to_dios +from saqc.constants import BAD -from saqc.core.flags import initFlagsLike, Flags -from saqc.core.register import FUNC_MAP from saqc.core.modules import FunctionsMixin -from saqc.core.translator.basetranslator import Translator, FloatTranslator -from saqc.lib.tools import toSequence -from saqc.lib.types import ( - ExternalFlag, - PandasLike, +from saqc.core.flags import initFlagsLike, Flags +from saqc.core.history import History +from saqc.core.register import FUNC_MAP, FunctionWrapper +from saqc.core.translation import ( + TranslationScheme, + FloatScheme, + SimpleScheme, + PositionalScheme, + DmpScheme, ) +from saqc.lib.tools import toSequence, concatDios +from saqc.lib.types import ExternalFlag, OptionalNone +# the import is needed to trigger the registration +# of the built-in (test-)functions +import saqc.funcs # noqa -# TODO: shouldn't the code/function go to SaQC.__init__ ? -def _prepInput( - data: PandasLike, flags: Optional[Union[DictOfSeries, pd.DataFrame, Flags]] -) -> Tuple[DictOfSeries, Optional[Flags]]: - dios_like = (DictOfSeries, pd.DataFrame) - - data = stdcopy.deepcopy(data) - - if isinstance(data, pd.Series): - data = data.to_frame() - - if not isinstance(data, dios_like): - raise TypeError( - "'data' must be of type pd.Series, pd.DataFrame or dios.DictOfSeries" - ) - - if isinstance(data, pd.DataFrame): - if isinstance(data.index, pd.MultiIndex) or isinstance( - data.columns, pd.MultiIndex - ): - raise TypeError("'data' should not use MultiIndex") - data = to_dios(data) - - if not hasattr(data.columns, "str"): - raise TypeError("expected dataframe columns of type string") - - if flags is not None: - - if isinstance(flags, pd.DataFrame): - if isinstance(flags.index, pd.MultiIndex) or isinstance( - flags.columns, pd.MultiIndex - ): - raise TypeError("'flags' should not use MultiIndex") - - if isinstance(flags, (DictOfSeries, pd.DataFrame, Flags)): - # NOTE: only test common columns, data as well as flags could - # have more columns than the respective other. - cols = flags.columns.intersection(data.columns) - for c in cols: - if not flags[c].index.equals(data[c].index): - raise ValueError( - f"the index of 'flags' and 'data' missmatch in column {c}" - ) - - # this also ensures float dtype - if not isinstance(flags, Flags): - flags = Flags(flags, copy=True) - - return data, flags - - -def _setup(): - # NOTE: - # the import is needed to trigger the registration - # of the built-in (test-)functions - import saqc.funcs - - # warnings - pd.set_option("mode.chained_assignment", "warn") - np.seterr(invalid="ignore") +# warnings +pd.set_option("mode.chained_assignment", "warn") +np.seterr(invalid="ignore") -_setup() - - -class Accessor: - def __init__(self, obj: Union[DictOfSeries, pd.DataFrame, Flags]): - self._obj = obj - - def __getitem__(self, key): - return self._obj[key] - - @property - def columns(self): - return self._obj.columns - - def __len__(self): - return len(self.columns) - - def __repr__(self): - return self._obj.__repr__() +TRANSLATION_SCHEMES = { + "float": FloatScheme, + "simple": SimpleScheme, + "dmp": DmpScheme, + "positional": PositionalScheme, +} class SaQC(FunctionsMixin): + _attributes = { + "_data", + "_flags", + "_scheme", + "_attrs", + "_called", + } + def __init__( self, - data, + data=None, flags=None, - scheme: Translator = None, + scheme: str | TranslationScheme = "float", + copy: bool = True, ): - data, flags = _prepInput(data, flags) - self._data = data - self._flags = self._initFlags(data, flags) - self._translator = scheme or FloatTranslator() - self.called = [] - - @staticmethod - def _initFlags(data: DictOfSeries, flags: Optional[Flags]) -> Flags: - """ - Init the internal Flags-object. - - Ensures that all data columns are present and user passed - flags from a frame or an already initialised Flags-object - are used. - """ - if flags is None: - return initFlagsLike(data) - - # add columns that are present in data but not in flags - for c in data.columns.difference(flags.columns): - flags[c] = initFlagsLike(data[c]) - - return flags - - def _construct(self, **injectables) -> SaQC: + self._data = self._initData(data, copy) + self._flags = self._initFlags(flags, copy) + self._scheme = self._initTranslationScheme(scheme) + self._called = [] + self._attrs = {} + self._validate(reason="init") + + def _construct(self, **attributes) -> SaQC: """ Construct a new `SaQC`-Object from `self` and optionally inject attributes with any chechking and overhead. Parameters ---------- - **injectables: any of the `SaQC` data attributes with name and value + **attributes: any of the `SaQC` data attributes with name and value Note ---- For internal usage only! Setting values through `injectables` has the potential to mess up certain invariants of the constructed object. """ - out = SaQC( - data=DictOfSeries(), - flags=Flags(), - scheme=self._translator, - ) - for k, v in injectables.items(): - if not hasattr(out, k): - raise AttributeError(f"failed to set unknown attribute: {k}") + out = SaQC(data=DictOfSeries(), flags=Flags(), scheme=self._scheme) + out.attrs = self._attrs + for k, v in attributes.items(): + if k not in self._attributes: + raise AttributeError(f"SaQC has no attribute {repr(k)}") setattr(out, k, v) return out + def _validate(self, reason=None): + if not self._data.columns.equals(self._flags.columns): + msg = "Consistency broken. data and flags have not the same columns." + if reason: + msg += f" This was most likely caused by: {reason}" + raise RuntimeError(msg) + @property - def data(self) -> Accessor: - return Accessor(self._data) + def attrs(self) -> dict[Hashable, Any]: + """ + Dictionary of global attributes of this dataset. + """ + return self._attrs + + @attrs.setter + def attrs(self, value: dict[Hashable, Any]) -> None: + self._attrs = dict(value) @property - def flags(self) -> Accessor: - return Accessor(self._translator.backward(self._flags)) + def data_raw(self) -> DictOfSeries: + return self._data - def getResult( - self, raw=False - ) -> Union[Tuple[DictOfSeries, Flags], Tuple[pd.DataFrame, pd.DataFrame]]: - """ - Realize the registered calculations and return the results + @property + def flags_raw(self) -> Flags: + return self._flags - Returns - ------- - data, flags: (DictOfSeries, DictOfSeries) - """ + @property + def data(self) -> pd.DataFrame: + data: pd.DataFrame = self._data.to_df() + data.attrs = self._attrs.copy() + return data - data, flags = self._data, self._flags + @property + def flags(self) -> pd.DataFrame: + data: pd.DataFrame = self._scheme.backward(self._flags, attrs=self._attrs) + data.attrs = self._attrs.copy() + return data - if raw: - return data, flags + @property + def result(self) -> SaQCResult: + return SaQCResult(self._data, self._flags, self._attrs, self._scheme) - return data.to_df(), self._translator.backward(flags) + def _expandFields( + self, + regex: bool, + multivariate: bool, + field: str | Sequence[str], + target: str | Sequence[str] = None, + ) -> Tuple[List[str], List[str]]: + """ + check and expand `field` and `target` + """ - def _wrap(self, func: Callable): - """Enrich a function by special saqc-functionality. + if regex and target is not None: + raise NotImplementedError( + "explicit `target` not supported with regular expressions" + ) + # expand regular expressions + if regex: + fmask = self._data.columns.str.match(field) + fields = self._data.columns[fmask].tolist() + else: + fields = toSequence(field) + + targets = fields if target is None else toSequence(target) + + if multivariate: + # wrap again to generalize the down stream loop + fields, targets = [fields], [targets] + else: + if len(fields) != len(targets): + raise ValueError( + "expected the same number of 'field' and 'target' values" + ) + return fields, targets - For each saqc function this realize - - the source-target workflow, - - regex's in field, - - use default of translator for ``to_mask`` if not specified by user, - - translation of ``flag`` and - - working inplace. - Therefore it adds the following keywords to each saqc function: - ``target``, ``regex`` and ``inplace``. + def _wrap(self, func: FunctionWrapper): + """ + prepare user function input: + - expand fields and targets + - translate user given ``flag`` values or set the default ``BAD`` + - translate user given ``dfilter`` values or set the scheme default + - dependeing on the workflow: initialize ``target`` variables + + Here we add the following parameters to all registered functions, regardless + of their repsective definition: + - ``regex`` + - ``target`` - The returned function returns a Saqc object. """ def inner( - field: str, + field: str | Sequence[str], *args, - target: str = None, + target: str | Sequence[str] = None, regex: bool = False, - flag: ExternalFlag = None, + flag: ExternalFlag | OptionalNone = OptionalNone(), **kwargs, ) -> SaQC: - if regex and target is not None: - raise ValueError("explicit `target` not supported with `regex=True`") - - kwargs.setdefault("to_mask", self._translator.TO_MASK) + kwargs.setdefault("dfilter", self._scheme.DFILTER_DEFAULT) - # translation - if flag is not None: - kwargs["flag"] = self._translator(flag) + if not isinstance(flag, OptionalNone): + # translation schemes might want to use a flag, + # None so we introduce a special class here + kwargs["flag"] = self._scheme(flag) - # expand regular expressions - if regex: - fields = self._data.columns.str.match(field) - fields = self._data.columns[fields] - targets = fields - else: - fields, targets = toSequence(field), toSequence(target, default=field) + fields, targets = self._expandFields( + regex=regex, multivariate=func.multivariate, field=field, target=target + ) out = self for field, target in zip(fields, targets): - if field != target: - out = out._callFunction( - FUNC_MAP["copyField"], - data=out._data, - flags=out._flags, - field=field, - new_field=target, - ) - field = target + + fkwargs = { + **kwargs, + "field": field, + "target": target, + } + + if not func.handles_target and field != target: + if target not in self.data.columns: + out = out._callFunction( + FUNC_MAP["copyField"], + *args, + **fkwargs, + ) + fkwargs["field"] = fkwargs.pop("target") out = out._callFunction( func, - data=out._data, - flags=out._flags, - field=field, *args, - **kwargs, + **fkwargs, ) return out @@ -257,72 +237,223 @@ class SaQC(FunctionsMixin): def _callFunction( self, function: Callable, - data: DictOfSeries, - flags: Flags, - field: str, + field: str | Sequence[str], *args: Any, **kwargs: Any, ) -> SaQC: - assert data.columns.difference(flags.columns).empty + res = function(data=self._data, flags=self._flags, field=field, *args, **kwargs) - data, flags = function(data=data, flags=flags, field=field, *args, **kwargs) - # we check the passed function-kwargs after the actual call, - # because now "hard" errors would already have been raised - # (eg. `TypeError: got multiple values for argument 'data'`, - # when the user pass data=...) - _warnForUnusedKwargs(function, kwargs, self._translator) + # keep consistence: if we modify data and flags inplace in a function, + # but data is the original and flags is a copy (as currently implemented), + # data and flags of the original saqc obj may change inconsistently. + self._data, self._flags = res + self._called += [(field, (function, args, kwargs))] + self._validate(reason=f"call to {repr(function.__name__)}") - planned = self.called + [(field, (function, args, kwargs))] - - return self._construct(_data=data, _flags=flags, called=planned) + return self._construct( + _data=self._data, _flags=self._flags, _called=self._called + ) def __getattr__(self, key): """ - All failing attribute accesses are redirected to - __getattr__. We use this mechanism to make the - registered functions as `SaQC`-methods without - actually implementing them. + All failing attribute accesses are redirected to __getattr__. + We use this mechanism to make the registered functions appear + as `SaQC`-methods without actually implementing them. """ if key not in FUNC_MAP: - raise AttributeError(f"no such attribute: '{key}'") + raise AttributeError(f"SaQC has no attribute {repr(key)}") return self._wrap(FUNC_MAP[key]) def copy(self, deep=True): - if deep: - return stdcopy.deepcopy(self) - return stdcopy.copy(self) - - -def _warnForUnusedKwargs(func, keywords, translator: Translator): - """Warn for unused kwargs, passed to a SaQC.function. - - Parameters - ---------- - func: SaqcFunction - Saqc internal data structure that hold all function info. - - Returns - ------- - None - - Notes - ----- - A single warning is thrown, if any number of missing kws are detected, naming each missing kw. - """ - sig_kws = inspect.signature(func).parameters - - # we need to ignore kws that are injected or by default hidden in ``**kwargs`` - ignore = ("to_mask",) - - missing = [] - for kw in keywords: - # there is no need to check for - # `kw in [KEYWORD_ONLY, VAR_KEYWORD or POSITIONAL_OR_KEYWORD]` - # because this would have raised an error beforehand. - if kw not in sig_kws and kw not in ignore and kw not in translator.ARGUMENTS: - missing.append(kw) - - if missing: - missing = ", ".join(missing) - warnings.warn(f"Unused argument(s): {missing}") + copyfunc = deepcopy if deep else shallowcopy + new = self._construct() + for attr in self._attributes: + setattr(new, attr, copyfunc(getattr(self, attr))) + return new + + def __copy__(self): + return self.copy(deep=False) + + def __deepcopy__(self, memodict=None): + return self.copy(deep=True) + + def _initTranslationScheme( + self, scheme: str | TranslationScheme + ) -> TranslationScheme: + if isinstance(scheme, str) and scheme in TRANSLATION_SCHEMES: + return TRANSLATION_SCHEMES[scheme]() + if isinstance(scheme, TranslationScheme): + return scheme + raise TypeError( + f"expected one of the following translation schemes '{TRANSLATION_SCHEMES.keys()} " + f"or an initialized Translator object, got '{scheme}'" + ) + + def _initData(self, data, copy: bool) -> DictOfSeries: + + if data is None: + return DictOfSeries() + + if isinstance(data, list): + results = [] + for d in data: + results.append(self._castToDios(d, copy=copy)) + return concatDios(results, warn=True, stacklevel=3) + + if isinstance(data, (DictOfSeries, pd.DataFrame, pd.Series)): + return self._castToDios(data, copy) + + raise TypeError( + "'data' must be of type pandas.Series, " + "pandas.DataFrame or dios.DictOfSeries or" + "a list of those." + ) + + def _castToDios(self, data, copy: bool): + if isinstance(data, pd.Series): + if not isinstance(data.name, str): + raise ValueError(f"Cannot init from unnamed pd.Series") + data = data.to_frame() + if isinstance(data, pd.DataFrame): + for idx in [data.index, data.columns]: + if isinstance(idx, pd.MultiIndex): + raise TypeError("'data' should not have MultiIndex") + data = to_dios(data) # noop for DictOfSeries + for c in data.columns: + if not isinstance(c, str): + raise TypeError("columns labels must be of type string") + if copy: + data = data.copy() + return data + + def _initFlags(self, flags, copy: bool) -> Flags: + if flags is None: + return initFlagsLike(self._data) + + if isinstance(flags, list): + result = Flags() + for f in flags: + f = self._castToFlags(f, copy=copy) + for c in f.columns: + if c in result.columns: + warnings.warn( + f"Column {c} already exist. Data is overwritten. " + f"Avoid duplicate columns names over all inputs.", + stacklevel=2, + ) + result.history[c] = f.history[c] + flags = result + + elif isinstance(flags, (pd.DataFrame, DictOfSeries, Flags)): + flags = self._castToFlags(flags, copy=copy) + + else: + raise TypeError( + "'flags' must be of type pandas.DataFrame, " + "dios.DictOfSeries or saqc.Flags or " + "a list of those." + ) + + # sanitize + # - if column is missing flags but present in data, add it + # - if column is present in both, the index must be equal + for c in self._data.columns: + if c not in flags.columns: + flags.history[c] = History(self._data[c].index) + else: + if not flags[c].index.equals(self._data[c].index): + raise ValueError( + f"The flags index of column {c} does not equals " + f"the index of the same column in data." + ) + return flags + + def _castToFlags(self, flags, copy): + if isinstance(flags, pd.DataFrame): + for idx in [flags.index, flags.columns]: + if isinstance(idx, pd.MultiIndex): + raise TypeError("'flags' should not have MultiIndex") + if not isinstance(flags, Flags): + flags = Flags(flags) + if copy: + flags = flags.copy() + return flags + + +class SaQCResult: + def __init__( + self, + data: DictOfSeries, + flags: Flags, + attrs: dict, + scheme: TranslationScheme, + ): + assert isinstance(data, DictOfSeries) + assert isinstance(flags, Flags) + assert isinstance(attrs, dict) + assert isinstance(scheme, TranslationScheme) + self._data = data.copy() + self._flags = flags.copy() + self._attrs = attrs.copy() + self._scheme = scheme + self._validate() + + try: + self._scheme.backward(self._flags, attrs=self._attrs) + except Exception as e: + raise RuntimeError("Translation of flags failed") from e + + def _validate(self): + if not self._data.columns.equals(self._flags.columns): + raise AssertionError( + "Consistency broken. data and flags have not the same columns" + ) + + @property + def data(self) -> pd.DataFrame: + data: pd.DataFrame = self._data.copy().to_df() + data.attrs = self._attrs.copy() + return data + + @property + def flags(self) -> pd.DataFrame: + data: pd.DataFrame = self._scheme.backward(self._flags, attrs=self._attrs) + data.attrs = self._attrs.copy() + return data + + @property + def data_raw(self) -> DictOfSeries: + return self._data + + @property + def flags_raw(self) -> Flags: + return self._flags + + @property + def columns(self) -> DictOfSeries(): + self._validate() + return self._data.columns + + def __getitem__(self, key): + self._validate() + if key not in self.columns: + raise KeyError(key) + data_series = self._data[key].copy() + # slice flags to one column + flags = Flags({key: self._flags._data[key]}, copy=True) + + df = self._scheme.backward(flags, attrs=self._attrs) + if isinstance(df.columns, pd.MultiIndex): + df = df.droplevel(level=0, axis=1) + + if len(df.columns) == 1: + df.columns = ["flags"] + + df.insert(0, column="data", value=data_series) + df.columns.name = None + df.index.name = None + return df + + def __repr__(self): + return f"SaQCResult\nColumns: {self.columns.to_list()}" diff --git a/saqc/core/flags.py b/saqc/core/flags.py index a895e0fb0a00d3f2afa37012ad508b34e385331e..6b119d70491d63ac59b442ca7aaf5e87b80eb1e6 100644 --- a/saqc/core/flags.py +++ b/saqc/core/flags.py @@ -2,6 +2,7 @@ from __future__ import annotations import pandas as pd +import numpy as np import dios from typing import Mapping, Union, Dict, DefaultDict, Optional, Type, Tuple, Iterable @@ -32,7 +33,7 @@ class _HistAccess: self.obj = obj def __getitem__(self, key: str) -> History: - return self.obj._data[key].copy() + return self.obj._data[key] def __setitem__(self, key: str, value: History): if not isinstance(value, History): @@ -66,13 +67,16 @@ class Flags: Examples -------- + We create an empty instance, by calling ``Flags`` without any arguments and then add a column to it. - >>> from saqc.constants import UNFLAGGED, BAD, DOUBT, UNTOUCHED + >>> from saqc.constants import UNFLAGGED, BAD, DOUBTFUL >>> flags = Flags() >>> flags Empty Flags Columns: [] + + >>> flags['v0'] = pd.Series([BAD,BAD,UNFLAGGED], dtype=float) >>> flags v0 | @@ -83,6 +87,7 @@ class Flags: Once the column exist, we cannot overwrite it anymore, with a different series. + >>> flags = Flags() >>> flags['v0'] = pd.Series([666.], dtype=float) Traceback (most recent call last): some file path ... @@ -91,7 +96,7 @@ class Flags: But if we pass a series, which index match it will work, because the series now is interpreted as value-to-set. - >>> flags['v0'] = pd.Series([DOUBT,UNTOUCHED,DOUBT], dtype=float) + >>> flags['v0'] = pd.Series([DOUBT,np.nan,DOUBT], dtype=float) >>> flags v0 | ======== | @@ -100,10 +105,11 @@ class Flags: 2 25.0 | As we see above, the column now holds a combination from the values from the - first and the second set. This is, because the special constant ``UNTOUCHED``, - an alias for ``numpy.nan`` was used. We can inspect all the updates that was + first and the second set. This is, because ``numpy.nan`` was used. + We can inspect all the updates that was made by looking in the history. + >>> flags['v0'] = pd.Series([DOUBTFUL, np.nan, DOUBTFUL], dtype=float) >>> flags.history['v0'] 0 1 0 (255.0) 25.0 @@ -297,7 +303,7 @@ class Flags: ) mask, key = key - tmp = pd.Series(UNTOUCHED, index=self._data[key].index, dtype=float) + tmp = pd.Series(np.nan, index=self._data[key].index, dtype=float) # make a mask from an index, because it seems # that passing an index is a very common workflow @@ -359,9 +365,10 @@ class Flags: """ Accessor for the flags history. - To get a copy of the current history use ``flags.history['var']``. + Access via ``flags.history['var']``. To set a new history use ``flags.history['var'] = value``. - The passed value must be a instance of History or must be convertible to a history. + The passed value must be a instance of History or must be convertible to a + history. Returns ------- @@ -392,11 +399,11 @@ class Flags: copy of flags """ new = self._constructor() - new._data = {c: h.copy() if deep else h for c, h in self._data.items()} + new._data = {c: h.copy(deep) for c, h in self._data.items()} return new - def __copy__(self, deep=True): - return self.copy(deep=deep) + def __copy__(self): + return self.copy(deep=False) def __deepcopy__(self, memo=None): """ diff --git a/saqc/core/history.py b/saqc/core/history.py index a46c998f20a3bb2eb7dbad53e66b8569440bdc44..9aa1859bdc996d6bc0cba75d037271e8c054e062 100644 --- a/saqc/core/history.py +++ b/saqc/core/history.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from __future__ import annotations -from copy import deepcopy, copy +from copy import deepcopy, copy as shallowcopy import itertools from typing import Dict, Tuple, Type, Union, List, Any @@ -161,7 +161,7 @@ class History: raise ValueError("Index does not match") self._insert(val, pos=len(self)) - self.meta.append(deepcopy(meta)) + self.meta.append(meta.copy()) return self def _appendHistory(self, value: History): @@ -189,18 +189,19 @@ class History: if not value.index.equals(self.index): raise ValueError("Index does not match") - n = len(self.columns) - # don't overwrite the `.columns` of the input down the line + # we copy shallow because we only want to set new columns + # the actual data copy happens in calls to astype value_hist = value.hist.copy(deep=False) - value_meta = deepcopy(value.meta) + value_meta = value.meta.copy() # rename columns, to avoid ``pd.DataFrame.loc`` become confused + n = len(self.columns) columns = pd.Index(range(n, n + len(value_hist.columns))) value_hist.columns = columns hist = self.hist.astype(float) hist.loc[:, columns] = value_hist.astype(float) - self.hist = hist.astype("category", copy=True) + self.hist = hist.astype("category") self.meta += value_meta return self @@ -214,7 +215,7 @@ class History: """ result = self.hist.astype(float) if result.empty: - result = pd.DataFrame(data=UNTOUCHED, index=self.hist.index, columns=[0]) + result = pd.DataFrame(data=np.nan, index=self.hist.index, columns=[0]) result = result.ffill(axis=1).iloc[:, -1] @@ -223,7 +224,9 @@ class History: else: return result.fillna(UNFLAGGED) - def reindex(self, index: pd.Index, fill_value_last: float = UNFLAGGED) -> History: + def reindex( + self, index: pd.Index, fill_value_last: float = UNFLAGGED, copy: bool = True + ) -> History: """ Reindex the History. Be careful this alters the past. @@ -231,24 +234,30 @@ class History: ---------- index : pd.Index the index to reindex to. + fill_value_last : float, default UNFLAGGED - value to fill nan's (UNTOUCHED) in the last column. + value to fill nan's in the last column. Defaults to 0 (UNFLAGGED). + copy : bool, default True + If False, alter the underlying history, otherwise return a copy. + Returns ------- History """ - hist = self.hist.astype(float).reindex( + out = self.copy() if copy else self + + hist = out.hist.astype(float).reindex( index=index, copy=False, fill_value=np.nan ) # Note: all following code must handle empty frames hist.iloc[:, -1:] = hist.iloc[:, -1:].fillna(fill_value_last) - self.hist = hist.astype("category") + out.hist = hist.astype("category") - return self + return out def apply( self, @@ -279,10 +288,10 @@ class History: because the initial history is empty. Then the altered empty history is reindexed to this index. - hist_func : callable + func : callable function to apply on `History.hist` (flags DataFrame) - hist_kws : dict + func_kws : dict hist-function keywords dict func_handle_df : bool, default False @@ -300,10 +309,10 @@ class History: """ hist = pd.DataFrame(index=index) + # implicit copy by astype + # convert data to floats as functions may fail with categoricals if func_handle_df: - # we need to pass the data as floats as functions may fail with Categorical hist = func(self.hist.astype(float), **func_kws) - else: for pos in self.columns: hist[pos] = func(self.hist[pos].astype(float), **func_kws) @@ -312,7 +321,7 @@ class History: if copy: history = History(index=None) # noqa - history.meta = deepcopy(self.meta) + history.meta = self.meta.copy() else: history = self @@ -335,10 +344,23 @@ class History: copy : History the copied FH """ - if deep: - return deepcopy(self) - else: - return copy(self) + copyfunc = deepcopy if deep else shallowcopy + new = History(self.index) + new.hist = self.hist.copy(deep) + new.meta = copyfunc(self.meta) + return new + + def __copy__(self): + return self.copy(deep=False) + + def __deepcopy__(self, memo=None): + """ + Parameters + ---------- + memo, default None + Standard signature. Unused + """ + return self.copy(deep=True) def __len__(self) -> int: return len(self.hist.columns) @@ -380,7 +402,7 @@ class History: if not hist.empty and ( not hist.columns.equals(pd.Index(range(len(hist.columns)))) - or hist.columns.dtype != int + or not np.issubdtype(hist.columns.dtype, np.integer) ): raise ValueError( "column names must be continuous increasing int's, starting with 0." diff --git a/saqc/core/modules/breaks.py b/saqc/core/modules/breaks.py index 6def4f2da89f6a5234741b9c5b3fa13e0044c3b0..e76e783cd92bb440878958e12c0321b651545c0f 100644 --- a/saqc/core/modules/breaks.py +++ b/saqc/core/modules/breaks.py @@ -2,22 +2,21 @@ # -*- coding: utf-8 -*- from __future__ import annotations -from saqc.constants import BAD, UNFLAGGED +from saqc.constants import BAD, FILTER_ALL import saqc -from saqc.lib.types import FreqString class Breaks: def flagMissing( - self, field: str, flag: float = BAD, to_mask: float = UNFLAGGED, **kwargs + self, field: str, flag: float = BAD, dfilter: float = FILTER_ALL, **kwargs ) -> saqc.SaQC: return self._defer("flagMissing", locals()) def flagIsolated( self, field: str, - gap_window: FreqString, - group_window: FreqString, + gap_window: str, + group_window: str, flag: float = BAD, **kwargs ) -> saqc.SaQC: @@ -27,7 +26,7 @@ class Breaks: self, field: str, thresh: float, - window: FreqString, + window: str, min_periods: int = 1, flag: float = BAD, **kwargs diff --git a/saqc/core/modules/changepoints.py b/saqc/core/modules/changepoints.py index a9a350bf3e12e44763b4ac6ad7cab4078171b37f..0fffc914caddff3f173fd2a7723520670c07d59c 100644 --- a/saqc/core/modules/changepoints.py +++ b/saqc/core/modules/changepoints.py @@ -9,7 +9,6 @@ from typing_extensions import Literal from saqc.constants import BAD import saqc -from saqc.lib.types import FreqString class ChangePoints: @@ -18,10 +17,10 @@ class ChangePoints: field: str, stat_func: Callable[[np.ndarray, np.ndarray], float], thresh_func: Callable[[np.ndarray, np.ndarray], float], - window: FreqString | Tuple[FreqString, FreqString], + window: str | Tuple[str, str], min_periods: int | Tuple[int, int], closed: Literal["right", "left", "both", "neither"] = "both", - reduce_window: FreqString = None, + reduce_window: str = None, reduce_func: Callable[[np.ndarray, np.ndarray], int] = lambda x, _: x.argmax(), flag: float = BAD, **kwargs, @@ -41,9 +40,6 @@ class ChangePoints: [np.ndarray, np.ndarray], float ] = lambda x, _: x.argmax(), model_by_resids: bool = False, - set_flags: bool = False, - assign_cluster: bool = True, - flag: float = BAD, **kwargs, ) -> saqc.SaQC: return self._defer("assignChangePointCluster", locals()) diff --git a/saqc/core/modules/constants.py b/saqc/core/modules/constants.py index b11c62cd3a00b1d6e9eef2524c716a9360c76bdf..035147e67dac5a7ca956bbe7b1c1d618ab7e912e 100644 --- a/saqc/core/modules/constants.py +++ b/saqc/core/modules/constants.py @@ -4,14 +4,13 @@ from __future__ import annotations from saqc.constants import BAD import saqc -from saqc.lib.types import FreqString class Constants: def flagByVariance( self, field: str, - window: FreqString = "12h", + window: str = "12h", thresh: float = 0.0005, maxna: int = None, maxna_group: int = None, @@ -21,6 +20,6 @@ class Constants: return self._defer("flagByVariance", locals()) def flagConstants( - self, field: str, thresh: float, window: FreqString, flag: float = BAD, **kwargs + self, field: str, thresh: float, window: str, flag: float = BAD, **kwargs ) -> saqc.SaQC: return self._defer("flagConstants", locals()) diff --git a/saqc/core/modules/curvefit.py b/saqc/core/modules/curvefit.py index 91a2cd6b7ea17ca43b0c99e492ad6b6a48e84741..ba595d0659e6e745396ee1cdd463ac6e776e8c16 100644 --- a/saqc/core/modules/curvefit.py +++ b/saqc/core/modules/curvefit.py @@ -16,10 +16,7 @@ class Curvefit: field: str, window: Union[int, str], order: int, - set_flags: bool = True, min_periods: int = 0, - return_residues: bool = False, - flag: float = BAD, **kwargs ) -> saqc.SaQC: return self._defer("fitPolynomial", locals()) diff --git a/saqc/core/modules/drift.py b/saqc/core/modules/drift.py index ed248633066cebbdf8f379625c0b51376802c2e4..e2b6c4f2aed1ed01af14792db6907074d748e1f8 100644 --- a/saqc/core/modules/drift.py +++ b/saqc/core/modules/drift.py @@ -2,7 +2,8 @@ # -*- coding: utf-8 -*- from __future__ import annotations -from typing import Sequence, Callable, Optional +from typing import Sequence, Callable, Optional, Union +from typing_extensions import Literal import numpy as np from scipy.spatial.distance import pdist @@ -10,15 +11,14 @@ from scipy.spatial.distance import pdist from saqc.constants import BAD import saqc from saqc.funcs import LinkageString -from saqc.lib.types import FreqString, CurveFitter +from saqc.lib.types import CurveFitter class Drift: def flagDriftFromNorm( self, - field: str, - fields: Sequence[str], - freq: FreqString, + field: Sequence[str], + freq: str, spread: float, frac: float = 0.5, metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( @@ -33,14 +33,15 @@ class Drift: def flagDriftFromReference( self, - field: str, - fields: Sequence[str], - freq: FreqString, + field: Sequence[str], + reference: str, + freq: str, thresh: float, metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( np.array([x, y]), metric="cityblock" ) / len(x), + target=None, flag: float = BAD, **kwargs ) -> saqc.SaQC: @@ -51,7 +52,7 @@ class Drift: field: str, set_1: Sequence[str], set_2: Sequence[str], - freq: FreqString, + freq: str, spread: float, frac: float = 0.5, metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( @@ -59,6 +60,7 @@ class Drift: ) / len(x), method: LinkageString = "single", + target: str = None, flag: float = BAD, **kwargs ) -> saqc.SaQC: @@ -68,9 +70,8 @@ class Drift: self, field: str, maintenance_field: str, - model: Callable[..., float], + model: Callable[..., float] | Literal["linear", "exponential"], cal_range: int = 5, - flag: float = BAD, **kwargs ) -> saqc.SaQC: return self._defer("correctDrift", locals()) @@ -80,7 +81,7 @@ class Drift: field: str, cluster_field: str, model: CurveFitter, - tolerance: Optional[FreqString] = None, + tolerance: Optional[str] = None, epoch: bool = False, **kwargs ) -> saqc.SaQC: @@ -91,9 +92,9 @@ class Drift: field: str, max_jump: float, spread: float, - window: FreqString, + window: str, min_periods: int, - tolerance: Optional[FreqString] = None, + tolerance: Optional[str] = None, **kwargs ) -> saqc.SaQC: return self._defer("correctOffset", locals()) diff --git a/saqc/core/modules/flagtools.py b/saqc/core/modules/flagtools.py index a782d9700c1e869a13d6d12d2a6d95ba4dd6c1b7..0df9dfc27d5b3e2c9761d40a2a6299f5f5fcbd47 100644 --- a/saqc/core/modules/flagtools.py +++ b/saqc/core/modules/flagtools.py @@ -5,6 +5,7 @@ from __future__ import annotations from typing import Any, Union import pandas as pd +import numpy as np from dios import DictOfSeries from typing_extensions import Literal @@ -28,9 +29,12 @@ class FlagTools: def flagManual( self, field: str, - mdata: Union[pd.Series, pd.DataFrame, DictOfSeries], + mdata: Union[pd.Series, pd.DataFrame, DictOfSeries, list, np.array], + method: Literal[ + "left-open", "right-open", "closed", "plain", "ontime" + ] = "left-open", + mformat: Literal["start-end", "mflag"] = "start-end", mflag: Any = 1, - method: Literal["plain", "ontime", "left-open", "right-open"] = "plain", flag: float = BAD, **kwargs, ) -> saqc.SaQC: diff --git a/saqc/core/modules/generic.py b/saqc/core/modules/generic.py index 898be936416168d97c0480e7cd73a687532dfa7b..c0ed0a21ff0eec046d88c8bd56d46dec1c77e84d 100644 --- a/saqc/core/modules/generic.py +++ b/saqc/core/modules/generic.py @@ -2,31 +2,32 @@ # -*- coding: utf-8 -*- from __future__ import annotations -from typing import Callable +from typing import Sequence, Union -import numpy as np -import pandas as pd - -from saqc.constants import UNFLAGGED, BAD import saqc +from saqc.constants import UNFLAGGED, BAD, FILTER_ALL +from saqc.lib.types import GenericFunction class Generic: - def genericProcess( + def processGeneric( self, - field: str, - func: Callable[[pd.Series], pd.Series], - to_mask: float = UNFLAGGED, + field: str | Sequence[str], + func: GenericFunction, + target: str | Sequence[str] = None, + flag: float = UNFLAGGED, + dfilter: float = FILTER_ALL, **kwargs, ) -> saqc.SaQC: - return self._defer("genericProcess", locals()) + return self._defer("processGeneric", locals()) - def genericFlag( + def flagGeneric( self, - field: str, - func: Callable[[pd.Series], pd.Series], + field: Union[str, Sequence[str]], + func: GenericFunction, + target: Union[str, Sequence[str]] = None, flag: float = BAD, - to_mask: float = UNFLAGGED, + dfilter: float = FILTER_ALL, **kwargs, ) -> saqc.SaQC: - return self._defer("genericFlag", locals()) + return self._defer("flagGeneric", locals()) diff --git a/saqc/core/modules/interpolation.py b/saqc/core/modules/interpolation.py index 8787bd3250b3438702186cf1c7eb6c7b2200e169..3eed7ac7ed31df0b816239348d2e50b9464e0717 100644 --- a/saqc/core/modules/interpolation.py +++ b/saqc/core/modules/interpolation.py @@ -21,7 +21,7 @@ class Interpolation: center: bool = True, min_periods: int = 0, flag: float = UNFLAGGED, - **kwargs + **kwargs, ) -> saqc.SaQC: return self._defer("interpolateByRolling", locals()) @@ -33,7 +33,7 @@ class Interpolation: limit: int = 2, downgrade: bool = False, flag: float = UNFLAGGED, - **kwargs + **kwargs, ) -> saqc.SaQC: return self._defer("interpolateInvalid", locals()) @@ -45,6 +45,6 @@ class Interpolation: order: int = 2, limit: int = 2, downgrade: bool = False, - **kwargs + **kwargs, ) -> saqc.SaQC: return self._defer("interpolateIndex", locals()) diff --git a/saqc/core/modules/noise.py b/saqc/core/modules/noise.py index 8985f56f2eae96d36f8df749092f26c9ec54f54e..dfc734162930c8a4075c379b994de869be4966cf 100644 --- a/saqc/core/modules/noise.py +++ b/saqc/core/modules/noise.py @@ -8,17 +8,16 @@ from typing import Callable from saqc.constants import BAD import saqc -from saqc.lib.types import FreqString class Noise: def flagByStatLowPass( self, field: str, - func: Callable[[np.ndarray, pd.Series], float], - window: FreqString, + func: Callable[[np.array, pd.Series], float], + window: str, thresh: float, - sub_window: FreqString = None, + sub_window: str = None, sub_thresh: float = None, min_periods: int = None, flag: float = BAD, diff --git a/saqc/core/modules/outliers.py b/saqc/core/modules/outliers.py index 8e64e99d34a8ce0ee22b12b40b8394263d9cc4a6..f66e3b10134d30340096dcfac7f8f668c7e7e49c 100644 --- a/saqc/core/modules/outliers.py +++ b/saqc/core/modules/outliers.py @@ -10,14 +10,13 @@ from typing_extensions import Literal from saqc.constants import BAD import saqc -from saqc.lib.types import FreqString class Outliers: def flagByStray( self, field: str, - freq: Optional[Union[int, FreqString]] = None, + freq: Optional[Union[int, str]] = None, min_periods: int = 11, iter_start: float = 0.5, alpha: float = 0.05, @@ -28,19 +27,19 @@ class Outliers: def flagMVScores( self, - field: str, - fields: Sequence[str], + field: Sequence[str], trafo: Callable[[pd.Series], pd.Series] = lambda x: x, alpha: float = 0.05, n: int = 10, func: Callable[[pd.Series], float] = np.sum, iter_start: float = 0.5, - partition: Optional[Union[int, FreqString]] = None, + partition: Optional[Union[int, str]] = None, partition_min: int = 11, - stray_range: Optional[FreqString] = None, + stray_range: Optional[str] = None, drop_flagged: bool = False, # TODO: still a case ? thresh: float = 3.5, min_periods: int = 1, + target: str = None, flag: float = BAD, **kwargs, ) -> saqc.SaQC: @@ -50,9 +49,9 @@ class Outliers: self, field: str, thresh: float, - raise_window: FreqString, - freq: FreqString, - average_window: Optional[FreqString] = None, + raise_window: str, + freq: str, + average_window: Optional[str] = None, raise_factor: float = 2.0, slope: Optional[float] = None, weight: float = 0.8, @@ -64,7 +63,7 @@ class Outliers: def flagMAD( self, field: str, - window: FreqString, + window: str, z: float = 3.5, flag: float = BAD, **kwargs, @@ -76,7 +75,7 @@ class Outliers: field: str, thresh: float, tolerance: float, - window: Union[int, FreqString], + window: Union[int, str], thresh_relative: Optional[float] = None, flag: float = BAD, **kwargs, @@ -86,7 +85,7 @@ class Outliers: def flagByGrubbs( self, field: str, - window: Union[FreqString, int], + window: Union[str, int], alpha: float = 0.05, min_periods: int = 8, pedantic: bool = False, @@ -107,11 +106,11 @@ class Outliers: def flagCrossStatistic( self, - field: str, - fields: Sequence[str], + field: Sequence[str], thresh: float, method: Literal["modZscore", "Zscore"] = "modZscore", flag: float = BAD, + target: str = None, **kwargs, ) -> saqc.SaQC: return self._defer("flagCrossStatistic", locals()) diff --git a/saqc/core/modules/pattern.py b/saqc/core/modules/pattern.py index 2dbb020bec70fa15b20c44d21f2e8c92edbea4ff..f38de24416b852376ea85c356d81e1e34f2c30b9 100644 --- a/saqc/core/modules/pattern.py +++ b/saqc/core/modules/pattern.py @@ -2,8 +2,6 @@ # -*- coding: utf-8 -*- from __future__ import annotations -from typing import Sequence - from saqc.constants import BAD import saqc @@ -20,8 +18,3 @@ class Pattern: **kwargs ) -> saqc.SaQC: return self._defer("flagPatternByDTW", locals()) - - def flagPatternByWavelet( - self, field, reference, widths=(1, 2, 4, 8), waveform="mexh", flag=BAD, **kwargs - ) -> saqc.SaQC: - return self._defer("flagPatternByWavelet", locals()) diff --git a/saqc/core/modules/resampling.py b/saqc/core/modules/resampling.py index 14350a1b9a34646528d5f6512819576035de8fea..1331647e5079cc4b366d2785f417622ac1f32ecf 100644 --- a/saqc/core/modules/resampling.py +++ b/saqc/core/modules/resampling.py @@ -14,7 +14,12 @@ from saqc.funcs.interpolation import _SUPPORTED_METHODS class Resampling: - def linear(self, field: str, freq: str, **kwargs) -> saqc.SaQC: + def linear( + self, + field: str, + freq: str, + **kwargs, + ) -> saqc.SaQC: return self._defer("linear", locals()) def interpolate( @@ -53,9 +58,10 @@ class Resampling: ) -> saqc.SaQC: return self._defer("resample", locals()) - def reindexFlags( + def concatFlags( self, field: str, + target: str, method: Literal[ "inverse_fagg", "inverse_bagg", @@ -65,9 +71,8 @@ class Resampling: "inverse_nshift", "inverse_interpolation", ], - source: str, freq: Optional[str] = None, drop: Optional[bool] = False, **kwargs, ) -> saqc.SaQC: - return self._defer("reindexFlags", locals()) + return self._defer("concatFlags", locals()) diff --git a/saqc/core/modules/residues.py b/saqc/core/modules/residues.py index d2ee8db46a0217c386360ed0ed8831aa2efaa7d2..30503a46d2e79dd19e6e2d97b0f2cc79b5fdbc08 100644 --- a/saqc/core/modules/residues.py +++ b/saqc/core/modules/residues.py @@ -5,6 +5,7 @@ from __future__ import annotations from typing import Optional, Union, Callable import numpy as np +import pandas as pd from typing_extensions import Literal from saqc.constants import BAD @@ -17,9 +18,7 @@ class Residues: field: str, window: Union[str, int], order: int, - set_flags: bool = True, # TODO, not valid anymore, if still needed, maybe assign user-passed ``flag``? min_periods: Optional[int] = 0, - flag: float = BAD, **kwargs ) -> saqc.SaQC: return self._defer("calculatePolynomialResidues", locals()) @@ -28,11 +27,9 @@ class Residues: self, field: str, window: Union[str, int], - func: Callable[[np.ndarray], np.ndarray] = np.mean, - set_flags: bool = True, + func: Callable[[pd.Series], np.ndarray] = np.mean, min_periods: Optional[int] = 0, center: bool = True, - flag: float = BAD, **kwargs ) -> saqc.SaQC: return self._defer("calculateRollingResidues", locals()) diff --git a/saqc/core/modules/rolling.py b/saqc/core/modules/rolling.py index 11131514b158ce4d62a83fe145b49a6e8ef864e3..67e0e10b103dbf6aee3b9e83c0036956af2b497d 100644 --- a/saqc/core/modules/rolling.py +++ b/saqc/core/modules/rolling.py @@ -14,12 +14,9 @@ class Rolling: self, field: str, window: Union[str, int], - func: Callable[[pd.Series], float] = np.mean, - set_flags: bool = True, # TODO: not applicable anymore + func: Callable[[pd.Series], np.ndarray] = np.mean, min_periods: int = 0, center: bool = True, - return_residues=False, # TODO: this should not be public, a wrapper would be better - flag: float = BAD, **kwargs ): return self._defer("roll", locals()) diff --git a/saqc/core/modules/scores.py b/saqc/core/modules/scores.py index cc015d98fc63a466f22346cfd174a3402362460d..feaa89b8a70d9c79a62ef202ebfd1b5d3cce41ac 100644 --- a/saqc/core/modules/scores.py +++ b/saqc/core/modules/scores.py @@ -14,9 +14,8 @@ import saqc class Scores: def assignKNNScore( self, - field: str, - fields: Sequence[str], - target: str = "kNNscores", + field: Sequence[str], + target: str, n: int = 10, func: Callable[[pd.Series], float] = np.sum, freq: Union[float, str] = np.inf, @@ -24,6 +23,6 @@ class Scores: method: Literal["ball_tree", "kd_tree", "brute", "auto"] = "ball_tree", metric: str = "minkowski", p: int = 2, - **kwargs + **kwargs, ) -> saqc.SaQC: return self._defer("assignKNNScore", locals()) diff --git a/saqc/core/modules/tools.py b/saqc/core/modules/tools.py index bd6f189fe7ff391e5a0215b1de7848464107c5d7..cf6fd5d0a09df53c973c27580d486aa399e114ab 100644 --- a/saqc/core/modules/tools.py +++ b/saqc/core/modules/tools.py @@ -6,11 +6,13 @@ from typing import Optional from typing_extensions import Literal import saqc -from saqc.lib.types import FreqString +import numpy as np + +from saqc.constants import FILTER_NONE class Tools: - def copyField(self, field: str, new_field: str, **kwargs) -> saqc.SaQC: + def copyField(self, field: str, target: str, **kwargs) -> saqc.SaQC: return self._defer("copyField", locals()) def dropField(self, field: str, **kwargs) -> saqc.SaQC: @@ -35,12 +37,14 @@ class Tools: self, field: str, path: Optional[str] = None, - max_gap: Optional[FreqString] = None, + max_gap: Optional[str] = None, stats: bool = False, - plot_kwargs: Optional[dict] = None, - fig_kwargs: Optional[dict] = None, + history: Optional[Literal["valid", "complete", "clear"]] = "valid", + xscope: Optional[slice] = None, + phaseplot: Optional[str] = None, stats_dict: Optional[dict] = None, store_kwargs: Optional[dict] = None, + dfilter: Optional[float] = FILTER_NONE, **kwargs, ) -> saqc.SaQC: return self._defer("plot", locals()) diff --git a/saqc/core/reader.py b/saqc/core/reader.py index 219f5b4c4a5fbaef7cd8bc3cb91d8974a385fd18..1f1a6113a691e1bd8c16cbed1ced26ec764bbd48 100644 --- a/saqc/core/reader.py +++ b/saqc/core/reader.py @@ -15,7 +15,7 @@ COMMENT = "#" SEPARATOR = ";" -def readFile(fname): +def readFile(fname) -> pd.DataFrame: fobj = ( io.open(fname, "r", encoding="utf-8") @@ -37,15 +37,12 @@ def readFile(fname): "for the variable name and one for the test to apply, but " f"in line {i} we got: \n'{line}'" ) - out.append( - [ - i + 1, - ] - + parts - ) - - if isinstance(fname, str): + out.append([i + 1] + parts) + + try: fobj.close() + except AttributeError: + pass df = pd.DataFrame( out[1:], @@ -65,12 +62,21 @@ def fromConfig(fname, *args, **kwargs): regex = False if isQuoted(field): - field = field[1:-1] + fld = field[1:-1] regex = True - - tree = ast.parse(expr, mode="eval") - func, kwargs = ConfigFunctionParser().parse(tree.body) - - saqc = getattr(saqc, func)(field=field, regex=regex, **kwargs) + else: + fld = field + + try: + tree = ast.parse(expr, mode="eval") + func_name, kwargs = ConfigFunctionParser().parse(tree.body) + except Exception as e: + raise type(e)(f"failed to parse: {field} ; {expr}") from e + + kwargs["field" if "field" not in kwargs else "target"] = fld + try: + saqc = getattr(saqc, func_name)(regex=regex, **kwargs) + except Exception as e: + raise type(e)(f"failed to execute: {field} ; {expr}") from e return saqc diff --git a/saqc/core/register.py b/saqc/core/register.py index 2ccb2b318cd7c53ae957fe6c3c1b79b8b650a2c3..8f7aec66886441b6eaa6dd524d9ed47d6b59eae1 100644 --- a/saqc/core/register.py +++ b/saqc/core/register.py @@ -1,416 +1,474 @@ #!/usr/bin/env python -from typing import Dict, Optional, Union, Tuple, Callable, Sequence -from typing_extensions import Literal -from functools import wraps -import dataclasses +from __future__ import annotations + +import inspect +import warnings +from typing import Dict, Tuple, Callable, Sequence, Any +import functools import numpy as np import pandas as pd import dios -from saqc.constants import * -from saqc.core.flags import initFlagsLike, Flags, History +from saqc.constants import UNFLAGGED, FILTER_ALL +from saqc.core.flags import Flags, History +from saqc.lib.tools import squeezeSequence, toSequence # NOTE: # the global SaQC function store, # will be filled by calls to register FUNC_MAP: Dict[str, Callable] = {} -MaskingStrT = Literal["all", "field", "none"] -FuncReturnT = Tuple[dios.DictOfSeries, Flags] - - -@dataclasses.dataclass -class CallState: - func: Callable - func_name: str - - flags: Flags - field: str - - args: tuple - kwargs: dict - - masking: MaskingStrT - mthresh: float - mask: dios.DictOfSeries - - -def processing(): - # executed on module import - def inner(func): - @wraps(func) - def callWrapper(data, field, flags, *args, **kwargs): - kwargs["to_mask"] = _getMaskingThresh(kwargs) - return func(data, field, flags, *args, **kwargs) - - FUNC_MAP[func.__name__] = callWrapper - return callWrapper - - return inner - - -def flagging(masking: MaskingStrT = "all"): - - # executed on module import - if masking not in ("all", "field", "none"): - raise ValueError( - f"invalid masking argument '{masking}', choose one of ('all', 'field', 'none')" +_is_list_like = pd.api.types.is_list_like + + +class FunctionWrapper: + def __init__( + self, + func: Callable, + mask: list, + demask: list, + squeeze: list, + multivariate: bool = False, + handles_target: bool = False, + ): + # todo: + # - meta only is written with squeeze + + self.func = func + self.func_name = func.__name__ + self.func_signature = inspect.signature(func) + + # ensure type and all elements exist in signature + self._checkDecoratorKeywords(mask, demask, squeeze) + if multivariate and not handles_target: + raise ValueError("multivariate=True requires handle_target=True") + + self.decorator_mask = mask + self.decorator_demask = demask + self.decorator_squeeze = squeeze + self.multivariate = multivariate + self.handles_target = handles_target + + # set in __call__ + self.data = None + self.flags = None + self.fields = None + self.args = None + self.kwargs = None + self.mask_thresh = None + self.stored_data = None + + # make ourself look like the wrapped function, especially the docstring + functools.update_wrapper(self, func) + + def _checkDecoratorKeywords(self, mask, demask, squeeze): + params = self.func_signature.parameters.keys() + for dec_arg, name in zip( + [mask, demask, squeeze], ["mask", "demask", "squeeze"] + ): + typeerr = TypeError( + f"type of decorator argument '{name}' must " + f"be a list of strings, not {repr(type(dec_arg))}" + ) + if not isinstance(dec_arg, list): + raise typeerr + for elem in dec_arg: + if not isinstance(elem, str): + raise typeerr + if elem not in params: + raise ValueError( + f"passed value {repr(elem)} in {repr(name)} is not an " + f"parameter in decorated function {repr(self.func_name)}" + ) + + @staticmethod + def _argnamesToColumns(names: list, values: dict): + clist = [] + for name in names: + value = values[name] # eg. the value behind 'field' + + # NOTE: do not change order of the tests + if value is None: + pass + elif isinstance(value, str): + clist.append(value) + # we ignore DataFrame, Series, DictOfSeries + # and high order types alike + elif hasattr(value, "columns"): + pass + elif _is_list_like(value) and all([isinstance(e, str) for e in value]): + clist += value + return pd.Index(clist) + + @staticmethod + def _warn(missing, source): + if len(missing) == 0: + return + action = source + "ed" + obj = "flags" if source == "squeeze" else "data" + warnings.warn( + f"Column(s) {repr(missing)} cannot not be {action} " + f"because they are not present in {obj}. ", + RuntimeWarning, ) - def inner(func): - func_name = func.__name__ - - # executed if a register-decorated function is called, - # nevertheless if it is called plain or via `SaQC.func`. - @wraps(func) - def callWrapper(data, field, flags, *args, **kwargs): - args = data, field, flags, *args - args, kwargs, old_state = _preCall(func, args, kwargs, masking, func_name) - result = func(*args, **kwargs) - return _postCall(result, old_state) - - FUNC_MAP[func_name] = callWrapper - callWrapper._masking = masking - - return callWrapper + def __call__( + self, data: dios.DictOfSeries, field: str, flags: Flags, *args, **kwargs + ) -> Tuple[dios.DictOfSeries, Flags]: + """ + This wraps a call to a saqc function. + + Before the saqc function call it copies flags and maybe mask data (inplace). + After the call it maybe squeezes modified histories and maybe reinsert the + masked data locations. + + If the squeezing and/or the masking and/or the demasking will happen, depends + on the decorator keywords `handles` and `datamask`. See ``_determineActions``, + for that. + """ + # keep this the original values + self.data = data + self.flags = flags + self.fields = toSequence(field) + self.args = args + self.kwargs = self._checkKwargs(kwargs) + + self.mask_thresh = self._getMaskingThresh() + + # skip (data, field, flags) + names = list(self.func_signature.parameters.keys())[3 : 3 + len(args)] + all_args = {"field": field, **dict(zip(names, args)), **kwargs} + + # find columns that need masking + columns = self._argnamesToColumns(self.decorator_mask, all_args) + self._warn(columns.difference(self.data.columns).to_list(), source="mask") + columns = columns.intersection(self.data.columns) + + masked, stored = self._maskData( + data=self.data, + flags=self.flags, + columns=columns, + thresh=self.mask_thresh, + ) + self.data = masked + self.stored_data = stored + + args, kwargs = self._prepareArgs() + data, flags = self.func(*args, **kwargs) + + # find columns that need squeezing + columns = self._argnamesToColumns(self.decorator_squeeze, all_args) + self._warn(columns.difference(flags.columns).to_list(), source="squeeze") + columns = columns.intersection(flags.columns) + + # if the function did not want to set any flags at all, + # we assume a processing function that altered the flags + # in an unpredictable manner or do nothing with the flags. + # in either case we take the returned flags as the new truth. + if columns.empty: + result_flags = flags + else: + # even if this looks like a noop for columns=[], + # it returns the old instead the new flags and + # therefore ignores any possible processing changes + result_flags = self._squeezeFlags(flags, columns) + + # find columns that need demasking + columns = self._argnamesToColumns(self.decorator_demask, all_args) + self._warn(columns.difference(data.columns).to_list(), source="demask") + columns = columns.intersection(data.columns) + + result_data = self._unmaskData(data, self.stored_data, columns=columns) + + return result_data, result_flags + + @staticmethod + def _checkKwargs(kwargs: dict) -> dict[str, Any]: + if "dfilter" in kwargs and not isinstance( + kwargs["dfilter"], (bool, float, int) + ): + raise TypeError(f"'dfilter' must be of type bool or float") + return kwargs + + def _prepareArgs(self) -> Tuple[tuple, dict[str, Any]]: + """ + Prepare the args and kwargs passed to the function + Returns + ------- + args: tuple + arguments to be passed to the actual call + kwargs: dict + keyword-arguments to be passed to the actual call + """ + kwargs = self.kwargs.copy() + kwargs["dfilter"] = self.mask_thresh + + # always pass a list to multivariate functions and + # unpack single element lists for univariate functions + if self.multivariate: + field = self.fields + else: + field = squeezeSequence(self.fields) + + args = self.data, field, self.flags.copy(), *self.args + return args, kwargs + + def _getMaskingThresh(self) -> float: + """ + Generate a float threshold by the value of the `dfilter` keyword + + Returns + ------- + threshold: float + All data gets masked, if the flags are equal or worse than the threshold. + + Notes + ----- + If ``dfilter`` is **not** in the kwargs, the threshold defaults to `FILTER_ALL`. + For any floatish value, it is taken as the threshold. + """ + if "dfilter" not in self.kwargs: + return FILTER_ALL + return float(self.kwargs["dfilter"]) # handle int + + def _createMeta(self) -> dict: + return { + "func": self.func_name, + "args": self.args, + "kwargs": self.kwargs, + } + + def _squeezeFlags(self, flags: Flags, columns: pd.Index) -> Flags: + """ + Generate flags from the temporary result-flags and the original flags. + + Parameters + ---------- + flags : Flags + The flags-frame, which is the result from a saqc-function + + Returns + ------- + Flags + """ + out = self.flags.copy() # the old flags + meta = self._createMeta() + for col in columns: + + # todo: shouldn't we fail or warn here or even have a explicit test upstream + # because the function should ensure consistence, especially because + # a empty history maybe issnt what is expected, but this happens silently + if col not in out: # ensure existence + out.history[col] = History(index=flags.history[col].index) + + old_history = out.history[col] + new_history = flags.history[col] + + # We only want to add new columns, that were appended during the last + # function call. If no such columns exist, we end up with an empty + # new_history. + start = len(old_history.columns) + new_history = self._sliceHistory(new_history, slice(start, None)) + + squeezed = new_history.max(raw=True) + out.history[col] = out.history[col].append(squeezed, meta=meta) + + return out + + @staticmethod + def _sliceHistory(history: History, sl: slice) -> History: + history.hist = history.hist.iloc[:, sl] + history.meta = history.meta[sl] + return history + + @staticmethod + def _maskData( + data: dios.DictOfSeries, flags: Flags, columns: Sequence[str], thresh: float + ) -> Tuple[dios.DictOfSeries, dios.DictOfSeries]: + """ + Mask data with Nans, if the flags are worse than a threshold. + - mask only passed `columns` (preselected by `datamask`-kw from decorator) + + Returns + ------- + masked : dios.DictOfSeries + masked data, same dim as original + mask : dios.DictOfSeries + dios holding iloc-data-pairs for every column in `data` + """ + mask = dios.DictOfSeries(columns=columns) + + # we use numpy here because it is faster + for c in columns: + col_mask = _isflagged(flags[c].to_numpy(), thresh) + + if col_mask.any(): + col_data = data[c].to_numpy(dtype=np.float64) + + mask[c] = pd.Series(col_data[col_mask], index=np.where(col_mask)[0]) + + col_data[col_mask] = np.nan + data[c] = col_data + + return data, mask + + @staticmethod + def _unmaskData( + data: dios.DictOfSeries, mask: dios.DictOfSeries, columns: pd.Index = None + ) -> dios.DictOfSeries: + """ + Restore the masked data. + + Notes + ----- + - Even if this returns data, it works inplace ! + - `mask` is not a boolean mask, instead it holds the original values. + The index of mask is numeric and represent the integer location + in the original data. + """ + if columns is None: + columns = data.columns # field was in old, is in mask and is in new + columns = mask.columns.intersection(columns) + + for c in columns: + + # ignore + if data[c].empty or mask[c].empty: + continue + + # get the positions of values to unmask + candidates = mask[c] + # if the mask was removed during the function call, don't replace + unmask = candidates[data[c].iloc[candidates.index].isna().to_numpy()] + if unmask.empty: + continue + data[c].iloc[unmask.index] = unmask - return inner + return data -def _preCall( - func: Callable, args: tuple, kwargs: dict, masking: MaskingStrT, fname: str +def register( + mask: list[str], + demask: list[str], + squeeze: list[str], + multivariate: bool = False, + handles_target: bool = False, ): """ - Handler that runs before any call to a saqc-function. + Generalized decorator for any saqc functions. - This is called before each call to a saqc-function, nevertheless if it is - called via the SaQC-interface or plain by importing and direct calling. + Before the call of the decorated function: + - data gets masked by flags according to `dfilter` - Parameters - ---------- - func : callable - the function, which is called after this returns. This is not called here! - - args : tuple - args to the function - - kwargs : dict - kwargs to the function - - masking : str - a string indicating which columns in data need masking - - See Also - -------- - _postCall: runs after a saqc-function call - - Returns - ------- - args: tuple - arguments to be passed to the actual call - kwargs: dict - keyword-arguments to be passed to the actual call - state: CallState - control keyword-arguments passed to `_postCall` - - """ - mthresh = _getMaskingThresh(kwargs) - kwargs["to_mask"] = mthresh - - data, field, flags, *args = args - - # handle data - masking - columns = _getMaskingColumns(data, field, masking) - masked_data, mask = _maskData(data, flags, columns, mthresh) - - # store current state - state = CallState( - func=func, - func_name=fname, - flags=flags, - field=field, - args=args, - kwargs=kwargs, - masking=masking, - mthresh=mthresh, - mask=mask, - ) - - args = masked_data, field, flags.copy(), *args - return args, kwargs, state - - -def _postCall(result, old_state: CallState) -> FuncReturnT: - """ - Handler that runs after any call to a saqc-function. - - This is called after a call to a saqc-function, nevertheless if it was - called via the SaQC-interface or plain by importing and direct calling. + After the call of the decorated function: + - data gets demasked (original data is written back) + - flags gets squeezed (only one history column append per call) Parameters ---------- - result : tuple - the result from the called function, namely: data and flags + mask : list of string + A list of all parameter of the decorated function, that specify a column in + data, that is read by the function and therefore should be masked by flags. + + The masking takes place before the call of the decorated function and + temporary sets data to `NaN` at flagged locations. It is undone by ``demask``. + The threshold of which data is considered to be flagged can be controlled + via ``dfilter``, a parameter each function takes. + + demask : list of string + A list of all parameter of the decorated function, that specify a column in + data, that was masked (see ``mask``) and needs unmasking after the call. + + The unmasking replace all remaining(!) ``NaN`` by its original values from + before the call of the decorated function. + + squeeze : list of string + A list of all parameter of the decorated function, that specify a column in + flags, that is written by the function. + + The squeezing combines multiple columns in the history of flags to one + single column. This is because, multiple writes to flags, (eg. using + ``flags[:,'a'] = 255`` twice) will result in multiple history columns, + but should considered as a single column, because only one function call + happened. + + multivariate : bool, default False + If ``True``, the decorated function, process multiple data or flags + columns at once. Therefore the decorated function must handle a list + of columns in the parameter ``field``. + + If ``False``, the decorated function must take a single column (``str``) + in ``field``. + + handles_target : bool, default False + If ``True``, the decorated function, handles the target parameter by + itself. Mandatory for multivariate functions. + """ - old_state : dict - control keywords from `_preCall` + def inner(func): + wrapper = FunctionWrapper( + func, mask, demask, squeeze, multivariate, handles_target + ) + FUNC_MAP[wrapper.func_name] = wrapper + return wrapper - Returns - ------- - data, flags : dios.DictOfSeries, saqc.Flags - """ - data, flags = result - flags = _restoreFlags(flags, old_state) - data = _unmaskData(data, old_state) - return data, flags + return inner -def _getMaskingColumns(data: dios.DictOfSeries, field: str, masking: MaskingStrT): +def flagging(**kwargs): """ - Return columns to mask, by `masking` (decorator keyword) + Default decorator for univariate flagging functions. - Depending on the `masking` kw, the following s returned: - * 'all' : all columns from data - * 'None' : empty pd.Index - * 'field': single entry Index + Before the call of the decorated function: + - `data[field]` gets masked by `flags[field]` according to `dfilter` + After the call of the decorated function: + - `data[field]` gets demasked (original data is written back) + - `flags[field]` gets squeezed (only one history column append per call) if needed - Returns - ------- - columns: pd.Index - Data columns that need to be masked. + Notes + ----- + For full control over masking, demasking and squeezing or to implement + a multivariate function (multiple in- or outputs) use the `@register` decorator. - Raises - ------ - ValueError: if given masking literal is not supported + See Also + -------- + resister: generalization of of this function """ - if masking == "all": - return data.columns - if masking == "none": - return pd.Index([]) - if masking == "field": - return pd.Index([field]) - - raise ValueError(f"wrong use of `register(masking={masking})`") + if kwargs: + raise ValueError("use '@register' to pass keywords") + return register(mask=["field"], demask=["field"], squeeze=["field"]) -def _getMaskingThresh(kwargs): +def processing(**kwargs): """ - Check the correct usage of the `to_mask` keyword, iff passed, otherwise return a default. + Default decorator for univariate processing functions. - Parameters - ---------- - kwargs : dict - The kwargs that will be passed to the saqc-function, possibly contain ``to_mask``. - - Returns - ------- - threshold: float - All data gets masked, if the flags are equal or worse than the threshold. + - no masking of data + - no demasking of data + - no squeezing of flags Notes ----- - If ``to_mask`` is **not** in the kwargs, the threshold defaults to - - ``-np.inf`` - If boolean ``to_mask`` is found in the kwargs, the threshold defaults to - - ``-np.inf``, if ``True`` - - ``+np.inf``, if ``False`` - If a floatish ``to_mask`` is found in the kwargs, this value is taken as the threshold. - """ - if "to_mask" not in kwargs: - return UNFLAGGED - - thresh = kwargs["to_mask"] + For full control over masking, demasking and squeezing or to implement + a multivariate function (multiple in- or outputs) use the `@register` decorator. - if not isinstance(thresh, (bool, float, int)): - raise TypeError(f"'to_mask' must be of type bool or float") - - if thresh is True: # masking ON - thresh = UNFLAGGED - - if thresh is False: # masking OFF - thresh = np.inf - - thresh = float(thresh) # handle int - - return thresh + See Also + -------- + resister: generalization of of this function + """ + if kwargs: + raise ValueError("use '@register' to pass keywords") + return register(mask=[], demask=[], squeeze=[]) -def _isflagged( - flagscol: Union[np.array, pd.Series], thresh: float -) -> Union[np.array, pd.Series]: +def _isflagged(flagscol: np.ndarray | pd.Series, thresh: float) -> np.array | pd.Series: """ Return a mask of flags accordingly to `thresh`. Return type is same as flags. """ - if thresh == UNFLAGGED: + if not isinstance(thresh, (float, int)): + raise TypeError(f"thresh must be of type float, not {repr(type(thresh))}") + + if thresh == FILTER_ALL: return flagscol > UNFLAGGED return flagscol >= thresh - - -def _restoreFlags(flags: Flags, old_state: CallState): - """ - Generate flags from the temporary result-flags and the original flags. - - Parameters - ---------- - flags : Flags - The flags-frame, which is the result from a saqc-function - - old_state : CallState - The state before the saqc-function was called - - Returns - ------- - Flags - """ - out = old_state.flags.copy() - meta = { - "func": old_state.func_name, - "args": old_state.args, - "keywords": old_state.kwargs, - } - new_columns = flags.columns.difference(old_state.flags.columns) - - # masking == 'none' - # - no data was masked (no relevance here, but help understanding) - # - the saqc-function got a copy of the whole flags frame with all full histories - # (but is not allowed to change them; we have -> @processing for this case) - # - the saqc-function appended none or some columns to each history - # - # masking == 'all' - # - all data was masked by flags (no relevance here, but help understanding) - # - the saqc-function got a complete new flags frame, with empty Histories - # - the saqc-function appended none or some columns to the each history - # - # masking == 'field' - # - the column `field` was masked by flags (no relevance here) - # - the saqc-function got a complete new flags frame, with empty `History`s - # - the saqc-function appended none or some columns to none or some `History`s - # - # NOTE: - # Actually the flags SHOULD have been cleared only at the `field` (as the - # masking-parameter implies) but the current implementation in `_prepareFlags` - # clears all columns. Nevertheless the following code only update the `field` - # (and new columns) and not all columns. - - if old_state.masking in ("none", "all"): - columns = flags.columns - else: # field - columns = pd.Index([old_state.field]) - - for col in columns.union(new_columns): - - if col not in out: # ensure existence - out.history[col] = History(index=flags.history[col].index) - - old_history = out.history[col] - new_history = flags.history[col] - - # We only want to add new columns, that were appended during the last function - # call. If no such columns exist, we end up with an empty new_history. - start = len(old_history.columns) - new_history = _sliceHistory(new_history, slice(start, None)) - - # NOTE: - # Nothing to update -> i.e. a function did not set any flags at all. - # This has implications for function writers: early returns out of - # functions before `flags.__getitem__` was called once, make the - # function call invisable to the flags/history machinery and likely - # break translation schemes such as the `PositionalTranslator` - if new_history.empty: - continue - - squeezed = new_history.max(raw=True) - out.history[col] = out.history[col].append(squeezed, meta=meta) - - return out - - -def _maskData( - data: dios.DictOfSeries, flags: Flags, columns: Sequence[str], thresh: float -) -> Tuple[dios.DictOfSeries, dios.DictOfSeries]: - """ - Mask data with Nans, if the flags are worse than a threshold. - - mask only passed `columns` (preselected by `masking`-kw from decorator) - - Returns - ------- - masked : dios.DictOfSeries - masked data, same dim as original - mask : dios.DictOfSeries - dios holding iloc-data-pairs for every column in `data` - """ - mask = dios.DictOfSeries(columns=columns) - - # we use numpy here because it is faster - for c in columns: - col_mask = _isflagged(flags[c].to_numpy(), thresh) - - if col_mask.any(): - col_data = data[c].to_numpy(dtype=np.float64) - - mask[c] = pd.Series(col_data[col_mask], index=np.where(col_mask)[0]) - - col_data[col_mask] = np.nan - data[c] = col_data - - return data, mask - - -def _unmaskData(data: dios.DictOfSeries, old_state: CallState) -> dios.DictOfSeries: - """ - Restore the masked data. - - Notes - ----- - Even if this returns data, it work inplace ! - """ - if old_state.masking == "none": - return data - - # we have two options to implement this: - # - # ================================= - # set new data on old - # ================================= - # col in old, in masked, in new: - # index differ : old <- new (replace column) - # else : old <- new (set on masked: ``old[masked & new.notna()] = new``) - # col in new only : old <- new (create column) - # col in old only : old (delete column) - # - # - # ================================= - # set old data on new (implemented) - # ================================= - # col in old, in masked, in new : - # index differ : new (keep column) - # else : new <- old (set on masked, ``new[masked & new.isna()] = old``) - # col in new only : new (keep column) - # col in old only : new (ignore, was deleted) - - columns = old_state.mask.columns.intersection( - data.columns - ) # in old, in masked, in new - - for c in columns: - - # ignore - if data[c].empty or old_state.mask[c].empty: - continue - - # get the positions of values to unmask - candidates = old_state.mask[c] - # if the mask was removed during the function call, don't replace - unmask = candidates[data[c].iloc[candidates.index].isna().to_numpy()] - if unmask.empty: - continue - data[c].iloc[unmask.index] = unmask - - return data - - -def _sliceHistory(history: History, sl: slice) -> History: - history.hist = history.hist.iloc[:, sl] - history.meta = history.meta[sl] - return history diff --git a/saqc/core/translation/__init__.py b/saqc/core/translation/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b5acd9cf759f5ab036c86d275404c9ee44efed36 --- /dev/null +++ b/saqc/core/translation/__init__.py @@ -0,0 +1,9 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- +from saqc.core.translation.basescheme import ( + TranslationScheme, + FloatScheme, + SimpleScheme, +) +from saqc.core.translation.positionalscheme import PositionalScheme +from saqc.core.translation.dmpscheme import DmpScheme diff --git a/saqc/core/translator/basetranslator.py b/saqc/core/translation/basescheme.py similarity index 88% rename from saqc/core/translator/basetranslator.py rename to saqc/core/translation/basescheme.py index b6bec9146327a4372be7dd19e8f3312d5de22f39..ecfeff35f07c511a353e0450394416a0abed11d6 100644 --- a/saqc/core/translator/basetranslator.py +++ b/saqc/core/translation/basescheme.py @@ -9,14 +9,14 @@ import numpy as np import pandas as pd from dios import DictOfSeries - -from saqc.core.flags import ( - Flags, +from saqc.constants import ( + FILTER_ALL, UNFLAGGED, - UNTOUCHED, BAD, GOOD, ) + +from saqc.core.flags import Flags from saqc.lib.types import ExternalFlag @@ -24,7 +24,7 @@ ForwardMap = Dict[ExternalFlag, float] BackwardMap = Dict[float, ExternalFlag] -class Translator: +class TranslationScheme: """ This class provides the basic translation mechanism and should serve as a base class for every other translation scheme. @@ -49,7 +49,7 @@ class Translator: """ # (internal) threshold flag above which values will be masked - TO_MASK: Union[float, bool] = True + DFILTER_DEFAULT: float = FILTER_ALL # additional arguments and default values the translation scheme accepts ARGUMENTS: Dict[str, Any] = {} @@ -71,7 +71,8 @@ class Translator: """ if UNFLAGGED not in backward or BAD not in backward: raise ValueError( - f"need translations for the special flags `UNFLAGGED` ({UNFLAGGED}) and `BAD` ({BAD})" + f"need translations for the special flags `UNFLAGGED` ({UNFLAGGED})" + f" and `BAD` ({BAD})" ) self._forward = forward self._backward = backward @@ -143,7 +144,11 @@ class Translator: return Flags(self._translate(flags, self._forward)) def backward( - self, flags: Flags, raw: bool = False + self, + flags: Flags, + raw: bool = False, + attrs: dict | None = None, + **kwargs, ) -> Union[pd.DataFrame, DictOfSeries]: """ Translate from 'internal flags' to 'external flags' @@ -153,17 +158,24 @@ class Translator: flags : pd.DataFrame The external flags to translate + raw: bool, default False + if True return data as DictOfSeries, otherwise as pandas DataFrame. + + attrs : dict or None, default None + global meta information of saqc-object + Returns ------- pd.DataFrame """ out = self._translate(flags, self._backward) + out.attrs = attrs or {} if not raw: out = out.to_df() return out -class FloatTranslator(Translator): +class FloatScheme(TranslationScheme): """ Acts as the default Translator, provides a changeable subset of the @@ -179,7 +191,7 @@ class FloatTranslator(Translator): super().__init__(self._MAP, self._MAP) -class SimpleTranslator(Translator): +class SimpleScheme(TranslationScheme): """ Acts as the default Translator, provides a changeable subset of the @@ -187,14 +199,14 @@ class SimpleTranslator(Translator): """ _FORWARD = { - "UNFLAGGED": -np.inf, + "UNFLAGGED": UNFLAGGED, "BAD": BAD, "OK": GOOD, } _BACKWARD = { UNFLAGGED: "UNFLAGGED", - UNTOUCHED: "UNFLAGGED", + np.nan: "UNFLAGGED", BAD: "BAD", GOOD: "OK", } diff --git a/saqc/core/translator/dmptranslator.py b/saqc/core/translation/dmpscheme.py similarity index 89% rename from saqc/core/translator/dmptranslator.py rename to saqc/core/translation/dmpscheme.py index 8544a770e197f34e56daca88e54eb30f752baf50..aefad4018dc4c2c13ebff6ddbfb4482980b2abf6 100644 --- a/saqc/core/translator/dmptranslator.py +++ b/saqc/core/translation/dmpscheme.py @@ -14,12 +14,15 @@ from saqc.core.history import History from saqc.core.flags import ( Flags, UNFLAGGED, - UNTOUCHED, GOOD, DOUBTFUL, BAD, ) -from saqc.core.translator.basetranslator import BackwardMap, Translator, ForwardMap +from saqc.core.translation.basescheme import ( + BackwardMap, + TranslationScheme, + ForwardMap, +) _QUALITY_CAUSES = [ @@ -43,7 +46,7 @@ _QUALITY_LABELS = [ ] -class DmpTranslator(Translator): +class DmpScheme(TranslationScheme): """ Implements the translation from and to the flagging scheme implemented in @@ -61,7 +64,7 @@ class DmpTranslator(Translator): _BACKWARD: BackwardMap = { UNFLAGGED: "NIL", - UNTOUCHED: "NIL", + np.nan: "NIL", GOOD: "OK", DOUBTFUL: "DOUBTFUL", BAD: "BAD", @@ -99,12 +102,12 @@ class DmpTranslator(Translator): except json.decoder.JSONDecodeError: comment = {"test": "unknown", "comment": ""} - histcol = pd.Series(UNTOUCHED, index=field_flags.index) + histcol = pd.Series(np.nan, index=field_flags.index) histcol.loc[values.index] = self(flag) meta = { "func": comment["test"], - "keywords": {"comment": comment["comment"], "cause": cause}, + "kwargs": {"comment": comment["comment"], "cause": cause}, } field_history.append(histcol, meta=meta) @@ -112,7 +115,9 @@ class DmpTranslator(Translator): return Flags(data) - def backward(self, flags: Flags) -> pd.DataFrame: + def backward( + self, flags: Flags, attrs: dict | None = None, **kwargs + ) -> pd.DataFrame: """ Translate from 'internal flags' to 'external flags' @@ -120,11 +125,14 @@ class DmpTranslator(Translator): ---------- flags : The external flags to translate + attrs : dict or None, default None + global meta information of saqc-object + Returns ------- translated flags """ - tflags = super().backward(flags, raw=True) + tflags = super().backward(flags, raw=True, attrs=attrs) out = pd.DataFrame( index=reduce(lambda x, y: x.union(y), tflags.indexes).sort_values(), @@ -148,7 +156,7 @@ class DmpTranslator(Translator): # extract from meta meta = history.meta[col] - keywords = meta.get("keywords", {}) + keywords = meta.get("kwargs", {}) comment = json.dumps( { "test": meta.get("func", "unknown"), diff --git a/saqc/core/translator/positionaltranslator.py b/saqc/core/translation/positionalscheme.py similarity index 89% rename from saqc/core/translator/positionaltranslator.py rename to saqc/core/translation/positionalscheme.py index 9a8f085f8c4f522726331a049cf48f4078f7392b..d2e7623dad980c5011c6c3d7c548276c19fe4064 100644 --- a/saqc/core/translator/positionaltranslator.py +++ b/saqc/core/translation/positionalscheme.py @@ -8,22 +8,25 @@ import pandas as pd from saqc.core.flags import ( Flags, History, - UNTOUCHED, UNFLAGGED, GOOD, DOUBTFUL, BAD, ) -from saqc.core.translator.basetranslator import Translator, ForwardMap, BackwardMap +from saqc.core.translation.basescheme import ( + TranslationScheme, + ForwardMap, + BackwardMap, +) -class PositionalTranslator(Translator): +class PositionalScheme(TranslationScheme): """ Implements the translation from and to the flagging scheme implemented by CHS """ - TO_MASK = DOUBTFUL + 1 + DFILTER_DEFAULT = DOUBTFUL + 1 _FORWARD: ForwardMap = { -6: UNFLAGGED, @@ -34,7 +37,7 @@ class PositionalTranslator(Translator): 2: BAD, } _BACKWARD: BackwardMap = { - UNTOUCHED: 0, + np.nan: 0, UNFLAGGED: 0, GOOD: 0, DOUBTFUL: 1, @@ -76,7 +79,7 @@ class PositionalTranslator(Translator): return Flags(data) - def backward(self, flags: Flags) -> pd.DataFrame: + def backward(self, flags: Flags, **kwargs) -> pd.DataFrame: """ Translate from 'internal flags' to 'external flags' diff --git a/saqc/core/translator/__init__.py b/saqc/core/translator/__init__.py deleted file mode 100644 index 17a0490bb274c77fd847a11cde24a80efd3ca020..0000000000000000000000000000000000000000 --- a/saqc/core/translator/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -#! /usr/bin/env python -# -*- coding: utf-8 -*- -from saqc.core.translator.basetranslator import ( - Translator, - FloatTranslator, - SimpleTranslator, -) -from saqc.core.translator.positionaltranslator import PositionalTranslator -from saqc.core.translator.dmptranslator import DmpTranslator diff --git a/saqc/core/visitor.py b/saqc/core/visitor.py index e4b768f4d0b427e55b03831a7fafddffa4da4e18..1ec26b48817f9e5e7e3bff9a87858c5dafb560aa 100644 --- a/saqc/core/visitor.py +++ b/saqc/core/visitor.py @@ -2,59 +2,21 @@ # -*- coding: utf-8 -*- import ast -import numpy as np -import pandas as pd -from saqc.constants import * +from saqc.constants import ENVIRONMENT from saqc.core.register import FUNC_MAP -import saqc.lib.ts_operators as ts_ops - - -ENVIRONMENT = { - "NAN": np.nan, - "abs": np.abs, - "max": np.nanmax, - "min": np.nanmin, - "mean": np.nanmean, - "sum": np.nansum, - "std": np.nanstd, - "len": len, - "exp": np.exp, - "log": np.log, - "var": np.nanvar, - "median": np.nanmedian, - "first": ts_ops.first, - "last": ts_ops.last, - "count": ts_ops.count, - "deltaT": ts_ops.deltaT, - "id": ts_ops.identity, - "diff": ts_ops.difference, - "relDiff": ts_ops.relativeDifference, - "deriv": ts_ops.derivative, - "rateOfChange": ts_ops.rateOfChange, - "scale": ts_ops.scale, - "normScale": ts_ops.normScale, - "meanStandardize": ts_ops.standardizeByMean, - "medianStandardize": ts_ops.standardizeByMedian, - "zLog": ts_ops.zeroLog, -} - -# TODO: -# get from saqc.constants -RESERVED = {"GOOD", "BAD", "UNFLAGGED"} class ConfigExpressionParser(ast.NodeVisitor): """ Generic configuration functions will be rewritten as lambda functions - and variables that need a look up in `data` will act as arguments, e.g.: - `flagGeneric(func=(x != 4) & (y < 3))` - will be rewritten to - `lambda x, y: (x != 4) & (y < 3)` - - The main purpose of this class is to identify all such lambda arguments - and check the given expression for accordance with the restrictions - imposed onto generic functions. + and all defined variables will act as arguments, e.g.: + ``flagGeneric(func=(x != 4) & (y < 3))`` will be rewritten to + ``lambda x, y: (x != 4) & (y < 3)`` + + The main purpose of this class is to identify all variables used in + a given generic function and to check that it does not violate the + restrictions imposed onto generic functions. """ SUPPORTED = ( @@ -88,11 +50,6 @@ class ConfigExpressionParser(ast.NodeVisitor): def __init__(self, node): self._args = [] self.visit(node) - if not self._args: - # NOTE: - # we assume, that we are not dealing with an - # expression as we couldn't find any arguments - raise TypeError("not a valid expression") @property def args(self): @@ -106,10 +63,9 @@ class ConfigExpressionParser(ast.NodeVisitor): def visit_Name(self, node): # NOTE: - # the assumption is, that anything not in - # ENVIRONMENT + RESERVED needs a lookup in `data` + # anything not in ENVIRONMENT should be an argument of the generic function name = node.id - if name not in ENVIRONMENT and name not in RESERVED: + if name not in ENVIRONMENT: self._args.append(name) self.generic_visit(node) @@ -139,20 +95,14 @@ class ConfigFunctionParser(ast.NodeVisitor): ) def __init__(self): - self.kwargs = {} - self.environment = { - "GOOD": GOOD, - "BAD": BAD, - "UNFLAGGED": UNFLAGGED, - **ENVIRONMENT, - } def parse(self, node): func = self.visit_Call(node) return func, self.kwargs def visit_Call(self, node): + if not isinstance(node, ast.Call): raise TypeError("expected function call") @@ -172,13 +122,11 @@ class ConfigFunctionParser(ast.NodeVisitor): def visit_keyword(self, node): - k, v = node.arg, node.value + key, value = node.arg, node.value check_tree = True - # NOTE: `node` is not a constant or a variable, - # so it should be a function call - try: - visitor = ConfigExpressionParser(v) + if key == "func": + visitor = ConfigExpressionParser(value) args = ast.arguments( posonlyargs=[], kwonlyargs=[], @@ -188,34 +136,33 @@ class ConfigFunctionParser(ast.NodeVisitor): kwarg=None, vararg=None, ) - v = ast.Lambda(args=args, body=v) + value = ast.Lambda(args=args, body=value) # NOTE: # don't pass the generated functions down # to the checks implemented in this class... check_tree = False - except TypeError: - pass - vnode = ast.Assign(targets=[ast.Name(id=k, ctx=ast.Store())], value=v) + vnode = ast.Assign(targets=[ast.Name(id=key, ctx=ast.Store())], value=value) # NOTE: # in order to get concrete values out of the AST - # we compile and evaluate the keyword (e.g. max=100) + # we compile and evaluate every keyword (e.g. max=100) # into the dictionary `self.kwargs` # -> after all keywords where visited we end up with - # a dictionary holding all the passed arguments as - # real python objects + # a dictionary holding all the passed arguments as + # real python objects co = compile( ast.fix_missing_locations(ast.Interactive(body=[vnode])), "<ast>", mode="single", ) - # NOTE: only pass a copy to not clutter the self.environment - exec(co, {**self.environment}, self.kwargs) + # NOTE: only pass a copy to not clutter the ENVIRONMENT + # try: + exec(co, {**ENVIRONMENT}, self.kwargs) # let's do some more validity checks if check_tree: - self.generic_visit(v) + self.generic_visit(value) def generic_visit(self, node): if not isinstance(node, self.SUPPORTED_NODES): diff --git a/saqc/funcs/__init__.py b/saqc/funcs/__init__.py index 006f061ab0cd5bbd2110d69906a5f05ef59c7c99..d4fabccfc98765f48221838d54f21f9db73f5301 100644 --- a/saqc/funcs/__init__.py +++ b/saqc/funcs/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # imports needed to make the functions register themself -from saqc.core.register import flagging +from saqc.core.register import register from saqc.funcs.breaks import * from saqc.funcs.changepoints import * from saqc.funcs.constants import * diff --git a/saqc/funcs/breaks.py b/saqc/funcs/breaks.py index e139b886153ddc0e4a52ef7510a4f32f4402b96b..92da3e89a6b4d0b4ff4a17260df9c1ee5e230c34 100644 --- a/saqc/funcs/breaks.py +++ b/saqc/funcs/breaks.py @@ -18,24 +18,20 @@ from dios import DictOfSeries from saqc.constants import * from saqc.lib.tools import groupConsecutives -from saqc.lib.types import FreqString -from saqc.funcs.changepoints import assignChangePointCluster +from saqc.funcs.changepoints import _assignChangePointCluster from saqc.core.flags import Flags from saqc.core.history import History -from saqc.core.register import _isflagged, flagging +from saqc.core.register import _isflagged, register, flagging -# NOTE: -# masking="none" as we otherwise might interprete -# the masked values as missing data -@flagging(masking="none") +@register(mask=[], demask=[], squeeze=["field"]) def flagMissing( data: DictOfSeries, field: str, flags: Flags, flag: float = BAD, - to_mask: float = UNFLAGGED, - **kwargs + dfilter: float = FILTER_ALL, + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ The function flags all values indicating missing data. @@ -62,21 +58,21 @@ def flagMissing( datacol = data[field] mask = datacol.isna() - mask = ~_isflagged(flags[field], to_mask) & mask + mask = ~_isflagged(flags[field], dfilter) & mask flags[mask, field] = flag return data, flags -@flagging(masking="field") +@flagging() def flagIsolated( data: DictOfSeries, field: str, flags: Flags, - gap_window: FreqString, - group_window: FreqString, + gap_window: str, + group_window: str, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ The function flags arbitrary large groups of values, if they are surrounded by sufficiently @@ -147,19 +143,19 @@ def flagIsolated( return data, flags -@flagging(masking="field") +@flagging() def flagJumps( data: DictOfSeries, field: str, flags: Flags, thresh: float, - window: FreqString, + window: str, min_periods: int = 1, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - Flag datapoints, where the mean of the values significantly changes (where the value course "jumps"). + Flag where the mean of the values significantly changes (the data "jumps"). Parameters ---------- @@ -180,7 +176,7 @@ def flagJumps( flag : float, default BAD flag to set. """ - return assignChangePointCluster( + return _assignChangePointCluster( data, field, flags, @@ -192,5 +188,5 @@ def flagJumps( model_by_resids=False, assign_cluster=False, flag=flag, - **kwargs + **kwargs, ) diff --git a/saqc/funcs/changepoints.py b/saqc/funcs/changepoints.py index 58af0ad4c1f54e2eb053271c08ed76e933e04a4a..1cd87eff083fcb3cfaaaa4b22305a2dc944f28bb 100644 --- a/saqc/funcs/changepoints.py +++ b/saqc/funcs/changepoints.py @@ -12,22 +12,22 @@ from typing_extensions import Literal from dios import DictOfSeries from saqc.constants import * -from saqc.lib.tools import customRoller -from saqc.core import flagging, Flags -from saqc.lib.types import FreqString +from saqc.core.register import flagging +from saqc.lib.tools import customRoller, filterKwargs +from saqc.core import register, Flags -@flagging(masking="field") +@flagging() def flagChangePoints( data: DictOfSeries, field: str, flags: Flags, stat_func: Callable[[np.ndarray, np.ndarray], float], thresh_func: Callable[[np.ndarray, np.ndarray], float], - window: FreqString | Tuple[FreqString, FreqString], + window: str | Tuple[str, str], min_periods: int | Tuple[int, int], closed: Literal["right", "left", "both", "neither"] = "both", - reduce_window: FreqString = None, + reduce_window: str = None, reduce_func: Callable[[np.ndarray, np.ndarray], int] = lambda x, _: x.argmax(), flag: float = BAD, **kwargs, @@ -93,7 +93,7 @@ def flagChangePoints( Returns ------- """ - return assignChangePointCluster( + return _assignChangePointCluster( data, field, flags, @@ -112,7 +112,7 @@ def flagChangePoints( ) -@flagging(masking="field") +@register(mask=["field"], demask=[], squeeze=[]) def assignChangePointCluster( data: DictOfSeries, field: str, @@ -125,18 +125,15 @@ def assignChangePointCluster( reduce_window: str = None, reduce_func: Callable[[np.ndarray, np.ndarray], float] = lambda x, _: x.argmax(), model_by_resids: bool = False, - set_flags: bool = False, - assign_cluster: bool = True, - flag: float = BAD, **kwargs, -) -> Tuple[DictOfSeries, Flags]: +): """ - Assigns label to the data, aiming to reflect continous regimes of the processes the data is assumed to be - generated by. - The regime change points detection is based on a sliding window search. + Assigns label to the data, aiming to reflect continuous regimes of the processes + the data is assumed to be generated by. The regime change points detection is + based on a sliding window search. - Note, that the cluster labels will be stored to the `field` field of the input data, so that the data that is - clustered gets overridden. + Note, that the cluster labels will be stored to the `field` field of the input + data, so that the data that is clustered gets overridden. Parameters ---------- @@ -150,12 +147,13 @@ def assignChangePointCluster( A flags object, holding flags and additional informations related to `data`. stat_func : Callable[[numpy.array, numpy.array], float] - A function that assigns a value to every twin window. Left window content will be passed to first variable, + A function that assigns a value to every twin window. Left window content will + be passed to first variable, right window content will be passed to the second. thresh_func : Callable[numpy.array, numpy.array], float] - A function that determines the value level, exceeding wich qualifies a timestamps func func value as denoting a - changepoint. + A function that determines the value level, exceeding wich qualifies a + timestamps func func value as denoting a changepoint. window : str, tuple of string Size of the rolling windows the calculation is performed in. If it is a single @@ -173,35 +171,65 @@ def assignChangePointCluster( Determines the closure of the sliding windows. reduce_window : {None, str}, default None - The sliding window search method is not an exact CP search method and usually there wont be - detected a single changepoint, but a "region" of change around a changepoint. - If `reduce_window` is given, for every window of size `reduce_window`, there - will be selected the value with index `reduce_func(x, y)` and the others will be dropped. - If `reduce_window` is None, the reduction window size equals the - twin window size, the changepoints have been detected with. - - reduce_func : Callable[[numpy.array, numpy.array], numpy.array], default lambda x, y: x.argmax() + The sliding window search method is not an exact CP search method and usually + there wont be detected a single changepoint, but a "region" of change around + a changepoint. If `reduce_window` is given, for every window of size + `reduce_window`, there will be selected the value with index `reduce_func(x, + y)` and the others will be dropped. If `reduce_window` is None, the reduction + window size equals the twin window size, the changepoints have been detected + with. + + reduce_func : callable, default lambda x,y: x.argmax() A function that must return an index value upon input of two arrays x and y. - First input parameter will hold the result from the stat_func evaluation for every - reduction window. Second input parameter holds the result from the thresh_func evaluation. - The default reduction function just selects the value that maximizes the stat_func. - - set_flags : bool, default False - If true, the points, where there is a change in data modelling regime detected gets flagged. + First input parameter will hold the result from the stat_func evaluation for + every reduction window. Second input parameter holds the result from the + thresh_func evaluation. The default reduction function just selects the value + that maximizes the stat_func. model_by_resids : bool, default False - If True, the data is replaced by the stat_funcs results instead of regime labels. - - assign_cluster : bool, default True - Is set to False, if called by function that oly wants to calculate flags. - - flag : float, default BAD - flag to set. + If True, the stat_funcs results are written, otherwise the regime labels. Returns ------- """ - data = data.copy() + reserved = ["assign_cluster", "set_flags", "flag"] + kwargs = filterKwargs(kwargs, reserved) + return _assignChangePointCluster( + data=data, + field=field, + flags=flags, + stat_func=stat_func, + thresh_func=thresh_func, + window=window, + min_periods=min_periods, + closed=closed, + reduce_window=reduce_window, + reduce_func=reduce_func, + model_by_resids=model_by_resids, + **kwargs, + # control args + assign_cluster=True, + set_flags=False, + ) + + +def _assignChangePointCluster( + data: DictOfSeries, + field: str, + flags: Flags, + stat_func: Callable[[np.array, np.array], float], + thresh_func: Callable[[np.array, np.array], float], + window: str | Tuple[str, str], + min_periods: int | Tuple[int, int], + closed: Literal["right", "left", "both", "neither"] = "both", + reduce_window: str = None, + reduce_func: Callable[[np.ndarray, np.ndarray], float] = lambda x, _: x.argmax(), + model_by_resids: bool = False, + set_flags: bool = False, + assign_cluster: bool = True, + flag: float = BAD, + **kwargs, +) -> Tuple[DictOfSeries, Flags]: data_ser = data[field].dropna() if isinstance(window, (list, tuple)): bwd_window, fwd_window = window @@ -220,12 +248,14 @@ def assignChangePointCluster( ) reduce_window = f"{s}s" - roller = customRoller(data_ser, window=bwd_window) + roller = customRoller(data_ser, window=bwd_window, min_periods=bwd_min_periods) bwd_start, bwd_end = roller.window_indexer.get_window_bounds( len(data_ser), min_periods=bwd_min_periods, closed=closed ) - roller = customRoller(data_ser, window=fwd_window, forward=True) + roller = customRoller( + data_ser, window=fwd_window, forward=True, min_periods=fwd_min_periods + ) fwd_start, fwd_end = roller.window_indexer.get_window_bounds( len(data_ser), min_periods=fwd_min_periods, closed=closed ) @@ -272,7 +302,7 @@ def assignChangePointCluster( detected = pd.Series(True, index=det_index) if reduce_window: l = detected.shape[0] - roller = customRoller(detected, window=reduce_window) + roller = customRoller(detected, window=reduce_window, min_periods=1) start, end = roller.window_indexer.get_window_bounds( num_values=l, min_periods=1, closed="both", center=True ) diff --git a/saqc/funcs/constants.py b/saqc/funcs/constants.py index 395f0c808dc21e01557d104696e2219d99e9def1..18bf035497c79cbfc708f29753803707af0b5245 100644 --- a/saqc/funcs/constants.py +++ b/saqc/funcs/constants.py @@ -11,21 +11,21 @@ import operator from dios import DictOfSeries from saqc.constants import * -from saqc.core import flagging, Flags +from saqc.core import register, Flags +from saqc.core.register import flagging from saqc.lib.ts_operators import varQC from saqc.lib.tools import customRoller, getFreqDelta, statPass -from saqc.lib.types import FreqString -@flagging(masking="field") +@flagging() def flagConstants( data: DictOfSeries, field: str, flags: Flags, thresh: float, - window: FreqString, + window: str, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ This functions flags plateaus/series of constant values of length `window` if @@ -34,7 +34,7 @@ def flagConstants( Function flags plateaus/series of constant values. Any interval of values y(t),..y(t+n) is flagged, if: (1) n > `window` - (2) |(y(t + i) - (t + j)| < `thresh`, for all i,j in [0, 1, ..., n] + (2) `|(y(t + i) - (t + j)|` < `thresh`, for all i,j in [0, 1, ..., n] Flag values are (semi-)constant. @@ -61,8 +61,6 @@ def flagConstants( The flags object, holding flags and additional informations related to `data`. Flags values may have changed, relatively to the flags input. """ - if not isinstance(window, str): - raise TypeError("window must be offset string.") d = data[field] # min_periods=2 ensures that at least two non-nan values are present @@ -81,17 +79,17 @@ def flagConstants( return data, flags -@flagging(masking="field") +@flagging() def flagByVariance( data: DictOfSeries, field: str, flags: Flags, - window: FreqString = "12h", + window: str = "12h", thresh: float = 0.0005, maxna: int = None, maxna_group: int = None, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Function flags plateaus/series of constant values. Any interval of values y(t),..y(t+n) is flagged, if: diff --git a/saqc/funcs/curvefit.py b/saqc/funcs/curvefit.py index c29d2bbb4afda3ace36e582c53df0a333baa13b1..a49cf98eb1e3b7df85c56fa7dc3fe6312d509999 100644 --- a/saqc/funcs/curvefit.py +++ b/saqc/funcs/curvefit.py @@ -9,8 +9,8 @@ import pandas as pd from dios import DictOfSeries from saqc.constants import * -from saqc.core import flagging, Flags -from saqc.lib.tools import getFreqDelta +from saqc.core import register, Flags +from saqc.lib.tools import getFreqDelta, filterKwargs from saqc.lib.ts_operators import ( polyRollerIrregular, polyRollerNumba, @@ -20,85 +20,103 @@ from saqc.lib.ts_operators import ( ) -@flagging(masking="field") +@register(mask=["field"], demask=[], squeeze=[]) def fitPolynomial( data: DictOfSeries, field: str, flags: Flags, window: Union[int, str], order: int, - set_flags: bool = True, min_periods: int = 0, - return_residues: bool = False, - flag: float = BAD, **kwargs ) -> Tuple[DictOfSeries, Flags]: """ - Function fits a polynomial model to the data and returns the fitted data curve. + Fits a polynomial model to the data. The fit is calculated by fitting a polynomial of degree `order` to a data slice of size `window`, that has x at its center. - Note, that the resulting fit is stored to the `field` field of the input data, so that the original data, the - polynomial is fitted to, gets overridden. - - Note, that, if data[field] is not alligned to an equidistant frequency grid, the window size passed, - has to be an offset string. - - Note, that calculating the residues tends to be quite costy, because a function fitting is perfomed for every - sample. To improve performance, consider the following possibillities: + Note that the result is stored in `field` and overwrite it unless a + `target` is given. In case your data is sampled at an equidistant frequency grid: - (1) If you know your data to have no significant number of missing values, or if you do not want to - calculate residues for windows containing missing values any way, performance can be increased by setting - min_periods=window. + (1) If you know your data to have no significant number of missing values, + or if you do not want to calculate residues for windows containing missing values + any way, performance can be increased by setting min_periods=window. + + Note, that the initial and final window/2 values do not get fitted. - Note, that in the current implementation, the initial and final window/2 values do not get fitted. + Each residual gets assigned the worst flag present in the interval of + the original data. Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data. + field : str - The fieldname of the column, holding the data-to-be-modelled. + The column, holding the data-to-be-modelled. + flags : saqc.Flags Container to store quality flags to data. + window : {str, int} - The size of the window you want to use for fitting. If an integer is passed, the size - refers to the number of periods for every fitting window. If an offset string is passed, - the size refers to the total temporal extension. The window will be centered around the vaule-to-be-fitted. - For regularly sampled timeseries the period number will be casted down to an odd number if - even. + The size of the window you want to use for fitting. If an integer is passed, + the size refers to the number of periods for every fitting window. If an + offset string is passed, the size refers to the total temporal extension. The + window will be centered around the vaule-to-be-fitted. For regularly sampled + timeseries the period number will be casted down to an odd number if even. + order : int The degree of the polynomial used for fitting - set_flags : bool, default True - Whether or not to assign new flags to the calculated residuals. If True, a residual gets assigned the worst - flag present in the interval, the data for its calculation was obtained from. - min_periods : {int, None}, default 0 - The minimum number of periods, that has to be available in every values fitting surrounding for the polynomial - fit to be performed. If there are not enough values, np.nan gets assigned. Default (0) results in fitting - regardless of the number of values present (results in overfitting for too sparse intervals). To automatically - set the minimum number of periods to the number of values in an offset defined window size, pass np.nan. - return_residues : bool, default False - Internal parameter. Makes the method return the residues instead of the fit. - flag : float, default BAD - flag to set. + + min_periods : int or None, default 0 + The minimum number of periods, that has to be available in every values + fitting surrounding for the polynomial fit to be performed. If there are not + enough values, np.nan gets assigned. Default (0) results in fitting + regardless of the number of values present (results in overfitting for too + sparse intervals). To automatically set the minimum number of periods to the + number of values in an offset defined window size, pass np.nan. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. - Data values may have changed relatively to the data input. flags : saqc.Flags - The quality flags of data """ - # TODO: some (rater large) parts are functional similar to saqc.funcs.rolling.roll + reserved = ["residues", "set_flags"] + filterKwargs(kwargs, reserved) + return _fitPolynomial( + data=data, + field=field, + flags=flags, + window=window, + order=order, + min_periods=min_periods, + **kwargs, + # ctrl args + return_residues=False, + set_flags=True, + ) + + +def _fitPolynomial( + data: DictOfSeries, + field: str, + flags: Flags, + window: Union[int, str], + order: int, + set_flags: bool = True, + min_periods: int = 0, + return_residues: bool = False, + **kwargs +) -> Tuple[DictOfSeries, Flags]: + + # TODO: some (rather large) parts are functional similar to saqc.funcs.rolling.roll if data[field].empty: - flags[:, field] = UNTOUCHED return data, flags - data = data.copy() - to_fit = data[field] + + to_fit = data[field].copy() regular = getFreqDelta(to_fit.index) if not regular: if isinstance(window, int): @@ -166,7 +184,8 @@ def fitPolynomial( engine="numba", engine_kwargs={"no_python": True}, ) - # due to a tiny bug - rolling with center=True doesnt work when using numba engine. + # due to a tiny bug - rolling with center=True doesnt work + # when using numba engine. residues = residues.shift(-int(center_index)) else: residues = to_fit.rolling(window, center=True).apply( @@ -185,7 +204,8 @@ def fitPolynomial( engine_kwargs={"no_python": True}, raw=True, ) - # due to a tiny bug - rolling with center=True doesnt work when using numba engine. + # due to a tiny bug - rolling with center=True doesnt work + # when using numba engine. residues = residues.shift(-int(center_index)) else: residues = to_fit.rolling(window, center=True).apply( diff --git a/saqc/funcs/drift.py b/saqc/funcs/drift.py index 54e658eec8a00703a23ba18f88c84ad5e6abe81d..98a1c9e380cbddf41d93d6d8b051f2d788fccca2 100644 --- a/saqc/funcs/drift.py +++ b/saqc/funcs/drift.py @@ -1,39 +1,44 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import annotations +import functools from typing import Optional, Tuple, Sequence, Callable, Optional from typing_extensions import Literal import numpy as np import pandas as pd -import functools from scipy import stats from scipy.optimize import curve_fit from scipy.spatial.distance import pdist from dios import DictOfSeries -from saqc.constants import * -from saqc.core.register import flagging +from saqc.constants import BAD +from saqc.core.register import register, flagging from saqc.core import Flags -from saqc.funcs.changepoints import assignChangePointCluster +from saqc.funcs.changepoints import _assignChangePointCluster from saqc.funcs.tools import dropField, copyField -from saqc.lib.tools import detectDeviants -from saqc.lib.types import FreqString, CurveFitter + +from saqc.lib.tools import detectDeviants, toSequence, filterKwargs +from saqc.lib.ts_operators import linearDriftModel, expDriftModel +from saqc.lib.types import CurveFitter +from saqc.lib.ts_operators import linearDriftModel, expDriftModel LinkageString = Literal[ "single", "complete", "average", "weighted", "centroid", "median", "ward" ] +MODELDICT = {"linear": linearDriftModel, "exponential": expDriftModel} + -@flagging(masking="all") +@flagging() def flagDriftFromNorm( data: DictOfSeries, - field: str, + field: Sequence[str], flags: Flags, - fields: Sequence[str], - freq: FreqString, + freq: str, spread: float, frac: float = 0.5, metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( @@ -42,14 +47,14 @@ def flagDriftFromNorm( / len(x), method: LinkageString = "single", flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ The function flags value courses that significantly deviate from a group of normal value courses. "Normality" is determined in terms of a maximum spreading distance, that members of a normal group must not exceed. In addition, only a group is considered "normal" if it contains more then `frac` percent of the - variables in "fields". + variables in "field". See the Notes section for a more detailed presentation of the algorithm @@ -57,12 +62,10 @@ def flagDriftFromNorm( ---------- data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - A dummy parameter. + field : list of str + List of fieldnames in data, determining which variables are to be included into the flagging process. flags : saqc.Flags A flags object, holding flags and additional informations related to `data`. - fields : str - List of fieldnames in data, determining which variables are to be included into the flagging process. freq : str An offset string, determining the size of the seperate datachunks that the algorihm is to be piecewise applied on. @@ -99,12 +102,12 @@ def flagDriftFromNorm( following steps are performed for every data "segment" of length `freq` in order to find the "abnormal" data: - 1. Calculate the distances :math:`d(x_i,x_j)` for all :math:`x_i` in parameter `fields`. (with :math:`d` + 1. Calculate the distances :math:`d(x_i,x_j)` for all :math:`x_i` in parameter `field`. (with :math:`d` denoting the distance function passed to the parameter `metric`. 2. Calculate a dendogram with a hierarchical linkage algorithm, specified by the parameter `method`. 3. Flatten the dendogram at the level, the agglomeration costs exceed the value given by the parameter `spread` - 4. check if there is a cluster containing more than `frac` percentage of the variables in fields. + 4. check if there is a cluster containing more than `frac` percentage of the variables in field. 1. if yes: flag all the variables that are not in that cluster (inside the segment) 2. if no: flag nothing @@ -130,6 +133,7 @@ def flagDriftFromNorm( Introduction to Hierarchical clustering: [2] https://en.wikipedia.org/wiki/Hierarchical_clustering """ + fields = toSequence(field) data_to_flag = data[fields].to_df() data_to_flag.dropna(inplace=True) @@ -147,20 +151,28 @@ def flagDriftFromNorm( return data, flags -@flagging(masking="all") +# default multivariate flagging +@register( + mask=["field", "reference"], + demask=["field", "reference"], + squeeze=["field", "reference"], # reference is written ! + multivariate=True, + handles_target=True, +) def flagDriftFromReference( data: DictOfSeries, - field: str, + field: Sequence[str], flags: Flags, - fields: Sequence[str], - freq: FreqString, + reference: str, + freq: str, thresh: float, metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( np.array([x, y]), metric="cityblock" ) / len(x), + target=None, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ The function flags value courses that deviate from a reference course by a margin exceeding a certain threshold. @@ -171,12 +183,12 @@ def flagDriftFromReference( ---------- data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - The reference variable, the deviation from wich determines the flagging. + field : list of str + List of fieldnames in data, determining wich variables are to be included into the flagging process. flags : saqc.Flags A flags object, holding flags and additional informations related to `data`. - fields : str - List of fieldnames in data, determining wich variables are to be included into the flagging process. + reference : str + The reference variable, the deviation from wich determines the flagging. freq : str An offset string, determining the size of the seperate datachunks that the algorihm is to be piecewise applied on. @@ -186,6 +198,8 @@ def flagDriftFromReference( A distance function. It should be a function of 2 1-dimensional arrays and return a float scalar value. This value is interpreted as the distance of the two input arrays. The default is the averaged manhatten metric. See the Notes section to get an idea of why this could be a good choice. + target : None + ignored. flag : float, default BAD flag to set. @@ -204,14 +218,15 @@ def flagDriftFromReference( That is, why, the "averaged manhatten metric" is set as the metric default, since it corresponds to the averaged value distance, two timeseries have (as opposed by euclidean, for example). """ - data_to_flag = data[fields].to_df() - data_to_flag.dropna(inplace=True) + if target: + raise NotImplementedError("target is not implemented for this function") - fields = list(fields) - if field not in fields: - fields.append(field) + fields = toSequence(field) + data_to_flag = data[fields].to_df().dropna() - var_num = len(fields) + fields = list(fields) + if reference not in fields: + fields.append(reference) segments = data_to_flag.groupby(pd.Grouper(freq=freq)) for segment in segments: @@ -219,8 +234,10 @@ def flagDriftFromReference( if segment[1].shape[0] <= 1: continue - for i in range(var_num): - dist = metric(segment[1].iloc[:, i].values, segment[1].loc[:, field].values) + for i in range(len(fields)): + dist = metric( + segment[1].iloc[:, i].values, segment[1].loc[:, reference].values + ) if dist > thresh: flags[segment[1].index, fields[i]] = flag @@ -228,14 +245,21 @@ def flagDriftFromReference( return data, flags -@flagging(masking="all") +# default multivariate flagging +@register( + mask=["set_1", "set_2"], + demask=["set_1", "set_2"], + squeeze=["set_1", "set_2"], + multivariate=True, + handles_target=True, +) def flagDriftFromScaledNorm( data: DictOfSeries, field: str, flags: Flags, set_1: Sequence[str], set_2: Sequence[str], - freq: FreqString, + freq: str, spread: float, frac: float = 0.5, metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( @@ -243,8 +267,9 @@ def flagDriftFromScaledNorm( ) / len(x), method: LinkageString = "single", + target: str = None, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ The function linearly rescales one set of variables to another set of variables @@ -307,6 +332,9 @@ def flagDriftFromScaledNorm( different keywords (References [1]). See wikipedia for an introduction to hierarchical clustering (References [2]). + target : None + ignored + flag : float, default BAD flag to set. @@ -325,9 +353,11 @@ def flagDriftFromScaledNorm( Introduction to Hierarchical clustering: [2] https://en.wikipedia.org/wiki/Hierarchical_clustering """ + if target: + raise NotImplementedError("target is not implemented for this function") + fields = list(set_1) + list(set_2) - data_to_flag = data[fields].to_df() - data_to_flag.dropna(inplace=True) + data_to_flag = data[fields].to_df().dropna() convert_slope = [] convert_intercept = [] @@ -365,16 +395,15 @@ def flagDriftFromScaledNorm( return data, flags -@flagging(masking="all") +@register(mask=["field"], demask=[], squeeze=[]) def correctDrift( data: DictOfSeries, field: str, flags: Flags, maintenance_field: str, - model: Callable[..., float], + model: Callable[..., float] | Literal["linear", "exponential"], cal_range: int = 5, - flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ The function corrects drifting behavior. @@ -394,8 +423,9 @@ def correctDrift( The maint data is to expected to have following form: The series' timestamp itself represents the beginning of a maintenance event, wheras the values represent the endings of the maintenance intervals. - model : Callable + model : Callable or {'exponential', 'linear'} A modelfunction describing the drift behavior, that is to be corrected. + Either use built-in exponential or linear drift model by passing a string, or pass a custom callable. The model function must always contain the keyword parameters 'origin' and 'target'. The starting parameter must always be the parameter, by wich the data is passed to the model. After the data parameter, there can occure an arbitrary number of model calibration arguments in @@ -404,8 +434,6 @@ def correctDrift( cal_range : int, default 5 The number of values the mean is computed over, for obtaining the value level directly after and directly before maintenance event. This values are needed for shift calibration. (see above description) - flag : float, default BAD - flag to set. Returns ------- @@ -418,26 +446,26 @@ def correctDrift( Notes ----- It is assumed, that between support points, there is a drift effect shifting the meassurements in a way, that - can be described, by a model function M(t, *p, origin, target). (With 0<=t<=1, p being a parameter set, and origin, - target being floats). + can be described, by a model function ``M(t, *p, origin, target)``. (With ``0<=t<=1``, ``p`` being a parameter + set, and ``origin``, ``target`` being floats). Note, that its possible for the model to have no free parameters p at all. (linear drift mainly) - The drift model, directly after the last support point (t=0), - should evaluate to the origin - calibration level (origin), and directly before the next support point - (t=1), it should evaluate to the target calibration level (target). + The drift model, directly after the last support point (``t=0``), + should evaluate to the origin - calibration level (``origin``), and directly before the next support point + (``t=1``), it should evaluate to the target calibration level (``target``).:: - M(0, *p, origin, target) = origin - M(1, *p, origin, target) = target + M(0, *p, origin, target) = origin + M(1, *p, origin, target) = target - The model is than fitted to any data chunk in between support points, by optimizing the parameters p*, and - thus, obtaining optimal parameterset P*. + The model is than fitted to any data chunk in between support points, by optimizing the parameters ``p*``, and + thus, obtaining optimal parameterset ``P*``. - The new values at t are computed via: + The new values at t are computed via::: - new_vals(t) = old_vals(t) + M(t, *P, origin, target) - M_drift(t, *P, origin, new_target) + new_vals(t) = old_vals(t) + M(t, *P, origin, target) - M_drift(t, *P, origin, new_target) - Wheras new_target represents the value level immediately after the nex support point. + Wheras ``new_target`` represents the value level immediately after the next support point. Examples -------- @@ -445,25 +473,31 @@ def correctDrift( Linear drift modell (no free parameters). - >>> M = lambda t, origin, target: origin + t*target + >>> M = lambda t, origin, target: origin + t * target exponential drift model (exponential raise!) >>> expFunc = lambda t, a, b, c: a + b * (np.exp(c * x) - 1) >>> M = lambda t, p, origin, target: expFunc(t, (target - origin) / (np.exp(abs(c)) - 1), abs(c)) - Exponential and linear driftmodels are part of the ts_operators library, under the names - expDriftModel and linearDriftModel. + Exponential and linear driftmodels are part of the ``ts_operators`` library, under the names + ``expDriftModel`` and ``linearDriftModel``. """ + # extract model func: + if isinstance(model, str): + if model not in MODELDICT: + raise ValueError( + f"invalid model '{model}', choose one of '{MODELDICT.keys()}'" + ) + model = MODELDICT[model] + # 1: extract fit intervals: if data[maintenance_field].empty: - flags[:, field] = UNTOUCHED return data, flags - data = data.copy() - to_correct = data[field] - maint_data = data[maintenance_field] + to_correct = data[field].copy() + maint_data = data[maintenance_field].copy() to_correct_clean = to_correct.dropna() d = {"drift_group": np.nan, to_correct.name: to_correct_clean.values} @@ -497,16 +531,16 @@ def correctDrift( return data, flags -@flagging(masking="all") +@register(mask=["field", "cluster_field"], demask=["cluster_field"], squeeze=[]) def correctRegimeAnomaly( data: DictOfSeries, field: str, flags: Flags, cluster_field: str, model: CurveFitter, - tolerance: Optional[FreqString] = None, + tolerance: Optional[str] = None, epoch: bool = False, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Function fits the passed model to the different regimes in data[field] and tries to correct @@ -616,17 +650,17 @@ def correctRegimeAnomaly( return data, flags -@flagging(masking="all") +@register(mask=["field"], demask=[], squeeze=[]) def correctOffset( data: DictOfSeries, field: str, flags: Flags, max_jump: float, spread: float, - window: FreqString, + window: str, min_periods: int, - tolerance: Optional[FreqString] = None, - **kwargs + tolerance: Optional[str] = None, + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Parameters @@ -662,7 +696,7 @@ def correctOffset( The quality flags of data """ data, flags = copyField(data, field, flags, field + "_CPcluster") - data, flags = assignChangePointCluster( + data, flags = _assignChangePointCluster( data, field + "_CPcluster", flags, @@ -671,7 +705,7 @@ def correctOffset( window=window, min_periods=min_periods, ) - data, flags = assignRegimeAnomaly(data, field, flags, field + "_CPcluster", spread) + data, flags = _assignRegimeAnomaly(data, field, flags, field + "_CPcluster", spread) data, flags = correctRegimeAnomaly( data, field, @@ -714,7 +748,7 @@ def _driftFit(x, shift_target, cal_mean, driftModel): return data_fit, data_shift -@flagging(masking="all") +@flagging() def flagRegimeAnomaly( data: DictOfSeries, field: str, @@ -727,39 +761,41 @@ def flagRegimeAnomaly( ), frac: float = 0.5, flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - A function to flag values belonging to an anomalous regime regarding modelling regimes of field. + Flags anomalous regimes regarding to modelling regimes of field. - "Normality" is determined in terms of a maximum spreading distance, regimes must not exceed in respect - to a certain metric and linkage method. + "Normality" is determined in terms of a maximum spreading distance, + regimes must not exceed in respect to a certain metric and linkage method. - In addition, only a range of regimes is considered "normal", if it models more then `frac` percentage of - the valid samples in "field". + In addition, only a range of regimes is considered "normal", if it models + more then `frac` percentage of the valid samples in "field". Note, that you must detect the regime changepoints prior to calling this function. - Note, that it is possible to perform hypothesis tests for regime equality by passing the metric - a function for p-value calculation and selecting linkage method "complete". + Note, that it is possible to perform hypothesis tests for regime equality + by passing the metric a function for p-value calculation and selecting linkage + method "complete". Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + Data to process field : str - The fieldname of the column, holding the data-to-be-flagged. + Name of the column to process flags : saqc.Flags Container to store flags of the data. cluster_field : str - The name of the column in data, holding the cluster labels for the samples in field. (has to be indexed - equal to field) + Column in data, holding the cluster labels for the samples in field. + (has to be indexed equal to field) spread : float - A threshold denoting the valuelevel, up to wich clusters a agglomerated. + A threshold denoting the value level, up to wich clusters a agglomerated. method : {"single", "complete", "average", "weighted", "centroid", "median", "ward"}, default "single" - The linkage method used for hierarchical (agglomerative) clustering of the variables. - metric : Callable[[numpy.array, numpy.array], float], default lambda x, y: np.abs(np.nanmean(x) - np.nanmean(y)) - A metric function for calculating the dissimilarity between 2 regimes. Defaults to just the difference in mean. + The linkage method for hierarchical (agglomerative) clustering of the variables. + metric : Callable, default lambda x,y: np.abs(np.nanmean(x) - np.nanmean(y)) + A metric function for calculating the dissimilarity between 2 regimes. + Defaults to the difference in mean. frac : float Has to be in [0,1]. Determines the minimum percentage of samples, the "normal" group has to comprise to be the normal group actually. @@ -775,23 +811,25 @@ def flagRegimeAnomaly( The flags object, holding flags and additional informations related to `data`. Flags values may have changed, relatively to the flags input. """ - return assignRegimeAnomaly( - data, - field, - flags, - cluster_field, - spread, + reserverd = ["set_cluster", "set_flags"] + kwargs = filterKwargs(kwargs, reserverd) + return _assignRegimeAnomaly( + data=data, + field=field, + flags=flags, + cluster_field=cluster_field, + spread=spread, method=method, metric=metric, frac=frac, + flag=flag, + **kwargs, set_cluster=False, set_flags=True, - flag=flag, - **kwargs ) -@flagging(masking="all") +@register(mask=["field", "cluster_field"], demask=["cluster_field"], squeeze=[]) def assignRegimeAnomaly( data: DictOfSeries, field: str, @@ -803,10 +841,7 @@ def assignRegimeAnomaly( np.nanmean(x) - np.nanmean(y) ), frac: float = 0.5, - set_cluster: bool = True, # todo: hide by a wrapper - set_flags: bool = False, # todo: hide by a wrapper - flag: float = BAD, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ A function to detect values belonging to an anomalous regime regarding modelling @@ -827,34 +862,24 @@ def assignRegimeAnomaly( Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + Data to process field : str - The fieldname of the column, holding the data-to-be-flagged. + Name of the column to process flags : saqc.Flags Container to store flags of the data. cluster_field : str - The name of the column in data, holding the cluster labels for the samples in field. (has to be indexed - equal to field) + Column in data, holding the cluster labels for the samples in field. + (has to be indexed equal to field) spread : float - A threshold denoting the valuelevel, up to wich clusters a agglomerated. - method : str, default "single" - The linkage method used for hierarchical (agglomerative) clustering of the - variables. - metric : Callable[[numpy.array, numpy.array], float], default lambda x, y: np.abs(np.nanmean(x) - np.nanmean(y)) - A metric function for calculating the dissimilarity between 2 regimes. Defaults - to just the difference in mean. + A threshold denoting the value level, up to wich clusters a agglomerated. + method : {"single", "complete", "average", "weighted", "centroid", "median", "ward"}, default "single" + The linkage method for hierarchical (agglomerative) clustering of the variables. + metric : Callable, default lambda x,y: np.abs(np.nanmean(x) - np.nanmean(y)) + A metric function for calculating the dissimilarity between 2 regimes. + Defaults to the difference in mean. frac : float Has to be in [0,1]. Determines the minimum percentage of samples, the "normal" group has to comprise to be the normal group actually. - set_cluster : bool, default False - If True, all data, considered "anormal", gets assigned a negative clusterlabel. - This option is present for further use (correction) of the anomaly information. - set_flags : bool, default True - Whether or not to flag abnormal values (do not flag them, if you want to - correct them afterwards, because flagged values usually are not visible in - further tests). - flag : float, default BAD - flag to set. Returns ------- @@ -864,6 +889,40 @@ def assignRegimeAnomaly( The flags object, holding flags and additional informations related to `data`. Flags values may have changed, relatively to the flags input. """ + reserverd = ["set_cluster", "set_flags", "flag"] + kwargs = filterKwargs(kwargs, reserverd) + return _assignRegimeAnomaly( + data=data, + field=field, + flags=flags, + cluster_field=cluster_field, + spread=spread, + method=method, + metric=metric, + frac=frac, + **kwargs, + # control args + set_cluster=True, + set_flags=False, + ) + + +def _assignRegimeAnomaly( + data: DictOfSeries, + field: str, + flags: Flags, + cluster_field: str, + spread: float, + method: LinkageString = "single", + metric: Callable[[np.array, np.array], float] = lambda x, y: np.abs( + np.nanmean(x) - np.nanmean(y) + ), + frac: float = 0.5, + set_cluster: bool = True, + set_flags: bool = False, + flag: float = BAD, + **kwargs, +) -> Tuple[DictOfSeries, Flags]: series = data[cluster_field] cluster = np.unique(series) cluster_dios = DictOfSeries({i: data[field][series == i] for i in cluster}) diff --git a/saqc/funcs/flagtools.py b/saqc/funcs/flagtools.py index 30924b46bda36e2e9ef24d7e4b8599caecf892d9..12bea62a516241f287aa7f6bcd7ae793b854474a 100644 --- a/saqc/funcs/flagtools.py +++ b/saqc/funcs/flagtools.py @@ -3,14 +3,18 @@ from typing import Any, Tuple, Union from typing_extensions import Literal import pandas as pd +from dateutil.parser import ParserError +import numpy as np from dios import DictOfSeries from saqc.constants import BAD, UNFLAGGED -from saqc.core import flagging, processing, Flags +from saqc.core import register, Flags import warnings +from saqc.core.register import flagging -@flagging(masking="field") + +@register(mask=[], demask=[], squeeze=["field"]) def forceFlags( data: DictOfSeries, field: str, flags: Flags, flag: float = BAD, **kwargs ) -> Tuple[DictOfSeries, Flags]: @@ -44,8 +48,7 @@ def forceFlags( return data, flags -# masking='none' is sufficient because call is redirected -@flagging(masking="none") +@register(mask=[], demask=[], squeeze=["field"]) def clearFlags( data: DictOfSeries, field: str, flags: Flags, **kwargs ) -> Tuple[DictOfSeries, Flags]: @@ -70,7 +73,7 @@ def clearFlags( Notes ----- - This function ignores the ``to_mask`` keyword, because the data is not relevant + This function ignores the ``dfilter`` keyword, because the data is not relevant for processing. A warning is triggered if the ``flag`` keyword is given, because the flags are always set to `UNFLAGGED`. @@ -90,7 +93,7 @@ def clearFlags( return forceFlags(data, field, flags, flag=UNFLAGGED, **kwargs) -@flagging(masking="none") +@register(mask=[], demask=[], squeeze=["field"]) def flagUnflagged( data: DictOfSeries, field: str, flags: Flags, flag: float = BAD, **kwargs ) -> Tuple[DictOfSeries, Flags]: @@ -119,7 +122,7 @@ def flagUnflagged( Notes ----- - This function ignores the ``to_mask`` keyword, because the data is not relevant + This function ignores the ``dfilter`` keyword, because the data is not relevant for processing. See Also @@ -132,14 +135,17 @@ def flagUnflagged( return data, flags -@flagging(masking="field") +@register(mask=["field"], demask=["field"], squeeze=["field"]) def flagManual( data: DictOfSeries, field: str, flags: Flags, - mdata: Union[pd.Series, pd.DataFrame, DictOfSeries], + mdata: Union[pd.Series, pd.DataFrame, DictOfSeries, list, np.array], + method: Literal[ + "left-open", "right-open", "closed", "plain", "ontime" + ] = "left-open", + mformat: Literal["start-end", "mflag"] = "start-end", mflag: Any = 1, - method: Literal["plain", "ontime", "left-open", "right-open"] = "plain", flag: float = BAD, **kwargs, ) -> Tuple[DictOfSeries, Flags]: @@ -159,22 +165,35 @@ def flagManual( The fieldname of the column, holding the data-to-be-flagged. flags : saqc.Flags A flags object, holding flags and additional informations related to `data`. - mdata : {pd.Series, pd.Dataframe, DictOfSeries} - The "manually generated" data - mflag : scalar - The flag that indicates data points in `mdata`, of wich the projection in data should be flagged. - - method : {'plain', 'ontime', 'left-open', 'right-open'}, default plain + mdata : pd.Series, pd.DataFrame, DictOfSeries, str, list or np.ndarray + The Data determining, wich intervals are to be flagged, or a string, denoting under which field the data is + accessable. + method : {'plain', 'ontime', 'left-open', 'right-open', 'closed'}, default 'plain' Defines how mdata is projected on data. Except for the 'plain' method, the methods assume mdata to have an index. * 'plain': mdata must have the same length as data and is projected one-to-one on data. * 'ontime': works only with indexed mdata. mdata entries are matched with data entries that have the same index. * 'right-open': mdata defines intervals, values are to be projected on. - The intervals are defined by any two consecutive timestamps t_1 and 1_2 in mdata. - the value at t_1 gets projected onto all data timestamps t with t_1 <= t < t_2. + The intervals are defined, + + (1) Either, by any two consecutive timestamps t_1 and 1_2 where t_1 is valued with mflag, or by a series, + (2) Or, a Series, where the index contains in the t1 timestamps nd the values the respective t2 stamps. + + The value at t_1 gets projected onto all data timestamps t with t_1 <= t < t_2. + * 'left-open': like 'right-open', but the projected interval now covers all t with t_1 < t <= t_2. + * 'closed': like 'right-open', but the projected interval now covers all t with t_1 <= t <= t_2. + + mformat : {"start-end", "mflag"}, default "start-end" + + * "start-end": mdata is a Series, where every entry indicates an interval to-flag. The index defines the left + bound, the value defines the right bound. + * "mflag": mdata is an array like, with entries containing 'mflag',where flags shall be set. See documentation + for examples. + mflag : scalar + The flag that indicates data points in `mdata`, of wich the projection in data should be flagged. flag : float, default BAD flag to set. @@ -186,6 +205,7 @@ def flagManual( Examples -------- An example for mdata + >>> mdata = pd.Series([1,0,1], index=pd.to_datetime(['2000-02', '2000-03', '2001-05'])) >>> mdata 2000-02-01 1 @@ -196,6 +216,7 @@ def flagManual( On *dayly* data, with the 'ontime' method, only the provided timestamnps are used. Bear in mind that only exact timestamps apply, any offset will result in ignoring the timestamp. + >>> _, fl = flagManual(data, field, flags, mdata, mflag=1, method='ontime') >>> fl[field] > UNFLAGGED 2000-01-31 False @@ -209,6 +230,7 @@ def flagManual( Freq: D, dtype: bool With the 'right-open' method, the mdata is forward fill: + >>> _, fl = flagManual(data, field, flags, mdata, mflag=1, method='right-open') >>> fl[field] > UNFLAGGED 2000-01-31 False @@ -221,6 +243,7 @@ def flagManual( Freq: D, dtype: bool With the 'left-open' method, backward filling is used: + >>> _, fl = flagManual(data, field, flags, mdata, mflag=1, method='left-open') >>> fl[field] > UNFLAGGED 2000-01-31 False @@ -233,39 +256,62 @@ def flagManual( Freq: D, dtype: bool """ dat = data[field] + # internal not-mflag-value -> cant go for np.nan + not_mflag = -1 if mflag == 0 else 0 + if isinstance(mdata, str): + mdata = data[mdata] if isinstance(mdata, (pd.DataFrame, DictOfSeries)): mdata = mdata[field] hasindex = isinstance(mdata, (pd.Series, pd.DataFrame, DictOfSeries)) - if not hasindex and method != "plain": - raise ValueError("mdata has no index") - + if not hasindex: + if method != "plain": + raise ValueError("mdata has no index") + else: + mdata = pd.Series(mdata, index=dat.index) + + # check, if intervals where passed in format (index:start-time, data:end-time) + if mformat == "start-end": + if method in ["plain", "ontime"]: + raise ValueError( + "'Start-End' formatting not compatible to 'plain' or 'ontime' methods" + ) + else: + mdata = pd.Series( + not_mflag, + index=mdata.index.join(pd.DatetimeIndex(mdata.values), how="outer"), + ) + mdata[::2] = mflag + + # get rid of values that are neither mflag nor not_mflag (for bw-compatibillity mainly) + mdata[mdata != mflag] = not_mflag + + # evaluate methods if method == "plain": - - if hasindex: - mdata = mdata.to_numpy() - - if len(mdata) != len(dat): - raise ValueError("mdata must have same length then data") - - mdata = pd.Series(mdata, index=dat.index) - + pass # reindex will do the job later elif method == "ontime": pass - elif method in ["left-open", "right-open"]: + elif method in ["left-open", "right-open", "closed"]: + mdata = mdata.drop(mdata.index[mdata.diff() == 0]) + app_entry = pd.Series(mdata[-1], dat.index.shift(freq="1min")[-1:]) mdata = mdata.reindex(dat.index.union(mdata.index)) - # -->)[t0-->)[t1--> (ffill) if method == "right-open": mdata = mdata.ffill() - # <--t0](<--t1](<-- (bfill) if method == "left-open": - mdata = mdata.bfill() - + mdata = ( + mdata.replace({mflag: not_mflag, not_mflag: mflag}) + .append(app_entry) + .bfill() + ) + + if method == "closed": + mdata[mdata.ffill() == mflag] = mflag + mdata.replace({not_mflag: mflag}, inplace=True) else: raise ValueError(method) diff --git a/saqc/funcs/generic.py b/saqc/funcs/generic.py index 99e460bc7d95b3af4146f8cc30e5f061d1774907..5f7977b684c0ae382b95f3d83370a213a2541c53 100644 --- a/saqc/funcs/generic.py +++ b/saqc/funcs/generic.py @@ -1,100 +1,72 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import annotations -from functools import partial -from inspect import signature -from typing import Tuple, Union, Callable +from typing import Sequence, Tuple, Union import numpy as np import pandas as pd from dios import DictOfSeries -from saqc.constants import GOOD, BAD, UNFLAGGED -from saqc.core.flags import initFlagsLike, Flags -from saqc.core.register import flagging, processing, _maskData, _isflagged -from saqc.core.visitor import ENVIRONMENT +from saqc.constants import BAD, UNFLAGGED, ENVIRONMENT, FILTER_ALL +from saqc.core.history import History +from saqc.lib.tools import toSequence +from saqc.lib.types import GenericFunction, PandasLike +from saqc.core.flags import Flags +from saqc.core.register import register, _isflagged, FunctionWrapper -import operator as op -_OP = {"<": op.lt, "<=": op.le, "==": op.eq, "!=": op.ne, ">": op.gt, ">=": op.ge} - - -def _dslIsFlagged( - flags: Flags, var: pd.Series, flag: float = None, comparator: str = None -) -> Union[pd.Series, DictOfSeries]: - """ - helper function for `flag` - - Param Combinations - ------------------ - - ``isflagged('var')`` : show me (anything) flagged - - ``isflagged('var', DOUBT)`` : show me ``flags >= DOUBT`` - - ``isflagged('var', DOUBT, '==')`` : show me ``flags == DOUBT`` - - Raises - ------ - ValueError: if `comparator` is passed but no `flag` vaule. Eg. ``isflagged('var', comparator='>=')`` - """ - if flag is None: - if comparator is not None: - raise ValueError("if `comparator` is used, explicitly pass a `flag` level.") - flag = UNFLAGGED - comparator = ">" - - # default - if comparator is None: - comparator = ">=" - - _op = _OP[comparator] - return _op(flags[var.name], flag) +def _prepare( + data: DictOfSeries, flags: Flags, columns: Sequence[str], dfilter: float +) -> Tuple[DictOfSeries, Flags]: + fchunk = Flags({f: flags[f] for f in columns}) + dchunk, _ = FunctionWrapper._maskData( + data=data.loc[:, columns].copy(), flags=fchunk, columns=columns, thresh=dfilter + ) + return dchunk, fchunk.copy() def _execGeneric( flags: Flags, - data: DictOfSeries, - func: Callable[[pd.Series], pd.Series], - field: str, -) -> pd.Series: - # TODO: - # - check series.index compatibility - # - field is only needed to translate 'this' parameters - # -> maybe we could do the translation on the tree instead - - sig = signature(func) - args = [] - for k, v in sig.parameters.items(): - k = field if k == "this" else k - if k not in data: - raise NameError(f"variable '{k}' not found") - args.append(data[k]) + data: PandasLike, + func: GenericFunction, + dfilter: float = FILTER_ALL, +) -> DictOfSeries: globs = { - "isflagged": partial(_dslIsFlagged, flags), - "ismissing": lambda var: pd.isnull(var), - "this": field, - "GOOD": GOOD, - "BAD": BAD, - "UNFLAGGED": UNFLAGGED, + "isflagged": lambda data: _isflagged(flags[data.name], thresh=dfilter), **ENVIRONMENT, } + func.__globals__.update(globs) - return func(*args) + if isinstance(data, pd.Series): + data = data.to_frame() + + out = func(*[data[c] for c in data.columns]) + return DictOfSeries(out) -@processing() -def genericProcess( + +@register( + mask=[], + demask=[], + squeeze=[], + multivariate=True, + handles_target=True, +) +def processGeneric( data: DictOfSeries, - field: str, + field: str | Sequence[str], flags: Flags, - func: Callable[[pd.Series], pd.Series], - to_mask: float = UNFLAGGED, + func: GenericFunction, + target: str | Sequence[str] = None, + flag: float = UNFLAGGED, + dfilter: float = FILTER_ALL, **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - generate/process data with generically defined functions. - - The functions can depend on on any of the fields present in data. + Generate/process data with user defined functions. Formally, what the function does, is the following: @@ -102,21 +74,34 @@ def genericProcess( Than, for every timestamp t_i that occurs in at least one of the timeseries data[f_j] (outer join), The value v_i is computed via: v_i = data([f_1][t_i], data[f_2][t_i], ..., data[f_K][t_i]), if all data[f_j][t_i] do exist - v_i = `np.nan`, if at least one of the data[f_j][t_i] is missing. - 2. The result is stored to data[field] (gets generated if not present) + v_i = ``np.nan``, if at least one of the data[f_j][t_i] is missing. + 2. The result is stored to ``data[target]``, if ``target`` is given or to ``data[field]`` otherwise Parameters ---------- data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - The fieldname of the column, where you want the result from the generic expressions processing to be written to. + field : str or list of str + The variable(s) passed to func. flags : saqc.Flags - Container to store quality flags to data. - func : Callable - The data processing function with parameter names that will be - interpreted as data column entries. - See the examples section to learn more. + Container to store flags of the data. + func : callable + Function to call on the variables given in ``field``. The return value will be written + to ``target`` or ``field`` if the former is not given. This implies, that the function + needs to accept the same number of arguments (of type pandas.Series) as variables given + in ``field`` and should return an iterable of array-like objects with the same number + of elements as given in ``target`` (or ``field`` if ``target`` is not specified). + target: str or list of str + The variable(s) to write the result of ``func`` to. If not given, the variable(s) + specified in ``field`` will be overwritten. If a ``target`` is not given, it will be + created. + flag: float, default ``UNFLAGGED`` + The quality flag to set. The default ``UNFLAGGED`` states the general idea, that + ``processGeneric`` generates 'new' data without direct relation to the potentially + already present flags. + dfilter: float, default ``FILTER_ALL`` + Threshold flag. Flag values greater than ``dfilter`` indicate that the associated + data value is inappropiate for further usage. Returns ------- @@ -127,73 +112,106 @@ def genericProcess( The quality flags of data The flags shape may have changed relatively to the input flags. + Note + ----- + All the numpy functions are available within the generic expressions. + Examples -------- - Some examples on what to pass to the func parameter: - To compute the sum of the variables "temperature" and "uncertainty", you would pass the function: + Compute the sum of the variables 'rainfall' and 'snowfall' and save the result to + a (new) variable 'precipitation' - >>> lambda temperature, uncertainty: temperature + uncertainty + >>> saqc.genericProcess(field=["rainfall", "snowfall"], target="precipitation'", func=lambda x, y: x + y) + """ - You also can pass numpy and pandas functions: + fields = toSequence(field) + targets = fields if target is None else toSequence(target) + + dchunk, fchunk = _prepare(data, flags, fields, dfilter) + result = _execGeneric(fchunk, dchunk, func, dfilter=dfilter) + + meta = { + "func": "procGeneric", + "args": (), + "kwargs": { + "field": field, + "func": func.__name__, + "target": target, + "flag": flag, + "dfilter": dfilter, + }, + } - >>> lambda temperature, uncertainty: np.round(temperature) * np.sqrt(uncertainty) - """ + # update data & flags + for i, col in enumerate(targets): + + datacol = result.iloc[:, i] + data[col] = datacol - data_masked, _ = _maskData(data.copy(), flags, data.columns, to_mask) - data[field] = _execGeneric(flags, data_masked, func, field).squeeze() + if col not in flags: + flags.history[col] = History(datacol.index) - if field in flags: - flags.drop(field) + if not flags[col].index.equals(datacol.index): + raise ValueError( + f"cannot assign function result to the existing variable {repr(col)} " + "because of incompatible indices, please choose another 'target'" + ) - flags[field] = initFlagsLike(data[field])[field] + flags.history[col].append(pd.Series(flag, index=datacol.index), meta) return data, flags -@flagging(masking="all") -def genericFlag( +@register( + mask=[], + demask=[], + squeeze=[], + multivariate=True, + handles_target=True, +) +def flagGeneric( data: DictOfSeries, - field: str, + field: Union[str, Sequence[str]], flags: Flags, - func: Callable[[pd.Series], pd.Series], + func: GenericFunction, + target: Union[str, Sequence[str]] = None, flag: float = BAD, - to_mask: float = UNFLAGGED, + dfilter: float = FILTER_ALL, **kwargs, ) -> Tuple[DictOfSeries, Flags]: - # TODO : fix docstring, check if all still works """ - a function to flag a data column by evaluation of a generic expression. - - The expression can depend on any of the fields present in data. + Flag data with user defined functions. Formally, what the function does, is the following: - - Let X be an expression, depending on fields f_1, f_2,...f_K, (X = X(f_1, f_2,...f_K)) + Let X be a Callable, depending on fields f_1, f_2,...f_K, (X = X(f_1, f_2,...f_K)) Than for every timestamp t_i in data[field]: data[field][t_i] is flagged if X(data[f_1][t_i], data[f_2][t_i], ..., data[f_K][t_i]) is True. - Note, that all value series included in the expression to evaluate must be labeled identically to field. - - Note, that the expression is passed in the form of a Callable and that this callables variable names are - interpreted as actual names in the data header. See the examples section to get an idea. - - Note, that all the numpy functions are available within the generic expressions. - Parameters ---------- data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - The fieldname of the column, where you want the result from the generic expressions evaluation to be projected - to. + field : str or list of str + The variable(s) passed to func. flags : saqc.Flags Container to store flags of the data. - func : Callable - The expression that is to be evaluated is passed in form of a callable, with parameter names that will be - interpreted as data column entries. The Callable must return an boolen array like. - See the examples section to learn more. - flag : float, default BAD - flag to set. + func : callable + Function to call on the variables given in ``field``. The function needs to accept the same + number of arguments (of type pandas.Series) as variables given in ``field`` and return an + iterable of array-like objects of with dtype bool and with the same number of elements as + given in ``target`` (or ``field`` if ``target`` is not specified). The function output + determines the values to flag. + target: str or list of str + The variable(s) to write the result of ``func`` to. If not given, the variable(s) + specified in ``field`` will be overwritten. If a ``target`` is not given, it will be + created. + flag: float, default ``UNFLAGGED`` + The quality flag to set. The default ``UNFLAGGED`` states the general idea, that + ``processGeneric`` generates 'new' data without direct relation to the potentially + already present flags. + dfilter: float, default ``FILTER_ALL`` + Threshold flag. Flag values greater than ``dfilter`` indicate that the associated + data value is inappropiate for further usage. Returns ------- @@ -203,53 +221,75 @@ def genericFlag( The quality flags of data Flags values may have changed relatively to the flags input. + Note + ----- + All the numpy functions are available within the generic expressions. + Examples -------- - Some examples on what to pass to the func parameter: - To flag the variable `field`, if the sum of the variables - "temperature" and "uncertainty" is below zero, you would pass the function: - - >>> lambda temperature, uncertainty: temperature + uncertainty < 0 - There is the reserved name 'This', that always refers to `field`. So, to flag field if field is negative, you can - also pass: + 1. Flag the variable 'rainfall', if the sum of the variables 'temperature' and 'uncertainty' is below zero: - >>> lambda this: this < 0 + >>> saqc.flagGeneric(field=["temperature", "uncertainty"], target="rainfall", func= lambda x, y: temperature + uncertainty < 0 - If you want to make dependent the flagging from flags already present in the data, you can use the built-in - ``isflagged`` method. For example, to flag the 'temperature', if 'level' is flagged, you would use: + 2. Flag the variable 'temperature', where the variable 'fan' is flagged: - >>> lambda level: isflagged(level) + >>> saqc.flagGeneric(field="fan", target="temperature", func=lambda x: isflagged(x)) - You can furthermore specify a flagging level, you want to compare the flags to. For example, for flagging - 'temperature', if 'level' is flagged at a level named DOUBTFUL or worse, use: + 3. The generic functions also support all pandas and numpy functions: - >>> lambda level: isflagged(level, flag=DOUBTFUL, comparator='>') + >>> saqc.flagGeneric(field="fan", target="temperature", func=lambda x: np.sqrt(x) < 7) + """ - If you are unsure about the used flaggers flagging level names, you can use the reserved key words BAD, UNFLAGGED - and GOOD, to refer to the worst (BAD), best(GOOD) or unflagged (UNFLAGGED) flagging levels. For example. + fields = toSequence(field) + targets = fields if target is None else toSequence(target) - >>> lambda level: isflagged(level, flag=UNFLAGGED, comparator='==') + dchunk, fchunk = _prepare(data, flags, fields, dfilter) + result = _execGeneric(fchunk, dchunk, func, dfilter=dfilter) - Your expression also is allowed to include pandas and numpy functions + if len(targets) != len(result.columns): + raise ValueError( + f"the generic function returned {len(result.columns)} field(s), but only {len(targets)} target(s) were given" + ) - >>> lambda level: np.sqrt(level) > 7 - """ - # we get the data unmasked, in order to also receive flags, - # so let's do to the masking manually - # data_masked, _ = _maskData(data, flags, data.columns, to_mask) - - mask = _execGeneric(flags, data, func, field).squeeze() - if np.isscalar(mask): - raise TypeError(f"generic expression does not return an array") - if not np.issubdtype(mask.dtype, np.bool_): + if not (result.dtypes == bool).all(): raise TypeError(f"generic expression does not return a boolean array") - if field not in flags: - flags[field] = pd.Series(data=UNFLAGGED, index=mask.index, name=field) + meta = { + "func": "flagGeneric", + "args": (), + "kwargs": { + "field": field, + "func": func.__name__, + "target": target, + "flag": flag, + "dfilter": dfilter, + }, + } + + # update flags & data + for i, col in enumerate(targets): + + maskcol = result.iloc[:, i] + + # make sure the column exists + if col not in flags: + flags.history[col] = History(maskcol.index) + + # dummy column to ensure consistency between flags and data + if col not in data: + data[col] = pd.Series(np.nan, index=maskcol.index) + + maskcol = maskcol & ~_isflagged(flags[col], dfilter) + flagcol = maskcol.replace({False: np.nan, True: flag}).astype(float) - mask = ~_isflagged(flags[field], to_mask) & mask + # we need equal indices to work on + if not flags[col].index.equals(maskcol.index): + raise ValueError( + f"cannot assign function result to the existing variable {repr(col)} " + "because of incompatible indices, please choose another 'target'" + ) - flags[mask, field] = flag + flags.history[col].append(flagcol, meta) return data, flags diff --git a/saqc/funcs/interpolation.py b/saqc/funcs/interpolation.py index 53e4f1e6e341c896d65a2dd6bc482fd5052dc237..6076ba88ce053d4c7b236e1d6f48049008905b98 100644 --- a/saqc/funcs/interpolation.py +++ b/saqc/funcs/interpolation.py @@ -7,8 +7,8 @@ import pandas as pd from dios import DictOfSeries from saqc.constants import * -from saqc.core import flagging, processing, Flags -from saqc.core.register import _isflagged +from saqc.core import register, Flags +from saqc.core.register import _isflagged, processing from saqc.lib.ts_operators import interpolateNANs _SUPPORTED_METHODS = Literal[ @@ -30,7 +30,11 @@ _SUPPORTED_METHODS = Literal[ ] -@flagging(masking="field") +@register( + mask=["field"], + demask=["field"], + squeeze=[], # func handles history by itself +) def interpolateByRolling( data: DictOfSeries, field: str, @@ -40,7 +44,7 @@ def interpolateByRolling( center: bool = True, min_periods: int = 0, flag: float = UNFLAGGED, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Interpolates nan-values in the data by assigning them the aggregation result of the window surrounding them. @@ -72,7 +76,8 @@ def interpolateByRolling( computed. flag : float or None, default UNFLAGGED - Flag that is to be inserted for the interpolated values. If ``None`` no flags are set. + Flag that is to be inserted for the interpolated values. + If `None` the old flags are kept, even if the data is valid now. Returns ------- @@ -82,8 +87,6 @@ def interpolateByRolling( flags : saqc.Flags The quality flags of data """ - - data = data.copy() datcol = data[field] roller = datcol.rolling(window=window, center=center, min_periods=min_periods) try: @@ -99,13 +102,22 @@ def interpolateByRolling( datcol[na_mask] = rolled[na_mask] data[field] = datcol - if flag is not None: - flags[interpolated, field] = flag + new_col = pd.Series(np.nan, index=flags[field].index) + new_col.loc[interpolated] = np.nan if flag is None else flag + + # todo kwargs must have all passed args except data,field,flags + flags.history[field].append( + new_col, {"func": "interpolateByRolling", "args": (), "kwargs": kwargs} + ) return data, flags -@flagging(masking="field") +@register( + mask=["field"], + demask=["field"], + squeeze=[], # func handles history by itself +) def interpolateInvalid( data: DictOfSeries, field: str, @@ -115,7 +127,7 @@ def interpolateInvalid( limit: int = 2, downgrade: bool = False, flag: float = UNFLAGGED, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Function to interpolate nan values in the data. @@ -169,12 +181,17 @@ def interpolateInvalid( inter_limit=limit, downgrade_interpolation=downgrade, ) + data[field] = inter_data + interpolated = data[field].isna() & inter_data.notna() + new_col = pd.Series(np.nan, index=flags[field].index) + new_col.loc[interpolated] = np.nan if flag is None else flag - if flag is not None: - flags[interpolated, field] = flag + # todo kwargs must have all passed args except data,field,flags + flags.history[field].append( + new_col, {"func": "interpolateInvalid", "args": (), "kwargs": kwargs} + ) - data[field] = inter_data return data, flags @@ -199,7 +216,7 @@ def interpolateIndex( order: int = 2, limit: int = 2, downgrade: bool = False, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Function to interpolate the data at regular (equidistant) timestamps (or Grid points). @@ -257,7 +274,10 @@ def interpolateIndex( start, end = datcol.index[0].floor(freq), datcol.index[-1].ceil(freq) grid_index = pd.date_range(start=start, end=end, freq=freq, name=datcol.index.name) - flagged = _isflagged(flags[field], kwargs["to_mask"]) + # todo: + # in future we could use `register(mask=[field], [], [])` + # and dont handle masking manually here + flagged = _isflagged(flags[field], kwargs["dfilter"]) # drop all points that hold no relevant grid information datcol = datcol[~flagged].dropna() @@ -290,7 +310,6 @@ def interpolateIndex( index=data[field].index, func=_resampleOverlapping, func_kws=dict(freq=freq, fill_value=UNFLAGGED), - copy=False, ) flags.history[field] = history diff --git a/saqc/funcs/noise.py b/saqc/funcs/noise.py index fb70835d98f8e64b56e1ffe4e0a0839159f81c36..d9e808561e45becf21c301c90874d25f71ba1141 100644 --- a/saqc/funcs/noise.py +++ b/saqc/funcs/noise.py @@ -6,24 +6,24 @@ import operator from dios import DictOfSeries from typing import Callable from saqc.constants import * -from saqc.core import flagging, Flags -from saqc.lib.types import FreqString +from saqc.core import register, Flags +from saqc.core.register import flagging from saqc.lib.tools import statPass -@flagging(masking="field") +@flagging() def flagByStatLowPass( data: DictOfSeries, field: str, flags: Flags, func: Callable[[np.array, pd.Series], float], - window: FreqString, + window: str, thresh: float, - sub_window: FreqString = None, + sub_window: str = None, sub_thresh: float = None, min_periods: int = None, flag: float = BAD, - **kwargs + **kwargs, ): """ Flag *chunks* of length, `window`: @@ -42,15 +42,17 @@ def flagByStatLowPass( Container to store quality flags to data. func: Callable[[np.array, pd.Series], float] Function to aggregate chunk contnent with. - window: FreqString + window: str Temporal extension of the chunks to test thresh: float Threshold, that triggers flagging, if exceeded by stat value. - sub_window: FreqString, default None, + sub_window: str, default None, Window size of the sub chunks, that are additionally tested for exceeding `sub_thresh` with respect to `stat`. sub_thresh: float, default None min_periods: int, default None + flag : float, default BAD + flag to set Returns ------- diff --git a/saqc/funcs/outliers.py b/saqc/funcs/outliers.py index 667fcc81a9811629308bcdb845ab0c4c5e065e2d..adeb2091302651e449d4cd0f6b5086131e0add69 100644 --- a/saqc/funcs/outliers.py +++ b/saqc/funcs/outliers.py @@ -1,6 +1,6 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- - +import warnings from typing import Optional, Union, Tuple, Sequence, Callable from typing_extensions import Literal @@ -14,21 +14,21 @@ from outliers import smirnov_grubbs from scipy.optimize import curve_fit from saqc.constants import * -from saqc.core import flagging, Flags -from saqc.lib.types import FreqString -from saqc.lib.tools import customRoller, findIndex, getFreqDelta +from saqc.core import register, Flags +from saqc.core.register import flagging +from saqc.lib.tools import customRoller, findIndex, getFreqDelta, toSequence from saqc.funcs.scores import assignKNNScore from saqc.funcs.tools import copyField, dropField from saqc.funcs.transformation import transform import saqc.lib.ts_operators as ts_ops -@flagging(masking="field") +@flagging() def flagByStray( data: DictOfSeries, field: str, flags: Flags, - freq: Optional[Union[int, FreqString]] = None, + freq: Optional[Union[int, str]] = None, min_periods: int = 11, iter_start: float = 0.5, alpha: float = 0.05, @@ -84,7 +84,6 @@ def flagByStray( scores = data[field].dropna() if scores.empty: - flags[:, field] = UNTOUCHED return data, flags if not freq: @@ -159,7 +158,7 @@ def _evalStrayLabels( flags : saqc.Flags Container to store quality flags to data. - fields : list[str] + fields : list of str A list of strings, holding the column names of the variables, the stray labels shall be projected onto. @@ -399,23 +398,29 @@ def _expFit( return val_frame.index[sorted_i[iter_index:]] -@flagging(masking="all") +@register( + mask=["field"], + demask=["field"], + squeeze=["field"], + multivariate=True, + handles_target=True, +) def flagMVScores( data: DictOfSeries, - field: str, + field: Sequence[str], flags: Flags, - fields: Sequence[str], trafo: Callable[[pd.Series], pd.Series] = lambda x: x, alpha: float = 0.05, n: int = 10, func: Callable[[pd.Series], float] = np.sum, iter_start: float = 0.5, - partition: Optional[Union[int, FreqString]] = None, + partition: Optional[Union[int, str]] = None, partition_min: int = 11, - stray_range: Optional[FreqString] = None, + stray_range: Optional[str] = None, drop_flagged: bool = False, # TODO: still a case ? thresh: float = 3.5, min_periods: int = 1, + target: str = None, flag: float = BAD, **kwargs, ) -> Tuple[DictOfSeries, Flags]: @@ -432,17 +437,13 @@ def flagMVScores( data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - The fieldname of the column, holding the data-to-be-flagged. (Here a dummy, - for structural reasons) + field : list of str + List of fieldnames, corresponding to the variables that are to be included + into the flagging process. flags : saqc.Flags Container to store quality flags to data. - fields : List[str] - List of fieldnames, corresponding to the variables that are to be included - into the flagging process. - trafo : callable, default lambda x:x Transformation to be applied onto every column before scoring. Will likely get deprecated soon. Its better to transform the data in a processing step, @@ -505,6 +506,9 @@ def flagMVScores( necessarily present in a reduction interval for reduction actually to be performed. + target : None + ignored. + flag : float, default BAD flag to set. @@ -554,16 +558,18 @@ def flagMVScores( more details. Although [2] gives a fully detailed overview over the `stray` algorithm. """ + if target: + raise NotImplementedError("target is not implemented for this function") + fields = toSequence(field) for f in fields: data, flags = copyField(data, f, flags, f"trafo_{f}") data, flags = transform(data, f"trafo_{f}", flags, func=trafo, freq=partition) data, flags = assignKNNScore( - data, - "dummy", - flags, - fields=[f"trafo_{f}" for f in fields], + data=data, + field=[f"trafo_{f}" for f in fields], + flags=flags, target="kNN", n=n, func=func, @@ -586,10 +592,10 @@ def flagMVScores( ) data, flags = _evalStrayLabels( - data, - "kNN", - flags, + data=data, + field="kNN", fields=fields, + flags=flags, reduction_range=stray_range, reduction_drop_flagged=drop_flagged, reduction_thresh=thresh, @@ -604,15 +610,15 @@ def flagMVScores( return data, flags -@flagging(masking="field") +@flagging() def flagRaise( data: DictOfSeries, field: str, flags: Flags, thresh: float, - raise_window: FreqString, - freq: FreqString, - average_window: Optional[FreqString] = None, + raise_window: str, + freq: str, + average_window: Optional[str] = None, raise_factor: float = 2.0, slope: Optional[float] = None, weight: float = 0.8, @@ -673,7 +679,7 @@ def flagRaise( timestamps :math:`t_i`, is flagged a raise, if: * There is any value :math:`x_{s}`, preceeding :math:`x_{k}` within `raise_window` - range, so that: + range, so that: * :math:`M = |x_k - x_s | >` `thresh` :math:`> 0` @@ -684,8 +690,8 @@ def flagRaise( * :math:`x_k > \\mu^* + ( M` / `mean_raise_factor` :math:`)` - * Additionally, if `min_slope` is not `None`, :math:`x_{k}` is checked for being - sufficiently divergent from its very predecessor :max:`x_{k-1}`$, meaning that, it + * Additionally, if ``min_slope`` is not `None`, :math:`x_{k}` is checked for being + sufficiently divergent from its very predecessor :math:`x_{k-1}`, meaning that, it is additionally checked if: * :math:`x_k - x_{k-1} >` `min_slope` @@ -731,7 +737,6 @@ def flagRaise( raise_series = raise_series.apply(raise_check, args=(thresh,), raw=True) if raise_series.isna().all(): - flags[:, field] = UNTOUCHED return data, flags # "unflag" values of insufficient deviation to their predecessors @@ -792,12 +797,12 @@ def flagRaise( return data, flags -@flagging(masking="field") +@flagging() def flagMAD( data: DictOfSeries, field: str, flags: Flags, - window: FreqString, + window: str, z: float = 3.5, flag: float = BAD, **kwargs, @@ -838,7 +843,6 @@ def flagMAD( """ d = data[field] if d.empty: - flags[:, field] = UNTOUCHED return data, flags median = d.rolling(window=window, closed="both").median() @@ -849,9 +853,9 @@ def flagMAD( # In pandas <= 0.25.3, the window size is not fixed if the # window-argument to rolling is a frequency. That implies, # that during the first iterations the window has a size of - # 1, 2, 3, ... until it eventually covers the disered time - # span. For stuff the calculation of median, that is rather - # unfortunate, as the size of calculation base might differ + # 1, 2, 3, ... until it eventually covers the desired time + # span. For stuff like the calculation of median, that is rather + # unfortunate, as the size of the calculation base might differ # heavily. So don't flag something until, the window reaches # its target size if not isinstance(window, int): @@ -862,14 +866,14 @@ def flagMAD( return data, flags -@flagging(masking="field") +@flagging() def flagOffset( data: DictOfSeries, field: str, flags: Flags, thresh: float, tolerance: float, - window: Union[int, FreqString], + window: Union[int, str], thresh_relative: Optional[float] = None, flag: float = BAD, **kwargs, @@ -930,7 +934,6 @@ def flagOffset( """ dataseries = data[field].dropna() if dataseries.empty: - flags[:, field] = UNTOUCHED return data, flags # using reverted series - because ... long story. @@ -963,7 +966,6 @@ def flagOffset( post_jumps = post_jumps[post_jumps] if post_jumps.empty: - flags[:, field] = UNTOUCHED return data, flags # get all the entries preceding a significant jump @@ -1030,12 +1032,12 @@ def flagOffset( return data, flags -@flagging(masking="field") +@flagging() def flagByGrubbs( data: DictOfSeries, field: str, flags: Flags, - window: Union[FreqString, int], + window: Union[str, int], alpha: float = 0.05, min_periods: int = 8, pedantic: bool = False, @@ -1100,8 +1102,7 @@ def flagByGrubbs( [1] https://en.wikipedia.org/wiki/Grubbs%27s_test_for_outliers """ - data = data.copy() - datcol = data[field] + datcol = data[field].copy() rate = getFreqDelta(datcol.index) # if timeseries that is analyzed, is regular, @@ -1153,7 +1154,7 @@ def flagByGrubbs( return data, flags -@flagging(masking="field") +@flagging() def flagRange( data: DictOfSeries, field: str, @@ -1196,15 +1197,21 @@ def flagRange( return data, flags -@flagging(masking="all") +@register( + mask=["field"], + demask=["field"], + squeeze=["field"], + multivariate=True, + handles_target=True, +) def flagCrossStatistic( data: DictOfSeries, - field: str, + field: Sequence[str], flags: Flags, - fields: Sequence[str], thresh: float, method: Literal["modZscore", "Zscore"] = "modZscore", flag: float = BAD, + target: str = None, **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ @@ -1217,7 +1224,7 @@ def flagCrossStatistic( :math:`t_i`, are excluded from the following process (inner join of the :math:`f_i` fields.) 2. for every :math:`0 <= i <= K`, the value :math:`m_j = median(\\{data[f_1][t_i], data[f_2][t_i], ..., data[f_N][t_i]\\})` is calculated - 2. for every :math:`0 <= i <= K`, the set + 3. for every :math:`0 <= i <= K`, the set :math:`\\{data[f_1][t_i] - m_j, data[f_2][t_i] - m_j, ..., data[f_N][t_i] - m_j\\}` is tested for outliers with the specified method (`cross_stat` parameter). @@ -1225,12 +1232,10 @@ def flagCrossStatistic( ---------- data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - A dummy parameter. + field : list of str + List of fieldnames in data, determining wich variables are to be included into the flagging process. flags : saqc.Flags A flags object, holding flags and additional informations related to `data`. - fields : str - List of fieldnames in data, determining wich variables are to be included into the flagging process. thresh : float Threshold which the outlier score of an value must exceed, for being flagged an outlier. method : {'modZscore', 'Zscore'}, default 'modZscore' @@ -1243,6 +1248,10 @@ def flagCrossStatistic( flag : float, default BAD flag to set. + target : None + ignored + + Returns ------- data : dios.DictOfSeries @@ -1255,7 +1264,10 @@ def flagCrossStatistic( ---------- [1] https://www.itl.nist.gov/div898/handbook/eda/section3/eda35h.htm """ + if target: + raise NotImplementedError("target is not implemented for this function") + fields = toSequence(field) df = data[fields].loc[data[fields].index_of("shared")].to_df() if isinstance(method, str): @@ -1289,7 +1301,6 @@ def flagCrossStatistic( mask = diff_scores > thresh if mask.empty: - flags[:, field] = UNTOUCHED return data, flags for var in fields: diff --git a/saqc/funcs/pattern.py b/saqc/funcs/pattern.py index a5c23e0323dcebc4c88cc4c735b7d20c7d292b49..f1d3c86926f8eab5e698b268fd231885736567a9 100644 --- a/saqc/funcs/pattern.py +++ b/saqc/funcs/pattern.py @@ -1,18 +1,16 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -import numpy as np import pandas as pd import dtw -import pywt -from mlxtend.evaluate import permutation_test -from saqc.constants import * +from saqc.constants import BAD from saqc.core.register import flagging from saqc.lib.tools import customRoller -@flagging(masking="field") +# todo should we mask `reference` even if the func fail if reference has NaNs +@flagging() def flagPatternByWavelet( data, field, @@ -21,7 +19,7 @@ def flagPatternByWavelet( widths=(1, 2, 4, 8), waveform="mexh", flag=BAD, - **kwargs + **kwargs, ): """ Pattern recognition via wavelets. @@ -42,16 +40,16 @@ def flagPatternByWavelet( The fieldname of the data column, you want to correct. flags : saqc.Flags - The flags belongiong to `data`. + The flags belonging to ``data``. reference: str - The fieldname in `data' which holds the pattern. + The fieldname in ``data`' which holds the pattern. widths: tuple of int Widths for wavelet decomposition. [1] recommends a dyadic scale. Default: (1,2,4,8) - waveform: str. + waveform: str Wavelet to be used for decomposition. Default: 'mexh'. See [2] for a list. Returns @@ -180,7 +178,8 @@ def calculateDistanceByDTW( return distances.reindex(index=data.index) # reinsert NaNs -@flagging(masking="field") +# todo should we mask `reference` even if the func fail if reference has NaNs +@flagging() def flagPatternByDTW( data, field, @@ -190,7 +189,7 @@ def flagPatternByDTW( normalize=True, plot=False, flag=BAD, - **kwargs + **kwargs, ): """Pattern Recognition via Dynamic Time Warping. @@ -231,11 +230,12 @@ def flagPatternByDTW( Show a calibration plot, which can be quite helpful to find the right threshold for `max_distance`. It works best with `normalize=True`. Do not use in automatic setups / pipelines. The plot show three lines: - - data: the data the function was called on - - distances: the calculated distances by the algorithm - - indicator: have to distinct levels: `0` and the value of `max_distance`. - If `max_distance` is `0.0` it defaults to `1`. Everywhere where the - indicator is not `0` the data will be flagged. + + - data: the data the function was called on + - distances: the calculated distances by the algorithm + - indicator: have to distinct levels: `0` and the value of `max_distance`. + If `max_distance` is `0.0` it defaults to `1`. Everywhere where the + indicator is not `0` the data will be flagged. Returns ------- @@ -267,12 +267,12 @@ def flagPatternByDTW( distances = distances.fillna(max_distance + 1) # find minima filter by threshold - fw = customRoller(distances, window=winsz, forward=True, closed="both") - bw = customRoller(distances, window=winsz, closed="both") + fw = customRoller(distances, window=winsz, forward=True, closed="both", expand=True) + bw = customRoller(distances, window=winsz, closed="both", expand=True) minima = (fw.min() == bw.min()) & (distances <= max_distance) # Propagate True's to size of pattern. - rolling = customRoller(minima, window=winsz, closed="both") + rolling = customRoller(minima, window=winsz, closed="both", expand=True) mask = rolling.sum() > 0 if plot: diff --git a/saqc/funcs/resampling.py b/saqc/funcs/resampling.py index d617798384dac1b6bef059c6e59c3d0d3cd47871..35a1ce6626aa069d48ada12faeedb6bbf201a9d7 100644 --- a/saqc/funcs/resampling.py +++ b/saqc/funcs/resampling.py @@ -8,9 +8,9 @@ import pandas as pd from dios import DictOfSeries from saqc.constants import * -from saqc.core import processing, Flags -from saqc.core.register import _isflagged -from saqc.lib.tools import evalFreqStr, getFreqDelta +from saqc.core import register, Flags +from saqc.core.register import _isflagged, processing +from saqc.lib.tools import evalFreqStr, getFreqDelta, filterKwargs from saqc.lib.ts_operators import shift2Freq, aggregate2Freq from saqc.funcs.interpolation import interpolateIndex, _SUPPORTED_METHODS import saqc.funcs.tools as tools @@ -29,7 +29,11 @@ METHOD2ARGS = { @processing() def linear( - data: DictOfSeries, field: str, flags: Flags, freq: str, **kwargs + data: DictOfSeries, + field: str, + flags: Flags, + freq: str, + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ A method to "regularize" data by interpolating linearly the data at regular timestamp. @@ -66,7 +70,8 @@ def linear( The quality flags of data Flags values and shape may have changed relatively to the flags input. """ - + reserved = ["method", "order", "limit", "downgrade"] + kwargs = filterKwargs(kwargs, reserved) return interpolateIndex(data, field, flags, freq, "time", **kwargs) @@ -129,13 +134,15 @@ def interpolate( The quality flags of data Flags values and shape may have changed relatively to the flags input. """ - + reserved = ["limit", "downgrade"] + kwargs = filterKwargs(kwargs, reserved) return interpolateIndex( data, field, flags, freq, method=method, order=order, **kwargs ) -@processing() +# for @processing this would need to handle dfilter +@register(mask=["field"], demask=[], squeeze=[]) def shift( data: DictOfSeries, field: str, @@ -192,23 +199,19 @@ def shift( if datcol.empty: return data, flags - flagged = _isflagged(flags[field], kwargs["to_mask"]) - datcol[flagged] = np.nan freq = evalFreqStr(freq, freq_check, datcol.index) # do the shift datcol = shift2Freq(datcol, method, freq, fill_value=np.nan) # do the shift on the history - history = flags.history[field] - kws = dict(method=method, freq=freq) - history = history.apply( + + history = flags.history[field].apply( index=datcol.index, func_handle_df=True, - copy=False, func=shift2Freq, - func_kws={**kws, "fill_value": UNTOUCHED}, + func_kws={**kws, "fill_value": np.nan}, ) flags.history[field] = history @@ -216,7 +219,8 @@ def shift( return data, flags -@processing() +# for @processing this would need to handle dfilter +@register(mask=["field"], demask=[], squeeze=[]) def resample( data: DictOfSeries, field: str, @@ -318,9 +322,8 @@ def resample( The quality flags of data Flags values and shape may have changed relatively to the flags input. """ - flagged = _isflagged(flags[field], kwargs["to_mask"]) + datcol = data[field] - datcol[flagged] = np.nan freq = evalFreqStr(freq, freq_check, datcol.index) datcol = aggregate2Freq( @@ -337,7 +340,7 @@ def resample( method=method, freq=freq, agg_func=flag_func, - fill_value=UNTOUCHED, + fill_value=np.nan, max_invalid_total=maxna_flags, max_invalid_consec=maxna_group_flags, ) @@ -346,7 +349,6 @@ def resample( index=datcol.index, func=aggregate2Freq, func_kws=kws, - copy=False, ) data[field] = datcol @@ -412,11 +414,17 @@ def _inverseShift( return source.fillna(fill_value).astype(dtype, copy=False) -@processing() -def reindexFlags( +@register( + mask=[], + demask=[], + squeeze=[], + handles_target=True, # target is mandatory in func, so its allowed +) +def concatFlags( data: DictOfSeries, field: str, flags: Flags, + target: str, method: Literal[ "inverse_fagg", "inverse_bagg", @@ -426,39 +434,35 @@ def reindexFlags( "inverse_nshift", "inverse_interpolation", ], - source: str, freq: Optional[str] = None, drop: Optional[bool] = False, **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - The Function projects flags of "source" onto flags of "field". Wherever the "field" flags are "better" then the - source flags projected on them, they get overridden with this associated source flag value. - - Which "field"-flags are to be projected on which source flags, is controlled by the "method" and "freq" - parameters. + The Function appends flags history of ``fields`` to flags history of ``target``. + Before Appending, columns in ``field`` history are projected onto the target index via ``method`` method: (field_flag in associated with "field", source_flags associated with "source") - 'inverse_nagg' - all field_flags within the range +/- freq/2 of a source_flag, get assigned this source flags value. - (if source_flag > field_flag) - 'inverse_bagg' - all field_flags succeeding a source_flag within the range of "freq", get assigned this source flags - value. (if source_flag > field_flag) - 'inverse_fagg' - all field_flags preceeding a source_flag within the range of "freq", get assigned this source flags - value. (if source_flag > field_flag) + 'inverse_nagg' - all target_flags within the range +/- freq/2 of a field_flag, get assigned this field flags value. + (if field_flag > target_flag) + 'inverse_bagg' - all target_flags succeeding a field_flag within the range of "freq", get assigned this field flags + value. (if field_flag > target_flag) + 'inverse_fagg' - all target_flags preceeding a field_flag within the range of "freq", get assigned this field flags + value. (if field_flag > target_flag) - 'inverse_interpolation' - all field_flags within the range +/- freq of a source_flag, get assigned this source flags value. - (if source_flag > field_flag) + 'inverse_interpolation' - all target_flags within the range +/- freq of a field_flag, get assigned this source flags value. + (if field_flag > target_flag) - 'inverse_nshift' - That field_flag within the range +/- freq/2, that is nearest to a source_flag, gets the source - flags value. (if source_flag > field_flag) - 'inverse_bshift' - That field_flag succeeding a source flag within the range freq, that is nearest to a - source_flag, gets assigned this source flags value. (if source_flag > field_flag) - 'inverse_nshift' - That field_flag preceeding a source flag within the range freq, that is nearest to a - source_flag, gets assigned this source flags value. (if source_flag > field_flag) + 'inverse_nshift' - That target_flag within the range +/- freq/2, that is nearest to a field_flag, gets the source + flags value. (if field_flag > target_flag) + 'inverse_bshift' - That target_flag succeeding a field flag within the range freq, that is nearest to a + field_flag, gets assigned this field flags value. (if field_flag > target_flag) + 'inverse_nshift' - That target_flag preceeding a field flag within the range freq, that is nearest to a + field_flag, gets assigned this field flags value. (if field_flag > target_flag) - 'match' - any field_flag with a timestamp matching a source_flags timestamp gets this source_flags value - (if source_flag > field_flag) + 'match' - any target_flag with a timestamp matching a field_flags timestamp gets this field_flags value + (if field_flag > target_flag) Note, to undo or backtrack a resampling/shifting/interpolation that has been performed with a certain method, you can just pass the associated "inverse" method. Also you should pass the same drop flags keyword. @@ -469,23 +473,24 @@ def reindexFlags( A dictionary of pandas.Series, holding all the data. field : str - The fieldname of the data column, you want to project the source-flags onto. + Fieldname of flags history to append. flags : saqc.Flags Container to store flags of the data. - method : {'inverse_fagg', 'inverse_bagg', 'inverse_nagg', 'inverse_fshift', 'inverse_bshift', 'inverse_nshift'} - The method used for projection of source flags onto field flags. See description above for more details. + target : str + Field name of flags history to append to. - source : str - The source source of flags projection. + method : {'inverse_fagg', 'inverse_bagg', 'inverse_nagg', 'inverse_fshift', 'inverse_bshift', 'inverse_nshift', + 'match'} + The method used for projection of ``field`` flags onto ``target`` flags. See description above for more details. freq : {None, str},default None - The freq determines the projection range for the projection method. See above description for more details. - Defaultly (None), the sampling frequency of source is used. + The ``freq`` determines the projection range for the projection method. See above description for more details. + Defaultly (None), the sampling frequency of ``field`` is used. drop : default False - If set to `True`, the `source` column will be removed + If set to `True`, the `field` column will be removed after processing Returns ------- @@ -495,9 +500,9 @@ def reindexFlags( The quality flags of data Flags values and shape may have changed relatively to the flags input. """ - flagscol = flags[source] - target_datcol = data[field] - target_flagscol = flags[field] + flagscol = flags[field] + target_datcol = data[target] + target_flagscol = flags[target] if target_datcol.empty or flagscol.empty: return data, flags @@ -517,7 +522,7 @@ def reindexFlags( func = _inverseInterpolation func_kws = dict(freq=freq, chunk_bounds=ignore, target=dummy) - elif method[-3:] == "agg" or method == "match": + elif method[-3:] == "agg": projection_method = METHOD2ARGS[method][0] tolerance = METHOD2ARGS[method][1](freq) func = _inverseAggregation @@ -525,7 +530,7 @@ def reindexFlags( elif method[-5:] == "shift": drop_mask = target_datcol.isna() | _isflagged( - target_flagscol, kwargs["to_mask"] + target_flagscol, kwargs["dfilter"] ) projection_method = METHOD2ARGS[method][0] tolerance = METHOD2ARGS[method][1](freq) @@ -533,15 +538,19 @@ def reindexFlags( kws = dict( freq=tolerance, method=projection_method, drop_mask=drop_mask, target=dummy ) - func_kws = {**kws, "fill_value": UNTOUCHED} + func_kws = {**kws, "fill_value": np.nan} + + elif method == "match": + func = lambda x: x + func_kws = {} else: raise ValueError(f"unknown method {method}") - history = flags.history[source].apply(dummy.index, func, func_kws, copy=False) - flags.history[field] = flags.history[field].append(history) + history = flags.history[field].apply(dummy.index, func, func_kws) + flags.history[target].append(history) if drop: - data, flags = tools.dropField(data=data, flags=flags, field=source) + data, flags = tools.dropField(data=data, flags=flags, field=field) return data, flags diff --git a/saqc/funcs/residues.py b/saqc/funcs/residues.py index bc21514671c6a6bb3bbf9c57aace11b484ac5c91..3adea11ed60bd7b1137846602f5df60b488b3bde 100644 --- a/saqc/funcs/residues.py +++ b/saqc/funcs/residues.py @@ -2,137 +2,157 @@ # -*- coding: utf-8 -*- from typing import Tuple, Union, Optional, Callable + +import pandas as pd from typing_extensions import Literal import numpy as np from dios import DictOfSeries from saqc.constants import * -from saqc.core import flagging, Flags -from saqc.funcs.rolling import roll -from saqc.funcs.curvefit import fitPolynomial +from saqc.core import register, Flags +from saqc.funcs.rolling import _roll +from saqc.funcs.curvefit import _fitPolynomial +from saqc.lib.tools import filterKwargs -@flagging(masking="field") +@register(mask=["field"], demask=[], squeeze=[]) def calculatePolynomialResidues( data: DictOfSeries, field: str, flags: Flags, window: Union[str, int], order: int, - set_flags: bool = True, # TODO, not valid anymore, if still needed, maybe assign user-passed ``flag``? min_periods: Optional[int] = 0, - flag: float = BAD, **kwargs ) -> Tuple[DictOfSeries, Flags]: """ - Function fits a polynomial model to the data and returns the residues. - - The residue for value x is calculated by fitting a polynomial of degree "order" to a data slice - of size "window", wich has x at its center. - - Note, that the residues will be stored to the `field` field of the input data, so that the original data, the - polynomial is fitted to, gets overridden. + Fits a polynomial model to the data and calculate the residues. - Note, that, if data[field] is not alligned to an equidistant frequency grid, the window size passed, - has to be an offset string. Also numba boost options don`t apply for irregularly sampled - timeseries. + The residue is calculated by fitting a polynomial of degree `order` to a data + slice of size `window`, that has x at its center. - Note, that calculating the residues tends to be quite costy, because a function fitting is perfomed for every - sample. To improve performance, consider the following possibillities: + Note, that calculating the residues tends to be quite costy, because a function + fitting is performed for every sample. To improve performance, consider the + following possibilities: In case your data is sampled at an equidistant frequency grid: - (1) If you know your data to have no significant number of missing values, or if you do not want to - calculate residues for windows containing missing values any way, performance can be increased by setting - min_periods=window. - - (2) If your data consists of more then around 200000 samples, setting numba=True, will boost the - calculations up to a factor of 5 (for samplesize > 300000) - however for lower sample sizes, - numba will slow down the calculations, also, up to a factor of 5, for sample_size < 50000. - By default (numba='auto'), numba is set to true, if the data sample size exceeds 200000. - - in case your data is not sampled at an equidistant frequency grid: + (1) If you know your data to have no significant number of missing values, + or if you do not want to calculate residues for windows containing missing values + any way, performance can be increased by setting min_periods=window. - (1) Harmonization/resampling of your data will have a noticable impact on polyfittings performance - since - numba_boost doesnt apply for irregularly sampled data in the current implementation. + Note, that the initial and final window/2 values do not get fitted. - Note, that in the current implementation, the initial and final window/2 values do not get fitted. + Each residual gets assigned the worst flag present in the interval of + the original data. Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data. + field : str - The fieldname of the column, holding the data-to-be-modelled. + The column, holding the data-to-be-modelled. + flags : saqc.Flags Container to store quality flags to data. + window : {str, int} - The size of the window you want to use for fitting. If an integer is passed, the size - refers to the number of periods for every fitting window. If an offset string is passed, - the size refers to the total temporal extension. The window will be centered around the vaule-to-be-fitted. - For regularly sampled timeseries the period number will be casted down to an odd number if - even. + The size of the window you want to use for fitting. If an integer is passed, + the size refers to the number of periods for every fitting window. If an + offset string is passed, the size refers to the total temporal extension. The + window will be centered around the vaule-to-be-fitted. For regularly sampled + timeseries the period number will be casted down to an odd number if even. + order : int The degree of the polynomial used for fitting - set_flags : bool, default True - Wheather or not to assign new flags to the calculated residuals. If True, a residual gets assigned the worst - flag present in the interval, the data for its calculation was obtained from. - min_periods : {int, None}, default 0 - The minimum number of periods, that has to be available in every values fitting surrounding for the polynomial - fit to be performed. If there are not enough values, np.nan gets assigned. Default (0) results in fitting - regardless of the number of values present (results in overfitting for too sparse intervals). To automatically - set the minimum number of periods to the number of values in an offset defined window size, pass np.nan. - flag : float, default BAD - flag to set. + + min_periods : int or None, default 0 + The minimum number of periods, that has to be available in every values + fitting surrounding for the polynomial fit to be performed. If there are not + enough values, np.nan gets assigned. Default (0) results in fitting + regardless of the number of values present (results in overfitting for too + sparse intervals). To automatically set the minimum number of periods to the + number of values in an offset defined window size, pass np.nan. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. - Data values may have changed relatively to the data input. flags : saqc.Flags - The quality flags of data - Flags values may have changed relatively to the flags input. - """ - return fitPolynomial( - data, - field, - flags, + reserved = ["residues", "set_flags"] + filterKwargs(kwargs, reserved) + return _fitPolynomial( + data=data, + field=field, + flags=flags, window=window, order=order, - set_flags=set_flags, min_periods=min_periods, + **kwargs, + # ctrl args return_residues=True, - flag=flag, - **kwargs + set_flags=True, ) -@flagging(masking="field") +@register(mask=["field"], demask=[], squeeze=[]) def calculateRollingResidues( data: DictOfSeries, field: str, flags: Flags, window: Union[str, int], - func: Callable[[np.ndarray], np.ndarray] = np.mean, - set_flags: bool = True, + func: Callable[[pd.Series], np.ndarray] = np.mean, min_periods: Optional[int] = 0, center: bool = True, - flag: float = BAD, **kwargs ) -> Tuple[DictOfSeries, Flags]: - """TODO: docstring needed""" - return roll( - data, - field, - flags, + """ + Calculate the diff of a rolling-window function and the data. + + Note, that the data gets assigned the worst flag present in the original data. + + Parameters + ---------- + data : dios.DictOfSeries + The data. + field : str + The column to calculate on. + flags : saqc.Flags + Container to store quality flags to data. + window : {int, str} + The size of the window you want to roll with. If an integer is passed, the size + refers to the number of periods for every fitting window. If an offset string + is passed, the size refers to the total temporal extension. For regularly + sampled timeseries, the period number will be casted down to an odd number if + ``center=True``. + func : Callable, default np.mean + Function to roll with. + min_periods : int, default 0 + The minimum number of periods to get a valid value + center : bool, default True + If True, center the rolling window. + + Returns + ------- + data : dios.DictOfSeries + A dictionary of pandas.Series, holding all the data. + Data values may have changed relatively to the data input. + flags : saqc.Flags + The quality flags of data + """ + reserved = ["return_residues", "set_flags"] + kwargs = filterKwargs(kwargs, reserved) + return _roll( + data=data, + field=field, + flags=flags, window=window, func=func, - set_flags=set_flags, min_periods=min_periods, center=center, + **kwargs, + # ctrl args + set_flags=True, return_residues=True, - flag=flag, - **kwargs ) diff --git a/saqc/funcs/rolling.py b/saqc/funcs/rolling.py index 5eb13520115314e2735234c1aeb2feccee23bb92..ff73d7887838f9d532cfcbaf4e6eac742dc84c21 100644 --- a/saqc/funcs/rolling.py +++ b/saqc/funcs/rolling.py @@ -1,65 +1,52 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -from typing import Union, Callable +from typing import Union, Callable, Tuple import numpy as np import pandas as pd from dios import DictOfSeries from saqc.constants import * -from saqc.core import flagging, Flags -from saqc.lib.tools import getFreqDelta +from saqc.core import register, Flags +from saqc.lib.tools import getFreqDelta, filterKwargs -@flagging(masking="field") +@register(mask=["field"], demask=[], squeeze=[]) def roll( data: DictOfSeries, field: str, flags: Flags, window: Union[str, int], - func: Callable[[pd.Series], float] = np.mean, - set_flags: bool = True, # TODO: not applicable anymore + func: Callable[[pd.Series], np.ndarray] = np.mean, min_periods: int = 0, center: bool = True, - return_residues=False, # TODO: this should not be public, a wrapper would be better - flag: float = BAD, **kwargs -): +) -> Tuple[DictOfSeries, Flags]: """ - Models the data with the rolling mean and returns the residues. + Calculate a rolling-window function on the data. - Note, that the residues will be stored to the `field` field of the input data, so that the data that is modelled - gets overridden. + Note, that the data gets assigned the worst flag present in the original data. Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data. field : str - The fieldname of the column, holding the data-to-be-modelled. + The column to calculate on. flags : saqc.Flags Container to store quality flags to data. window : {int, str} The size of the window you want to roll with. If an integer is passed, the size - refers to the number of periods for every fitting window. If an offset string is passed, - the size refers to the total temporal extension. - For regularly sampled timeseries, the period number will be casted down to an odd number if - center = True. - func : Callable[np.array, float], default np.mean - Function to apply on the rolling window and obtain the curve fit value. - set_flags : bool, default True - Wheather or not to assign new flags to the calculated residuals. If True, a residual gets assigned the worst - flag present in the interval, the data for its calculation was obtained from. - Currently not implemented in combination with not-harmonized timeseries. + refers to the number of periods for every fitting window. If an offset string + is passed, the size refers to the total temporal extension. For regularly + sampled timeseries, the period number will be casted down to an odd number if + ``center=True``. + func : Callable, default np.mean + Function to roll with. min_periods : int, default 0 - The minimum number of periods, that has to be available in every values fitting surrounding for the mean - fitting to be performed. If there are not enough values, np.nan gets assigned. Default (0) results in fitting - regardless of the number of values present. + The minimum number of periods to get a valid value center : bool, default True - Wheather or not to center the window the mean is calculated of around the reference value. If False, - the reference value is placed to the right of the window (classic rolling mean with lag.) - flag : float, default BAD - flag to set. + If True, center the rolling window. Returns ------- @@ -69,14 +56,42 @@ def roll( flags : saqc.Flags The quality flags of data """ - data = data.copy() - to_fit = data[field] + reserved = ["return_residues", "set_flags"] + kwargs = filterKwargs(kwargs, reserved) + return _roll( + data=data, + field=field, + flags=flags, + window=window, + func=func, + min_periods=min_periods, + center=center, + **kwargs, + # ctrl args + set_flags=True, + return_residues=False, + ) + + +def _roll( + data: DictOfSeries, + field: str, + flags: Flags, + window: Union[str, int], + func: Callable[[pd.Series], np.ndarray] = np.mean, + set_flags: bool = True, + min_periods: int = 0, + center: bool = True, + return_residues=False, + **kwargs +): + to_fit = data[field].copy() if to_fit.empty: - flags[:, field] = UNTOUCHED return data, flags regular = getFreqDelta(to_fit.index) - # starting with the annoying case: finding the rolling interval centers of not-harmonized input time series: + # starting with the annoying case: finding the rolling interval + # centers of not-harmonized input time series: if center and not regular: if isinstance(window, int): raise NotImplementedError( @@ -138,7 +153,6 @@ def roll( data[field] = means if set_flags: - # TODO: we does not get any flags here, because of masking=field worst = flags[field].rolling(window, center=True, min_periods=min_periods).max() flags[field] = worst diff --git a/saqc/funcs/scores.py b/saqc/funcs/scores.py index dba04b3302cad157a5d489f7fdeb9212c503c9d2..5c41170b68f3decd4aabd9e81e05737ab8e080eb 100644 --- a/saqc/funcs/scores.py +++ b/saqc/funcs/scores.py @@ -7,18 +7,23 @@ import pandas as pd from dios import DictOfSeries from saqc.constants import * -from saqc.core import flagging, Flags +from saqc.core import register, Flags from saqc.lib.tools import toSequence import saqc.lib.ts_operators as ts_ops -@flagging(masking="all") +@register( + mask=["field"], + demask=[], + squeeze=["target"], + multivariate=True, + handles_target=True, +) def assignKNNScore( data: DictOfSeries, - field: str, + field: Sequence[str], flags: Flags, - fields: Sequence[str], - target: str = "kNNscores", + target: str, n: int = 10, func: Callable[[pd.Series], float] = np.sum, freq: Union[float, str] = np.inf, @@ -26,7 +31,7 @@ def assignKNNScore( method: Literal["ball_tree", "kd_tree", "brute", "auto"] = "ball_tree", metric: str = "minkowski", p: int = 2, - **kwargs + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ TODO: docstring need a rework @@ -36,8 +41,9 @@ def assignKNNScore( The steps taken to calculate the scores are as follows: - 1. All the timeseries, named fields, are combined to one feature space by an *inner* join on their date time indexes. - thus, only samples, that share timestamps across all fields will be included in the feature space + 1. All the timeseries, given through ``field``, are combined to one feature space by an *inner* join on their + date time indexes. thus, only samples, that share timestamps across all ``field`` will be included in the + feature space. 2. Any datapoint/sample, where one ore more of the features is invalid (=np.nan) will get excluded. 3. For every data point, the distance to its `n` nearest neighbors is calculated by applying the metric `metric` at grade `p` onto the feature space. The defaults lead to the euclidian to be applied. @@ -53,10 +59,12 @@ def assignKNNScore( ---------- data : dios.DictOfSeries A dictionary of pandas.Series, holding all the data. - field : str - Dummy Variable. + field : list of str + input variable names. flags : saqc.flags - A flags object, holding flags and additional informations related to `data`.fields + A flags object, holding flags and additional informations related to `data`. + target : str, default "kNNscores" + A new Column name, where the result is stored. n : int, default 10 The number of nearest neighbors to which the distance is comprised in every datapoints scoring calculation. func : Callable[numpy.array, float], default np.sum @@ -88,31 +96,22 @@ def assignKNNScore( The grade of the metrice specified by parameter `metric`. The keyword just gets passed on to the underlying sklearn method. See reference [1] for more information on the algorithm. - radius : {None, float}, default None - If the radius is not None, only the distance to neighbors that ly within the range specified by `radius` - are comprised in the scoring aggregation. - The scoring method passed must be capable of handling np.nan values - since, for every point missing - within `radius` range to make complete the list of the distances to the `n` nearest neighbors, - one np.nan value gets appended to the list passed to the scoring method. - The keyword just gets passed on to the underlying sklearn method. - See reference [1] for more information on the algorithm. References ---------- [1] https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.NearestNeighbors.html """ - data = data.copy() - fields = toSequence(fields) - - val_frame = data[fields] + if target in data.columns: + raise ValueError(f"'target' must not exist.") + fields = toSequence(field) + val_frame = data[fields].copy() score_index = val_frame.index_of("shared") - score_ser = pd.Series(np.nan, index=score_index, name=field) + score_ser = pd.Series(np.nan, index=score_index, name=target) val_frame = val_frame.loc[val_frame.index_of("shared")].to_df() val_frame.dropna(inplace=True) if val_frame.empty: - flags[:, target] = UNTOUCHED return data, flags # partitioning @@ -146,7 +145,6 @@ def assignKNNScore( score_ser[partition.index] = resids flags[target] = pd.Series(UNFLAGGED, index=score_ser.index, dtype=float) - data[target] = score_ser return data, flags diff --git a/saqc/funcs/tools.py b/saqc/funcs/tools.py index c8cace05fc624445cd2a2e61f410780eefc5b2fd..9bd2ee6d668dc842c97d8f66f2adc764b462e1e9 100644 --- a/saqc/funcs/tools.py +++ b/saqc/funcs/tools.py @@ -12,21 +12,20 @@ import matplotlib.pyplot as plt import pickle from saqc.constants import * -from saqc.lib.types import FreqString -from saqc.core import processing, Flags -from saqc.lib.tools import periodicMask +from saqc.core.register import processing +from saqc.core import register, Flags +from saqc.lib.tools import periodicMask, filterKwargs from saqc.lib.plotting import makeFig _MPL_DEFAULT_BACKEND = mpl.get_backend() -@processing() +@register(mask=[], demask=[], squeeze=[], handles_target=True) def copyField( - data: DictOfSeries, field: str, flags: Flags, new_field: str, **kwargs + data: DictOfSeries, field: str, flags: Flags, target: str, **kwargs ) -> Tuple[DictOfSeries, Flags]: """ - The function generates a copy of the data "field" and inserts it under the name field + suffix into the existing - data. + Copy data and flags to a new name (preserve flags history). Parameters ---------- @@ -36,7 +35,7 @@ def copyField( The fieldname of the data column, you want to fork (copy). flags : saqc.Flags Container to store quality flags to data. - new_field: str + target: str Target name. Returns @@ -48,12 +47,12 @@ def copyField( The quality flags of data Flags shape may have changed relatively to the flags input. """ - if new_field in flags.columns.union(data.columns): + if target in flags.columns.union(data.columns): raise ValueError(f"{field}: field already exist") - data[new_field] = data[field].copy() - # implicit copy in history access - flags.history[new_field] = flags.history[field] + data[target] = data[field].copy() + flags.history[target] = flags.history[field].copy() + return data, flags @@ -62,7 +61,7 @@ def dropField( data: DictOfSeries, field: str, flags: Flags, **kwargs ) -> Tuple[DictOfSeries, Flags]: """ - The function drops field from the data dios and the flags. + Drops field from the data and flags. Parameters ---------- @@ -92,7 +91,7 @@ def renameField( data: DictOfSeries, field: str, flags: Flags, new_name: str, **kwargs ) -> Tuple[DictOfSeries, Flags]: """ - The function renames field to new name (in both, the flags and the data). + Rename field in data and flags. Parameters ---------- @@ -119,7 +118,7 @@ def renameField( return data, flags -@processing() +@register(mask=[], demask=[], squeeze=["field"]) def maskTime( data: DictOfSeries, field: str, @@ -132,7 +131,7 @@ def maskTime( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - This function realizes masking within saqc. + Realizes masking within saqc. Due to some inner saqc mechanics, it is not straight forwardly possible to exclude values or datachunks from flagging routines. This function replaces flags with UNFLAGGED @@ -141,12 +140,12 @@ def maskTime( Here comes a recipe on how to apply a flagging function only on a masked chunk of the variable field: - 1. dublicate "field" in the input data (copy) - 2. mask the dublicated data (mask) - 3. apply the tests you only want to be applied onto the masked data chunks (saqc_tests) + 1. dublicate "field" in the input data (`copyField`) + 2. mask the dublicated data (this, `maskTime`) + 3. apply the tests you only want to be applied onto the masked data chunks (a saqc function) 4. project the flags, calculated on the dublicated and masked data onto the original field data - (projectFlags or flagGeneric) - 5. drop the dublicated data (drop) + (`concateFlags` or `flagGeneric`) + 5. drop the dublicated data (`dropField`) To see an implemented example, checkout flagSeasonalRange in the saqc.functions module @@ -164,9 +163,9 @@ def maskTime( - "mask_var": data[mask_var] is expected to be a boolean valued timeseries and is used as mask. mask_field : {None, str}, default None Only effective if mode == "mask_var" - Fieldname of the column, holding the data that is to be used as mask. (must be moolean series) + Fieldname of the column, holding the data that is to be used as mask. (must be boolean series) Neither the series` length nor its labels have to match data[field]`s index and length. An inner join of the - indices will be calculated and values get masked where the values of the inner join are "True". + indices will be calculated and values get masked where the values of the inner join are ``True``. start : {None, str}, default None Only effective if mode == "seasonal" String denoting starting point of every period. Formally, it has to be a truncated instance of "mm-ddTHH:MM:SS". @@ -228,42 +227,43 @@ def maskTime( When inclusive_selection="season", all above examples work the same way, only that you now determine wich values NOT TO mask (=wich values are to constitute the "seasons"). """ - data = data.copy() datcol_idx = data[field].index if mode == "periodic": - to_mask = periodicMask(datcol_idx, start, end, closed) + mask = periodicMask(datcol_idx, start, end, closed) elif mode == "mask_field": idx = data[mask_field].index.intersection(datcol_idx) - to_mask = data.loc[idx, mask_field] + mask = data.loc[idx, mask_field] else: raise ValueError("Keyword passed as masking mode is unknown ({})!".format(mode)) - data.aloc[to_mask, field] = np.nan - flags[to_mask, field] = UNFLAGGED + data.aloc[mask, field] = np.nan + flags[mask, field] = UNFLAGGED return data, flags -@processing() +@register(mask=[], demask=[], squeeze=[]) def plot( data: DictOfSeries, field: str, flags: Flags, path: Optional[str] = None, - max_gap: Optional[FreqString] = None, + max_gap: Optional[str] = None, stats: bool = False, - plot_kwargs: Optional[dict] = None, - fig_kwargs: Optional[dict] = None, + history: Optional[Literal["valid", "complete", "clear"]] = "valid", + xscope: Optional[slice] = None, + phaseplot: Optional[str] = None, stats_dict: Optional[dict] = None, store_kwargs: Optional[dict] = None, + dfilter: float = FILTER_ALL, **kwargs, ): """ - Stores or shows a figure object, containing data graph with flag marks for field. + Plot data and flags or store plot to file. - There are two modes, 'interactive' and 'store' mode, wich is determind via the + There are two modes, 'interactive' and 'store', which are determind through the ``save_path`` keyword. In interactive mode (default) the plot is shown at runtime - and the execution stops until the plot window is closed manually by a user. In + and the program execution stops until the plot window is closed manually. In store mode the generated plot is stored to disk and no manually interaction is needed. @@ -287,31 +287,27 @@ def plot( max_gap : str, default None If None, all the points in the data will be connected, resulting in long linear lines, where continous chunks of data is missing. Nans in the data get dropped - before plotting. If an Offset string is passed, only points that have a distance + before plotting. If an offset string is passed, only points that have a distance below `max_gap` get connected via the plotting line. stats : bool, default False Whether to include statistics table in plot. - plot_kwargs : dict, default None - Keyword arguments controlling plot generation. Will be passed on to the - ``Matplotlib.axes.Axes.set()`` property batch setter for the axes showing the - data plot. The most relevant of those properties might be "ylabel", "title" and - "ylim". In Addition, following options are available: - - * {'slice': s} property, that determines a chunk of the data to be plotted / - processed. `s` can be anything, that is a valid argument to the - ``pandas.Series.__getitem__`` method. - * {'history': str} - * str="all": All the flags are plotted with colored dots, refering to the - tests they originate from - * str="valid": - same as 'all' - but only plots those flags, that are not - removed by later tests - - fig_kwargs : dict, default None - Keyword arguments controlling figure generation. In interactive mode, - ``None`` defaults to ``{"figsize": (16, 9)}`` to ensure a proper figure size - in store-mode. + history : {"valid", "complete", None}, default "valid" + Discriminate the plotted flags with respect to the tests they originate from. + + * "valid" - Only plot those flags, that do not get altered or "unflagged" by subsequent tests. Only list tests + in the legend, that actually contributed flags to the overall resault. + * "complete" - plot all the flags set and list all the tests ran on a variable. Suitable for debugging/tracking. + * "clear" - clear plot from all the flagged values + * None - just plot the resulting flags for one variable, without any historical meta information. + + xscope : slice or Offset, default None + Parameter, that determines a chunk of the data to be plotted + processed. `xscope` can be anything, that is a valid argument to the ``pandas.Series.__getitem__`` method. + + phaseplot : str or None, default None + If a string is passed, plot ``field`` in the phase space it forms together with the Variable ``phaseplot``. store_kwargs : dict, default {} Keywords to be passed on to the ``matplotlib.pyplot.savefig`` method, handling @@ -320,11 +316,11 @@ def plot( Reopen with: ``pickle.load(open(savepath,'w')).show()`` stats_dict: dict, default None - (Only relevant if `stats`=True) + (Only relevant if ``stats = True``) Dictionary of additional statisticts to write to the statistics table accompanying the data plot. An entry to the stats_dict has to be of the form: - * {"stat_name": lambda x, y, z: func(x, y, z)} + * ``{"stat_name": lambda x, y, z: func(x, y, z)}`` The lambda args ``x``,``y``,``z`` will be fed by: @@ -349,7 +345,13 @@ def plot( >>> func = lambda x, y, z: round((x.isna().sum()) / len(x), 2) """ + interactive = path is None + level = kwargs.get("flag", BAD) + + if dfilter < np.inf: + data = data.copy() + data.loc[flags[field] >= dfilter, field] = np.nan if store_kwargs is None: store_kwargs = {} @@ -359,19 +361,17 @@ def plot( else: mpl.use("Agg") - # ensure a proper size in stored plot - if fig_kwargs is None: - fig_kwargs = {"figsize": (16, 9)} fig = makeFig( data=data, field=field, flags=flags, - level=kwargs.get("flag", BAD), + level=level, max_gap=max_gap, stats=stats, - plot_kwargs=plot_kwargs, - fig_kwargs=fig_kwargs, + history=history, + xscope=xscope, + phaseplot=phaseplot, stats_dict=stats_dict, ) diff --git a/saqc/funcs/transformation.py b/saqc/funcs/transformation.py index 357e948cdbbf47a945b2a8f1e16ce5e1fa064197..560dc4bb143b9d5473f7c3a7798fe77475111c61 100644 --- a/saqc/funcs/transformation.py +++ b/saqc/funcs/transformation.py @@ -6,10 +6,10 @@ import numpy as np import pandas as pd from dios import DictOfSeries -from saqc.core import flagging, Flags +from saqc.core import register, Flags -@flagging(masking="field") +@register(mask=["field"], demask=[], squeeze=[]) def transform( data: DictOfSeries, field: str, @@ -49,9 +49,7 @@ def transform( flags : saqc.Flags The quality flags of data """ - - data = data.copy() - val_ser = data[field] + val_ser = data[field].copy() # partitioning if not freq: freq = val_ser.shape[0] diff --git a/saqc/lib/plotting.py b/saqc/lib/plotting.py index b9cab2c6bec2530fcc2bc4ac9a0263a7a0896e89..08305933f2d25838cc8f4cb627fbaa7d46740078 100644 --- a/saqc/lib/plotting.py +++ b/saqc/lib/plotting.py @@ -2,13 +2,17 @@ # -*- coding: utf-8 -*- from typing import Optional - +from typing_extensions import Literal +from saqc.lib.tools import toSequence import pandas as pd +import numpy as np import matplotlib as mpl - +import itertools +import matplotlib.pyplot as plt +import seaborn from saqc.constants import * from saqc.core import Flags -from saqc.lib.types import DiosLikeT, FreqString +from saqc.lib.types import DiosLikeT STATSDICT = { @@ -19,16 +23,29 @@ STATSDICT = { "flagged percentage": lambda x, y, z: round(((y >= z).sum()) / len(x), 2), } +PLOT_KWARGS = {"alpha": 0.8, "linewidth": 1} +AX_KWARGS = {} +FIG_KWARGS = {"figsize": (16, 9)} +SCATTER_KWARGS = { + "marker": ["s", "D", "^", "o"], + "color": seaborn.color_palette("bright"), + "alpha": 0.7, + "zorder": 10, + "edgecolors": "black", + "s": 70, +} + def makeFig( data: DiosLikeT, field: str, flags: Flags, level: float, - max_gap: Optional[FreqString] = None, + max_gap: Optional[str] = None, stats: bool = False, - plot_kwargs: Optional[dict] = None, - fig_kwargs: Optional[dict] = None, + history: Optional[Literal["valid", "complete"]] = "valid", + xscope: Optional[slice] = None, + phaseplot: Optional[str] = None, stats_dict: Optional[dict] = None, ): """ @@ -57,24 +74,19 @@ def makeFig( stats : bool, default False Whether to include statistics table in plot. - plot_kwargs : dict, default None - Keyword arguments controlling plot generation. Will be passed on to the - ``Matplotlib.axes.Axes.set()`` property batch setter for the axes showing the - data plot. The most relevant of those properties might be "ylabel", - "title" and "ylim". - In Addition, following options are available: - - * {'slice': s} property, that determines a chunk of the data to be plotted / - processed. `s` can be anything, - that is a valid argument to the ``pandas.Series.__getitem__`` method. - * {'history': str} - * str="all": All the flags are plotted with colored dots, refering to the - tests they originate from - * str="valid": - same as 'all' - but only plots those flags, that are not - removed by later tests - fig_kwargs : dict, default None - Keyword arguments controlling figure generation. None defaults to - {"figsize": (16, 9)} + history : {"valid", "complete", None}, default "valid" + Discriminate the plotted flags with respect to the tests they originate from. + * "valid" - Only plot those flags, that do not get altered or "unflagged" by subsequent tests. Only list tests + in the legend, that actually contributed flags to the overall resault. + * "complete" - plot all the flags set and list all the tests ran on a variable. Suitable for debugging/tracking. + * "clear" - clear plot from all the flagged values + * None - just plot the resulting flags for one variable, without any historical meta information. + + xscope : slice or Offset, default None + Parameter, that determines a chunk of the data to be plotted / + processed. `s` can be anything, that is a valid argument to the ``pandas.Series.__getitem__`` method. + + phaseplot : stats_dict: dict, default None (Only relevant if `stats`=True). @@ -111,33 +123,45 @@ def makeFig( >>> func = lambda x, y, z: round((x.isna().sum()) / len(x), 2) """ - if plot_kwargs is None: - plot_kwargs = {"history": False} - if fig_kwargs is None: - fig_kwargs = {} + if stats_dict is None: stats_dict = {} # data retrieval d = data[field] # data slicing: - s = plot_kwargs.pop("slice", slice(None)) - d = d[s] - flags_vals = flags[field][s] - flags_hist = flags.history[field].hist.loc[s] + xscope = xscope or slice(xscope) + d = d[xscope] + flags_vals = flags[field][xscope] + flags_hist = flags.history[field].hist.loc[xscope] + flags_meta = flags.history[field].meta if stats: stats_dict.update(STATSDICT) stats_dict = _evalStatsDict(stats_dict, d, flags_vals, level) na_mask = d.isna() d = d[~na_mask] + if phaseplot: + flags_vals = flags_vals.copy() + flags_hist = flags_hist.copy() + phase_index = data[phaseplot][xscope].values + phase_index_d = phase_index[~na_mask] + na_mask.index = phase_index + d.index = phase_index_d + flags_vals.index = phase_index + flags_hist.index = phase_index + plot_kwargs = {**PLOT_KWARGS, **{"marker": "o", "linewidth": 0}} + ax_kwargs = {**{"xlabel": phaseplot, "ylabel": d.name}, **AX_KWARGS} + else: + plot_kwargs = PLOT_KWARGS + ax_kwargs = AX_KWARGS # insert nans between values mutually spaced > max_gap - if max_gap: + if max_gap and not d.empty: d = _insertBlockingNaNs(d, max_gap) # figure composition - fig = mpl.pyplot.figure(constrained_layout=True, **fig_kwargs) + fig = mpl.pyplot.figure(constrained_layout=True, **FIG_KWARGS) grid = fig.add_gridspec() if stats: plot_gs, tab_gs = grid[0].subgridspec(ncols=2, nrows=1, width_ratios=[5, 1]) @@ -147,7 +171,19 @@ def makeFig( else: ax = fig.add_subplot(grid[0]) - _plotVarWithFlags(ax, d, flags_vals, flags_hist, level, plot_kwargs, na_mask) + _plotVarWithFlags( + ax, + d, + flags_vals, + flags_hist, + flags_meta, + history, + level, + na_mask, + plot_kwargs, + ax_kwargs, + SCATTER_KWARGS, + ) return fig @@ -173,34 +209,76 @@ def _plotStatsTable(ax, stats_dict): tab_obj.set_fontsize(10) -def _plotVarWithFlags(ax, datser, flags_vals, flags_hist, level, plot_kwargs, na_mask): +def _plotVarWithFlags( + ax, + datser, + flags_vals, + flags_hist, + flags_meta, + history, + level, + na_mask, + plot_kwargs, + ax_kwargs, + scatter_kwargs, +): + scatter_kwargs = scatter_kwargs.copy() ax.set_title(datser.name) - ax.plot(datser) - history = plot_kwargs.pop("history", False) - ax.set(**plot_kwargs) + ax.plot(datser, color="black", **plot_kwargs) + ax.set(**ax_kwargs) + shape_cycle = scatter_kwargs.get("marker", "o") + shape_cycle = itertools.cycle(toSequence(shape_cycle)) + color_cycle = scatter_kwargs.get( + "color", plt.rcParams["axes.prop_cycle"].by_key()["color"] + ) + color_cycle = itertools.cycle(toSequence(color_cycle)) if history: for i in flags_hist.columns: - if history == "all": - _plotFlags( - ax, - datser, - flags_hist[i], - na_mask, - level, - {"label": "test " + str(i)}, + # catch empty but existing history case (flags_meta={}) + if len(flags_meta[i]) == 0: + continue + label = ( + flags_meta[i]["kwargs"].get("label", None) + or flags_meta[i]["func"].split(".")[-1] + ) + scatter_kwargs.update({"label": label}) + flags_i = flags_hist[i].astype(float) + if history == "complete": + scatter_kwargs.update( + {"color": next(color_cycle), "marker": next(shape_cycle)} ) + _plotFlags(ax, datser, flags_i, na_mask, level, scatter_kwargs) if history == "valid": + # only plot those flags, that do not get altered later on: + mask = flags_i.eq(flags_vals) + flags_i[~mask] = np.nan + # Skip plot, if the test did not have no effect on the all over flagging result. This avoids + # legend overflow + if ~(flags_i >= level).any(): + continue + + # Also skip plot, if all flagged values are np.nans (to catch flag missing and masked results mainly) + temp_i = datser.index.join(flags_i.index, how="inner") + if datser[temp_i][flags_i[temp_i].notna()].isna().all() or ( + "flagMissing" in flags_meta[i]["func"] + ): + continue + + scatter_kwargs.update( + {"color": next(color_cycle), "marker": next(shape_cycle)} + ) _plotFlags( ax, datser, - flags_hist[i].combine(flags_vals, min), + flags_i, na_mask, level, - {"label": "test " + str(i)}, + scatter_kwargs, ) ax.legend() else: - _plotFlags(ax, datser, flags_vals, na_mask, level, {"color": "r"}) + scatter_kwargs.update({"color": next(color_cycle), "marker": next(shape_cycle)}) + _plotFlags(ax, datser, flags_vals, na_mask, level, scatter_kwargs) def _plotFlags(ax, datser, flags, na_mask, level, scatter_kwargs): diff --git a/saqc/lib/rolling.py b/saqc/lib/rolling.py index 535b08ff29dde07122f3b118a437a2de71b4f2ef..4e12f07fca3636f5c54e688de2aa24bc07de9a56 100644 --- a/saqc/lib/rolling.py +++ b/saqc/lib/rolling.py @@ -14,15 +14,9 @@ else: import pandas.core.indexers.objects as indexers -class CustomNumericalIndexer(indexers.FixedWindowIndexer): - def __init__( - self, - index_array: np.ndarray | None = None, - window_size: int = 0, - forward: bool = False, - **kwargs, - ): - super().__init__(index_array, window_size, **kwargs) +class ForwardMixin: + def __init__(self, *args, forward: bool = False, **kwargs): + super().__init__(*args, **kwargs) self.forward = forward def get_window_bounds( @@ -37,12 +31,21 @@ class CustomNumericalIndexer(indexers.FixedWindowIndexer): closed = "right" if self.forward: + + # this is only set with variable window indexer + if self.index_array is not None: # noqa + self.index_array = self.index_array[::-1] # noqa + + # closed 'both' and 'neither' works the same + # on forward and backward windows by definition if closed == "left": closed = "right" elif closed == "right": closed = "left" - start, end = super().get_window_bounds(num_values, min_periods, center, closed) + start, end = super().get_window_bounds( # noqa + num_values, min_periods, center, closed + ) if self.forward: start, end = end, start @@ -52,47 +55,13 @@ class CustomNumericalIndexer(indexers.FixedWindowIndexer): return start, end -class CustomDatetimeIndexer(indexers.VariableWindowIndexer): - def __init__( - self, - index_array: np.ndarray | None = None, - window_size: int = 0, - forward: bool = False, - **kwargs, - ): - super().__init__(index_array, window_size, **kwargs) - self.forward = forward +CustomFixedIndexer = type( + "CustomFixedIndexer", (ForwardMixin, indexers.FixedWindowIndexer), {} +) - def get_window_bounds( - self, - num_values: int = 0, - min_periods: int | None = None, - center: bool | None = None, - closed: str | None = None, - ) -> tuple[np.ndarray, np.ndarray]: - - # set the default - if closed is None and self.forward: - closed = "left" - elif closed is None: - closed = "right" - - if self.forward: - self.index_array = self.index_array[::-1] - # swap left / right because we inverted the array - if closed == "left": - closed = "right" - elif closed == "right": - closed = "left" - - start, end = super().get_window_bounds(num_values, min_periods, center, closed) - - if self.forward: - start, end = end, start - start = num_values - start[::-1] - end = num_values - end[::-1] - - return start, end +CustomVariableIndexer = type( + "CustomVariableIndexer", (ForwardMixin, indexers.VariableWindowIndexer), {} +) class AttrWrapper(object): @@ -221,9 +190,7 @@ class CustomRoller: self._expand = expand # dummy roller. - # 1. This lets pandas do all the checks. - # 2. After the call, all the attributes (public and private) - # of `_roller` are accessible on self + # This lets pandas do all the checks. verified = obj.rolling( window=window, min_periods=min_periods, @@ -245,27 +212,33 @@ class CustomRoller: self._index_array = verified._index_array if self._dtlike_window: - self.window_indexer = CustomDatetimeIndexer( + self.window_indexer = CustomVariableIndexer( index_array=verified._index_array, window_size=verified._win_freq_i8, center=verified.center, forward=self._forward, ) else: - self.window_indexer = CustomNumericalIndexer( + self.window_indexer = CustomFixedIndexer( window_size=verified.window, forward=self._forward, ) + # set the default + if self._forward and closed is None: + closed = "left" + # create the real roller with a custom Indexer # from the attributes of the old roller. + # After next line, all the attributes (public and private) + # of `_roller` are accessible on self self._roller = obj.rolling( window=self.window_indexer, min_periods=verified.min_periods, # roller.min_periods win_type=verified._win_type, # use private here to silence warning on=verified.on, center=verified.center, - closed=verified.closed, + closed=closed, axis=verified.axis, ) diff --git a/saqc/lib/tools.py b/saqc/lib/tools.py index b5dc0037da21c180a714cf52a2ad216909cffe11..94205e5a5863a873f1682d0103b721fae8bb4995 100644 --- a/saqc/lib/tools.py +++ b/saqc/lib/tools.py @@ -1,11 +1,12 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import annotations import re import datetime import itertools import warnings -from typing import Sequence, Union, Any, Iterator, Callable +from typing import List, Sequence, TypeVar, Union, Any, Iterator, Callable, Collection import numpy as np import numba as nb @@ -16,13 +17,25 @@ import dios import collections from scipy.cluster.hierarchy import linkage, fcluster -from saqc.lib.types import T - # keep this for external imports # TODO: fix the external imports from saqc.lib.rolling import customRoller +T = TypeVar("T", str, float, int) + + +def _swapToTarget(field, target, flags): + if target is None: + return field, flags + if not isinstance(target, str): + raise TypeError(f"target must be of type string, not {repr(type(target))}") + if target in flags.columns: + raise ValueError(f"cannot create target {repr(target)}, it already exists.") + flags.history[target] = flags.history[field].copy() + return target, flags + + def assertScalar(name, value, optional=False): if (not np.isscalar(value)) and (value is not None) and (optional is True): raise ValueError(f"'{name}' needs to be a scalar or 'None'") @@ -30,13 +43,15 @@ def assertScalar(name, value, optional=False): raise ValueError(f"'{name}' needs to be a scalar") -def toSequence( - value: Union[T, Sequence[T]], default: Union[T, Sequence[T]] = None -) -> Sequence[T]: - if value is None: - value = default - if np.isscalar(value): - value = [value] +def toSequence(value: T | Sequence[T]) -> List[T]: + if isinstance(value, (str, int, float)): + return [value] + return list(value) + + +def squeezeSequence(value: Sequence[T]) -> Union[T, Sequence[T]]: + if len(value) == 1: + return value[0] return value @@ -160,7 +175,7 @@ def periodicMask(dtindex, season_start, season_end, include_bounds): Returns ------- - to_mask : pandas.Series[bool] + dfilter : pandas.Series[bool] A series, indexed with the input index and having value `True` for all the values that are to be masked. Examples @@ -279,6 +294,26 @@ def groupConsecutives(series: pd.Series) -> Iterator[pd.Series]: start = stop +def concatDios(data: List[dios.DictOfSeries], warn: bool = True, stacklevel: int = 2): + # fast path for most common case + if len(data) == 1 and data[0].columns.is_unique: + return data[0] + + result = dios.DictOfSeries() + for di in data: + for c in di.columns: + if c in result.columns: + if warn: + warnings.warn( + f"Column {c} already exist. Data is overwritten. " + f"Avoid duplicate columns names over all inputs.", + stacklevel=stacklevel, + ) + result[c] = di[c] + + return result + + def mergeDios(left, right, subset=None, join="merge"): # use dios.merge() as soon as it implemented # see https://git.ufz.de/rdm/dios/issues/15 @@ -623,3 +658,54 @@ def statPass( to_set[start:end] = True return to_set + + +def filterKwargs( + kwargs: dict, + reserved: Collection, + inplace: bool = True, + warn: bool = True, + msg: str = "", + stacklevel: int = 3, +) -> dict: + """ + Filter kwargs (or any dict) by a list of reserved keys. + + Parameters + ---------- + kwargs : dict + The dict to filter. + + reserved : list-like + A list of reserved keywords. + + inplace : bool, default False + If `False` a copy is returned, otherwise the modified original kwargs. + + warn : bool, default True + Throw a `RuntimeWarning` with the following text: + + msg : str, default "" + A text to append to the warnings message. + + stacklevel : int, default 3 + The stacklevel this warning will refer to. + - `2` : warn at the location this function is called + - `3` : warn for the function that calls this function (default) + + Returns + ------- + kwargs: dict + the modified kwargs or a copy + """ + if not inplace: + kwargs = kwargs.copy() + for key in reserved: + if warn and key in kwargs: + warnings.warn( + f"The keyword {repr(key)} is reserved and will be ignored {msg}", + RuntimeWarning, + stacklevel=stacklevel, + ) + kwargs.pop(key, None) + return kwargs diff --git a/saqc/lib/ts_operators.py b/saqc/lib/ts_operators.py index 8bac0949edcce3c40aa3ab0bb5076dcd1d45f722..151b2e77e50916856f7038e9826389400f0896b7 100644 --- a/saqc/lib/ts_operators.py +++ b/saqc/lib/ts_operators.py @@ -111,7 +111,7 @@ def standardizeByMedian(ts): def standardizeByIQR(ts): - # standardization with median and interquartile range + # standardization with median and inter quantile range return (ts - np.median(ts)) / iqr(ts, nan_policy="omit") @@ -217,7 +217,7 @@ def interpolateNANs( :return: """ inter_limit = int(inter_limit) - data = pd.Series(data).copy() + data = pd.Series(data, copy=True) gap_mask = data.isna().rolling(inter_limit, min_periods=0).sum() != inter_limit if inter_limit == 2: @@ -287,9 +287,10 @@ def aggregate2Freq( also serves as a replacement for "invalid" intervals. """ methods = { - "nagg": lambda seconds_total: (seconds_total / 2, "left", "left"), - "bagg": lambda _: (0, "left", "left"), - "fagg": lambda _: (0, "right", "right"), + # offset, closed, label + "nagg": lambda f: (f / 2, "left", "left"), + "bagg": lambda _: (pd.Timedelta(0), "left", "left"), + "fagg": lambda _: (pd.Timedelta(0), "right", "right"), } # filter data for invalid patterns (since filtering is expensive we pre-check if @@ -307,40 +308,35 @@ def aggregate2Freq( ) data[temp_mask] = fill_value - seconds_total = pd.Timedelta(freq).total_seconds() - base, label, closed = methods[method](seconds_total) + freq = pd.Timedelta(freq) + offset, closed, label = methods[method](freq) - # In the following, we check for empty intervals outside resample.apply, because: - # - resample AND groupBy do insert value zero for empty intervals if resampling - # with any kind of "sum" application - we want "fill_value" to be inserted - we - # are aggregating data and flags with this function and empty intervals usually - # would get assigned BAD flag (where resample inserts np.nan or 0) - - data_resampler = data.resample( - f"{seconds_total:.0f}s", base=base, closed=closed, label=label + resampler = data.resample( + freq, closed=closed, label=label, origin="start_day", offset=offset ) - empty_intervals = data_resampler.count() == 0 - # great performance gain can be achieved, when avoiding .apply and using - # pd.resampler methods instead. (this covers all the basic func aggregations, - # such as median, mean, sum, count, ...) + # count valid values + counts = resampler.count() + + # native methods of resampling (median, mean, sum, ..) are much faster than apply try: check_name = re.sub("^nan", "", agg_func.__name__) # a nasty special case: if function "count" was passed, we not want empty - # intervals to be replaced by nan: + # intervals to be replaced by fill_value: if check_name == "count": - empty_intervals[:] = False - data = getattr(data_resampler, check_name)() + data = counts.copy() + counts[:] = np.nan + else: + data = getattr(resampler, check_name)() except AttributeError: - data = data_resampler.apply(agg_func) + data = resampler.apply(agg_func) + + # we custom fill bins that have no value + data[counts == 0] = fill_value - # since loffset keyword of pandas.resample "discharges" after one use of the - # resampler (pandas logic), we correct the resampled labels offset manually, - # if necessary. + # undo the temporary shift, to mimic centering the frequency if method == "nagg": - data.index = data.index.shift(freq=pd.Timedelta(freq) / 2) - empty_intervals.index = empty_intervals.index.shift(freq=pd.Timedelta(freq) / 2) - data[empty_intervals] = fill_value + data.index += offset return data diff --git a/saqc/lib/types.py b/saqc/lib/types.py index d4e76adf73526eadaf4ec09bfbfaa517f0eba4e2..55fe7392a6cf49b2483ce69771b2eda7b1ce7ca6 100644 --- a/saqc/lib/types.py +++ b/saqc/lib/types.py @@ -5,16 +5,12 @@ __all__ = [ "ArrayLike", "PandasLike", "DiosLikeT", - "FreqString", - "IntegerWindow", - "Timestampstr", "CurveFitter", "ExternalFlag", - "PositiveFloat", - "PositiveInt", + "OptionalNone", ] -from typing import TypeVar, Union, NewType, List, Tuple +from typing import Any, TypeVar, Union, Dict from typing_extensions import Protocol, Literal import numpy as np import pandas as pd @@ -27,17 +23,21 @@ DiosLikeT = Union[DictOfSeries, pd.DataFrame] ExternalFlag = Union[str, float, int] -# we only support fixed length offsets -FreqString = Literal["D", "H", "T", "min", "S", "L", "ms", "U", "us", "N"] - -# # we define a bunch of type aliases, mostly needed to generate appropiate fuzzy data through hypothesis -# ColumnName = NewType("ColumnName", str) -# IntegerWindow = NewType("IntegerWindow", int) -# Timestampstr = TypeVar("Timestampstr", bound=str) -# PositiveFloat = NewType("PositiveFloat", float) -# PositiveInt = NewType("PositiveInt", int) # needed for deeper type hinting magic class CurveFitter(Protocol): def __call__(self, data: np.ndarray, *params: float) -> np.ndarray: ... + + +class GenericFunction(Protocol): + + __name__: str + __globals__: Dict[str, Any] + + def __call__(self, *args: pd.Series) -> PandasLike: + ... + + +class OptionalNone: + pass diff --git a/setup.py b/setup.py index 22722f0d74c48da012ed6946a1f59179ab7cbb0b..2ea09a26956e2bbd508bf54ac5e82fb0633dc3eb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setup( name="saqc", - version="1.4", + version="2.0.0", author="Bert Palm, David Schaefer, Peter Luenenschloss, Lennard Schmidt", author_email="david.schaefer@ufz.de", description="Data quality checking and processing tool/framework", @@ -15,19 +15,18 @@ setup( packages=find_packages(exclude=("tests",)), python_requires=">=3.7, <3.10", install_requires=[ - "numpy", - "pandas", - "scipy", - "scikit-learn", - "numba", - "matplotlib", - "click", - "pyarrow", - "typing_extensions", - "outlier-utils", - "dtw", - "PyWavelets", - "mlxtend", + "numpy==1.20.*", + "pandas==1.3.*", + "scipy==1.7.*", + "scikit-learn==1.0.*", + "numba==0.54.*", + "matplotlib==3.4.*", + "Click==8.0.*", + "pyarrow==4.0.*", + "typing_extensions==3.10.*", + "outlier-utils==0.0.3", + "dtw==1.4.*", + "seaborn==0.11.*", ], license_files=("LICENSE.md",), entry_points={ diff --git a/sphinx-doc/Makefile b/sphinx-doc/Makefile index 992c9c8b91567974b9d6467826b5777cccd1e28f..f3db1da13588941376be9065785a5055e0a97e63 100644 --- a/sphinx-doc/Makefile +++ b/sphinx-doc/Makefile @@ -8,40 +8,43 @@ SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build +# sphinx build controll: +# Function documentations will be acessible through: FUNCTIONS.saqc +FUNCTIONS = Functions +CORE = Core +# List of folders containing markdown content to include into the build +MDLIST = getting_started_md how_to_doc_md cook_books_md misc_md # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile clean +test: + for k in $(MDLIST); do echo sphinx-doc/"$$k"; done + # clean sphinx generated stuff clean: - rm -rf _build _static _api - rm -f *.automodsumm - rm -f func_modules/*.automodsumm - rm -f intro_modules/*.automodsumm - rm -rf ../docs + rm -rf _build _static + rm -rf ../$(FUNCTIONS) + rm -rf ../$(CORE) mkdir _static + # for k in $(MDLIST); do rm -r "$$k"_m2r; done + rm -f *.automodsumm + rm -f *.automodapi + rm -f moduleAPIs/*.automodsumm + rm -f moduleAPIs/*.automodapi # trigger (saqc) customized documentation pipeline doc: - # generate fake modules to b documented by sphinx - python make_doc_module.py -p "saqc/funcs" -t "docs/intro_modules" -sr ".." -mo "intro_doc" - python make_doc_module.py -p "saqc/funcs" -t "docs/func_modules" -sr ".." -mo "registered_doc" - # make rest files from fake modules - python make_doc_rst.py -p "docs/intro_modules" -t "sphinx-doc/intro_modules" -sr ".." - python make_doc_rst.py -p "docs/func_modules" -t "sphinx-doc/func_modules" -sr ".." + # generate parent fake module for the functions to be documented + python scripts/make_doc_module.py -p "saqc/funcs" -t "$(FUNCTIONS)" -sr ".." + # generate environment table from dictionary + python scripts/make_env_tab.py # make rest folders from markdown folders - python make_md_to_rst.py -p "sphinx-doc/getting_started_md" -sr ".." - python make_md_to_rst.py -p "sphinx-doc/how_to_doc_md" -sr ".." + # for k in $(MDLIST); do python scripts/make_md_to_rst.py -p sphinx-doc/"$$k" -sr ".."; done # make the html build @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - # format docstring module domain strings to correct adresses - python make_html_headings_proppa.py -b "sphinx-doc/_build/html/_api" -p "docs/func_modules" -sr ".." - python make_html_headings_proppa.py -b "sphinx-doc/_build/html/_api" -p "docs/intro_modules" -sr ".." - # clear fake modules/intermediate rest files - rm -r getting_started_md_m2r - rm -r how_to_doc_md_m2r # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/sphinx-doc/conf.py b/sphinx-doc/conf.py index e2792427e056fd82816a1ab08312e23a9d0bd111..bed7ae63676e534c3b34c3d404bbdb1f1ed96059 100644 --- a/sphinx-doc/conf.py +++ b/sphinx-doc/conf.py @@ -14,6 +14,8 @@ import os import sys sys.path.insert(0, os.path.abspath("..")) +package_path = os.path.abspath("..") +os.environ["PYTHONPATH"] = ":".join((package_path, os.environ.get("PYTHONPATH", ""))) # -- Project information ----------------------------------------------------- @@ -25,7 +27,7 @@ copyright = ( author = "Bert Palm, David Schäfer, Peter Lünenschloß, Lennart Schmidt, Juliane Geller" # The full version, including alpha/beta/rc tags -release = "develop" +release = f"2.0" # -- General configuration --------------------------------------------------- @@ -36,7 +38,7 @@ release = "develop" extensions = [ "sphinx.ext.autodoc", "sphinx.ext.autosummary", - # "sphinx.ext.doctest", + "sphinx.ext.doctest", # "sphinx.ext.extlinks", # "sphinx.ext.todo", # "sphinx.ext.intersphinx", @@ -59,24 +61,34 @@ extensions = [ "recommonmark", # https://github.com/ryanfox/sphinx-markdown-tables "sphinx_markdown_tables", + # snippet plotting + "matplotlib.sphinxext.plot_directive", + # jupyter code execution + "jupyter_sphinx", + # "sphinx_autodoc_typehints", + # "numpydoc" ] # -- Params of the extensions ------------------------------------------------ - +add_module_names = False numpydoc_show_class_members = False automodsumm_inherited_members = True # write out the files generated by automodapi, mainly for debugging automodsumm_writereprocessed = True - +automodapi_writereprocessed = True automodapi_inheritance_diagram = False automodapi_toctreedirnm = "_api" autosectionlabel_prefix_document = True autodoc_typehints = "none" - +doctest_global_setup = """ +import saqc +import pandas as pd +import numpy as np +""" # -- Other options ----------------------------------------------------------- # Add any paths that contain templates here, relative to this directory. @@ -109,4 +121,18 @@ html_theme = "nature" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ["_static"] +html_static_path = ["_static", "css"] + +# -- RST options ------- +rst_prolog = """ +.. |ufzLogo| image:: /ressources/images/Representative/UFZLogo.jpg + :width: 40 % + :target: https://www.ufz.de/ + +.. |rdmLogo| image:: /ressources/images/Representative/RDMlogo.jpg + :width: 18 % + :target: https://www.ufz.de/index.php?de=45348 + :class: align-right + +|ufzLogo| |rdmLogo| +""" diff --git a/sphinx-doc/cook_books/DataRegularisation.rst b/sphinx-doc/cook_books/DataRegularisation.rst new file mode 100644 index 0000000000000000000000000000000000000000..3bf9fd5c7107cb258c986e0938686f31cf2df807 --- /dev/null +++ b/sphinx-doc/cook_books/DataRegularisation.rst @@ -0,0 +1,490 @@ +Data Regularisation +=================== + +The tutorial aims to introduce the usage of ``SaQC`` methods, in order to obtain regularly sampled data derivatives +from given time series data input. Regularly sampled time series data, is data, that exhibits a constant temporal +spacing in between subsequent data points. + +In the following steps, the tutorial guides through the usage of the *SaQC* :py:mod:`resampling <saqc.resampling>` +library. + +#. Initially, we introduce and motivate regularisation techniques and we do import the tutorial data. + + * :ref:`Why Regularisation <cook_books/DataRegularisation:Why Regularisation>` + * :ref:`Tutorial Data <cook_books/DataRegularisation:Tutorial Data>` + +#. We will get an overview over the main :ref:`Regularisation <cook_books/DataRegularisation:regularisations>` methods, starting with the shift. + + * :ref:`Shift <cook_books/DataRegularisation:shift>` + * :ref:`Target Parameter <cook_books/DataRegularisation:target parameter>` + + * :ref:`Freq Parameter <cook_books/DataRegularisation:freq parameter>` + * :ref:`Method Parameter <cook_books/DataRegularisation:shifting method>` + * :ref:`Valid Data <cook_books/DataRegularisation:Valid Data>` + +#. We introduce the notion of *valid* data and see how sparse intervals and those with multiple values interact with + regularisation. + + + * :ref:`Data Loss and Empty Intervals <cook_books/DataRegularisation:data loss and empty intervals>` + + * :ref:`Empty Intervals <cook_books/DataRegularisation:empty intervals>` + + * :ref:`Valid Data <cook_books/DataRegularisation:Valid Data>` + * :ref:`Data Reduction <cook_books/DataRegularisation:data reduction>` + * :ref:`Minimize Shifting <cook_books/DataRegularisation:minimize shifting distance>` + +#. We use the Aggregation and the Interpolation method. + + + * :ref:`Aggregation <cook_books/DataRegularisation:aggregation>` + + * :ref:`Function Parameter <cook_books/DataRegularisation:aggregation functions>` + * :ref:`Method Parameter <cook_books/DataRegularisation:shifting method>` + + * :ref:`Interpolation <cook_books/DataRegularisation:interpolation>` + + * :ref:`Representing Data Sparsity <cook_books/DataRegularisation:interpolation and data sparsity>` + +#. We see how regularisation interacts with Flags. + + * :ref:`Flags and Regularisation <cook_books/DataRegularisation:flags and regularisation>` + +Why Regularisation +------------------ + +Often, measurement data does not come in regularly sampled time series. The reasons, why one usually would +like to have time series data, that exhibits a constant temporal gap size +in between subsequent measurements, are manifold. + +The 2 foremost important ones, may be, that statistics, such as *mean* and *standard deviation* +usually presuppose the set of data points, they are computed of, to +be equally weighted. + +The second reason, is, that, relating data of different sources to another, is impossible, if one +has not a mapping at hand, that relates the different date time indices to each other. One easy and intuitive +way of constructing such a mapping, is to just resample all data at the same (regular) timestamp. + +Tutorial Data +------------- + +The following `dataset <../ressources/data/SoilMoisture.csv>`_ of Soil Moisture measurements may serve as +example data set: + + +.. image:: ../ressources/images/cbooks_SoilMoisture.png + :target: ../ressources/images/cbooks_SoilMoisture.png + :alt: + + +Lets import it and check out the first and last lines. + +>>> import pandas as pd +>>> data_path = './ressources/data/SoilMoisture.csv' +>>> data = pd.read_csv(data_path, index_col=0) +>>> data.index = pd.DatetimeIndex(data.index) +>>> data + SoilMoisture +2021-01-01 00:09:07 23.429701 +2021-01-01 00:18:55 23.431900 +2021-01-01 00:28:42 23.343100 +2021-01-01 00:38:30 23.476400 +2021-01-01 00:48:18 23.343100 +... ... +2021-03-20 07:13:49 152.883102 +2021-03-20 07:26:16 156.587906 +2021-03-20 07:40:37 166.146194 +2021-03-20 07:54:59 164.690598 +2021-03-20 08:40:41 155.318893 +<BLANKLINE> +[10607 rows x 1 columns] + +.. testsetup:: + + data_path = './ressources/data/SoilMoisture.csv' + data = pd.read_csv(data_path, index_col=0) + data.index = pd.DatetimeIndex(data.index) + + +The data series seems to start with a sampling rate of roughly *10* minutes. +Somewhere the sampling rate changes, and at the end it seems to exhibit an intended sampling +rate of *15* minutes. + +Finding out about the proper sampling a series should be regularized to, is a subject on its own and wont be covered +here. Usually, the intended sampling rate of sensor data is known from the specification of the sensor. + +If that is not the case, and if there seem to be more than one candidates for a rate regularisation, a rough rule of +thumb, aiming at minimisation of data loss and data manipulation, may be, +to go for the smallest rate seemingly present in the data. + +Regularisations +--------------- + +So lets transform the measurements timestamps to have a regular *10* minutes frequency. In order to do so, +we have to decide what to do with each time stamps associated data, when we alter the timestamps value. + +Basically, there are three types of :doc:`regularisations <../moduleAPIs/Functionsresampling>` methods: + + +#. We could keep the values as they are, and thus, + just :ref:`shift <cook_books/DataRegularisation:Shift>` them in time to match the equidistant *10* minutes frequency grid, we want the data to exhibit. +#. We could calculate new, synthetic data values for the regular timestamps, via an :ref:`interpolation <cook_books/DataRegularisation:Interpolation>` method. +#. We could apply some :ref:`aggregation <cook_books/DataRegularisation:Aggregation>` to up- or down sample the data. + +Shift +----- + +Lets apply a simple shift via the :py:func:`shift <Functions.saqc.shift>` method. + +>>> import saqc +>>> qc = saqc.SaQC(data) +>>> qc = qc.shift('SoilMoisture', target='SoilMoisture_bshift', freq='10min', method='bshift') + +.. testsetup:: + + qc = saqc.SaQC(data) + qc = qc.shift('SoilMoisture', target='SoilMoisture_bshift', freq='10min', method='bshift') + +Target parameter +^^^^^^^^^^^^^^^^ + +We selected a new ``target`` field, to store the shifted data to a new field, so that our original data wouldnt be +overridden. + +Freq parameter +^^^^^^^^^^^^^^ + +We passed the ``freq`` keyword of the intended sampling frequency in terms of a +`date alias <https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases>`_ string. All of +the :doc:`regularisations <../moduleAPIs/Functionsresampling>` methods have such a frequency keyword, +and it just determines the sampling rate, the resulting regular timeseries will have. + +Shifting Method +^^^^^^^^^^^^^^^ + +With the ``method`` keyword, we determined the direction of the shift. We passed it the string ``bshift`` - +which applies a *backwards* shift, so data points get shifted *backwards*\ , until they match a timestamp +that is a multiple of *10* minutes. (See :py:func:`saqc.shift <Functions.saqc.shift>` documentation for more +details on the keywords.) + +Lets see, how the data is now sampled. Therefore, we use the ``data_raw`` Atribute from the +:py:class:`SaQC <saqc.core.core.SaQC>` object. This will prevent the methods output from +being merged to a ``pandas.DataFrame`` object, and the changes from the resampling will be easier +comprehensible from one look. + +Shifted data +^^^^^^^^^^^^ + + >>> qc.data_raw + SoilMoisture | SoilMoisture_bshift | + ================================ | ======================================= | + 2021-01-01 00:09:07 23.429701 | 2021-01-01 00:00:00 23.429701 | + 2021-01-01 00:18:55 23.431900 | 2021-01-01 00:10:00 23.431900 | + 2021-01-01 00:28:42 23.343100 | 2021-01-01 00:20:00 23.343100 | + 2021-01-01 00:38:30 23.476400 | 2021-01-01 00:30:00 23.476400 | + 2021-01-01 00:48:18 23.343100 | 2021-01-01 00:40:00 23.343100 | + ... | ... ... | + 2021-03-20 07:13:49 152.883102 | 2021-03-20 08:10:00 NaN | + 2021-03-20 07:26:16 156.587906 | 2021-03-20 08:20:00 NaN | + 2021-03-20 07:40:37 166.146194 | 2021-03-20 08:30:00 NaN | + 2021-03-20 07:54:59 164.690598 | 2021-03-20 08:40:00 155.318893 | + 2021-03-20 08:40:41 155.318893 | 2021-03-20 08:50:00 NaN | + [10607] [11286] + <BLANKLINE> + max: [11286 rows x 2 columns] + <BLANKLINE> + + +We see, the first and last *10* datapoints of both, the original data time series and the shifted one. + +Obveously, the shifted data series now exhibits a regular sampling rate of *10* minutes, with the index +ranging from the latest timestamp, that is a multiple of *10* minutes and preceeds the initial timestamp +of the original data, up to the first *10* minutes multiple, that succeeds the last original datas timestamp. +This is default behavior to all the :doc:`regularisations <../moduleAPIs/Functionsresampling>` provided by ``saqc``. + +Data Loss and Empty Intervals +----------------------------- + +The number of datapoints (displayed at the bottom of the table columns) has changed through the +transformation as well. That change stems from 2 sources mainly: + +Empty Intervals +^^^^^^^^^^^^^^^ + +If there is no :ref:`valid <cook_books/DataRegularisation:valid data>` data point available within an interval of the passed frequency, +that could be shifted to match a multiple of the frequency, a ``NaN`` value gets inserted to represent the fact, +that in the interval that is represented by that date time index, there was data missing. + +Valid Data +^^^^^^^^^^ + +Data points are referred to, as *valid*\ , in context of a regularisation, if: + + +#. + the data points value is not ``NaN`` + +#. + the *flag* of that datapoint has a value lower than the value passed to the methods + ``to_mask`` keyword - since this keyword defaults to the highest flag level available, + defaultly, all data flagged :py:const:`~saqc.constants.BAD`, is considered invalid by that method. + +Note, that, from point *2* above, it follows, that flagging data values +before regularisation, will effectively exclude them from the regularistaion process. See chapter +:ref:`flagging and resampling <cook_books/DataRegularisation:flags and regularisation>` for an example of this effect and how it can help +control :ref:`data reduction <cook_books/DataRegularisation:data reduction>`. + +data reduction +^^^^^^^^^^^^^^ + +If there are multiple values present within an interval with size according to the passed frequency alias passed to +``freq``\ , this values get reduced to one single value, that will get assigned to the timestamp associated with the +interval. + +This reduction depends on the selected :doc:`regularisation <../moduleAPIs/Functionsresampling>` method. + +For example, :ref:`above <cook_books/DataRegularisation:shift>`\ , we applied a backwards :py:func:`shift <Functions.saqc.shift>` with a *10* minutes frequency. +As a result, the first value, encountered after any multiple of *10* minutes, gets shifted backwards to be aligned with +the desired frequency and any other value in that *10* minutes interval just gets discarded. + +See the below chunk of our processed *SoilMoisture* data set to get an idea of the effect. There are 2 measurements +within the *10* minutes interval ranging from ``2021-01-01 07:30:00`` to ``2021-01-01 07:40:00`` present +in the original data - and only the first of the two reappears in the shifted data set, as representation +for that interval. + + >>> qc.data_raw["2021-01-01 07:00:00":"2021-01-01 08:00:00"] + SoilMoisture_bshift | SoilMoisture | + ================================ | ========================================= | + Date Time | Date Time | + 2021-01-01 07:00:00 23.3431 | 2021-01-01 07:00:41 23.3431 | + 2021-01-01 07:10:00 23.3431 | 2021-01-01 07:10:29 23.3431 | + 2021-01-01 07:20:00 23.2988 | 2021-01-01 07:20:17 23.2988 | + 2021-01-01 07:30:00 23.3874 | 2021-01-01 07:30:05 23.3874 | + 2021-01-01 07:40:00 23.3431 | 2021-01-01 07:39:53 23.3853 | + 2021-01-01 07:50:00 23.3874 | 2021-01-01 07:49:41 23.3431 | + +Minimize Shifting Distance +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Notice, how, for example, the data point for ``2021-01-01 07:49:41`` gets shifted all the way back, to +``2021-01-01 07:40:00`` - although, shifting it forward to ``07:40:00`` would be less a manipulation, since this timestamp +appears to be closer to the original one. + +To shift to any frequncy aligned timestamp the value that is closest to that timestamp, we +can perform a *nearest shift* instead of a simple *back shift*\ , by using the shift method ``"nshift"``\ : + + >>> qc = qc.shift('SoilMoisture', target='SoilMoisture_nshift', freq='10min', method='nshift') + >>> qc.data_raw['2021-01-01T07:00:00':'2021-01-01T08:00:00'] + SoilMoisture_nshift | SoilMoisture | + ================================ | ========================================= | + Date Time | Date Time | + 2021-01-01 07:00:00 23.3431 | 2021-01-01 07:00:41 23.3431 | + 2021-01-01 07:10:00 23.3431 | 2021-01-01 07:10:29 23.3431 | + 2021-01-01 07:20:00 23.2988 | 2021-01-01 07:20:17 23.2988 | + 2021-01-01 07:30:00 23.3874 | 2021-01-01 07:30:05 23.3874 | + 2021-01-01 07:40:00 23.3853 | 2021-01-01 07:39:53 23.3853 | + 2021-01-01 07:50:00 23.3431 | 2021-01-01 07:49:41 23.3431 | + +Now, any timestamp got assigned, the value that is nearest to it, *if* there is one valid data value available in the +interval surrounding that timestamp with a range of half the frequency. In our example, this would mean, the regular +timestamp would get assigned the nearest value of all the values, that preceed or succeed it by less than *5* minutes. + +Maybe check out, what happens with the chunk of the final 2 hours of our shifted *Soil Moisture* dataset, to get an idea. + + >>> qc.data_raw['2021-03-20 07:00:00':] + SoilMoisture_nshift | SoilMoisture | + ================================ | ========================================= | + Date Time | Date Time | + 2021-03-20 07:00:00 145.027496 | 2021-03-20 07:13:49 152.883102 | + 2021-03-20 07:10:00 152.883102 | 2021-03-20 07:26:16 156.587906 | + 2021-03-20 07:20:00 NaN | 2021-03-20 07:40:37 166.146194 | + 2021-03-20 07:30:00 156.587906 | 2021-03-20 07:54:59 164.690598 | + 2021-03-20 07:40:00 166.146194 | 2021-03-20 08:40:41 155.318893 | + 2021-03-20 07:50:00 164.690598 | 2021-03-20 08:40:41 155.318893 | + 2021-03-20 08:00:00 NaN | | + 2021-03-20 08:10:00 NaN | | + 2021-03-20 08:20:00 NaN | | + 2021-03-20 08:30:00 NaN | | + 2021-03-20 08:40:00 155.318893 | | + 2021-03-20 08:50:00 NaN | | + + +Since there is no valid data available, for example, in the interval from ``2021-03-20 07:55:00`` to ``2021-03-20 08:05:00`` - the new value +for the regular timestamp ``2021-03-20 08:00:00``\ , that lies in the center of this interval, is ``NaN``. + +Aggregation +----------- + +If we want to comprise several values by aggregation and assign the result to the new regular timestamp, instead of +selecting a single one, we can do this, with the :py:func:`saqc.resample <Functions.saqc.resample>` method. +Lets resample the *SoilMoisture* data to have a *20* minutes sample rate by aggregating every *20* minutes intervals +content with the arithmetic mean (which is implemented by numpies ``numpy.mean`` function for example). + + >>> import numpy as np + >>> qc = qc.resample('SoilMoisture', target='SoilMoisture_mean', freq='20min', method='bagg', agg_func=np.mean) + >>> qc.data_raw + SoilMoisture | SoilMoisture_mean | + ================================ | ===================================== | + Date Time | Date Time | + 2021-01-01 00:09:07 23.429701 | 2021-01-01 00:00:00 23.430800 | + 2021-01-01 00:18:55 23.431900 | 2021-01-01 00:20:00 23.409750 | + 2021-01-01 00:28:42 23.343100 | 2021-01-01 00:40:00 23.320950 | + 2021-01-01 00:38:30 23.476400 | 2021-01-01 01:00:00 23.365250 | + 2021-01-01 00:48:18 23.343100 | 2021-01-01 01:20:00 23.320950 | + 2021-01-01 00:58:06 23.298800 | 2021-01-01 01:40:00 23.343100 | + 2021-01-01 01:07:54 23.387400 | 2021-01-01 02:00:00 23.320950 | + 2021-01-01 01:17:41 23.343100 | 2021-01-01 02:20:00 23.343100 | + 2021-01-01 01:27:29 23.298800 | 2021-01-01 02:40:00 23.343100 | + 2021-01-01 01:37:17 23.343100 | 2021-01-01 03:00:00 23.343100 | + ... | ... ... | + 2021-03-20 05:07:02 137.271500 | 2021-03-20 05:40:00 154.116806 | + 2021-03-20 05:21:35 138.194107 | 2021-03-20 06:00:00 150.567505 | + 2021-03-20 05:41:59 154.116806 | 2021-03-20 06:20:00 NaN | + 2021-03-20 06:03:09 150.567505 | 2021-03-20 06:40:00 145.027496 | + 2021-03-20 06:58:10 145.027496 | 2021-03-20 07:00:00 152.883102 | + 2021-03-20 07:13:49 152.883102 | 2021-03-20 07:20:00 156.587906 | + 2021-03-20 07:26:16 156.587906 | 2021-03-20 07:40:00 165.418396 | + 2021-03-20 07:40:37 166.146194 | 2021-03-20 08:00:00 NaN | + 2021-03-20 07:54:59 164.690598 | 2021-03-20 08:20:00 NaN | + 2021-03-20 08:40:41 155.318893 | 2021-03-20 08:40:00 155.318893 | + [10607] [5643] + +Aggregation functions +^^^^^^^^^^^^^^^^^^^^^ + +You can pass arbitrary function objects to the ``agg_func`` parameter, to be applied to calculate every intervals result, +as long as this function returns a scalar *float* value upon an array-like input. (So ``np.median`` would be propper +for calculating the median, ``sum``\ , for assigning the value sum, and so on.) + +Aggregation method +^^^^^^^^^^^^^^^^^^ + +As it is with the :ref:`shift <cook_books/DataRegularisation:Shift>` functionality, a ``method`` keyword controlls, weather the +aggregation result for the interval in between 2 regular timestamps gets assigned to the left (=\ ``bagg``\ ) or to the +right (\ ``fagg``\ ) boundary timestamp. + + +* Also, analogous to to the shift functionality, intervals of size ``freq``\ , that do + not contain any :ref:`valid <cook_books/DataRegularisation:valid data>` data, that could be aggregated, get ``ǹp.nan`` assigned. + +Interpolation +------------- + +Another common way of obtaining regular timestamps, is, the interpolation of data at regular timestamps. + +In the pool of py:mod:`regularisation <Functions.saqc.resampling>` methods, is available the +:py:func:`saqc.interpolate <Functions.saqc.interpolate>` method. + +Lets apply a linear interpolation onto the dataset. To access +linear interpolation, we pass the ``method`` parameter the string ``"time"``. This +applies an interpolation, that is sensitive to the difference in temporal gaps +(as opposed by ``"linear"``\ , wich expects all the gaps to be equal). Get an overview +of the possible interpolation methods in the :py:func:`saqc.interpolate <Functions.saqc.interpolate>` +documentation. Lets check the results: + + >>> qc = qc.interpolate('SoilMoisture', target='SoilMoisture_linear', freq='10min', method='time') + >>> qc.data_raw + SoilMoisture | SoilMoisture_linear | + ================================ | ========================================= | + Date Time | Date Time | + 2021-01-01 00:00:00 NaN | 2021-01-01 00:09:07 23.429701 | + 2021-01-01 00:10:00 23.429899 | 2021-01-01 00:18:55 23.431900 | + 2021-01-01 00:20:00 23.422067 | 2021-01-01 00:28:42 23.343100 | + 2021-01-01 00:30:00 23.360782 | 2021-01-01 00:38:30 23.476400 | + 2021-01-01 00:40:00 23.455997 | 2021-01-01 00:48:18 23.343100 | + 2021-01-01 00:50:00 23.335415 | 2021-01-01 00:58:06 23.298800 | + 2021-01-01 01:00:00 23.315977 | 2021-01-01 01:07:54 23.387400 | + 2021-01-01 01:10:00 23.377891 | 2021-01-01 01:17:41 23.343100 | + 2021-01-01 01:20:00 23.332627 | 2021-01-01 01:27:29 23.298800 | + 2021-01-01 01:30:00 23.310176 | 2021-01-01 01:37:17 23.343100 | + ... | ... ... | + 2021-03-20 07:20:00 154.723105 | 2021-03-20 05:07:02 137.271500 | + 2021-03-20 07:30:00 NaN | 2021-03-20 05:21:35 138.194107 | + 2021-03-20 07:40:00 NaN | 2021-03-20 05:41:59 154.116806 | + 2021-03-20 07:50:00 165.195497 | 2021-03-20 06:03:09 150.567505 | + 2021-03-20 08:00:00 NaN | 2021-03-20 06:58:10 145.027496 | + 2021-03-20 08:10:00 NaN | 2021-03-20 07:13:49 152.883102 | + 2021-03-20 08:20:00 NaN | 2021-03-20 07:26:16 156.587906 | + 2021-03-20 08:30:00 NaN | 2021-03-20 07:40:37 166.146194 | + 2021-03-20 08:40:00 NaN | 2021-03-20 07:54:59 164.690598 | + 2021-03-20 08:50:00 NaN | 2021-03-20 08:40:41 155.318893 | + [11286] [10607] + +Interpolation and Data Sparsity +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The regularisation by interpolation is strict in the sense, that regular timestamps *only* get +interpolated, if they have at least one :ref:`valid <cook_books/DataRegularisation:valid data>` data value preceeding them *and* one +succeeding them *within* the given frequency range (wich is controlled by the ``freq`` keyword.). + +Thats, why, you have no interpolation value at ``2021-03-20 07:30:00`` - bacause it is preceeded +by a :ref:`valid <cook_books/DataRegularisation:valid data>` value at ``2021-03-20 07:26:16``\ , but there is no :ref:`valid <cook_books/DataRegularisation:valid data>` value +available in between the succeeding *10* minutes interval from ``2021-03-20 07:30:00`` to ``2021-03-20 07:30:00``. + +On the other hand, there is an interpolated value assigned to ``2021-03-20 07:50:00``\ , it is preceeded by +a :ref:`valid <cook_books/DataRegularisation:valid data>` value at ``2021-03-20 07:40:37`` and one succeeding at ``2021-03-20 07:54:59``. + +This behavior is intended to reflect the sparsity of the original data in the +regularized data set. The behavior can be circumvented by applying the more general +:py:func:`saqc.interpolateIndex <Functions.saqc.interpolateIndex>`. + +Linear Interpolation +~~~~~~~~~~~~~~~~~~~~ + +Note, that there is a wrapper available for linear interpolation: :py:func:`saqc.linear <Functions.saqc.linear>`. + +Flags and Regularisation +------------------------ + +Since data, that is flagged by a level higher or equal to the passed ``to_mask`` value +(default=:py:const:~saqc.constants.BAD), is not regarded :ref:`valid <cook_books/DataRegularisation:valid data>` by the applied function, +it can be of advantage, to flag data before regularisation in order to effectively exclude it +from the resulting regularly sampled data set. Lets see an example for the *SoilMoisture* data set. + + >>> qc = qc.linear('SoilMoisture', target='SoilMoisture_linear', freq='10min') + >>> qc.data_raw['2021-01-01 15:00:00':'2021-01-01 16:00:00'] + SoilMoisture_linear | SoilMoisture | + ================================ | ========================================= | + Date Time | Date Time | + 2021-01-01 15:00:00 23.341182 | 2021-01-01 15:00:51 23.3410 | + 2021-01-01 15:10:00 23.342964 | 2021-01-01 15:10:38 23.3431 | + 2021-01-01 15:20:00 23.341092 | 2021-01-01 15:20:26 23.3410 | + 2021-01-01 15:30:00 23.341000 | 2021-01-01 15:30:14 23.3410 | + 2021-01-01 15:40:00 -119.512446 | 2021-01-01 15:40:02 -120.0000 | + 2021-01-01 15:50:00 23.299553 | 2021-01-01 15:49:50 23.2988 | + +At ``2021-01-01 15:40:02`` the original data exhibits a measurement value +of ``-120`` - which is obviously not a valid data point, regarding the fact, that *SoilMoisture* measurements +should be percentage values in between *0* and *100*. + +Since we dont exclude the value from interpolation, it gets included in the interpolation +process for the regular timstamp at ``2021-01-01 15:40:00`` - wich, as a result, also exhibits +a non - sence value of *-119.512446*. We could now flag the resulting regular dataset and +exclude this calculated non sence value from further processing and analysis. + +But, this would mean, that we would have a small data gap at this point. + +We can circumvent having that gap, by flagging that value before interpolation. This +works, because there is actually another, now valid value, available in the interval +in between ``2021-01-01 15:40:00`` and ``2021-01-01 15:50:00``\ , that can serve as right pillow point +for the interpolation at ``2021-01-01 15:40:00``. So lets flag all the values smaller than *0* +with the :py:func:`saqc.flagRange <Functions.saqc.flagRange>` method and after this, +do the interpolation. + + >>> qc = qc.flagRange('SoilMoisture', min=0) + >>> qc = qc.interpolate('SoilMoisture', freq='10min', method='time') + >>> qc.data_raw['2021-01-01T07:00:00':'2021-01-01T08:00:00'] + SoilMoisture | SoilMoisture_original | + ================================ | ========================================= | + Date Time | Date Time | + 2021-01-01 15:00:00 23.341182 | 2021-01-01 15:00:51 23.3410 | + 2021-01-01 15:10:00 23.342964 | 2021-01-01 15:10:38 23.3431 | + 2021-01-01 15:20:00 23.341092 | 2021-01-01 15:20:26 23.3410 | + 2021-01-01 15:30:00 23.341000 | 2021-01-01 15:30:14 23.3410 | + 2021-01-01 15:40:00 23.319971 | 2021-01-01 15:40:02 -120.0000 | + 2021-01-01 15:50:00 23.299553 | 2021-01-01 15:49:50 23.2988 | + +back projection of flags +------------------------ + +TODO diff --git a/sphinx-doc/cook_books/MultivariateFlagging.rst b/sphinx-doc/cook_books/MultivariateFlagging.rst new file mode 100644 index 0000000000000000000000000000000000000000..c7ba19919e41d7ec4c2e2d6ad718d3ef977ff391 --- /dev/null +++ b/sphinx-doc/cook_books/MultivariateFlagging.rst @@ -0,0 +1,67 @@ + +Multivariate Flagging +===================== + +The tutorial aims to introduce the usage of SaQC in the context of some more complex flagging and processing techniques. +Mainly we will see how to apply Drift Corrections onto the data and how to perform multivariate flagging. + + +#. :ref:`Data Preparation <cook_books/MultivariateFlagging:Data Preparation>` + +#. :ref:`Drift Correction <cook_books/MultivariateFlagging:Drift Correction>` + +#. `Multivariate Flagging (odd Water) <#Multivariate-Flagging>`_ + +Data preparation +---------------- + + +* Flagging missing values via :py:func:`flagMissing <Functions.saqc.flagMissing>`. +* Flagging out of range values via :py:func:`flagRange <Functions.saqc.flagRange>`. +* Flagging values, where the Specific Conductance (\ *K25*\ ) drops down to near zero. (via :py:func:`flagGeneric <Functions.saqc.flag>`) +* Resampling the data via linear Interpolation (:py:func:`linear <Functions.saqc.linear>`). + +Drift Correction +---------------- + +Exponential Drift +^^^^^^^^^^^^^^^^^ + + +* The variables *SAK254* and *Turbidity* show drifting behavior originating from dirt, that accumulates on the light sensitive sensor surfaces over time. +* The effect, the dirt accumulation has on the measurement values, is assumed to be properly described by an exponential model. +* The Sensors are cleaned periodocally, resulting in a periodical reset of the drifting effect. +* The Dates and Times of the maintenance events are input to the :py:func:`correctDrift <Functions.saqc.correctDrift>`, that will correct the data in between any two such maintenance intervals. (Find some formal description of the process :doc:`here <../misc/ExponentialModel>`.) + +Linear Long Time Drift +^^^^^^^^^^^^^^^^^^^^^^ + + +* Afterwards, there remains a long time linear Drift in the *SAK254* and *Turbidity* measurements, originating from scratches, that accumule on the sensors glass lenses over time +* The lenses are replaced periodically, resulting in a periodical reset of that long time drifting effect +* The Dates and Times of the lenses replacements are input to the :py:func:`correctDrift <Functions.saqc.correctDrift>`, that will correct the data in between any two such maintenance intervals according to the assumption of a linearly increasing bias. + +Maintenance Intervals Flagging +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +* The *SAK254* and *Turbidity* values, obtained while maintenance, are, of course not trustworthy, thus, all the values obtained while maintenance get flagged via the :py:func:`flagManual <Functions.saqc.flagManual>` method. +* When maintaining the *SAK254* and *Turbidity* sensors, also the *NO3* sensors get removed from the water - thus, they also have to be flagged via the :py:func:`flagManual <Functions.saqc.flagManual>` method. + +Multivariate Flagging +--------------------- + +Basically following the *oddWater* procedure, as suggested in *Talagala, P.D. et al (2019): A Feature-Based Procedure for Detecting Technical Outliers in Water-Quality Data From In Situ Sensors. Water Ressources Research, 55(11), 8547-8568.* + + +* Variables *SAK254*\ , *Turbidity*\ , *Pegel*\ , *NO3N*\ , *WaterTemp* and *pH* get transformed to comparable scales +* We are obtaining nearest neighbor scores and assigign those to a new variable, via :py:func:`assignKNNScores <Functions.saqc.assignKNNScores>`. +* We are applying the *STRAY* Algorithm to find the cut_off points for the scores, above which values qualify as outliers. (:py:func:`flagByStray <Functions.saqc.flagByStray>`) +* We project the calculated flags onto the input variables via :py:func:`assignKNNScore <Functions.saqc.assignKNNScore>`. + +Postprocessing +-------------- + + +* (Flags reduction onto subspaces) +* Back projection of calculated flags from resampled Data onto original data via :py:func: ``mapToOriginal <Functions.saqc.mapToOriginal>`` diff --git a/sphinx-doc/cook_books/OutlierDetection.rst b/sphinx-doc/cook_books/OutlierDetection.rst new file mode 100644 index 0000000000000000000000000000000000000000..a464b67e5fe408096fd7ad89fa3aa18160878d8c --- /dev/null +++ b/sphinx-doc/cook_books/OutlierDetection.rst @@ -0,0 +1,436 @@ + +Outlier Detection and Flagging +============================== + +The tutorial aims to introduce the usage of ``saqc`` methods in order to detect outliers in an uni-variate set up. +The tutorial guides through the following steps: + + +#. We checkout and load the example data set. Subsequently, we initialise an :py:class:`SaQC <saqc.core.core.SaQC>` object. + + * :ref:`Preparation <cook_books/OutlierDetection:Preparation>` + + * :ref:`Data <cook_books/OutlierDetection:Data>` + * :ref:`Initialisation <cook_books/OutlierDetection:Initialisation>` + +#. + We will see how to apply different smoothing methods and models to the data in order to obtain usefull residue + variables. + + + * :ref:`Modelling <cook_books/OutlierDetection:Modelling>` + + * :ref:`Rolling Mean <cook_books/OutlierDetection:Rolling Mean>` + * :ref:`Rolling Median <cook_books/OutlierDetection:Rolling Median>` + * :ref:`Polynomial Fit <cook_books/OutlierDetection:Polynomial Fit>` + * :ref:`Custom Models <cook_books/OutlierDetection:Custom Models>` + + * :ref:`Evaluation and Visualisation <cook_books/OutlierDetection:Visualisation>` + +#. + We will see how we can obtain residues and scores from the calculated model curves. + + + * :ref:`Residues and Scores <cook_books/OutlierDetection:Residues and Scores>` + + * :ref:`Residues <cook_books/OutlierDetection:Residues>` + * :ref:`Scores <cook_books/OutlierDetection:Scores>` + * :ref:`Optimization by Decomposition <cook_books/OutlierDetection:Optimization by Decomposition>` + +#. + Finally, we will see how to derive flags from the scores itself and impose additional conditions, functioning as + correctives. + + + * :ref:`Setting and Correcting Flags <cook_books/OutlierDetection:Setting and Correcting Flags>` + + * :ref:`Flagging the Scores <cook_books/OutlierDetection:Flagging the Scores>` + * `Additional Conditions ("unflagging") <#Additional-Conditions>`_ + * :ref:`Including Multiple Conditions <cook_books/OutlierDetection:Including Multiple Conditions>` + +Preparation +----------- + +Data +^^^^ + +The example `data set <https://git.ufz.de/rdm-software/saqc/-/blob/cookBux/sphinx-doc/ressources/data/incidentsLKG.csv>`_ +is selected to be small, comprehendable and its single anomalous outlier +can be identified easily visually: + + +.. image:: ../ressources/images/cbooks_incidents1.png + :target: ../ressources/images/cbooks_incidents1.png + :alt: + + +It can be downloaded from the saqc git `repository <https://git.ufz.de/rdm-software/saqc/-/blob/cookBux/sphinx-doc/ressources/data/incidentsLKG.csv>`_. + +The data represents incidents of SARS-CoV-2 infections, on a daily basis, as reported by the +`RKI <https://www.rki.de/DE/Home/homepage_node.html>`_ in 2020. + +In June, an extreme spike can be observed. This spike relates to an incidence of so called "superspreading" in a local +`meat factory <https://www.heise.de/tp/features/Superspreader-bei-Toennies-identifiziert-4852400.html>`_. + +For the sake of modelling the spread of Covid, it can be of advantage, to filter the data for such extreme events, since +they may not be consistent with underlying distributional assumptions and thus interfere with the parameter learning +process of the modelling. Also it can help to learn about the conditions severely facilitating infection rates. + +To introduce into some basic ``saqc`` workflows, we will concentrate on classic variance based outlier detection approaches. + +Initialisation +^^^^^^^^^^^^^^ + +We initially want to import the data into our workspace. Therefore we import the `pandas <https://pandas.pydata.org/>`_ +library and use its csv file parser `pd.read_csv <https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html>`_. + +.. code-block:: python + + import pandas as pd + data = pd.read_csv(data_path, index_col=0) + +The resulting ``data`` variable is a pandas `data frame <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ +object. We can generate an :py:class:`SaQC <saqc.core.core.SaQC>` object directly from that. Beforehand we have to make sure, the index +of ``data`` is of the right type. + +.. code-block:: python + + data.index = pd.DatetimeIndex(data.index) + +Now we do load the saqc package into the workspace and generate an instance of :py:class:`SaQC <saqc.core.core.SaQC>` object, +that refers to the loaded data. + +.. code-block:: python + + import saqc + saqc = saqc.SaQC(data) + +The only timeseries have here, is the *incidents* dataset. We can have a look at the data and obtain the above plot through +the method :py:meth:`plot <Functions.saqc.plot>`: + +.. code-block:: python + + >>> saqc.plot('incidents') + +Modelling +--------- + +First, we want to model our data in order to obtain a stationary, residuish variable with zero mean. + +Rolling Mean +^^^^^^^^^^^^ + +Easiest thing to do, would be, to apply some rolling mean +model via the method :py:meth:`roll <Functions.saqc.roll>`. + +.. code-block:: python + + >>> import numpy as np + >>> saqc = saqc.roll(field='incidents', target='incidents_mean', func=np.mean, window='13D') + +The :py:attr:`field` parameter is passed the variable name, we want to calculate the rolling mean of. +The :py:attr:`target` parameter holds the name, we want to store the results of the calculation to. +The :py:attr:`window` parameter controlls the size of the rolling window. It can be fed any so called `date alias <https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases>`_ string. We chose the rolling window to have a 13 days span. + +Rolling Median +^^^^^^^^^^^^^^ + +You can pass arbitrary function objects to the :py:attr:`func` parameter, to be applied to calculate every single windows "score". +For example, you could go for the *median* instead of the *mean*. The numpy library provides a `median <https://numpy.org/doc/stable/reference/generated/numpy.median.html>`_ function +under the name ``ǹp.median``. We just calculate another model curve for the ``"incidents"`` data with the ``np.median`` function from the ``numpy`` library. + +.. code-block:: python + + >>> saqc = saqc.roll(field='incidents', target='incidents_median', func=np.median, window='13D') + +We chose another :py:attr:`target` value for the rolling *median* calculation, in order to not override our results from +the previous rolling *mean* calculation. +The :py:attr:`target` parameter can be passed to any call of a function from the +saqc functions pool and will determine the result of the function to be written to the +data, under the fieldname specified by it. If there already exists a field with the name passed to ``target``\ , +the data stored to this field will be overridden. + +We will evaluate and visualize the different model curves :ref:`later <cook_books/OutlierDetection:Visualisation>`. +Beforehand, we will generate some more model data. + +Polynomial Fit +^^^^^^^^^^^^^^ + +Another common approach, is, to fit polynomials of certain degrees to the data. +:py:class:`SaQC <saqc.core.core.SaQC>` provides the polynomial fit function :py:meth:`fitPolynomial <Functions.saqc.fitPolynomial>`: + +.. code-block:: python + + >>> saqc = saqc.fitPolynomial(field='incidents', target='incidents_polynomial', order=2, window='13D') + + +It also takes a :py:attr:`window` parameter, determining the size of the fitting window. +The parameter, :py:attr:`order` refers to the size of the rolling window, the polynomials get fitted to. + +Custom Models +^^^^^^^^^^^^^ + +If you want to apply a completely arbitrary function to your data, without pre-chunking it by a rolling window, +you can make use of the more general :py:meth:`processGeneric <Functions.saqc.process>` function. + +Lets apply a smoothing filter from the `scipy.signal <https://docs.scipy.org/doc/scipy/reference/signal.html>`_ +module. We wrap the filter generator up into a function first: + +.. code-block:: python + + from scipy.signal import filtfilt, butter + + def butterFilter(x, filter_order, nyq, cutoff, filter_type="lowpass"): + b, a = butter(N=filter_order, Wn=cutoff / nyq, btype=filter_type) + return pd.Series(filtfilt(b, a, x), index=x.index) + + +This function object, we can pass on to the :py:meth:`processGeneric <Functions.saqc.process>` methods :py:attr:`func` argument. + +.. code-block:: python + + saqc = saqc.processGeneric(field='incidents', target='incidents_lowPass', func=lambda x: butterFilter(x, cutoff=0.1, nyq=0.5, filter_order=2)) + + +Visualisation +------------- + +We can obtain those updated informations by generating a `pandas dataframe <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ +representation of it, with the :py:attr:`data <saqc.core.core.SaQC.data>` method: + +.. code-block:: python + + >>> data = saqc.data + +To see all the results obtained so far, plotted in one figure window, we make use of the dataframes `plot <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.plot.html>`_ method. + +.. code-block:: python + + >>> data.plot() + + +.. image:: ../ressources/images/cbooks_incidents2.png + :target: ../ressources/images/cbooks_incidents2.png + :alt: + + +Residues and Scores +------------------- + +Residues +^^^^^^^^ + +We want to evaluate the residues of one of our models model, in order to score the outlierish-nes of every point. +Therefor we just stick to the initially calculated rolling mean curve. + +First, we retrieve the residues via the :py:meth:`processGeneric <Functions.saqc.process>` method. +This method always comes into play, when we want to obtain variables, resulting from basic algebraic +manipulations of one or more input variables. + +For obtaining the models residues, we just subtract the model data from the original data and assign the result +of this operation to a new variable, called ``incidents_residues``. This Assignment, we, as usual, +control via the :py:attr:`target` parameter. + +.. code-block:: python + + saqc = saqc.processGeneric(['incidents', 'incidents_mean'], target='incidents_residues', func=lambda x, y: x - y) + + +Scores +^^^^^^ + +Next, we score the residues simply by computing their `Z-scores <https://en.wikipedia.org/wiki/Standard_score>`_. +The Z-score of a point $\ ``x``\ $, relative to its surrounding $\ ``D``\ $, evaluates to $\ ``Z(x) = \frac{x - \mu(D)}{\sigma(D)}``\ $. + +So, if we would like to roll with a window of a fixed size of *27* periods through the data and calculate the *Z*\ -score +for the point lying in the center of every window, we would define our function ``z_score``\ : + +.. code-block:: python + + z_score = lambda D: abs((D[14] - np.mean(D)) / np.std(D)) + +And subsequently, use the :py:meth:`roll <Functions.saqc.roll>` method to make a rolling window application with the scoring +function: + +.. code-block:: python + + saqc = saqc.roll(field='incidents_residues', target='incidents_scores', func=z_score, window='27D') + + +Optimization by Decomposition +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +There are 2 problems with the attempt presented :ref:`above <cook_books/OutlierDetection:Scores>`. + +First, the rolling application of the customly +defined function, might get really slow for large data sets, because our function ``z_scores`` does not get decomposed into optimized building blocks. + +Second, and maybe more important, it relies heavily on every window having a fixed number of values and a fixed temporal extension. +Otherwise, ``D[14]`` might not always be the value in the middle of the window, or it might not even exist, +and an error will be thrown. + +So the attempt works fine, only because our data set is small and strictly regularily sampled. +Meaning that it has constant temporal distances between subsequent meassurements. + +In order to tweak our calculations and make them much more stable, it might be useful to decompose the scoring +into seperate calls to the :py:meth:`roll <Functions.saqc.roll>` function, by calculating the series of the +residues *mean* and *standard deviation* seperately: + +.. code-block:: python + + saqc = saqc.roll(field='incidents_residues', target='residues_mean', window='27D', func=np.mean) + saqc = saqc.roll(field='incidents_residues', target='residues_std', window='27D', func=np.std) + saqc = saqc.processGeneric(field=['incidents_scores', "residues_mean", "residues_std"], target="residues_norm", func=lambda this, mean, std: (this - mean) / std) + +With huge datasets, this will be noticably faster, compared to the method presented :ref:`initially <cook_books/OutlierDetection:Scores>`\ , +because ``saqc`` dispatches the rolling with the basic numpy statistic methods to an optimized pandas built-in. + +Also, as a result of the :py:func: ``saqc.roll <Functions.saqc.roll>`` assigning its results to the center of every window, +all the values are centered and we dont have to care about window center indices when we are generating +the *Z*\ -Scores from the two series. + +We simply combine them via the +:py:meth:`processGeneric <Functions.saqc.generic>` method, in order to obtain the scores: + +.. code-block:: python + + saqc = saqc.processGeneric(field=['incidents_residues','incidents_mean','incidents_median'], target='incidents_scores', func=lambda x,y,z: abs((x-y) / z)) + +Let's have a look at the resulting scores: + +.. code-block:: python + + saqc.plot('incidents_scores') + + +.. image:: ../ressources/images/cbook_incidents_scoresUnflagged.png + :target: ../ressources/images/cbook_incidents_scoresUnflagged.png + :alt: + + +Setting and correcting Flags +---------------------------- + +Flagging the Scores +^^^^^^^^^^^^^^^^^^^ + +We can now implement the common `rule of thumb <https://en.wikipedia.org/wiki/68%E2%80%9395%E2%80%9399.7_rule>`_\ , +that any *Z*\ -score value above *3* may indicate an outlierish data point, +by applying the :py:meth:`flagRange <Functions.saqc.flagRange>` method with a :py:attr:`max` value of *3*. + +.. code-block:: python + + saqc = saqc.flagRange('incidents_scores', max=3) + +Now flags have been calculated for the scores: + +.. code-block:: python + + >>> saqc.plot('incidents_scores') + + +.. image:: ../ressources/images/cbooks_incidents_scores.png + :target: ../ressources/images/cbooks_incidents_scores.png + :alt: + + +Projecting Flags +^^^^^^^^^^^^^^^^ + +We now can project those flags onto our original incidents timeseries: + +.. code-block:: python + + >>> saqc = saqc.flagGeneric(field=['incidents_scores'], target='incidents', func=lambda x: isflagged(x)) + +Note, that we could have skipped the :ref:`range flagging step <cook_books/OutlierDetection:Flagging the scores>`\ , by including the cutting off in our +generic expression: + +.. code-block:: python + + >>> saqc = saqc.flagGeneric(field=['incidents_scores'], target='incidents', func=lambda x: x > 3) + +Lets check out the results: + +.. code-block:: python + + >>> saqc.plot('incidents') + + +.. image:: ../ressources/images/cbooks_incidentsOverflagged.png + :target: ../ressources/images/cbooks_incidentsOverflagged.png + :alt: + + +Obveously, there are some flags set, that, relative to their 13 days surrounding, might relate to minor incidents spikes, +but may not relate to superspreading events we are looking for. + +Especially the left most flag seems not to relate to an extreme event at all. +This overflagging stems from those values having a surrounding with very low data variance, and thus, evaluate to a relatively high Z-score. + +There are a lot of possibilities to tackle the issue. In the next section, we will see how we can improve the flagging results +by incorporating additional domain knowledge. + +Additional Conditions +--------------------- + +In order to improve our flagging result, we could additionally assume, that the events we are interested in, +are those with an incidents count that is deviating by a margin of more than +*20* from the 2 week average. + +This is equivalent to imposing the additional condition, that an outlier must relate to a sufficiently large residue. + +Unflagging +^^^^^^^^^^ + +We can do that posterior to the preceeding flagging step, by *removing* +some flags based on some condition. + +In orer want to *unflag* those values, that do not relate to +sufficiently large residues, we assign them the :py:const:`unflagged <saqc.constants.UNFLAGGED>` flag. + +Therefore, we make use of the :py:meth:`flagGeneric <Functions.saqc.flag>` method. +This method usually comes into play, when we want to assign flags based on the evaluation of logical expressions. + +So, we check out, which residues evaluate to a level below *20*\ , and assign the +flag value for :py:const:`unflagged <saqc.constants.UNFLAGGED>`. This value defaults to +to ``-np.inf`` in the default translation scheme, wich we selected implicitly by not specifying any special scheme in the +generation of the :py:class:`SaQC <saqc.core.core.SaQC>` object in the :ref:`beginning <cook_books/OutlierDetection:Initialisation>`. + +.. code-block:: python + + >>> saqc = saqc.flagGeneric(field=['incidents','incidents_residues'], target="incidents", func=lambda x,y: isflagged(x) & (y < 50), flag=-np.inf) + +Notice, that we passed the desired flag level to the :py:attr:`flag` keyword in order to perform an +"unflagging" instead of the usual flagging. The :py:attr:`flag` keyword can be passed to all the functions +and defaults to the selected translation schemes :py:const:`BAD <saqc.constants.BAD>` flag level. + +Plotting proofs the tweaking did in deed improve the flagging result: + +.. code-block:: python + + >>> saqc.plot("incidents") + + +.. image:: ../ressources/images/cbooks_incidents_correctFlagged.png + :target: ../ressources/images/cbooks_incidents_correctFlagged.png + :alt: + + +Including multiple conditions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If we do not want to first set flags, only to remove the majority of them in the next step, we also +could circumvent the :ref:`unflagging <cook_books/OutlierDetection:Unflagging>` step, by adding to the call to +:py:meth:`flagRange <Functions.saqc.flagRange>` the condition for the residues having to be above *20* + +.. code-block:: python + + >>> saqc = saqc.flagGeneric(field=['incidents_scores', 'incidents_residues'], target='incidents', func=lambda x, y: (x > 3) & (y > 20)) + >>> saqc.plot("incidents") + + +.. image:: ../ressources/images/cbooks_incidents_correctFlagged.png + :target: ../ressources/images/cbooks_incidents_correctFlagged.png + :alt: + diff --git a/sphinx-doc/cook_books_md/OutlierDetection.md b/sphinx-doc/cook_books_md/OutlierDetection.md deleted file mode 100644 index e521eb948cd4f9eab38dfe59498d8e89308e655a..0000000000000000000000000000000000000000 --- a/sphinx-doc/cook_books_md/OutlierDetection.md +++ /dev/null @@ -1,151 +0,0 @@ -# Basic Outlier Detection Workflows - -## Data - -The [data set](https://git.ufz.de/rdm-software/saqc/-/blob/cookBux/sphinx-doc/ressources/data/incidentsLKG.csv) can be -downloaded from the saqc git repository. - -The data represents incidents of SARS-CoV-2 infections, on a daily basis, as reported by the -[RKI](https://www.rki.de/DE/Home/homepage_node.html) in 2020. - - - -## Outlier - -In June, an extreme spike can be observed. This spike relates to an incidence of so called "superspreading" in a local -[meat factory](https://www.heise.de/tp/features/Superspreader-bei-Toennies-identifiziert-4852400.html). - -For the sake of modelling the Corona disease, it can be of advantage, to filter the data for such extreme events, since -they may not be consistent with underlying distributional assumptions and thus interfere with the parameter learning -process of the modelling. - -To just introduce into some basic `SaQC` workflows, we will concentrate on classic variance based outlier detection -approaches. - -## Preparation -We, initially want to import the relevant packages. - -```python -import saqc -import pandas -import numpy as np -from scipy.signal import filtfilt, butter -import matplotlib.pyplot as plt -``` - -We include the data via pandas [csv file parser](https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html). -This will give us a [data frame](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html) object, -that we can directly feed into SaQC, in order to generate an SaQC object. - -```python -import pandas as pd -# data path variable should point to where you have the incidents data set stored. -i_data = pd.read_csv(data_path) -i_data.index = pd.DatetimeIndex(i_data.index) -i_saqc = saqc.SaQC(data=i_data) -``` - -## Modelling - -First, we want to model our data, to obtain a stationary, residuish variable with zero mean. -In SaQC, the results of data processing functions, defaultly overrides the processed data column. -So, if we want to transform our input data and reuse the original data later on, we need to duplicate -it first, with the :py:func:`saqc.tools.copy <docs.func_modules.outliers.flagRange>` method: - -```python -i_saqc = i_saqc.tools.copy(field='incidents', new_field='incidents_model') -``` - -The copy method has 2 parameters - the `field` parameter controlls the name of the variable to -copy, the `new_field` parameter holds the new column name of the duplicated variable. - -Easiest thing to do, would be to apply some rolling mean -model via the :py:func:`saqc.rolling.roll <docs.func_modules.rolling.roll>` method. - -```python -i_saqc = i_saqc.rolling.roll(field='incidents_model', func=np.mean, window='13D') -``` - -We chose the rolling window to have a sice of 13 days. -You can pass arbitrary functions to the rolling method. for example, you could go for the -`median` instead. this would be done via: - -```python -i_saqc = i_saqc.tools.copy(field='incidents', new_field='incidents_median') -i_saqc = i_saqc.rolling.roll(field='incidents_median', func=np.median, window='13D') -``` - -Another common approach, is, to fit polynomials of certain degrees to the data. This could, of course, also be applied -via a functions passed to the rolling method - since this can get computationally expensive easily, for greater data sets, -SaQC offers a build-in polynomial fit function -:py:func:`saqc.curvefit.fitPolynomial <docs.func_modules.curvefit.fitPolynomial>`: - -```python -i_saqc = i_saqc.tools.copy(field='incidents', new_field='incidents_polynomial') -i_saqc = i_saqc.curvefit.fitPolynomial(field='incidents_polynomial', order=2, - winsz='13D') -``` - -If you want to apply a completely arbitrary function to your data, without rolling, for example -a smoothing filter from the [scipy.signal](https://docs.scipy.org/doc/scipy/reference/signal.html) -module, you would simply have to wrap the desired function up into a function of a single -array-like variable. To wrap the scipy butterworth filter into a forward-backward application, -you would need to define a function: - -```python -def butterFilter(x, filter_order, nyq, cutoff, filter_type): - b, a = butter(N=filter_order, Wn=cutoff / nyq, btype=filter_type) - return filtfilt(b, a, x) -``` - -Than you can wrap it up with a lambda function and pass it to the -:py:func:`saqc.transformation.transform <docs.func_modules.transformation.transform>` -methods func argument. - -```python -func=lambda x: butterFilter(x, cutoff=0.1, nyq=0.5, filter_order=2) -i_saqc = i_saqc.tools.copy(field='incidents', new_field='incidents_lowPass') -i_saqc = i_saqc.transformation.transform(field='incidents_lowPass',func=func) -``` - -You can check out the modelling results. Therefor we evaluate the qeued manipualations to the saqc object and return the -results. - -```python -i_saqc = i_saqc.evaluate() -result_data, _ saqc.getResult() -result_data.plot() -``` - - - -## Residues calculation - -We want to evaluate the residues of the model, in order to score the outlierish-nes of every point. -First, we retrieve the residues via the :py:func:`saqc.genericProcess <docs.func_modules.genericProcess>` method. -The method generates a new variable, resulting from the processing of other variables. It automatically -generates the field name it gets passed - so we do not have to generate new variable beforehand. The function we apply -is just the computation of the variables difference for any timestep. - -```python -i_saqc = i_saqc.genericProcess('incidents_residues', func=lambda incidents, incidents_model:incidents - incidents_model) -``` - -Next, we score the residues simply by computing their [Z-scores](https://en.wikipedia.org/wiki/Standard_score). - -```python -i_saqc = i_saqc.rolling.roll(field='incidents_residues', target='residues_mean', - window='27D', - func=np.mean) -i_saqc = i_saqc.rolling.roll(field='incidents_residues', target='residues_std', - window='27D', - func=np.std) -i_saqc = i_saqc.genericProcess(field='incidents_scores', - func=lambda This, residues_mean, residues_std: ( - This - residues_mean) / residues_std) -``` - - - - - diff --git a/sphinx-doc/documentation/FlaggingTranslation.rst b/sphinx-doc/documentation/FlaggingTranslation.rst new file mode 100644 index 0000000000000000000000000000000000000000..84548d8358d01f7db300a40edfa433b741650872 --- /dev/null +++ b/sphinx-doc/documentation/FlaggingTranslation.rst @@ -0,0 +1,4 @@ +Flags, History and Translations +=============================== + +TODO diff --git a/sphinx-doc/documentation/GenericFunctions.rst b/sphinx-doc/documentation/GenericFunctions.rst new file mode 100644 index 0000000000000000000000000000000000000000..b630a24832881431393c8f8de938ce5a8da9077e --- /dev/null +++ b/sphinx-doc/documentation/GenericFunctions.rst @@ -0,0 +1,4 @@ +Generic Functions +================= + +TODO diff --git a/sphinx-doc/documentation/SourceTarget.rst b/sphinx-doc/documentation/SourceTarget.rst new file mode 100644 index 0000000000000000000000000000000000000000..06a4e466459f824d9d554d4cd34af54f61882c01 --- /dev/null +++ b/sphinx-doc/documentation/SourceTarget.rst @@ -0,0 +1,4 @@ +Assigning results to new variables +================================== + +TODO diff --git a/sphinx-doc/environment/configEnv.rst b/sphinx-doc/environment/configEnv.rst new file mode 100644 index 0000000000000000000000000000000000000000..b765aee302cb14e46ab48c13ef05a32ec97acb7f --- /dev/null +++ b/sphinx-doc/environment/configEnv.rst @@ -0,0 +1,56 @@ +Config file Environment +======================= + +.. list-table:: + :header-rows: 1 + + * - Env-Value + - Env-Doc + * - "NAN" + - Pointwise absolute Value Function. + * - "abs" + - Maximum Value Function. Ignores NaN. + * - "max" + - Minimum Value Function. Ignores NaN. + * - "min" + - Mean Value Function. Ignores NaN. + * - "mean" + - Summation. Ignores NaN. + * - "sum" + - Standart Deviation. Ignores NaN. + * - "len" + - Pointwise Exponential. + * - "exp" + - Pointwise Logarithm. + * - "log" + - Logarithm, returning NaN for zero input, instead of -inf. + * - "nanLog" + - Standart Deviation. Ignores NaN. + * - "std" + - Variance. Ignores NaN. + * - "var" + - Median. Ignores NaN. + * - "median" + - Count Number of values. Ignores NaNs. + * - "count" + - Identity. + * - "id" + - Returns a Series` diff. + * - "diff" + - Scales data to [0,1] Interval. + * - "scale" + - Standardize with Standart Deviation. + * - "zScore" + - Standardize with Median and MAD. + * - "madScore" + - Standardize with Median and inter quantile range. + * - "iqsScore" + - + * - "GOOD" + - + * - "BAD" + - + * - "UNFLAGGED" + - + * - "DOUBTFUL" + - diff --git a/sphinx-doc/environment/freqAliases.rst b/sphinx-doc/environment/freqAliases.rst new file mode 100644 index 0000000000000000000000000000000000000000..f33af8a092ca93ab3d729ff9bb010f2ee2c3bcee --- /dev/null +++ b/sphinx-doc/environment/freqAliases.rst @@ -0,0 +1,18 @@ +.. list-table:: + :header-rows: 1 + + * - Alias Example + - Freq + * - "s" + - 1 second + * - "7min" + - 7 minutes + * - "3h" + - 3 hours + * - "1d" + - 1 days + * - "3M" + - 3 Months (only for resampling) + * - "8Y" + - 8 Years (only for resampling) + diff --git a/sphinx-doc/flags.rst b/sphinx-doc/flags.rst deleted file mode 100644 index 28e8d605c0bd27917148c3c30f7a8815d6a4671d..0000000000000000000000000000000000000000 --- a/sphinx-doc/flags.rst +++ /dev/null @@ -1,11 +0,0 @@ - -Flags -======= - -.. automodapi:: saqc.core.flags - :include-all-objects: - :no-heading: - - - - diff --git a/sphinx-doc/func_modules/breaks.rst b/sphinx-doc/func_modules/breaks.rst deleted file mode 100644 index 309876aa1e9b54b24d9fb95d5ba2b61a8731c64b..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/breaks.rst +++ /dev/null @@ -1,6 +0,0 @@ - -breaks -====== - -.. automodapi:: docs.func_modules.breaks - :no-heading: diff --git a/sphinx-doc/func_modules/changepoints.rst b/sphinx-doc/func_modules/changepoints.rst deleted file mode 100644 index 0c1baba6ff9c5633e02192684f323d49461d1ac1..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/changepoints.rst +++ /dev/null @@ -1,6 +0,0 @@ - -changepoints -============ - -.. automodapi:: docs.func_modules.changepoints - :no-heading: diff --git a/sphinx-doc/func_modules/constants.rst b/sphinx-doc/func_modules/constants.rst deleted file mode 100644 index 02d8041d170702f7d7589222351e9a47a3997bc7..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/constants.rst +++ /dev/null @@ -1,6 +0,0 @@ - -constants -========= - -.. automodapi:: docs.func_modules.constants - :no-heading: diff --git a/sphinx-doc/func_modules/curvefit.rst b/sphinx-doc/func_modules/curvefit.rst deleted file mode 100644 index 3f77cf70eff8b8d2ebf7c82338c7f4fe31946636..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/curvefit.rst +++ /dev/null @@ -1,6 +0,0 @@ - -curvefit -======== - -.. automodapi:: docs.func_modules.curvefit - :no-heading: diff --git a/sphinx-doc/func_modules/drift.rst b/sphinx-doc/func_modules/drift.rst deleted file mode 100644 index eaab918ea2eef26e858a75cd09c923d4c2311d2f..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/drift.rst +++ /dev/null @@ -1,6 +0,0 @@ - -drift -===== - -.. automodapi:: docs.func_modules.drift - :no-heading: diff --git a/sphinx-doc/func_modules/flagtools.rst b/sphinx-doc/func_modules/flagtools.rst deleted file mode 100644 index e249cad636b8f020da8e0674a10f42577a5ff038..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/flagtools.rst +++ /dev/null @@ -1,6 +0,0 @@ - -flagtools -========= - -.. automodapi:: docs.func_modules.flagtools - :no-heading: diff --git a/sphinx-doc/func_modules/generic.rst b/sphinx-doc/func_modules/generic.rst deleted file mode 100644 index 7774afe1e77b7690f55e34ee7bae55dbdf1c4802..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/generic.rst +++ /dev/null @@ -1,6 +0,0 @@ - -generic -======= - -.. automodapi:: docs.func_modules.generic - :no-heading: diff --git a/sphinx-doc/func_modules/interpolation.rst b/sphinx-doc/func_modules/interpolation.rst deleted file mode 100644 index 3d59ea4d5397bad85e30e60b799ae8d7f3b9c01e..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/interpolation.rst +++ /dev/null @@ -1,6 +0,0 @@ - -interpolation -============= - -.. automodapi:: docs.func_modules.interpolation - :no-heading: diff --git a/sphinx-doc/func_modules/outliers.rst b/sphinx-doc/func_modules/outliers.rst deleted file mode 100644 index a4a888a57af550a3aaf7d5012c632a8b4da6bebe..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/outliers.rst +++ /dev/null @@ -1,6 +0,0 @@ - -outliers -======== - -.. automodapi:: docs.func_modules.outliers - :no-heading: diff --git a/sphinx-doc/func_modules/pattern.rst b/sphinx-doc/func_modules/pattern.rst deleted file mode 100644 index c8d13fb5565d6bacb844684e66471d81141dc8a3..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/pattern.rst +++ /dev/null @@ -1,6 +0,0 @@ - -pattern -======= - -.. automodapi:: docs.func_modules.pattern - :no-heading: diff --git a/sphinx-doc/func_modules/resampling.rst b/sphinx-doc/func_modules/resampling.rst deleted file mode 100644 index b348b2849c2e60a9dea0bd39a88fd78311e7ff0f..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/resampling.rst +++ /dev/null @@ -1,6 +0,0 @@ - -resampling -========== - -.. automodapi:: docs.func_modules.resampling - :no-heading: diff --git a/sphinx-doc/func_modules/residues.rst b/sphinx-doc/func_modules/residues.rst deleted file mode 100644 index 5e7133cf67c6cdbd5c51c0f933a32b0d3c355cb1..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/residues.rst +++ /dev/null @@ -1,6 +0,0 @@ - -residues -======== - -.. automodapi:: docs.func_modules.residues - :no-heading: diff --git a/sphinx-doc/func_modules/rolling.rst b/sphinx-doc/func_modules/rolling.rst deleted file mode 100644 index 17425a73909505ecf5f6e1c84d684b1eeab546c6..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/rolling.rst +++ /dev/null @@ -1,6 +0,0 @@ - -rolling -======= - -.. automodapi:: docs.func_modules.rolling - :no-heading: diff --git a/sphinx-doc/func_modules/scores.rst b/sphinx-doc/func_modules/scores.rst deleted file mode 100644 index 7be28b825177fd78ad20e9799637731a13bbaada..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/scores.rst +++ /dev/null @@ -1,6 +0,0 @@ - -scores -====== - -.. automodapi:: docs.func_modules.scores - :no-heading: diff --git a/sphinx-doc/func_modules/tools.rst b/sphinx-doc/func_modules/tools.rst deleted file mode 100644 index 79c6408a4a8d878fd92b1169620cbba93d647c09..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/tools.rst +++ /dev/null @@ -1,6 +0,0 @@ - -tools -===== - -.. automodapi:: docs.func_modules.tools - :no-heading: diff --git a/sphinx-doc/func_modules/transformation.rst b/sphinx-doc/func_modules/transformation.rst deleted file mode 100644 index cec1d2ea5654414175581f498505ea04ee6fec49..0000000000000000000000000000000000000000 --- a/sphinx-doc/func_modules/transformation.rst +++ /dev/null @@ -1,6 +0,0 @@ - -transformation -============== - -.. automodapi:: docs.func_modules.transformation - :no-heading: diff --git a/sphinx-doc/getting_started/ConfigurationFiles.rst b/sphinx-doc/getting_started/ConfigurationFiles.rst new file mode 100644 index 0000000000000000000000000000000000000000..e530d39dcb8f591246655656e074a8d08d1a1b09 --- /dev/null +++ b/sphinx-doc/getting_started/ConfigurationFiles.rst @@ -0,0 +1,133 @@ + +Configuration Files +=================== + +The behaviour of SaQC can be completely controlled by a text based configuration file. + +Format +------ + +SaQC expects configuration files to be semicolon-separated text files with a +fixed header. Each row of the configuration file lists +one variable and one or several test functions that are applied on the given variable. + +Header names +^^^^^^^^^^^^ + +The header names are basically fixed, but if you really insist in custom +configuration headers have a look `here <saqc/core/config.py>`_. + +.. list-table:: + :header-rows: 1 + + * - Name + - Data Type + - Description + - Required + * - varname + - string + - name of a variable + - yes + * - test + - :ref:`function notation <getting_started_md_m2r/ConfigurationFiles:test function notation>` + - test function + - yes + * - plot + - boolean (\ ``True``\ /\ ``False``\ ) + - plot the test's result + - no + + +Test function notation +^^^^^^^^^^^^^^^^^^^^^^ + +The notation of test functions follows the function call notation of Python and +many other programming languages and looks like this: + +.. code-block:: + + flagRange(min=0, max=100) + +Here the function ``flagRange`` is called and the values ``0`` and ``100`` are passed +to the parameters ``min`` and ``max`` respectively. As we value readablity +of the configuration more than conciseness of the extrension language, only +keyword arguments are supported. That means that the notation ``flagRange(0, 100)`` +is not a valid replacement for the above example. + +Examples +-------- + +Single Test +^^^^^^^^^^^ + +Every row lists one test per variable. If you want to call multiple tests on +a specific variable (and you probably want to), list them in separate rows: + +.. code-block:: + + varname | test + #-------|---------------------------------- + x | flagMissing() + x | flagRange(min=0, max=100) + x | constants_flagBasic(window="3h") + y | flagRange(min=-10, max=40) + +Multiple Tests +^^^^^^^^^^^^^^ + +A row lists multiple tests for a specific variable in separate columns. All test +columns need to share the common prefix ``test``\ : + +.. code-block:: + + varname ; test_1 ; test_2 ; test_3 + #-------;----------------------------;---------------------------;--------------------------------- + x ; flagMissing() ; flagRange(min=0, max=100) ; constants_flagBasic(window="3h") + y ; flagRange(min=-10, max=40) ; ; + +The evaluation of such a configuration is in columns-major order, so the given +example is identical to the following: + +.. code-block:: + + varname ; test_1 + #-------;--------------------------------- + x ; flagMissing() + y ; flagRange(min=-10, max=40) + x ; flagRange(min=0, max=100) + x ; constants_flagBasic(window="3h") + +Plotting +^^^^^^^^ + +As the process of finding a good quality check setup is somewhat experimental, SaQC +provides a possibility to plot the results of the test functions. To use this feature, add the optional column ``plot`` and set it +to ``True`` for all results you want to plot. These plots are +meant to provide a quick and easy visual evaluation of the test. + +.. code-block:: + + varname ; test ; plot + #-------;----------------------------------;----- + x ; flagMissing() ; + x ; flagRange(min=0, max=100) ; False + x ; constants_flagBasic(window="3h") ; True + y ; flagRange(min=-10, max=40)` ; + +Regular Expressions in ``varname`` column +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Some of the tests (e.g. checks for missing values, range tests or interpolation +functions) are very likely to be used on all or at least several variables of +the processed dataset. As it becomes quite cumbersome to list all these +variables seperately, only to call the same functions with the same +parameters, SaQC supports regular expressions +within the ``varname`` column. Please not that a ``varname`` needs to be quoted +(with ``'`` or ``"``\ ) in order to be interpreted as a regular expression. + +.. code-block:: + + varname ; test + #----------;------------------------------ + '.*' ; harm_shift2Grid(freq="15Min") + '(x \| y)' ; flagMissing() diff --git a/sphinx-doc/getting_started/Customizations.rst b/sphinx-doc/getting_started/Customizations.rst new file mode 100644 index 0000000000000000000000000000000000000000..f5c624e3160cb5614ecd7a3ff5c2320aa9853224 --- /dev/null +++ b/sphinx-doc/getting_started/Customizations.rst @@ -0,0 +1,93 @@ + +Customizations +============== + +SaQC comes with a continuously growing number of pre-implemented +:doc:`quality check and processing routines <FunctionIndex>` and +flagging schemes. +For any sufficiently large use case however it is very likely that the +functions provided won't fulfill all your needs and requirements. + +Acknowledging the impossibility to address all imaginable use cases, we +designed the system to allow for extensions and costumizations. The main extensions options, namely +:ref:`quality check routines <getting_started_md_m2r/Customizations:custom quality check routines>` +and the :ref:`flagging scheme <getting_started_md_m2r/Customizations:custom flagging schemes>` +are described within this documents. + +Custom quality check routines +----------------------------- + +In case you are missing quality check routines, you are of course very +welcome to file a feature request issue on the project's +`gitlab repository <https://git.ufz.de/rdm-software/saqc>`_. However, if +you are more the "no-way-I-get-this-done-by-myself" type of person, +SaQC provides two ways to integrate custom routines into the system: + + +#. The :doc:`extension language <GenericFunctions>` +#. An :ref:`interface <getting_started_md_m2r/Customizations:interface>` to the evaluation machinery + +Interface +^^^^^^^^^ + +In order to make a function usable within the evaluation framework of SaQC the following interface is needed: + +.. code-block:: python + + import pandas + import dios + import saqc + + def yourTestFunction( + data: pandas.DataFrame, + field: str, + flags: saqc.Flags, + *args, + **kwargs + ) -> (dios.DictOfSeries, saqc.Flags) + +Argument Descriptions +~~~~~~~~~~~~~~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Name + - Description + * - ``data`` + - The actual dataset. + * - ``field`` + - The field/column within ``data``\ , that function is processing. + * - ``flags`` + - An instance of Flags, responsible for the translation of test results into quality attributes. + * - ``args`` + - Any other arguments needed to parameterize the function. + * - ``kwargs`` + - Any other keyword arguments needed to parameterize the function. + + +Integrate into SaQC +^^^^^^^^^^^^^^^^^^^ + +In order make your function available to the system it needs to be registered. We provide a decorator +`\ ``register`` <saqc/functions/register.py>`_ with saqc, to integrate your +test functions into SaQC. Here is a complete dummy example: + +.. code-block:: python + + from saqc import register + + @register() + def yourTestFunction(data, field, flags, *args, **kwargs): + return data, flags + +Example +^^^^^^^ + +The function `\ ``flagRange`` <saqc/funcs/functions.py>`_ provides a simple, yet complete implementation of +a quality check routine. You might want to look into its implementation as a reference for your own. + +Custom flagging schemes +----------------------- + +Sorry for the inconvenience! Coming soon... diff --git a/sphinx-doc/getting_started/FlaggingSchemes.rst b/sphinx-doc/getting_started/FlaggingSchemes.rst new file mode 100644 index 0000000000000000000000000000000000000000..4162147258a7c962c735227dc0bb7c50217ca5d1 --- /dev/null +++ b/sphinx-doc/getting_started/FlaggingSchemes.rst @@ -0,0 +1,13 @@ + +DMP flagging scheme +=================== + +Possible flags +-------------- + +The DMP scheme produces the following flag constants: + + +* "ok" +* "doubtfull" +* "bad" diff --git a/sphinx-doc/getting_started/GenericFunctions.rst b/sphinx-doc/getting_started/GenericFunctions.rst new file mode 100644 index 0000000000000000000000000000000000000000..6907ecc97a18045b679ff5bc960d5add1aff7e98 --- /dev/null +++ b/sphinx-doc/getting_started/GenericFunctions.rst @@ -0,0 +1,322 @@ + +Generic Functions +================= + +Generic Flagging Functions +-------------------------- + +Generic flagging functions provide for cross-variable quality +constraints and to implement simple quality checks directly within the configuration. + +Why? +^^^^ + +In most real world datasets many errors +can be explained by the dataset itself. Think of a an active, fan-cooled +measurement device: no matter how precise the instrument may work, problems +are to be expected when the fan stops working or the power supply +drops below a certain threshold. While these dependencies are easy to +:ref:`formalize <getting_started_md_m2r/GenericFunctions:a real world example>` on a per dataset basis, it is quite +challenging to translate them into generic source code. + +Specification +^^^^^^^^^^^^^ + +Generic flagging functions are used in the same manner as their +:doc:`non-generic counterparts <FunctionIndex>`. The basic +signature looks like that: + +.. code-block:: sh + + flagGeneric(func=<expression>, flag=<flagging_constant>) + +where ``<expression>`` is composed of the :ref:`supported constructs <getting_started_md_m2r/GenericFunctions:supported constructs>` +and ``<flag_constant>`` is one of the predefined +:ref:`flagging constants <getting_started_md_m2r/ParameterDescriptions:flagging constants>` (default: ``BAD``\ ). +Generic flagging functions are expected to return a boolean value, i.e. ``True`` or ``False``. All other expressions will +fail during the runtime of ``SaQC``. + +Examples +^^^^^^^^ + +Simple comparisons +~~~~~~~~~~~~~~~~~~ + +Task +"""" + +Flag all values of ``x`` where ``y`` falls below 0. + +Configuration file +"""""""""""""""""" + +.. code-block:: + + varname ; test + #-------;------------------------ + x ; flagGeneric(func=y < 0) + +Calculations +~~~~~~~~~~~~ + +Task +"""" + +Flag all values of ``x`` that exceed 3 standard deviations of ``y``. + +Configuration file +"""""""""""""""""" + +.. code-block:: + + varname ; test + #-------;--------------------------------- + x ; flagGeneric(func=x > std(y) * 3) + +Special functions +~~~~~~~~~~~~~~~~~ + +Task +"""" + +Flag all values of ``x`` where: ``y`` is flagged and ``z`` has missing values. + +Configuration file +"""""""""""""""""" + +.. code-block:: + + varname ; test + #-------;---------------------------------------------- + x ; flagGeneric(func=isflagged(y) & ismissing(z)) + +A real world example +~~~~~~~~~~~~~~~~~~~~ + +Let's consider the following dataset: + +.. list-table:: + :header-rows: 1 + + * - date + - meas + - fan + - volt + * - 2018-06-01 12:00 + - 3.56 + - 1 + - 12.1 + * - 2018-06-01 12:10 + - 4.7 + - 0 + - 12.0 + * - 2018-06-01 12:20 + - 0.1 + - 1 + - 11.5 + * - 2018-06-01 12:30 + - 3.62 + - 1 + - 12.1 + * - ... + - + - + - + + +Task +"""" + +Flag ``meas`` where ``fan`` equals 0 and ``volt`` +is lower than ``12.0``. + +Configuration file +"""""""""""""""""" + +There are various options. We can directly implement the condition as follows: + +.. code-block:: + + varname ; test + #-------;----------------------------------------------- + meas ; flagGeneric(func=(fan == 0) \| (volt < 12.0)) + +But we could also quality check our independent variables first +and than leverage this information later on: + +.. code-block:: + + varname ; test + #-------;---------------------------------------------------- + '.*' ; flagMissing() + fan ; flagGeneric(func=fan == 0) + volt ; flagGeneric(func=volt < 12.0) + meas ; flagGeneric(func=isflagged(fan) \| isflagged(volt)) + +Generic Processing +------------------ + +Generic processing functions provide a way to evaluate mathmetical operations +and functions on the variables of a given dataset. + +Why +^^^ + +In many real-world use cases, quality control is embedded into a larger data +processing pipeline and it is not unusual to even have certain processing +requirements as a part of the quality control itself. Generic processing +functions make it easy to enrich a dataset through the evaluation of a +given expression. + +Specification +^^^^^^^^^^^^^ + +The basic signature looks like that: + +.. code-block:: sh + + procGeneric(func=<expression>) + +where ``<expression>`` is composed of the :ref:`supported constructs <getting_started_md_m2r/GenericFunctions:supported constructs>`. + +Variable References +------------------- + +All variables of the processed dataset are available within generic functions, +so arbitrary cross references are possible. The variable of interest +is furthermore available with the special reference ``this``\ , so the second +:ref:`example <getting_started_md_m2r/GenericFunctions:calculations>` could be rewritten as: + +.. code-block:: + + varname ; test + #-------;------------------------------------ + x ; flagGeneric(func=this > std(y) * 3) + +When referencing other variables, their flags will be respected during evaluation +of the generic expression. So, in the example above only values of ``x`` and ``y``\ , that +are not already flagged with ``BAD`` will be used the avaluation of ``x > std(y)*3``. + +Supported constructs +-------------------- + +Operators +^^^^^^^^^ + +Comparison +~~~~~~~~~~ + +The following comparison operators are available: + +.. list-table:: + :header-rows: 1 + + * - Operator + - Description + * - ``==`` + - ``True`` if the values of the operands are equal + * - ``!=`` + - ``True`` if the values of the operands are not equal + * - ``>`` + - ``True`` if the values of the left operand are greater than the values of the right operand + * - ``<`` + - ``True`` if the values of the left operand are smaller than the values of the right operand + * - ``>=`` + - ``True`` if the values of the left operand are greater or equal than the values of the right operand + * - ``<=`` + - ``True`` if the values of the left operand are smaller or equal than the values of the right operand + + +Arithmetics +~~~~~~~~~~~ + +The following arithmetic operators are supported: + +.. list-table:: + :header-rows: 1 + + * - Operator + - Description + * - ``+`` + - addition + * - ``-`` + - subtraction + * - ``*`` + - multiplication + * - ``/`` + - division + * - ``**`` + - exponentiation + * - ``%`` + - modulus + + +Bitwise +~~~~~~~ + +The bitwise operators also act as logical operators in comparison chains + +.. list-table:: + :header-rows: 1 + + * - Operator + - Description + * - ``&`` + - binary and + * - ``|`` + - binary or + * - ``^`` + - binary xor + * - ``~`` + - binary complement + + +Functions +^^^^^^^^^ + +All functions expect a :ref:`variable reference <getting_started_md_m2r/GenericFunctions:variable references>` +as the only non-keyword argument (see :ref:`here <getting_started_md_m2r/GenericFunctions:special functions>`\ ) + +Mathematical Functions +~~~~~~~~~~~~~~~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Name + - Description + * - ``abs`` + - absolute values of a variable + * - ``max`` + - maximum value of a variable + * - ``min`` + - minimum value of a variable + * - ``mean`` + - mean value of a variable + * - ``sum`` + - sum of a variable + * - ``std`` + - standard deviation of a variable + * - ``len`` + - the number of values for variable + + +Special Functions +~~~~~~~~~~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Name + - Description + * - ``ismissing`` + - check for missing values + * - ``isflagged`` + - check for flags + + +Constants +^^^^^^^^^ + +Generic functions support the same constants as normal functions, a detailed +list is available :ref:`here <getting_started_md_m2r/ParameterDescriptions:constants>`. diff --git a/sphinx-doc/getting_started/InstallationGuide.rst b/sphinx-doc/getting_started/InstallationGuide.rst new file mode 100644 index 0000000000000000000000000000000000000000..4a91cd591efc0f73b1a7f790f0e93678db77085c --- /dev/null +++ b/sphinx-doc/getting_started/InstallationGuide.rst @@ -0,0 +1,85 @@ +Installation Guide +================== + +SaQC is written in Python, so the easiest way to set up your system to use SaQC +for your needs is using the Python Package Index (PyPI). It might be a good idea +to install SaQC into its own virtual environment. + + +System Requirements +------------------- +SaQC is tested to run with Python version from 3.7 to 3.9 on 64-bit operating systems (Linux and Windows). + + +Set up a virtual environment +----------------------------- + +It is good practice to create new virtual environments for different projects. This +helps keeping dependencies separated and avoids issues with conflicting versions of +a single module. The exact process to setup such an environment depends on your operating +system and python version/distribution. The following sections should get you started on +UNIX-like Systems and Windows. + + +On Unix/Mac-systems +""""""""""""""""""" + +On Unix-like systems the process is usually rather easy. Open up a terminal window and +copy-paste the following commands + +.. code-block:: sh + + # create virtual environment called "saqc-env" + python -m venv saqc-env + + # activate the virtual environment + source saqc-env/bin/activate + +On Windows-systems +"""""""""""""""""" + +On windows, things are a bit more evolved however. The first hurdle to take is usually an +installation of Python itself. There are many options available, one popular solution is +the `Conda package management system <https://docs.conda.io/en/latest/>`_. After its +`installation <https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html>`_ +type in the following: + +.. code-block:: sh + + # create virtual environment called "saqc-env" + conda create -n saqc-enc + + # activate the virtual environment + conda activate saqc-env + + # install pip, we will need it later + conda install pip + + +Install SaQC +------------ + +We currently distribute SaQC via the `Python Package Index (PyPI) <https://pypi.org/>`_ +or through our `GitLab-repository <https://git.ufz.de/rdm-software/saqc>`_. + +The latest stable versions are available with + +.. code-block:: sh + + python -m pip install saqc + +or + +.. code-block:: sh + + pip install git+https://git.ufz.de/rdm-software/saqc@master + + +If you feel more adventurous feel free to use the latest development version from our +`GitLab-repository <https://git.ufz.de/rdm-software/saqc>`_. While we try to keep the +develop branch in a workable state, we sill won't make any guarantees here. + +.. code-block:: sh + + pip install git+https://git.ufz.de/rdm-software/saqc@develop + diff --git a/sphinx-doc/getting_started/ParameterDescriptions.rst b/sphinx-doc/getting_started/ParameterDescriptions.rst new file mode 100644 index 0000000000000000000000000000000000000000..1f7386125dcaebc91576908adb11535429e2cc2e --- /dev/null +++ b/sphinx-doc/getting_started/ParameterDescriptions.rst @@ -0,0 +1,64 @@ + +Offset Strings +-------------- + +All the `pandas offset aliases <https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases>`_ ars supported by SaQC. The following table lists some of the more relevant options: + +.. list-table:: + :header-rows: 1 + + * - Alias + - Description + * - ``"S"``\ , ``"s"`` + - second + * - ``"T"``\ , ``"Min"``\ , ``"min"`` + - minute + * - ``"H"``\ , ``"h"`` + - hour + * - ``"D"``\ , ``"d"`` + - calendar day + * - ``"W"``\ , ``"w"`` + - week + * - ``"M"``\ , ``"m"`` + - month + * - ``"Y"``\ , ``"y"`` + - year + + +Multiples are build by preceeding the alias with the desired multiply (e.g ``"5Min"``\ , ``"4W"``\ ) + +Constants +--------- + +Flagging Constants +^^^^^^^^^^^^^^^^^^ + +The following flag constants are available and can be used to mark the quality of a data point: + +.. list-table:: + :header-rows: 1 + + * - Alias + - Description + * - ``GOOD`` + - A value did pass all the test and is therefore considered to be valid + * - ``BAD`` + - At least on test failed on the values and is therefore considered to be invalid + * - ``UNFLAGGED`` + - The value has not got a flag yet. This might mean, that all tests passed or that no tests ran + + +How these aliases will be translated into 'real' flags (output of SaQC) dependes on the :doc:`flagging scheme <FlaggingSchemes>` +and might range from numerical values to string constants. + +Numerical Constants +^^^^^^^^^^^^^^^^^^^ + +.. list-table:: + :header-rows: 1 + + * - Alias + - Description + * - ``NAN`` + - Not a number + diff --git a/sphinx-doc/getting_started/TutorialAPI.rst b/sphinx-doc/getting_started/TutorialAPI.rst new file mode 100644 index 0000000000000000000000000000000000000000..52f456871475755984648371700b7dc1c9475e9e --- /dev/null +++ b/sphinx-doc/getting_started/TutorialAPI.rst @@ -0,0 +1,149 @@ +Python API +========== + +General structure +----------------- + +The Python API of SaQC consists of three distinct components: + +1. the core class ``SaQC`` +2. a number of flagging schemes +3. a collection of functions + +One and two are implemented as distinct classes, the core object is called ``SaQC`` and we currently +provide three flagging schemes, namely: + +1. ``FloatScheme``: Provides the quality flags ``-np.inf`` and ``[0..255]``. + ``-np.inf`` denotes the absence of quality flags and ``255`` denotes, that + the associated data value is considered to be bad. the absence of a flags, + ``1`` the presence of flag (i.e. one of the tests provided a positive result) + and ``0`` acts as an indicator for an tested-to-be-not-bad value. +2. ``SimpleScheme``: Provides three distinct quality labels, namely ``UNFLAGGED``, ``BAD``, ``OKAY``. +3. ``DmpScheme``: Provides the four distinct flags ``NIL``, ``OK``, ``DOUBTFUL``, ``BAD``, whereas each + flag is extended by information about the generating function and optional comments. + +The third component, the actual test functions, appear as methods of ``SaQC``. + + +Getting started - Put something in +---------------------------------- + +The definition of a ``SaQC`` test suite starts with some data as a ``pandas.DataFrame`` and the selection +of an appropriate flagging scheme. For reasons of simplicity, we'll use the ``SimpleScheme`` throughout +the following examples. However, as the flagging schemes are mostly interchangable, replacing the ``SimpleScheme`` +with something more elaborate, is in fact a one line change. So let's start with: + +.. code-block:: python + + import numpy as np + import pandas as pd + from saqc import SaQC + + # we need some dummy data + values = np.random.randint(low=0, high=100, size=100) + dates = pd.date_range(start="2020-01-01", periods=len(values), freq="D") + data = pd.DataFrame({"a": values}, index=dates) + # let's insert some constant values ... + data.iloc[30:40] = values.mean() + # ... and an outlier + data.iloc[70] = 175 + + # initialize saqc + qc = SaQC(data=data, scheme="simple") + + +Moving on - Quality control your data +------------------------------------- + +The ``qc`` variable now serves as the base for all further processing steps. As mentioned above, all +available functions appear as methods of the ``SaQC`` class, so we can add a tests to our suite with: + +.. code-block:: python + + qc.flagRange("a", min=20, max=80) + +:py:func:`flagRange <Functions.saqc.flagRange>` is the easiest of all functions and simply marks all values +smaller than ``min`` and larger than ``max``. This feature by itself wouldn't be worth the trouble of getting +into ``SaQC``, but it serves as a simple example. All functions expect the name of a column in the given +``data`` as their first positional argument (called ``field``). The function ``flagRange`` (like all other +functions for that matter) is then called on the given ``field`` (only). + +Each call to a ``SaQC`` method returns a new object (all itermediate objects share the main internal data +structures, so we only create shallow copies). Setting up more complex quality control suites (here by calling +the additional methods :py:func:`flagConstants <Functions.saqc.flagConstants>` and +:py:func:`flagByGrubbs <Functions.saqc.flagByGrubbs>`) is therefore simply a matter of method chaining. + +.. code-block:: python + + # execute some tests + qc = (qc + .flagConstants("a", thresh=0.1, window=4) + .flagByGrubbs("a", window=10) + .flagRange("a", min=20, max=80)) + + +Getting done - Pull something out +--------------------------------- + +``saqc`` is eagerly evaluated, i.e. the results of all method calls are available as soon as they return. As +we have seen above, calling quality checks does however not immediately return the produces data and the +associated flags, but rather an new ``SaQC`` object. The actual execution products are accessible through a +number of different attributes, of which you likely might want to use the following: + +.. code-block:: python + + # retrieve the data as a pandas.DataFrame + qc.data + + # retrieve the flags as a pandas.DataFrame + qc.flags + + +Putting it together - The complete workflow +------------------------------------------- +The snippet below provides you with a compete example from the things we have seen so far. + +.. code-block:: python + + import numpy as np + import pandas as pd + from saqc import SaQC + + # we need some dummy data + values = np.random.randint(low=0, high=100, size=100) + dates = pd.date_range(start="2020-01-01", periods=len(values), freq="D") + data = pd.DataFrame({"a": values}, index=dates) + # let's insert some constant values ... + data.iloc[30:40] = values.mean() + # ... and an outlier + data.iloc[70] = 175 + + # initialize saqc + qc = SaQC(data=data, scheme="simple") + + # execute some tests + qc = (qc + .flagConstants("a", thresh=0.1, window="4D") + .flagByGrubbs("a", window="10D") + .flagRange("a", min=20, max=80)) + + # retrieve the data as a pandas.DataFrame + qc.data + + # retrieve the flags as a pandas.DataFrame + qc.flags + + + +Can I get something visual, please? +----------------------------------- + +We provide an elaborated plotting method to generate and show or write matplotlib figures. Building on +the example :ref:`above <getting_started/TutorialAPI:putting it together - the complete workflow>` above +simply call: + +.. code-block:: python + + qc.plot("a") + +.. image:: /ressources/images/tutorial_api_1.png diff --git a/sphinx-doc/getting_started/TutorialCLI.rst b/sphinx-doc/getting_started/TutorialCLI.rst new file mode 100644 index 0000000000000000000000000000000000000000..dd15a5df37170bcc6f6a35e04fdf6ed624fd7b6c --- /dev/null +++ b/sphinx-doc/getting_started/TutorialCLI.rst @@ -0,0 +1,285 @@ +Command Line Application +======================== + +.. note: + + The content of this page is outdate and the provided code sample will very likely + not work as expected. A rewrite of this document is pending... + + +Contents +-------- + + +* :ref:`1 Get toy data and configuration <getting_started/GettingStarted:get toy data and configuration>` +* :ref:`2 Run SaQC <getting_started/GettingStarted:run saqc>` +* :ref:`3 Configure SaQC <getting_started/GettingStarted:configure saqc>` + + * :ref:`Change test parameters <getting_started/GettingStarted:change test parameters>` + +* :ref:`4 Explore the functionality <getting_started/GettingStarted:explore the functionality>` + + * :ref:`Process multiple variables <getting_started/GettingStarted:process multiple variables>` + * :ref:`Data harmonization and custom functions <getting_started/GettingStarted:data harmonization and custom functions>` + + +The following passage guides you through the essentials of the usage of SaQC via +a toy dataset and a toy configuration. + +1. Get toy data and configuration +--------------------------------- + +If you take a look into the folder ``saqc/ressources/data`` you will find a toy +dataset ``data.csv`` which contains the following: + +.. code-block:: + + Date,Battery,SM1,SM2 + 2016-04-01 00:05:48,3573,32.685,29.3157 + 2016-04-01 00:20:42,3572,32.7428,29.3157 + 2016-04-01 00:35:37,3572,32.6186,29.3679 + 2016-04-01 00:50:32,3572,32.736999999999995,29.3679 + ... + + +These are two timeseries of soil moisture (SM1+2) and the battery voltage of the +measuring device over time. Generally, this is the way that your data should +look like to run saqc. Note, however, that you do not necessarily need a series +of dates to reference to and that you are free to use more columns of any name +that you like. + +Now create your our own configuration file ``saqc/ressources/data/myconfig.csv`` +and paste the following lines into it: + +.. code-block:: + + varname;test;plot + SM2;flagRange(min=10, max=60);False + SM2;flagMad(window="30d", z=3.5);True + + +These lines illustrate how different quality control tests can be specified for +different variables, + +In this case, we define a range-test that flags all values outside the range +[10,60] and a test to detect spikes using the MAD-method. You can find an +overview of all available quality control tests in the +:doc:`documentation <FunctionIndex>`. Note that the tests are +*executed in the order that you define in the configuration file*. The quality +flags that are set during one test are always passed on to the subsequent one. + +2. Run SaQC +----------- + +Remember to have your virtual environment activated: + +On Unix/Mac-systems +""""""""""""""""""" + +.. code-block:: sh + + source env_saqc/bin/activate + +On Windows +"""""""""" + +.. code-block:: sh + + cd env_saqc/Scripts + ./activate + +Via your console, move into the folder you downloaded saqc into: + +.. code-block:: sh + + cd saqc + +From here, you can run saqc and tell it to run the tests from the toy +config-file on the toy dataset via the ``-c`` and ``-d`` options: + +On Unix/Mac-systems +""""""""""""""""""" + +.. code-block:: sh + + python3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv + +On Windows +"""""""""" + +.. code-block:: sh + + py -3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv + +If you installed saqc via PYPi, you can omit ``sh python -m``. + +The command will output this plot: + + +.. image:: ../ressources/images/example_plot_1.png + :target: ../ressources/images/example_plot_1.png + :alt: Toy Plot + + +So, what do we see here? + + +* The plot shows the data as well as the quality flags that were set by the + tests for the variable ``SM2``\ , as defined in the config-file +* Following our definition in the config-file, first the ``flagRange``\ -test that flags + all values outside the range [10,60] was executed and after that, + the ``flagMad``\ -test to identify spikes in the data +* In the config, we set the plotting option to ``True`` for ``flagMad``\ , + only. Thus, the plot aggregates all preceeding tests (here: ``range``\ ) to black + points and highlights the flags of the selected test as red points. + +Save outputs to file +^^^^^^^^^^^^^^^^^^^^ + +If you want the final results to be saved to a csv-file, you can do so by the +use of the ``-o`` option: + +.. code-block:: sh + + saqc -c ressources/data/config.csv -d ressources/data/data.csv -o ressources/data/out.csv + +Which saves a dataframe that contains both the original data and the quality +flags that were assigned by SaQC for each of the variables: + +.. code-block:: + + Date,SM1,SM1_flags,SM2,SM2_flags + 2016-04-01 00:05:48,32.685,OK,29.3157,OK + 2016-04-01 00:20:42,32.7428,OK,29.3157,OK + 2016-04-01 00:35:37,32.6186,OK,29.3679,OK + 2016-04-01 00:50:32,32.736999999999995,OK,29.3679,OK + ... + + + +3. Configure SaQC +----------------- + +Change test parameters +"""""""""""""""""""""" + +Now you can start to change the settings in the config-file and investigate the +effect that has on how many datapoints are flagged as "BAD". When using your +own data, this is your way to configure the tests according to your needs. For +example, you could modify your ``myconfig.csv`` and change the parameters of the +range-test: + +.. code-block:: + + varname;test;plot + SM2;flagRange(min=-20, max=60);False + SM2;flagMad(window="30d", z=3.5);True + +Rerunning SaQC as above produces the following plot: + + +.. image:: ../ressources/images/example_plot_2.png + :target: ../ressources/images/example_plot_2.png + :alt: Changing the config + + +You can see that the changes that we made to the parameters of the range test +take effect so that only the values > 60 are flagged by it (black points). This, +in turn, leaves more erroneous data that is then identified by the proceeding +spike-test (red points). + +4. Explore the functionality +---------------------------- + +Process multiple variables +"""""""""""""""""""""""""" + +You can also define multiple tests for multiple variables in your data. These +are then executed sequentially and can be plotted seperately. E.g. you could do +something like this: + +.. code-block:: + + varname;test;plot + SM1;flagRange(min=10, max=60);False + SM2;flagRange(min=10, max=60);False + SM1;flagMad(window="15d", z=3.5);True + SM2;flagMad(window="30d", z=3.5);True + + +which gives you separate plots for each line where the plotting option is set to +``True`` as well as one summary "data plot" that depicts the joint flags from all +tests: + +.. list-table:: + :header-rows: 1 + + * - SM1 + - SM2 + * - here + - there + + +.. list-table:: + :header-rows: 1 + + * - SM1 + - SM2 + * - .. image:: ../ressources/images/example_plot_31.png + :target: ../ressources/images/example_plot_31.png + :alt: + + - .. image:: ../ressources/images/example_plot_32.png + :target: ../ressources/images/example_plot_32.png + :alt: + + * - .. image:: ../ressources/images/example_plot_31.png + :target: ../ressources/images/example_plot_31.png + :alt: + + - + + + +.. image:: ../ressources/images/example_plot_33.png + :target: ../ressources/images/example_plot_33.png + :alt: + + +Data harmonization and custom functions +""""""""""""""""""""""""""""""""""""""" + +SaQC includes functionality to harmonize the timestamps of one or more data +series. Also, you can write your own tests using a python-based +:doc:`extension language <GenericFunctions>`. This would look like this: + +.. code-block:: + + varname;test;plot + SM2;shiftToFreq(freq="15Min");False + SM2;generic(func=(SM2 < 30));True + + +The above executes an internal framework that harmonizes the timestamps of SM2 +to a 15min-grid (see data below). Further information about this routine can be +found in the :ref:`Flagging Functions Overview <flaggingFunctions>`. + +.. code-block:: + + Date,SM1,SM1_flags,SM2,SM2_flags + 2016-04-01 00:00:00,,,29.3157,OK + 2016-04-01 00:05:48,32.685,OK,, + 2016-04-01 00:15:00,,,29.3157,OK + 2016-04-01 00:20:42,32.7428,OK,, + ... + + +Also, all values where SM2 is below 30 are flagged via the custom function (see +plot below). You can learn more about the syntax of these custom functions +:doc:`here <GenericFunctions>`. + + +.. image:: ../ressources/images/example_plot_4.png + :target: ../ressources/images/example_plot_4.png + :alt: Example custom function + diff --git a/sphinx-doc/getting_started_md/ConfigurationFiles.md b/sphinx-doc/getting_started_md/ConfigurationFiles.md deleted file mode 100644 index 64743bb40d211db2a51adfb5ad07c64bbcbdd7be..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started_md/ConfigurationFiles.md +++ /dev/null @@ -1,98 +0,0 @@ -# Configuration Files -The behaviour of SaQC can be completely controlled by a text based configuration file. - -## Format -SaQC expects configuration files to be semicolon-separated text files with a -fixed header. Each row of the configuration file lists -one variable and one or several test functions that are applied on the given variable. - - -### Header names - -The header names are basically fixed, but if you really insist in custom -configuration headers have a look [here](saqc/core/config.py). - -| Name | Data Type | Description | Required | -|---------|----------------------------------------------|------------------------|----------| -| varname | string | name of a variable | yes | -| test | [function notation](#test-function-notation) | test function | yes | -| plot | boolean (`True`/`False`) | plot the test's result | no | - - -### Test function notation -The notation of test functions follows the function call notation of Python and -many other programming languages and looks like this: -``` -flagRange(min=0, max=100) -``` -Here the function `flagRange` is called and the values `0` and `100` are passed -to the parameters `min` and `max` respectively. As we value readablity -of the configuration more than conciseness of the extrension language, only -keyword arguments are supported. That means that the notation `flagRange(0, 100)` -is not a valid replacement for the above example. - -## Examples -### Single Test -Every row lists one test per variable. If you want to call multiple tests on -a specific variable (and you probably want to), list them in separate rows: -``` -varname | test -#-------|---------------------------------- -x | flagMissing() -x | flagRange(min=0, max=100) -x | constants_flagBasic(window="3h") -y | flagRange(min=-10, max=40) -``` - -### Multiple Tests -A row lists multiple tests for a specific variable in separate columns. All test -columns need to share the common prefix `test`: - -``` -varname ; test_1 ; test_2 ; test_3 -#-------;----------------------------;---------------------------;--------------------------------- -x ; flagMissing() ; flagRange(min=0, max=100) ; constants_flagBasic(window="3h") -y ; flagRange(min=-10, max=40) ; ; -``` -The evaluation of such a configuration is in columns-major order, so the given -example is identical to the following: - -``` -varname ; test_1 -#-------;--------------------------------- -x ; flagMissing() -y ; flagRange(min=-10, max=40) -x ; flagRange(min=0, max=100) -x ; constants_flagBasic(window="3h") - -``` - -### Plotting -As the process of finding a good quality check setup is somewhat experimental, SaQC -provides a possibility to plot the results of the test functions. To use this feature, add the optional column `plot` and set it -to `True` for all results you want to plot. These plots are -meant to provide a quick and easy visual evaluation of the test. -``` -varname ; test ; plot -#-------;----------------------------------;----- -x ; flagMissing() ; -x ; flagRange(min=0, max=100) ; False -x ; constants_flagBasic(window="3h") ; True -y ; flagRange(min=-10, max=40)` ; -``` - -### Regular Expressions in `varname` column -Some of the tests (e.g. checks for missing values, range tests or interpolation -functions) are very likely to be used on all or at least several variables of -the processed dataset. As it becomes quite cumbersome to list all these -variables seperately, only to call the same functions with the same -parameters, SaQC supports regular expressions -within the `varname` column. Please not that a `varname` needs to be quoted -(with `'` or `"`) in order to be interpreted as a regular expression. - -``` -varname ; test -#----------;------------------------------ -'.*' ; harm_shift2Grid(freq="15Min") -'(x \| y)' ; flagMissing() -``` \ No newline at end of file diff --git a/sphinx-doc/getting_started_md/Customizations.md b/sphinx-doc/getting_started_md/Customizations.md deleted file mode 100644 index b9d9ff359c7ff40e508b67935c536924dfd07aa5..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started_md/Customizations.md +++ /dev/null @@ -1,69 +0,0 @@ -# Customizations -SaQC comes with a continuously growing number of pre-implemented -[quality check and processing routines](sphinx-doc/getting_started_md/FunctionIndex.md) and -flagging schemes. -For any sufficiently large use case however it is very likely that the -functions provided won't fulfill all your needs and requirements. - -Acknowledging the impossibility to address all imaginable use cases, we -designed the system to allow for extensions and costumizations. The main extensions options, namely -[quality check routines](#custom-quality-check-routines) -and the [flagging scheme](#custom-flagging-schemes) -are described within this documents. - -## Custom quality check routines -In case you are missing quality check routines, you are of course very -welcome to file a feature request issue on the project's -[gitlab repository](https://git.ufz.de/rdm-software/saqc). However, if -you are more the "no-way-I-get-this-done-by-myself" type of person, -SaQC provides two ways to integrate custom routines into the system: -1. The [extension language](sphinx-doc/getting_started_md/GenericFunctions.md) -2. An [interface](#interface) to the evaluation machinery - -### Interface -In order to make a function usable within the evaluation framework of SaQC the following interface is needed: - -```python -import pandas -import dios -import saqc - -def yourTestFunction( - data: pandas.DataFrame, - field: str, - flags: saqc.Flags, - *args, - **kwargs - ) -> (dios.DictOfSeries, saqc.Flags) -``` - -#### Argument Descriptions - -| Name | Description | -|-----------|--------------------------------------------------------------------------------------------------| -| `data` | The actual dataset. | -| `field` | The field/column within `data`, that function is processing. | -| `flags` | An instance of Flags, responsible for the translation of test results into quality attributes. | -| `args` | Any other arguments needed to parameterize the function. | -| `kwargs` | Any other keyword arguments needed to parameterize the function. | - -### Integrate into SaQC -In order make your function available to the system it needs to be registered. We provide a decorator -[`register`](saqc/functions/register.py) with saqc, to integrate your -test functions into SaQC. Here is a complete dummy example: - -```python -from saqc import register - -@register() -def yourTestFunction(data, field, flags, *args, **kwargs): - return data, flags -``` - -### Example -The function [`flagRange`](saqc/funcs/functions.py) provides a simple, yet complete implementation of -a quality check routine. You might want to look into its implementation as a reference for your own. - - -## Custom flagging schemes -Sorry for the inconvenience! Coming soon... diff --git a/sphinx-doc/getting_started_md/FlaggingSchemes.md b/sphinx-doc/getting_started_md/FlaggingSchemes.md deleted file mode 100644 index edca5253ca8747048e2c4f3738dc9da522726222..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started_md/FlaggingSchemes.md +++ /dev/null @@ -1,10 +0,0 @@ -# DMP flagging scheme - -## Possible flags - -The DMP scheme produces the following flag constants: - -* "ok" -* "doubtfull" -* "bad" - diff --git a/sphinx-doc/getting_started_md/GenericFunctions.md b/sphinx-doc/getting_started_md/GenericFunctions.md deleted file mode 100644 index c2fa6654488728f72b43eef3188ff07f5d9baab8..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started_md/GenericFunctions.md +++ /dev/null @@ -1,201 +0,0 @@ -# Generic Functions - -## Generic Flagging Functions - -Generic flagging functions provide for cross-variable quality -constraints and to implement simple quality checks directly within the configuration. - -### Why? -In most real world datasets many errors -can be explained by the dataset itself. Think of a an active, fan-cooled -measurement device: no matter how precise the instrument may work, problems -are to be expected when the fan stops working or the power supply -drops below a certain threshold. While these dependencies are easy to -[formalize](#a-real-world-example) on a per dataset basis, it is quite -challenging to translate them into generic source code. - -### Specification -Generic flagging functions are used in the same manner as their -[non-generic counterparts](sphinx-doc/getting_started_md/FunctionIndex.md). The basic -signature looks like that: -```sh -flagGeneric(func=<expression>, flag=<flagging_constant>) -``` -where `<expression>` is composed of the [supported constructs](#supported-constructs) -and `<flag_constant>` is one of the predefined -[flagging constants](ParameterDescriptions.md#flagging-constants) (default: `BAD`). -Generic flagging functions are expected to return a boolean value, i.e. `True` or `False`. All other expressions will -fail during the runtime of `SaQC`. - - -### Examples - -#### Simple comparisons - -##### Task -Flag all values of `x` where `y` falls below 0. - -##### Configuration file -``` -varname ; test -#-------;------------------------ -x ; flagGeneric(func=y < 0) -``` - -#### Calculations - -##### Task -Flag all values of `x` that exceed 3 standard deviations of `y`. - -##### Configuration file -``` -varname ; test -#-------;--------------------------------- -x ; flagGeneric(func=x > std(y) * 3) -``` -#### Special functions - -##### Task -Flag all values of `x` where: `y` is flagged and `z` has missing values. - -##### Configuration file -``` -varname ; test -#-------;---------------------------------------------- -x ; flagGeneric(func=isflagged(y) & ismissing(z)) -``` - -#### A real world example -Let's consider the following dataset: - -| date | meas | fan | volt | -|------------------|------|-----|------| -| 2018-06-01 12:00 | 3.56 | 1 | 12.1 | -| 2018-06-01 12:10 | 4.7 | 0 | 12.0 | -| 2018-06-01 12:20 | 0.1 | 1 | 11.5 | -| 2018-06-01 12:30 | 3.62 | 1 | 12.1 | -| ... | | | | - -##### Task -Flag `meas` where `fan` equals 0 and `volt` -is lower than `12.0`. - -##### Configuration file -There are various options. We can directly implement the condition as follows: -``` -varname ; test -#-------;----------------------------------------------- -meas ; flagGeneric(func=(fan == 0) \| (volt < 12.0)) -``` -But we could also quality check our independent variables first -and than leverage this information later on: -``` -varname ; test -#-------;---------------------------------------------------- -'.*' ; flagMissing() -fan ; flagGeneric(func=fan == 0) -volt ; flagGeneric(func=volt < 12.0) -meas ; flagGeneric(func=isflagged(fan) \| isflagged(volt)) -``` - -## Generic Processing - -Generic processing functions provide a way to evaluate mathmetical operations -and functions on the variables of a given dataset. - -### Why -In many real-world use cases, quality control is embedded into a larger data -processing pipeline and it is not unusual to even have certain processing -requirements as a part of the quality control itself. Generic processing -functions make it easy to enrich a dataset through the evaluation of a -given expression. - -### Specification -The basic signature looks like that: -```sh -procGeneric(func=<expression>) -``` -where `<expression>` is composed of the [supported constructs](#supported-constructs). - - -## Variable References -All variables of the processed dataset are available within generic functions, -so arbitrary cross references are possible. The variable of interest -is furthermore available with the special reference `this`, so the second -[example](#calculations) could be rewritten as: -``` -varname ; test -#-------;------------------------------------ -x ; flagGeneric(func=this > std(y) * 3) -``` - -When referencing other variables, their flags will be respected during evaluation -of the generic expression. So, in the example above only values of `x` and `y`, that -are not already flagged with `BAD` will be used the avaluation of `x > std(y)*3`. - - -## Supported constructs - -### Operators - -#### Comparison - -The following comparison operators are available: - -| Operator | Description | -|----------|----------------------------------------------------------------------------------------------------| -| `==` | `True` if the values of the operands are equal | -| `!=` | `True` if the values of the operands are not equal | -| `>` | `True` if the values of the left operand are greater than the values of the right operand | -| `<` | `True` if the values of the left operand are smaller than the values of the right operand | -| `>=` | `True` if the values of the left operand are greater or equal than the values of the right operand | -| `<=` | `True` if the values of the left operand are smaller or equal than the values of the right operand | - -#### Arithmetics -The following arithmetic operators are supported: - -| Operator | Description | -|----------|----------------| -| `+` | addition | -| `-` | subtraction | -| `*` | multiplication | -| `/` | division | -| `**` | exponentiation | -| `%` | modulus | - -#### Bitwise -The bitwise operators also act as logical operators in comparison chains - -| Operator | Description | -|----------|-------------------| -| `&` | binary and | -| `\|` | binary or | -| `^` | binary xor | -| `~` | binary complement | - -### Functions -All functions expect a [variable reference](#variable-references) -as the only non-keyword argument (see [here](#special-functions)) - -#### Mathematical Functions - -| Name | Description | -|-------------|-----------------------------------| -| `abs` | absolute values of a variable | -| `max` | maximum value of a variable | -| `min` | minimum value of a variable | -| `mean` | mean value of a variable | -| `sum` | sum of a variable | -| `std` | standard deviation of a variable | -| `len` | the number of values for variable | - -#### Special Functions - -| Name | Description | -|-------------|-----------------------------------| -| `ismissing` | check for missing values | -| `isflagged` | check for flags | - -### Constants -Generic functions support the same constants as normal functions, a detailed -list is available [here](ParameterDescriptions.md#constants). diff --git a/sphinx-doc/getting_started_md/GettingStarted.md b/sphinx-doc/getting_started_md/GettingStarted.md deleted file mode 100644 index e1474bfe042c37160a6f5499ab369e197e8f8277..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started_md/GettingStarted.md +++ /dev/null @@ -1,295 +0,0 @@ -# Getting started with SaQC - -Requirements: this tutorial assumes that you have Python version 3.6.1 or newer -installed, and that both your operating system and Python version are in 64-bit. - -## Contents - -1. [Set up your environment](#1-set-up-your-environment) -2. [Get SaQC](#2-get-saqc) -3. [Training tour](#3-training-tour) - * [3.1 Get toy data and configuration](#get-toy-data-and-configuration) - * [3.2 Run SaQC](#run-saqc) - * [3.3 Configure SaQC](#configure-saqc) - * [Change test parameters](#change-test-parameters) - * [3.4 Explore the functionality](#explore-the-functionality) - * [Process multiple variables](#process-multiple-variables) - * [Data harmonization and custom functions](#data-harmonization-and-custom-functions) - * [Save outputs to file](#save-outputs-to-file) - - -## 1. Set up your environment - -SaQC is written in Python, so the easiest way to set up your system to use SaQC -for your needs is using the Python Package Index (PyPI). Following good Python -practice, you will first want to create a new virtual environment that you -install SaQC into by typing the following in your console: - - -##### On Unix/Mac-systems - -```sh -# if you have not installed venv yet, do so: -python3 -m pip install --user virtualenv - -# move to the directory where you want to create your virtual environment -cd YOURDIR - -# create virtual environment called "env_saqc" -python3 -m venv env_saqc - -# activate the virtual environment -source env_saqc/bin/activate -``` - -##### On Windows-systems - -```sh -# if you have not installed venv yet, do so: -py -3 -m pip install --user virtualenv - -# move to the directory where you want to create your virtual environment -cd YOURDIR - -# create virtual environment called "env_saqc" -py -3 -m venv env_saqc - -# move to the Scripts directory in "env_saqc" -cd env_saqc/Scripts - -# activate the virtual environment -./activate -``` - -## 2. Get SaQC - -### Via PyPI - -Type the following: - -##### On Unix/Mac-systems - - -```sh -python3 -m pip install saqc -``` - -##### On Windows-systems - - -```sh -py -3 -m pip install saqc -``` - - -### From Gitlab repository - -Download SaQC directly from the [GitLab-repository](https://git.ufz.de/rdm/saqc) to make sure you use the most recent version: - -```sh -# clone gitlab - repository -git clone https://git.ufz.de/rdm-software/saqc - -# switch to the folder where you installed saqc -cd saqc - -# install all required packages -pip install -r requirements.txt - -# install all required submodules -git submodule update --init --recursive -``` - - -## 3. Training tour - -The following passage guides you through the essentials of the usage of SaQC via -a toy dataset and a toy configuration. - -### Get toy data and configuration - -If you take a look into the folder `saqc/ressources/data` you will find a toy -dataset `data.csv` which contains the following: - - Date,Battery,SM1,SM2 - 2016-04-01 00:05:48,3573,32.685,29.3157 - 2016-04-01 00:20:42,3572,32.7428,29.3157 - 2016-04-01 00:35:37,3572,32.6186,29.3679 - 2016-04-01 00:50:32,3572,32.736999999999995,29.3679 - ... - -These are two timeseries of soil moisture (SM1+2) and the battery voltage of the -measuring device over time. Generally, this is the way that your data should -look like to run saqc. Note, however, that you do not necessarily need a series -of dates to reference to and that you are free to use more columns of any name -that you like. - -Now create your our own configuration file `saqc/ressources/data/myconfig.csv` -and paste the following lines into it: - - varname;test;plot - SM2;flagRange(min=10, max=60);False - SM2;flagMad(window="30d", z=3.5);True - -These lines illustrate how different quality control tests can be specified for -different variables by following the pattern: - -*varname*|;| *testname (testparameters)*|;| *plotting option*| -:---------------|:------|:------|:----|:--| - -In this case, we define a range-test that flags all values outside the range -[10,60] and a test to detect spikes using the MAD-method. You can find an -overview of all available quality control tests in the -[documentation](FunctionIndex.md). Note that the tests are -_executed in the order that you define in the configuration file_. The quality -flags that are set during one test are always passed on to the subsequent one. - -### Run SaQC - -Remember to have your virtual environment activated: - -##### On Unix/Mac-systems - -```sh -source env_saqc/bin/activate -``` - -##### On Windows - -```sh -cd env_saqc/Scripts -./activate -``` - - -Via your console, move into the folder you downloaded saqc into: -```sh -cd saqc -``` - -From here, you can run saqc and tell it to run the tests from the toy -config-file on the toy dataset via the `-c` and `-d` options: -##### On Unix/Mac-systems -```sh -python3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv -``` -##### On Windows -```sh -py -3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv -``` - -If you installed saqc via PYPi, you can omit ```sh python -m```. - -The command will output this plot: - - - -So, what do we see here? - -* The plot shows the data as well as the quality flags that were set by the - tests for the variable `SM2`, as defined in the config-file -* Following our definition in the config-file, first the `flagRange`-test that flags - all values outside the range [10,60] was executed and after that, - the `flagMad`-test to identify spikes in the data -* In the config, we set the plotting option to `True` for `flagMad`, - only. Thus, the plot aggregates all preceeding tests (here: `range`) to black - points and highlights the flags of the selected test as red points. - - -#### Save outputs to file -If you want the final results to be saved to a csv-file, you can do so by the -use of the `-o` option: - -```sh -saqc -c ressources/data/config.csv -d ressources/data/data.csv -o ressources/data/out.csv -``` - -Which saves a dataframe that contains both the original data and the quality -flags that were assigned by SaQC for each of the variables: - - Date,SM1,SM1_flags,SM2,SM2_flags - 2016-04-01 00:05:48,32.685,OK,29.3157,OK - 2016-04-01 00:20:42,32.7428,OK,29.3157,OK - 2016-04-01 00:35:37,32.6186,OK,29.3679,OK - 2016-04-01 00:50:32,32.736999999999995,OK,29.3679,OK - ... - - -### Configure SaQC - -#### Change test parameters -Now you can start to change the settings in the config-file and investigate the -effect that has on how many datapoints are flagged as "BAD". When using your -own data, this is your way to configure the tests according to your needs. For -example, you could modify your `myconfig.csv` and change the parameters of the -range-test: - - varname;test;plot - SM2;flagRange(min=-20, max=60);False - SM2;flagMad(window="30d", z=3.5);True -Rerunning SaQC as above produces the following plot: - - - -You can see that the changes that we made to the parameters of the range test -take effect so that only the values > 60 are flagged by it (black points). This, -in turn, leaves more erroneous data that is then identified by the proceeding -spike-test (red points). - -### Explore the functionality -#### Process multiple variables -You can also define multiple tests for multiple variables in your data. These -are then executed sequentially and can be plotted seperately. E.g. you could do -something like this: - - varname;test;plot - SM1;flagRange(min=10, max=60);False - SM2;flagRange(min=10, max=60);False - SM1;flagMad(window="15d", z=3.5);True - SM2;flagMad(window="30d", z=3.5);True - -which gives you separate plots for each line where the plotting option is set to -`True` as well as one summary "data plot" that depicts the joint flags from all -tests: - -|SM1 | SM2 | -|:-------------------------:|:-------------------------:| -|here | there| - - - -|SM1 | SM2 | -|:-------------------------:|:-------------------------:| -|  | | -|  | bumm| - - - -#### Data harmonization and custom functions - -SaQC includes functionality to harmonize the timestamps of one or more data -series. Also, you can write your own tests using a python-based -[extension language](sphinx-doc/getting_started_md/GenericFunctions.md). This would look like this: - - varname;test;plot - SM2;shiftToFreq(freq="15Min");False - SM2;generic(func=(SM2 < 30));True - -The above executes an internal framework that harmonizes the timestamps of SM2 -to a 15min-grid (see data below). Further information about this routine can be -found in the :ref:`Flagging Functions Overview <flaggingFunctions>`. - - Date,SM1,SM1_flags,SM2,SM2_flags - 2016-04-01 00:00:00,,,29.3157,OK - 2016-04-01 00:05:48,32.685,OK,, - 2016-04-01 00:15:00,,,29.3157,OK - 2016-04-01 00:20:42,32.7428,OK,, - ... - -Also, all values where SM2 is below 30 are flagged via the custom function (see -plot below). You can learn more about the syntax of these custom functions -[here](sphinx-doc/getting_started_md/GenericFunctions.md). - - - -:py:func:`lala <docs.func_modules.outliers.flagRange>` \ No newline at end of file diff --git a/sphinx-doc/getting_started_md/ParameterDescriptions.md b/sphinx-doc/getting_started_md/ParameterDescriptions.md deleted file mode 100644 index 0581f55c189f0c1b80c22296a188104d9b6a6716..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started_md/ParameterDescriptions.md +++ /dev/null @@ -1,34 +0,0 @@ -## Offset Strings -All the [pandas offset aliases](https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases) ars supported by SaQC. The following table lists some of the more relevant options: - -| Alias | Description | -| ----- | ----------- | -| `"S"`, `"s"` | second | -| `"T"`, `"Min"`, `"min"` | minute | -| `"H"`, `"h"` | hour | -| `"D"`, `"d"` | calendar day | -| `"W"`, `"w"` | week | -| `"M"`, `"m"` | month | -| `"Y"`, `"y"` | year | - -Multiples are build by preceeding the alias with the desired multiply (e.g `"5Min"`, `"4W"`) - - -## Constants - -### Flagging Constants -The following flag constants are available and can be used to mark the quality of a data point: - -| Alias | Description | -| ---- | ---- | -| `GOOD` | A value did pass all the test and is therefore considered to be valid | -| `BAD` | At least on test failed on the values and is therefore considered to be invalid | -| `UNFLAGGED` | The value has not got a flag yet. This might mean, that all tests passed or that no tests ran | - -How these aliases will be translated into 'real' flags (output of SaQC) dependes on the [flagging scheme](FlaggingSchemes.md) -and might range from numerical values to string constants. - -### Numerical Constants -| Alias | Description | -| ---- | ---- | -| `NAN` | Not a number | diff --git a/sphinx-doc/how_to_doc/HowToDoc.rst b/sphinx-doc/how_to_doc/HowToDoc.rst new file mode 100644 index 0000000000000000000000000000000000000000..273ef245705123cc957ee4d080d0a6034fe066a6 --- /dev/null +++ b/sphinx-doc/how_to_doc/HowToDoc.rst @@ -0,0 +1,237 @@ + +Documentation Guide +=================== + +We document our code via docstrings in numpy-style. +Features, install and usage instructions and other more text intense stuff, +is written in extra documents. +The documents and the docstrings then are collected and rendered using `sphinx <https://www.sphinx-doc.org/>`_. + +Documentation Strings +--------------------- + + +* + Write docstrings for all public modules, functions, classes, and methods. + Docstrings are not necessary for non-public methods, + but you should have a comment that describes what the method does. + This comment should appear after the def line. + [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] + +* + Note that most importantly, the ``"""`` that ends a multiline docstring should be on a line by itself [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] : + + .. code-block:: python + + """Return a foobang + + Optional plotz says to frobnicate the bizbaz first. + """ + +* + For one liner docstrings, please keep the closing ``"""`` on the same line. + [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] + +Pandas Style +^^^^^^^^^^^^ + +We use `Pandas-style <https://pandas.pydata.org/pandas-docs/stable/development/contributing_docstring.html>`_ docstrings: + +Flagger, data, field, etc. +-------------------------- + +use this: + +.. code-block:: py + + def foo(data, field, flagger): + """ + data : dios.DictOfSeries + A saqc-data object. + + field : str + A field denoting a column in data. + + flagger : saqc.flagger.BaseFlagger + A saqc-flagger object. + """ + +IDE helper +^^^^^^^^^^ + +In pycharm one can activate autogeneration of numpy doc style like so: + + +#. ``File->Settings...`` +#. ``Tools->Python Integrated Tools`` +#. ``Docstrings->Docstring format`` +#. Choose ``NumPy`` + +Docstring formatting pitfalls +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +* Latex is included via + .. code-block:: + + :math:`<latex_code>` + +* + Latex commands need to be signified with **double** backlash! (\ ``\\mu`` instead of ``\mu``\ ) + +* + Nested lists need to be all of the same kind (either numbered or marked - otherwise result is salad) + +* List items covering several lines in the docstring have to be all aligned - (so, not only the superfluent ones, but ALL, including the first one - otherwise result is salad) +* Start of a list has to be seperated from preceding docstring code by *one blank line* - (otherwise list items get just chained in one line and result is salad) +* Most formatting signifiers are not allowed to start or end with a space. (so no :math: `1+1 `, ` var2`, `` a=1 ``, ...) +* Do not include lines *only* containing two or more ``-`` signs, except it is the underscore line of the section heading (otherwise resulting html representation could be messed up) + +hyperlinking docstrings +----------------------- + + +* + Link code content/modules via python roles. + +* + Cite/link via the py domain roles. Link content ``bar``\ , that is registered to the API with the adress ``foo.bar`` and + shall be represented by the name ``link_name``\ , via: + + .. code-block:: + + :py:role:`link_name <foo.bar>` + +* + check out the *_api* folder in the `repository <https://git.ufz.de/rdm-software/saqc/-/tree/develop/sphinx-doc>`_ to get an + overview of already registered paths. Most important may be: + +* + constants are available via ``saqc.constants`` - for example: + + .. code-block:: + + :py:const:`~saqc.constants.BAD` + +* + the ``~`` is a shorthand for hiding the module path and only displaying ``BAD``. + +* + Functions are available via the "simulated" module ``Functions.saqc`` - for example: + +.. code-block:: + + :py:func:`saqc.flagRange <saqc.Functions.flagRange>` + + +* Modules are available via the "simulated" package ``Functions.`` - for example: + +.. code-block:: + + :py:mod:`generic <Functions.generic>` + + +* The saqc object and/or its content is available via: + +.. code-block:: + + :py:class:`saqc.SaQC` + :py:meth:`saqc.SaQC.getResults` + + +* The Flags object and/or its content is available via: + +.. code-block:: + + :py:class:`saqc.Flags` + + +* + you can add .rst files containing ``automodapi`` directives to the modulesAPI folder to make available more modules via pyroles + +* + the Environment table, including variables available via config files is available as restfile located in the environment folder. (Use include directive to include, or linking syntax to link it. + +Adding Markdown content to the Documentation +-------------------------------------------- + + +* + By linking the markdown file "foo/bar.md", or any folder that contains markdown files directly, + you can trigger sphinx - ``recommonmark``\ , which is fine for not-too complex markdown documents. + +* + Especially, if you have multiple markdown files that are mutually linked and/or, contain tables of certain fencieness (tables with figures), + you will have to take some minor extra steps: + +* + You will have to gather all markdown files in subfolders of "sphinx-doc" directory (you can have multiple subfolders). + +* + To include a folder named ``foo`` of markdown files in the documentation, or refer to content in ``foo``\ , you will have + to append the folder name to the MDLIST variable in the Makefile: + +* + The markdown files must be in one of the subfolders listed in MDLIST - they cant be gathered in nested subfolders. + +* + You can not link to sections in other markdown files, that contain the ``-`` character (sorry). + +* + The Section structure/ordering must be consistent in the ReST sence (otherwise they wont appear - thats also required if you use plain ``recommonmark`` + +* + You can link to ressources - like pictures and include them in the markdown, if the pictures are in (possibly another) folder in ``\sphinx-doc`` and the paths to this ressources are given relatively! + +* + You can include a markdown file in a rest document, by appending '_m2r' to the folder name when linking it path_wise. + So, to include the markdown file 'foo/bar.md' in a toc tree for example - you would do something like: + +* + the Environment table, including variables availbe via config files is available as restfile located in the environment folder. (Use include directive to include, or linking syntax to link it.) + +.. code-block:: python + + .. toctree:: + :hidden: + :maxdepth: 1 + + foo_m2r/bar + +Linking ReST sources in markdown documentation +---------------------------------------------- + + +* + If you want to hyperlink/include other sources from the sphinx documentation that are rest-files (and docstrings), + you will not be able to include them in a way, that they will appear in you markdown rendering. - however - there is + the posibillity to just include the respective rest directives (see directive/link :ref:`examples <how_to_doc/HowToDoc:hyperlinking docstrings>`\ ). + +* + This will mess up your markdown code - meaning that you will have + those rest snippets flying around, but when the markdown file gets converted to the rest file and build into the + sphinx html build, the linked sources will be integrated properly. The syntax for linking rest sources is as + follows as follows: + +* + to include the link to the rest source ``functions.rst`` in the folder ``foo``\ , under the name ``bar``\ , you would need to insert: + + .. code-block:: + + :doc:`foo <rel_path/functions>` + +* + to link to a section with name ``foo`` in a rest source named ``bumm.rst``\ , under the name ``bar``\ , you would just insert: + + .. code-block:: + + :ref:`bar <relative/path/from/sphinx/root/bumm:foo>` + +* + in that manner you might be able to smuggle most rest directives through into the resulting html build. Especially if you want to link to the docstrings of certain (domain specific) objects. Lets say you want to link to the *function* ``saqc.funcs.flagRange`` under the name ``ranger`` - you just include: + +.. code-block:: + + :py:func:`Ranger <saqc.funcs.flagRange>` + +whereas the ``:func:`` part determines the role, the object is documented as. See `this page <https://www.sphinx-doc.org/en/master/#ref-role>`_ for an overview of the available roles diff --git a/sphinx-doc/how_to_doc_md/HowToDoc.md b/sphinx-doc/how_to_doc_md/HowToDoc.md deleted file mode 100644 index 61a902aa080cac8016d2e3e44d5f205d105ac534..0000000000000000000000000000000000000000 --- a/sphinx-doc/how_to_doc_md/HowToDoc.md +++ /dev/null @@ -1,138 +0,0 @@ -# Documentation Guide - -We document our code via docstrings in numpy-style. -Features, install and usage instructions and other more text intense stuff, -is written in extra documents. -The documents and the docstrings then are collected and rendered using [sphinx](https://www.sphinx-doc.org/). - - -## Documentation Strings - - -- Write docstrings for all public modules, functions, classes, and methods. - Docstrings are not necessary for non-public methods, - but you should have a comment that describes what the method does. - This comment should appear after the def line. - [[PEP8](https://www.python.org/dev/peps/pep-0008/#documentation-strings)] - -- Note that most importantly, the `"""` that ends a multiline docstring should be on a line by itself [[PEP8](https://www.python.org/dev/peps/pep-0008/#documentation-strings)] : - ```python - """Return a foobang - - Optional plotz says to frobnicate the bizbaz first. - """ - ``` - -- For one liner docstrings, please keep the closing `"""` on the same line. - [[PEP8](https://www.python.org/dev/peps/pep-0008/#documentation-strings)] - -### Pandas Style - -We use [Pandas-style](https://pandas.pydata.org/pandas-docs/stable/development/contributing_docstring.html) docstrings: - - - -## Flagger, data, field, etc. - -use this: -```py -def foo(data, field, flagger): - """ - data : dios.DictOfSeries - A saqc-data object. - - field : str - A field denoting a column in data. - - flagger : saqc.flagger.BaseFlagger - A saqc-flagger object. - """ -``` - - -### IDE helper - -In pycharm one can activate autogeneration of numpy doc style like so: -1. `File->Settings...` -2. `Tools->Python Integrated Tools` -3. `Docstrings->Docstring format` -4. Choose `NumPy` - - -### Docstring formatting pitfalls - -* Latex is included via :math:\`latex_code\` - - * note, the backticks surrounding the actual code - * Latex commands need to be signified with **double** backlash! (``\\mu`` instead of ``\mu``) - -* Nested lists need to be all of the same kind (either numbered or marked - otherwise result is salad) -* List items covering several lines in the docstring have to be all aligned - (so, not only the superfluent ones, but ALL, including the first one - otherwise result is salad) -* Start of a list has to be seperated from preceding docstring code by *one blank line* - (otherwise list items get just chained in one line and result is salad) -* Most formatting signifiers are not allowed to start or end with a space. (so no :math: \`1+1 \`, \` var2\`, \`\` a=1 \`\`, ...) -* Do not include lines *only* containing two or more `-` signs, except it is the underscore line of the section heading (otherwise resulting html representation could be messed up) - -## Adding Markdown content to the Documentation - -* If you generate cookbooks and/or tutorials in markdown and want them to be integrated in the sphinx doc - there are some obstaclish thingies to care for - -- You will have to gather all markdown files in subfolders of "sphinx-doc". - -- To include a folder named 'foo_md' of markdown files in the documentation, you will have to add the following line to the Makefile: - -```python -python make_md_to_rst.py -p "sphinx-doc/gfoo_md" -``` - -- The markdown files must be in that subfolders - they cant be gathered in nested subfolders. - -- You can not link to sections in other markdown files, that contain the `-` character. - -- The Section structure/ordering must be consistent in the ReST sence (otherwise they wont appear) - -- You can link to ressources - like pictures and include them in the markdown, if the pictures are in (possibly another) folder in `\sphinx-doc` and the pathes to this ressources are given relatively! - -- You can include a markdown file in a rest document, by appending '_m2r' to the folder name. So to include the markdown file 'foo_md/bar.md' in a toc tree for example - you would do something like: -```python -.. toctree:: - :hidden: - :maxdepth: 1 - - foo_md_m2r/bar -``` - -- If you want to hyperlink/include other sources from the sphinx documentation that are rest-files, you will not be able to include them in a way, that they will appear in you markdown rendering. - however - there is the slightly hacky possibillity to just include the respective rest directives. This will mess up your markdown code - meaning that you will have those rest snippets flying around, but when the markdown file gets converted to the rest file and build into the sphinx html build, the linked sources will be integrated properly. The syntax is as follows: - -- to include the link to the rest source `functions.rst` in the folder `foo`, under the name `bar`, you would need to insert: -```python -:doc:`foo <rel_path/functions>` -``` - -- to link to a section with name `foo` in a rest source named `bumm.rst`, under the name `bar`, you would just insert: -```python -:ref:`bar <relative/path/from/sphinx/root/bumm:foo>` -``` - -- in that manner you might be able to smuggle most rest directives through into the resulting html build. Especially if you want to link to the docstrings of certain (domain specific) objects. Lets say you want to link to the *function* `saqc.funcs.flagRange` under the name `ranger` - you just include: - -```python -:py:func:`Ranger <saqc.funcs.flagRange>` -``` - -whereas the `:func:` part determines the role, the object is documented as. See [this page](https://www.sphinx-doc.org/en/master/#ref-role) for an overview of the available roles - -## Refering to documented Functions - -* Since the documentation generates an own module structure to document the functions, linking to the documented functions is a bit hacky: - -- Functions: to link to any function in the 'saqc.funcs' module - you will have to link the rest file it is documented in. All functions from the function module can be linked via replacing the 'saqc.funcs' part of the module path by 'docs.func_modules': - -- For example, 'saqc.funcs.outliers.flagRange' is linked via: -```python -:py:func:`docs.func_modules.outliers.flagRange` -``` - -To hide the temporal module structure and/or make transparent the intended module structure, use named links, like so: -```python -:py:func:`saqc.outliers.flagRange <docs.func_modules.outliers.flagRange>` -``` diff --git a/sphinx-doc/index.rst b/sphinx-doc/index.rst index b5875e5e3ff1e2d5bbccf5afa0de8fdca830b0e1..3ee256b2d00b5afa2591beaba1db9d8e104d5b96 100644 --- a/sphinx-doc/index.rst +++ b/sphinx-doc/index.rst @@ -1,50 +1,88 @@ -================== -SaQC documentation -================== -Saqc is a great tool to clean data from rubbish. +.. include:: misc/title.rst + .. toctree:: :hidden: :maxdepth: 1 Repository <https://git.ufz.de/rdm-software/saqc> - Documentation Guide <how_to_doc_m2r/HowToDoc> - + Package API <moduleAPIs/saqcInit> Getting Started =============== .. toctree:: - :maxdepth: 2 + :caption: Getting started + :maxdepth: 1 + :hidden: - getting_started_md_m2r/GettingStarted + getting_started/InstallationGuide + getting_started/TutorialAPI + getting_started/TutorialCLI -Flagging Functions -================== +.. toctree:: + :caption: Cookbooks + :maxdepth: 1 + :hidden: -Flagging Functions + cook_books/DataRegularisation + cook_books/OutlierDetection + cook_books/MultivariateFlagging .. toctree:: - :maxdepth: 2 + :caption: Documentation + :maxdepth: 1 + :hidden: + + documentation/FlaggingTranslation + documentation/GenericFunctions + documentation/SourceTarget + + +.. toctree:: + :caption: Functions + :hidden: + :maxdepth: 1 :glob: :titlesonly: - intro_modules/* + all <moduleAPIs/Functionssaqc> + resampling <moduleAPIs/Functionsresampling> + generic <moduleAPIs/Functionsgeneric> + outliers <moduleAPIs/Functionsoutliers> + breaks <moduleAPIs/Functionsbreaks> + constants <moduleAPIs/Functionsconstants> + changepoints <moduleAPIs/Functionschangepoints> + drift <moduleAPIs/Functionsdrift> + curvefit <moduleAPIs/Functionscurvefit> + interpolation <moduleAPIs/Functionsinterpolation> + residues <moduleAPIs/Functionsresidues> + tools <moduleAPIs/Functionstools> + flagtools <moduleAPIs/Functionsflagtools> + rolling <moduleAPIs/Functionsrolling> + scores <moduleAPIs/Functionsscores> + transformation <moduleAPIs/Functionstransformation> + noise <moduleAPIs/Functionsnoise> -Func Modules -============ +.. toctree:: + :caption: SaQC + :hidden: + :maxdepth: 1 + + SaQC Object <moduleAPIs/saqcClass> + Constants <moduleAPI/saqcConstants> + Config Environment <environment/configEnv> -Function modules .. toctree:: - :maxdepth: 3 - :glob: - :titlesonly: + :caption: Developer Ressources + :hidden: + :maxdepth: 1 - func_modules/* + Documentation Guide <how_to_doc/HowToDoc> Indices and tables @@ -53,3 +91,4 @@ Indices and tables * :ref:`genindex` * :ref:`modindex` * :ref:`search` + diff --git a/sphinx-doc/intro_modules/AdvancedFlagging.rst b/sphinx-doc/intro_modules/AdvancedFlagging.rst deleted file mode 100644 index 3fc3e5f13968f542df5a449c0bac962014a95888..0000000000000000000000000000000000000000 --- a/sphinx-doc/intro_modules/AdvancedFlagging.rst +++ /dev/null @@ -1,6 +0,0 @@ - -AdvancedFlagging -================ - -.. automodapi:: docs.intro_modules.AdvancedFlagging - :no-heading: diff --git a/sphinx-doc/intro_modules/BasicFlagging.rst b/sphinx-doc/intro_modules/BasicFlagging.rst deleted file mode 100644 index 265498330e2f3881778dcf8d167adefaeb58eb81..0000000000000000000000000000000000000000 --- a/sphinx-doc/intro_modules/BasicFlagging.rst +++ /dev/null @@ -1,6 +0,0 @@ - -BasicFlagging -============= - -.. automodapi:: docs.intro_modules.BasicFlagging - :no-heading: diff --git a/sphinx-doc/make_html_headings_proppa.py b/sphinx-doc/make_html_headings_proppa.py deleted file mode 100644 index 42627f24438fc08cc769b494e884c475f217ce34..0000000000000000000000000000000000000000 --- a/sphinx-doc/make_html_headings_proppa.py +++ /dev/null @@ -1,66 +0,0 @@ -import os -import click -import re -import pickle - - -@click.command() -@click.option( - "-b", - "--buildpath", - type=str, - required=True, - default="sphinx-doc/_build/html/_api", - help="Relative path to the html api files to be manipulated (relative to sphinx root).", -) -@click.option( - "-sr", - "--sphinxroot", - type=str, - required=True, - default="..", - help="Relative path to the sphinx root.", -) -@click.option( - "-p", - "--pckpath", - type=str, - required=True, - default="docs/doc_modules/func_modules", - help="Relative path to the documented package (relative to sphinx root).", -) -def main(buildpath, sphinxroot, pckpath): - root_path = os.path.abspath(sphinxroot) - buildpath = os.path.join(root_path, buildpath) - pckpath = os.path.join(root_path, pckpath) - files = os.listdir(buildpath) - # gather all files from the doc module - files = [f for f in files if re.search("^docs\.", f)] - with open(os.path.join(pckpath, "module_dict.pkl"), "rb") as file_: - doc_mod_structure = pickle.load(file_) - - for key in doc_mod_structure.keys(): - # search for all function files assigned to the module - mod_f = [f for f in files if re.search(f"(^|[.]){key}\.[^.]*\.html", f)] - for file_ in mod_f: - parts = file_.split(".") - func = parts[-2] - module_domain = ".".join(parts[:-2]) - - with open(os.path.join(buildpath, file_), "r") as wf: - code = wf.read() - - old_domain_str = f'<code class="sig-prename descclassname">{module_domain}' - new_domain = [ - f.split(".")[0] - for f in doc_mod_structure[key] - if f.split(".")[1] == func - ][0] - new_domain_str = f'<code class="sig-prename descclassname">{new_domain}' - code = code.replace(old_domain_str, new_domain_str) - with open(os.path.join(buildpath, file_), "w+") as wf: - wf.write(code) - - -if __name__ == "__main__": - main() diff --git a/sphinx-doc/misc/ExponentialModel.rst b/sphinx-doc/misc/ExponentialModel.rst new file mode 100644 index 0000000000000000000000000000000000000000..abd06681b914f680045e559cffdb2852c110e445 --- /dev/null +++ b/sphinx-doc/misc/ExponentialModel.rst @@ -0,0 +1,31 @@ + +Exponential Drift Model and Correction +====================================== + +It is assumed, that, in between maintenance events, there is a drift effect shifting the measurements in a way, that the resulting value course can be described by the exponential model $\ ``M``\ $: + +$\ ``M(t, a, b, c) = a + b(e^{ct}-1)``\ $ + +We consider the timespan in between maintenance events to be scaled to the $\ ``[0,1]``\ $ interval. +To additionally make sure, the modeled curve can be used to calibrate the value course, we added the following two conditions. + +$\ ``M(0, a, b, c) = y_0``\ $ + +$\ ``M(1, a, b, c) = y_1``\ $ + +With $\ ``y_0``\ $ denoting the mean value obtained from the first 6 meassurements directly after the last maintenance event, and $\ ``y_1``\ $ denoting the mean over the 6 meassurements, directly preceeding the beginning of the next maintenance event. + +Solving the equation, one obtains the one-parameter Model: + +$\ ``M_{drift}(t, c) = y_0 + ( \frac{y_1 - y_0}{e^c - 1} ) (e^{ct} - 1)``\ $ + +For every datachunk in between maintenance events. + +After having found the parameter $\ ``c^*``\ $, that minimizes the squared residues between data and drift model, the correction is performed by bending the fitted curve, $\ ``M_{drift}(t, c^*)``\ $, in a way, that it matches $\ ``y_2``\ $ at $\ ``t=1``\ $ (,with $\ ``y_2``\ $ being the mean value observed directly after the end of the next maintenance event). +This bended curve is given by: + +$\ ``M_{shift}(t, c^{*}) = M(t, y_0, \frac{y_1 - y_0}{e^c - 1} , c^*)``\ $ + +the new values $\ ``y_{shifted}``\ $ are computed via: + +$\ ``y_{shifted} = y + M_{shift} - M_{drift}``\ $ diff --git a/sphinx-doc/misc/title.rst b/sphinx-doc/misc/title.rst new file mode 100644 index 0000000000000000000000000000000000000000..bb92d288f350908b1b0727c4c0ff03947f752e01 --- /dev/null +++ b/sphinx-doc/misc/title.rst @@ -0,0 +1,82 @@ + +.. |sacRaw| image:: /ressources/images/Representative/RawData.png + :height: 150 px + :width: 288 px + +.. |sacFlagged| image:: /ressources/images/Representative/DifferentFlags.png + :height: 150 px + :width: 288 px + +.. |sacMV| image:: /ressources/images/Representative/MultivarSAC.png + :height: 150 px + :width: 288 px + +.. |sacProc| image:: /ressources/images/Representative/ProcessingDrift.png + :height: 150 px + :width: 288 px + +.. |pyLogo| image:: /ressources/images/Representative/pythonLogo.png + :height: 108 px + :width: 105 px + +.. |csvConfig| image:: /ressources/images/Representative/csvConfig.png + :height: 100 px + :width: 176 px + + +.. |legendEXMPL| image:: /ressources/images/Representative/legendEXMPL.png + :height: 100 px + :width: 200 + + + +=========================================== +SaQC - System for automated Quality Control +=========================================== + +Anomalies and errors are the rule not the exception when working with +time series data. This is especially true, if such data originates +from in-situ measurements of environmental properties. +Almost all applications, however, implicitly rely on data, that complies +with some definition of 'correct'. +In order to infer reliable data products and tools, there is no alternative +to quality control. SaQC provides all the building blocks to comfortably +bridge the gap between 'usually faulty' and 'expected to be corrected' in +a accessible, consistent, objective and reproducible way. + +SaQC is developed and maintained by the +`Research Data Management <https://www.ufz.de/index.php?en=45348>`_ Team at the +`Helmholtz-Centre for Environmental Research - UFZ <https://www.ufz.de/>`_. +It manifests the requirements and experiences made from the implementation and +operation of fully automated quality control pipelines for environmental sensor data. +The diversity of communities involved in this process and the special needs within the +realm of scientific data acquisition and its provisioning, have shaped SaQC into +its current state. We define this state as: inherently consistent, yet externally +extensible, traceable, approachable for non-programmers and usable in a wide range +of applications, from exploratory interactive programming environments to large-scale +fully automated, managed workflows. + +-------- +Features +-------- + +.. list-table:: + + * - |pyLogo| |csvConfig| + - * :ref:`get and install SaQC <getting_started/InstallationGuide:installation guide>` + * :ref:`use the SaQC python API, enabling integration into larger programs <getting_started/TutorialAPI:python api>` + * or use SaQC as a commandline application and configure your pipelines via plain text + * - |sacRaw| + - * easily load data from multiple sources, concatenating them in a SaQC object + * preprocess your data, by aligning it to shared frequency grids + * - |sacFlagged| + - * apply basic plausibility checks, as well as + * more complex, univariat flagging Functions + * - |legendEXMPL| + - * automatically keep track of flagging history and flags significance for every datapoint + * define and use custom schemes to translate your flags to and from SaQC + * - |sacProc| + - * modify your data by :ref:`interpolations <cook_books/DataRegularisation:Interpolation>`, corrections and :ref:`transformations <cook_books/DataRegularisation:Aggregation>` + * calculate data products, such as :ref:`residues or outlier scores <cook_books/OutlierDetection:Residues and Scores>` + * - |sacMV| + - * apply multivariate flagging function diff --git a/sphinx-doc/moduleAPIs/Functionsbreaks.rst b/sphinx-doc/moduleAPIs/Functionsbreaks.rst new file mode 100644 index 0000000000000000000000000000000000000000..102ff3d23ea480793e5def5820cdd7d8ac6550af --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsbreaks.rst @@ -0,0 +1,5 @@ +breaks +====== + +.. automodapi:: Functions.breaks + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionschangepoints.rst b/sphinx-doc/moduleAPIs/Functionschangepoints.rst new file mode 100644 index 0000000000000000000000000000000000000000..d3b545582d5403d065de1ef64f1ed96f65de29b8 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionschangepoints.rst @@ -0,0 +1,5 @@ +changepoints +============ + +.. automodapi:: Functions.changepoints + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsconstants.rst b/sphinx-doc/moduleAPIs/Functionsconstants.rst new file mode 100644 index 0000000000000000000000000000000000000000..3aeb8feda3132a3eba0799d62a610ae1f9be9edd --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsconstants.rst @@ -0,0 +1,5 @@ +constants +========= + +.. automodapi:: Functions.constants + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionscurvefit.rst b/sphinx-doc/moduleAPIs/Functionscurvefit.rst new file mode 100644 index 0000000000000000000000000000000000000000..4e64814b5da5bfb1dc3fa3376473d36675601ab0 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionscurvefit.rst @@ -0,0 +1,5 @@ +curvefit +======== + +.. automodapi:: Functions.curvefit + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsdrift.rst b/sphinx-doc/moduleAPIs/Functionsdrift.rst new file mode 100644 index 0000000000000000000000000000000000000000..6fff728821955cf745be0fb42274ac696508c46b --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsdrift.rst @@ -0,0 +1,5 @@ +drift +===== + +.. automodapi:: Functions.drift + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsflagtools.rst b/sphinx-doc/moduleAPIs/Functionsflagtools.rst new file mode 100644 index 0000000000000000000000000000000000000000..d07f78c06d045ee97241a41bcd44a76d2fa81746 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsflagtools.rst @@ -0,0 +1,5 @@ +flagtools +========= + +.. automodapi:: Functions.flagtools + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsgeneric.rst b/sphinx-doc/moduleAPIs/Functionsgeneric.rst new file mode 100644 index 0000000000000000000000000000000000000000..fa0f435dc27fdccca1fc907630bd59054fe4ebfd --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsgeneric.rst @@ -0,0 +1,5 @@ +generic +======= + +.. automodapi:: Functions.generic + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsinterpolation.rst b/sphinx-doc/moduleAPIs/Functionsinterpolation.rst new file mode 100644 index 0000000000000000000000000000000000000000..b30ebf19c0dde054fdc82c8b3d1307e1e5ef3a57 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsinterpolation.rst @@ -0,0 +1,5 @@ +interpolation +============= + +.. automodapi:: Functions.interpolation + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsnoise.rst b/sphinx-doc/moduleAPIs/Functionsnoise.rst new file mode 100644 index 0000000000000000000000000000000000000000..6a8a74657cd3554a40498b6048de354a8c77c1ea --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsnoise.rst @@ -0,0 +1,5 @@ +noise +===== + +.. automodapi:: Functions.noise + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsoutliers.rst b/sphinx-doc/moduleAPIs/Functionsoutliers.rst new file mode 100644 index 0000000000000000000000000000000000000000..13dc3d806da548c1e5bbe62460746e69e1fb2057 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsoutliers.rst @@ -0,0 +1,5 @@ +outliers +======== + +.. automodapi:: Functions.outliers + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionspattern.rst b/sphinx-doc/moduleAPIs/Functionspattern.rst new file mode 100644 index 0000000000000000000000000000000000000000..bd010b4d1d8f23305a6f380da07fcecae40bddcb --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionspattern.rst @@ -0,0 +1,5 @@ +pattern +======= + +.. automodapi:: Functions.pattern + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsresampling.rst b/sphinx-doc/moduleAPIs/Functionsresampling.rst new file mode 100644 index 0000000000000000000000000000000000000000..5e7e22367ad71274b16519fde5cb3f794e4990c1 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsresampling.rst @@ -0,0 +1,5 @@ +resampling +========== + +.. automodapi:: Functions.resampling + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsresidues.rst b/sphinx-doc/moduleAPIs/Functionsresidues.rst new file mode 100644 index 0000000000000000000000000000000000000000..c97bfed02a2614d47ce1f25e9c0ce45e55a25e7e --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsresidues.rst @@ -0,0 +1,5 @@ +residues +======== + +.. automodapi:: Functions.residues + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsrolling.rst b/sphinx-doc/moduleAPIs/Functionsrolling.rst new file mode 100644 index 0000000000000000000000000000000000000000..8cd668265f234bfc1e7fb8705e4e4d16038a9bc6 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsrolling.rst @@ -0,0 +1,5 @@ +rolling +======= + +.. automodapi:: Functions.rolling + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionssaqc.rst b/sphinx-doc/moduleAPIs/Functionssaqc.rst new file mode 100644 index 0000000000000000000000000000000000000000..54c41273bafb912a4b31b9a6f00c662dab00ae01 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionssaqc.rst @@ -0,0 +1,5 @@ +saqc +==== + +.. automodapi:: Functions.saqc + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsscores.rst b/sphinx-doc/moduleAPIs/Functionsscores.rst new file mode 100644 index 0000000000000000000000000000000000000000..c3867522989e9abfff6872c9fd8b5da042d5f7af --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionsscores.rst @@ -0,0 +1,5 @@ +scores +====== + +.. automodapi:: Functions.scores + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionstools.rst b/sphinx-doc/moduleAPIs/Functionstools.rst new file mode 100644 index 0000000000000000000000000000000000000000..42989321f245e2f5328683e3e709e4f87bb2a5bb --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionstools.rst @@ -0,0 +1,5 @@ +tools +===== + +.. automodapi:: Functions.tools + :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionstransformation.rst b/sphinx-doc/moduleAPIs/Functionstransformation.rst new file mode 100644 index 0000000000000000000000000000000000000000..8b20b6ebc1676c2b4523f92add02135f8306e8e2 --- /dev/null +++ b/sphinx-doc/moduleAPIs/Functionstransformation.rst @@ -0,0 +1,5 @@ +transformation +============== + +.. automodapi:: Functions.transformation + :no-heading: diff --git a/sphinx-doc/moduleAPIs/saqcClass.rst b/sphinx-doc/moduleAPIs/saqcClass.rst new file mode 100644 index 0000000000000000000000000000000000000000..97f70bd99dcf779343cc68156707cfb3f91598a7 --- /dev/null +++ b/sphinx-doc/moduleAPIs/saqcClass.rst @@ -0,0 +1,5 @@ + +SaQC +==== + +* :py:class:`saqc.SaQC <Core.Core.SaQC>` \ No newline at end of file diff --git a/sphinx-doc/moduleAPIs/saqcConstants.rst b/sphinx-doc/moduleAPIs/saqcConstants.rst new file mode 100644 index 0000000000000000000000000000000000000000..3c6636edbcd85673ae95ccc19e41728fa231034f --- /dev/null +++ b/sphinx-doc/moduleAPIs/saqcConstants.rst @@ -0,0 +1,6 @@ + +saqc +==== + +.. automodapi:: saqc.constants + :include-all-objects: diff --git a/sphinx-doc/moduleAPIs/saqcInit.rst b/sphinx-doc/moduleAPIs/saqcInit.rst new file mode 100644 index 0000000000000000000000000000000000000000..c0fc167dcc27967152d8793e1e30ebe8f0353fa8 --- /dev/null +++ b/sphinx-doc/moduleAPIs/saqcInit.rst @@ -0,0 +1,7 @@ + +saqc +==== + +UFZ proudly presents: + +.. automodapi:: saqc \ No newline at end of file diff --git a/sphinx-doc/moduleAPIs/saqcVisitor.rst b/sphinx-doc/moduleAPIs/saqcVisitor.rst new file mode 100644 index 0000000000000000000000000000000000000000..3b15895e0979ecfce96f57ed803bf4146d7a3ddb --- /dev/null +++ b/sphinx-doc/moduleAPIs/saqcVisitor.rst @@ -0,0 +1,6 @@ + +saqc +==== + +.. automodapi:: saqc.core.visitor + :include-all-objects: \ No newline at end of file diff --git a/sphinx-doc/requirements_sphinx.txt b/sphinx-doc/requirements_sphinx.txt index eb84550313ea402f974e97ab1c7cb19b4f0bef06..3ebf7c5bdf83131dfeadb917893b5678820d50e2 100644 --- a/sphinx-doc/requirements_sphinx.txt +++ b/sphinx-doc/requirements_sphinx.txt @@ -4,3 +4,4 @@ sphinx-automodapi sphinxcontrib-fulltoc sphinx-markdown-tables m2r +jupyter-sphinx diff --git a/sphinx-doc/ressources/data/SoilMoisture.csv b/sphinx-doc/ressources/data/SoilMoisture.csv new file mode 100644 index 0000000000000000000000000000000000000000..1b8e9a3ee3d218b28cad78a3cbaa536f590e456c --- /dev/null +++ b/sphinx-doc/ressources/data/SoilMoisture.csv @@ -0,0 +1,10608 @@ +,SoilMoisture +2021-01-01 00:09:07,23.42970085144043 +2021-01-01 00:18:55,23.431900024414062 +2021-01-01 00:28:42,23.34309959411621 +2021-01-01 00:38:30,23.47640037536621 +2021-01-01 00:48:18,23.34309959411621 +2021-01-01 00:58:06,23.298799514770508 +2021-01-01 01:07:54,23.38739967346192 +2021-01-01 01:17:41,23.34309959411621 +2021-01-01 01:27:29,23.298799514770508 +2021-01-01 01:37:17,23.34309959411621 +2021-01-01 01:47:10,23.34309959411621 +2021-01-01 01:56:58,23.34309959411621 +2021-01-01 02:06:46,23.298799514770508 +2021-01-01 02:16:34,23.34309959411621 +2021-01-01 02:26:21,23.34309959411621 +2021-01-01 02:36:09,23.34309959411621 +2021-01-01 02:45:57,23.34309959411621 +2021-01-01 02:55:45,23.34309959411621 +2021-01-01 03:05:33,23.34309959411621 +2021-01-01 03:15:20,23.34309959411621 +2021-01-01 03:25:08,23.34309959411621 +2021-01-01 03:34:56,23.34309959411621 +2021-01-01 03:44:44,23.298799514770508 +2021-01-01 03:54:31,23.34309959411621 +2021-01-01 04:04:19,23.298799514770508 +2021-01-01 04:14:07,23.34309959411621 +2021-01-01 04:23:55,23.34309959411621 +2021-01-01 04:33:43,23.34309959411621 +2021-01-01 04:43:30,23.298799514770508 +2021-01-01 04:53:18,23.38739967346192 +2021-01-01 05:03:06,23.34309959411621 +2021-01-01 05:12:54,23.38739967346192 +2021-01-01 05:22:42,23.298799514770508 +2021-01-01 05:32:30,23.34309959411621 +2021-01-01 05:42:17,23.38739967346192 +2021-01-01 05:52:05,23.34309959411621 +2021-01-01 06:01:53,23.34309959411621 +2021-01-01 06:11:41,23.298799514770508 +2021-01-01 06:21:29,23.34309959411621 +2021-01-01 06:31:17,23.298799514770508 +2021-01-01 06:41:05,23.34309959411621 +2021-01-01 06:50:53,23.298799514770508 +2021-01-01 07:00:41,23.34309959411621 +2021-01-01 07:10:29,23.34309959411621 +2021-01-01 07:20:17,23.298799514770508 +2021-01-01 07:30:05,23.38739967346192 +2021-01-01 07:39:53,23.385299682617188 +2021-01-01 07:49:41,23.34309959411621 +2021-01-01 07:59:29,23.38739967346192 +2021-01-01 08:09:16,23.34309959411621 +2021-01-01 08:19:04,23.34309959411621 +2021-01-01 08:28:52,23.340999603271484 +2021-01-01 08:38:40,23.34309959411621 +2021-01-01 08:48:28,23.340999603271484 +2021-01-01 08:58:16,23.340999603271484 +2021-01-01 09:08:04,23.298799514770508 +2021-01-01 09:17:52,23.34309959411621 +2021-01-01 09:27:40,23.34309959411621 +2021-01-01 09:37:28,23.34309959411621 +2021-01-01 09:47:16,23.29669952392578 +2021-01-01 09:57:04,23.298799514770508 +2021-01-01 10:06:52,23.340999603271484 +2021-01-01 10:16:40,23.340999603271484 +2021-01-01 10:26:28,23.298799514770508 +2021-01-01 10:36:16,23.34309959411621 +2021-01-01 10:46:04,23.34309959411621 +2021-01-01 10:55:52,23.34309959411621 +2021-01-01 11:05:40,23.298799514770508 +2021-01-01 11:15:28,23.298799514770508 +2021-01-01 11:25:16,23.34309959411621 +2021-01-01 11:35:04,23.298799514770508 +2021-01-01 11:44:52,23.34309959411621 +2021-01-01 11:54:40,23.340999603271484 +2021-01-01 12:04:28,23.34309959411621 +2021-01-01 12:14:16,23.340999603271484 +2021-01-01 12:24:04,23.34309959411621 +2021-01-01 12:33:52,23.34309959411621 +2021-01-01 12:43:40,23.385299682617188 +2021-01-01 12:53:28,23.34309959411621 +2021-01-01 13:03:16,23.298799514770508 +2021-01-01 13:13:04,23.340999603271484 +2021-01-01 13:22:52,23.340999603271484 +2021-01-01 13:32:39,23.34309959411621 +2021-01-01 13:42:27,23.34309959411621 +2021-01-01 13:52:15,23.34309959411621 +2021-01-01 14:02:03,23.34309959411621 +2021-01-01 14:11:51,23.340999603271484 +2021-01-01 14:21:39,23.34309959411621 +2021-01-01 14:31:27,23.34309959411621 +2021-01-01 14:41:15,23.34309959411621 +2021-01-01 14:51:03,23.34309959411621 +2021-01-01 15:00:51,23.340999603271484 +2021-01-01 15:10:38,23.34309959411621 +2021-01-01 15:20:26,23.340999603271484 +2021-01-01 15:30:14,23.340999603271484 +2021-01-01 15:40:02,-120.0 +2021-01-01 15:49:50,23.298799514770508 +2021-01-01 15:59:38,23.34309959411621 +2021-01-01 16:09:25,23.34309959411621 +2021-01-01 16:19:13,23.34309959411621 +2021-01-01 16:29:01,23.38739967346192 +2021-01-01 16:38:49,23.298799514770508 +2021-01-01 16:48:36,23.34309959411621 +2021-01-01 16:58:24,23.34309959411621 +2021-01-01 17:08:12,23.340999603271484 +2021-01-01 17:18:00,23.34309959411621 +2021-01-01 17:27:48,23.34309959411621 +2021-01-01 17:37:36,23.340999603271484 +2021-01-01 17:47:24,23.34309959411621 +2021-01-01 17:57:12,23.298799514770508 +2021-01-01 18:07:00,23.34309959411621 +2021-01-01 18:16:48,23.34309959411621 +2021-01-01 18:26:36,23.34309959411621 +2021-01-01 18:36:23,23.298799514770508 +2021-01-01 18:46:11,23.34309959411621 +2021-01-01 18:55:59,23.34309959411621 +2021-01-01 19:05:47,23.298799514770508 +2021-01-01 19:15:35,23.340999603271484 +2021-01-01 19:25:23,23.29669952392578 +2021-01-01 19:35:11,23.38739967346192 +2021-01-01 19:44:59,23.34309959411621 +2021-01-01 19:54:47,23.298799514770508 +2021-01-01 20:04:34,23.340999603271484 +2021-01-01 20:14:22,23.38739967346192 +2021-01-01 20:24:10,23.34309959411621 +2021-01-01 20:33:58,23.34309959411621 +2021-01-01 20:43:46,23.298799514770508 +2021-01-01 20:53:34,23.34309959411621 +2021-01-01 21:03:22,23.29669952392578 +2021-01-01 21:13:10,23.340999603271484 +2021-01-01 21:22:58,23.340999603271484 +2021-01-01 21:32:46,23.34309959411621 +2021-01-01 21:42:34,23.340999603271484 +2021-01-01 21:52:22,23.340999603271484 +2021-01-01 22:02:10,23.340999603271484 +2021-01-01 22:11:58,23.298799514770508 +2021-01-01 22:21:46,23.34309959411621 +2021-01-01 22:31:34,23.298799514770508 +2021-01-01 22:41:22,23.34309959411621 +2021-01-01 22:51:10,23.38739967346192 +2021-01-01 23:00:58,23.29669952392578 +2021-01-01 23:10:46,23.34309959411621 +2021-01-01 23:20:34,23.34309959411621 +2021-01-01 23:30:22,23.34309959411621 +2021-01-01 23:40:09,23.34309959411621 +2021-01-01 23:49:57,23.34309959411621 +2021-01-01 23:59:45,23.29669952392578 +2021-01-02 00:09:33,23.38739967346192 +2021-01-02 00:19:21,23.34309959411621 +2021-01-02 00:29:09,23.34309959411621 +2021-01-02 00:38:57,23.298799514770508 +2021-01-02 00:48:45,23.298799514770508 +2021-01-02 00:58:32,23.34309959411621 +2021-01-02 01:08:20,23.298799514770508 +2021-01-02 01:18:08,23.340999603271484 +2021-01-02 01:27:56,23.298799514770508 +2021-01-02 01:37:44,23.29669952392578 +2021-01-02 01:47:32,23.34309959411621 +2021-01-02 01:57:20,23.298799514770508 +2021-01-02 02:07:08,23.38739967346192 +2021-01-02 02:16:56,23.34309959411621 +2021-01-02 02:26:44,23.385299682617188 +2021-01-02 02:36:32,23.298799514770508 +2021-01-02 02:46:20,23.298799514770508 +2021-01-02 02:56:09,23.298799514770508 +2021-01-02 03:06:02,23.298799514770508 +2021-01-02 03:15:50,23.34309959411621 +2021-01-02 03:25:38,23.298799514770508 +2021-01-02 03:35:26,23.298799514770508 +2021-01-02 03:45:14,23.38739967346192 +2021-01-02 03:55:01,23.29669952392578 +2021-01-02 04:04:49,23.340999603271484 +2021-01-02 04:14:37,23.166400909423828 +2021-01-02 04:24:25,23.34309959411621 +2021-01-02 04:34:13,23.38739967346192 +2021-01-02 04:44:01,23.38739967346192 +2021-01-02 04:53:49,23.34309959411621 +2021-01-02 05:03:37,23.34309959411621 +2021-01-02 05:13:25,23.21050071716309 +2021-01-02 05:23:13,23.34309959411621 +2021-01-02 05:33:01,23.34309959411621 +2021-01-02 05:42:49,23.21050071716309 +2021-01-02 05:52:37,23.34309959411621 +2021-01-02 06:02:25,23.21050071716309 +2021-01-02 06:12:13,23.38739967346192 +2021-01-02 06:22:01,23.21050071716309 +2021-01-02 06:31:49,23.166400909423828 +2021-01-02 06:41:37,23.21050071716309 +2021-01-02 06:51:25,23.21050071716309 +2021-01-02 07:01:12,23.254600524902344 +2021-01-02 07:11:00,23.21050071716309 +2021-01-02 07:20:48,23.298799514770508 +2021-01-02 07:30:36,23.1643009185791 +2021-01-02 07:40:24,23.21050071716309 +2021-01-02 07:50:12,23.21050071716309 +2021-01-02 08:00:00,23.21050071716309 +2021-01-02 08:09:48,23.166400909423828 +2021-01-02 08:19:36,23.21050071716309 +2021-01-02 08:29:24,23.254600524902344 +2021-01-02 08:39:12,23.21050071716309 +2021-01-02 08:49:00,23.166400909423828 +2021-01-02 08:58:48,23.21050071716309 +2021-01-02 09:08:36,23.166400909423828 +2021-01-02 09:18:23,23.21050071716309 +2021-01-02 09:28:11,23.21050071716309 +2021-01-02 09:37:59,23.21050071716309 +2021-01-02 09:47:47,23.20840072631836 +2021-01-02 09:57:35,23.20840072631836 +2021-01-02 10:07:23,23.254600524902344 +2021-01-02 10:17:11,23.21050071716309 +2021-01-02 10:26:59,23.21050071716309 +2021-01-02 10:36:47,23.166400909423828 +2021-01-02 10:46:35,23.21050071716309 +2021-01-02 10:56:23,23.21050071716309 +2021-01-02 11:06:11,23.21050071716309 +2021-01-02 11:15:59,23.20840072631836 +2021-01-02 11:25:47,23.21050071716309 +2021-01-02 11:35:35,23.20840072631836 +2021-01-02 11:45:23,23.21050071716309 +2021-01-02 11:55:11,23.20840072631836 +2021-01-02 12:04:59,23.21050071716309 +2021-01-02 12:14:47,23.20840072631836 +2021-01-02 12:24:35,23.298799514770508 +2021-01-02 12:34:23,23.21050071716309 +2021-01-02 12:44:11,23.166400909423828 +2021-01-02 12:53:59,23.166400909423828 +2021-01-02 13:03:47,23.21050071716309 +2021-01-02 13:13:35,23.254600524902344 +2021-01-02 13:23:23,23.20840072631836 +2021-01-02 13:33:11,23.254600524902344 +2021-01-02 13:42:59,23.1643009185791 +2021-01-02 13:52:47,23.21050071716309 +2021-01-02 14:02:35,23.21050071716309 +2021-01-02 14:12:23,23.21050071716309 +2021-01-02 14:22:11,23.254600524902344 +2021-01-02 14:31:59,23.21050071716309 +2021-01-02 14:41:47,23.166400909423828 +2021-01-02 14:51:34,23.166400909423828 +2021-01-02 15:01:22,23.21050071716309 +2021-01-02 15:11:10,23.21050071716309 +2021-01-02 15:20:58,23.21050071716309 +2021-01-02 15:30:46,23.20840072631836 +2021-01-02 15:40:34,23.20840072631836 +2021-01-02 15:50:22,23.166400909423828 +2021-01-02 16:00:09,23.20840072631836 +2021-01-02 16:09:57,23.1643009185791 +2021-01-02 16:19:45,23.254600524902344 +2021-01-02 16:29:33,23.21050071716309 +2021-01-02 16:39:21,23.21050071716309 +2021-01-02 16:49:09,23.21050071716309 +2021-01-02 16:58:57,23.21050071716309 +2021-01-02 17:08:45,23.21050071716309 +2021-01-02 17:18:33,23.21050071716309 +2021-01-02 17:28:21,23.21050071716309 +2021-01-02 17:38:09,23.20840072631836 +2021-01-02 17:47:56,23.21050071716309 +2021-01-02 17:57:44,23.21050071716309 +2021-01-02 18:07:32,23.21050071716309 +2021-01-02 18:17:20,23.20840072631836 +2021-01-02 18:27:08,23.254600524902344 +2021-01-02 18:36:56,23.21050071716309 +2021-01-02 18:46:44,23.166400909423828 +2021-01-02 18:56:32,23.166400909423828 +2021-01-02 19:06:20,23.254600524902344 +2021-01-02 19:16:08,23.166400909423828 +2021-01-02 19:25:56,23.166400909423828 +2021-01-02 19:35:44,23.21050071716309 +2021-01-02 19:45:31,23.20840072631836 +2021-01-02 19:55:19,23.21050071716309 +2021-01-02 20:05:07,23.21050071716309 +2021-01-02 20:14:55,-12.318099975585938 +2021-01-02 20:14:56,23.21050071716309 +2021-01-02 20:24:49,23.20840072631836 +2021-01-02 20:34:37,23.166400909423828 +2021-01-02 20:44:25,23.21050071716309 +2021-01-02 20:54:13,23.254600524902344 +2021-01-02 21:04:00,23.166400909423828 +2021-01-02 21:13:48,23.21050071716309 +2021-01-02 21:23:36,23.21050071716309 +2021-01-02 21:33:24,23.34309959411621 +2021-01-02 21:43:12,23.21050071716309 +2021-01-02 21:52:59,23.21050071716309 +2021-01-02 22:02:47,23.166400909423828 +2021-01-02 22:12:35,23.21050071716309 +2021-01-02 22:22:23,23.166400909423828 +2021-01-02 22:32:11,23.21050071716309 +2021-01-02 22:41:59,23.21050071716309 +2021-01-02 22:51:47,23.1643009185791 +2021-01-02 23:01:35,23.21050071716309 +2021-01-02 23:11:23,23.166400909423828 +2021-01-02 23:21:11,23.166400909423828 +2021-01-02 23:30:59,23.21050071716309 +2021-01-02 23:40:47,23.21050071716309 +2021-01-02 23:50:35,23.20840072631836 +2021-01-03 00:00:23,23.21050071716309 +2021-01-03 00:10:11,23.21050071716309 +2021-01-03 00:19:59,23.20840072631836 +2021-01-03 00:29:46,23.21050071716309 +2021-01-03 00:39:34,23.20840072631836 +2021-01-03 00:49:22,23.166400909423828 +2021-01-03 00:59:10,23.21050071716309 +2021-01-03 01:08:58,23.21050071716309 +2021-01-03 01:18:46,23.166400909423828 +2021-01-03 01:28:33,23.21050071716309 +2021-01-03 01:38:21,23.21050071716309 +2021-01-03 01:48:09,23.166400909423828 +2021-01-03 01:57:57,23.166400909423828 +2021-01-03 02:07:45,23.166400909423828 +2021-01-03 02:17:33,23.1643009185791 +2021-01-03 02:27:21,23.21050071716309 +2021-01-03 02:37:09,23.252500534057617 +2021-01-03 02:46:56,23.166400909423828 +2021-01-03 02:56:44,23.1643009185791 +2021-01-03 03:06:32,23.21050071716309 +2021-01-03 03:16:20,23.166400909423828 +2021-01-03 03:26:08,23.21050071716309 +2021-01-03 03:35:55,23.166400909423828 +2021-01-03 03:45:43,23.1643009185791 +2021-01-03 03:55:31,23.21050071716309 +2021-01-03 04:05:19,23.254600524902344 +2021-01-03 04:15:07,23.21050071716309 +2021-01-03 04:24:55,23.166400909423828 +2021-01-03 04:34:43,23.21050071716309 +2021-01-03 04:44:31,23.1643009185791 +2021-01-03 04:54:18,23.21050071716309 +2021-01-03 05:04:06,23.1643009185791 +2021-01-03 05:13:54,23.1643009185791 +2021-01-03 05:23:42,23.21050071716309 +2021-01-03 05:33:30,23.166400909423828 +2021-01-03 05:43:18,23.1643009185791 +2021-01-03 05:53:06,23.20840072631836 +2021-01-03 06:02:54,23.166400909423828 +2021-01-03 06:12:42,23.254600524902344 +2021-01-03 06:22:30,23.21050071716309 +2021-01-03 06:32:18,23.21050071716309 +2021-01-03 06:42:05,23.166400909423828 +2021-01-03 06:51:53,23.166400909423828 +2021-01-03 07:01:41,23.20840072631836 +2021-01-03 07:11:29,23.166400909423828 +2021-01-03 07:21:17,23.166400909423828 +2021-01-03 07:31:05,23.21050071716309 +2021-01-03 07:40:52,23.20840072631836 +2021-01-03 07:50:40,23.166400909423828 +2021-01-03 08:00:28,23.1643009185791 +2021-01-03 08:10:16,23.252500534057617 +2021-01-03 08:20:04,23.20840072631836 +2021-01-03 08:29:52,23.21050071716309 +2021-01-03 08:39:40,23.1643009185791 +2021-01-03 08:49:27,23.252500534057617 +2021-01-03 08:59:15,23.1643009185791 +2021-01-03 09:09:03,23.166400909423828 +2021-01-03 09:18:51,23.20840072631836 +2021-01-03 09:28:39,23.166400909423828 +2021-01-03 09:38:26,23.21050071716309 +2021-01-03 09:48:14,23.166400909423828 +2021-01-03 09:58:02,23.166400909423828 +2021-01-03 10:07:50,23.166400909423828 +2021-01-03 10:17:38,23.166400909423828 +2021-01-03 10:27:26,23.20840072631836 +2021-01-03 10:37:14,23.166400909423828 +2021-01-03 10:47:02,23.1643009185791 +2021-01-03 10:56:50,177.4011993408203 +2021-01-03 11:06:37,23.1643009185791 +2021-01-03 11:16:25,179.16200256347656 +2021-01-03 11:26:13,23.21050071716309 +2021-01-03 11:36:01,23.21050071716309 +2021-01-03 11:45:49,23.20840072631836 +2021-01-03 11:55:37,23.166400909423828 +2021-01-03 12:05:25,23.166400909423828 +2021-01-03 12:15:13,23.166400909423828 +2021-01-03 12:25:01,23.166400909423828 +2021-01-03 12:34:49,23.1643009185791 +2021-01-03 12:44:37,23.166400909423828 +2021-01-03 12:54:24,23.20840072631836 +2021-01-03 13:04:12,23.21050071716309 +2021-01-03 13:14:00,23.166400909423828 +2021-01-03 13:23:48,23.166400909423828 +2021-01-03 13:33:36,23.166400909423828 +2021-01-03 13:43:24,23.21050071716309 +2021-01-03 13:53:12,23.166400909423828 +2021-01-03 14:03:00,23.166400909423828 +2021-01-03 14:12:47,23.166400909423828 +2021-01-03 14:22:35,23.21050071716309 +2021-01-03 14:32:23,23.1643009185791 +2021-01-03 14:42:11,23.21050071716309 +2021-01-03 14:51:59,23.20840072631836 +2021-01-03 15:01:47,23.166400909423828 +2021-01-03 15:11:34,23.1643009185791 +2021-01-03 15:21:22,23.21050071716309 +2021-01-03 15:31:10,23.166400909423828 +2021-01-03 15:40:58,23.20840072631836 +2021-01-03 15:50:46,23.166400909423828 +2021-01-03 16:00:34,23.166400909423828 +2021-01-03 16:10:22,23.166400909423828 +2021-01-03 16:20:09,23.166400909423828 +2021-01-03 16:29:57,23.21050071716309 +2021-01-03 16:39:45,23.166400909423828 +2021-01-03 16:49:33,23.166400909423828 +2021-01-03 16:59:21,23.21050071716309 +2021-01-03 17:09:09,23.166400909423828 +2021-01-03 17:18:57,23.21050071716309 +2021-01-03 17:28:44,23.254600524902344 +2021-01-03 17:38:32,23.166400909423828 +2021-01-03 17:48:20,23.166400909423828 +2021-01-03 17:58:08,23.21050071716309 +2021-01-03 18:07:56,23.1643009185791 +2021-01-03 18:17:44,23.166400909423828 +2021-01-03 18:27:32,23.166400909423828 +2021-01-03 18:37:20,23.21050071716309 +2021-01-03 18:47:08,23.21050071716309 +2021-01-03 18:56:56,23.166400909423828 +2021-01-03 19:06:43,23.166400909423828 +2021-01-03 19:16:31,23.1643009185791 +2021-01-03 19:26:19,23.21050071716309 +2021-01-03 19:36:07,23.21050071716309 +2021-01-03 19:45:55,23.21050071716309 +2021-01-03 19:55:43,23.166400909423828 +2021-01-03 20:05:30,23.166400909423828 +2021-01-03 20:15:18,23.21050071716309 +2021-01-03 20:25:06,23.166400909423828 +2021-01-03 20:34:54,23.166400909423828 +2021-01-03 20:44:42,23.166400909423828 +2021-01-03 20:54:29,23.166400909423828 +2021-01-03 21:04:17,23.21050071716309 +2021-01-03 21:14:05,23.166400909423828 +2021-01-03 21:23:53,23.20840072631836 +2021-01-03 21:33:41,23.21050071716309 +2021-01-03 21:43:29,23.166400909423828 +2021-01-03 21:53:17,23.166400909423828 +2021-01-03 22:03:04,23.166400909423828 +2021-01-03 22:12:52,23.21050071716309 +2021-01-03 22:22:40,23.166400909423828 +2021-01-03 22:32:28,23.166400909423828 +2021-01-03 22:42:16,23.20840072631836 +2021-01-03 22:52:04,23.166400909423828 +2021-01-03 23:01:52,23.20840072631836 +2021-01-03 23:11:40,23.21050071716309 +2021-01-03 23:21:27,23.20840072631836 +2021-01-03 23:31:15,23.166400909423828 +2021-01-03 23:41:03,23.20840072631836 +2021-01-03 23:50:51,23.21050071716309 +2021-01-04 00:00:39,23.21050071716309 +2021-01-04 00:10:27,23.21050071716309 +2021-01-04 00:20:16,23.21050071716309 +2021-01-04 00:30:09,23.21050071716309 +2021-01-04 00:39:57,23.166400909423828 +2021-01-04 00:49:44,23.20840072631836 +2021-01-04 00:59:32,23.21050071716309 +2021-01-04 01:09:20,23.21050071716309 +2021-01-04 01:19:08,23.21050071716309 +2021-01-04 01:28:56,23.20840072631836 +2021-01-04 01:38:44,23.166400909423828 +2021-01-04 01:48:32,23.21050071716309 +2021-01-04 01:58:19,23.21050071716309 +2021-01-04 02:08:07,23.20840072631836 +2021-01-04 02:17:55,23.21050071716309 +2021-01-04 02:27:43,23.21050071716309 +2021-01-04 02:37:32,23.166400909423828 +2021-01-04 02:47:25,23.21050071716309 +2021-01-04 02:57:12,23.21050071716309 +2021-01-04 03:07:00,23.166400909423828 +2021-01-04 03:16:48,23.254600524902344 +2021-01-04 03:26:36,23.20840072631836 +2021-01-04 03:36:24,23.166400909423828 +2021-01-04 03:46:11,23.166400909423828 +2021-01-04 03:55:59,23.166400909423828 +2021-01-04 04:05:47,23.1643009185791 +2021-01-04 04:15:35,23.254600524902344 +2021-01-04 04:25:23,23.20840072631836 +2021-01-04 04:35:11,23.21050071716309 +2021-01-04 04:44:58,23.20840072631836 +2021-01-04 04:54:46,23.21050071716309 +2021-01-04 05:04:34,23.20840072631836 +2021-01-04 05:14:22,23.166400909423828 +2021-01-04 05:24:10,23.21050071716309 +2021-01-04 05:33:58,23.166400909423828 +2021-01-04 05:43:46,23.166400909423828 +2021-01-04 05:53:34,23.254600524902344 +2021-01-04 06:03:21,23.166400909423828 +2021-01-04 06:13:09,23.21050071716309 +2021-01-04 06:22:57,23.20840072631836 +2021-01-04 06:32:45,23.254600524902344 +2021-01-04 06:42:33,23.166400909423828 +2021-01-04 06:52:21,23.21050071716309 +2021-01-04 07:02:09,23.254600524902344 +2021-01-04 07:11:57,23.20840072631836 +2021-01-04 07:21:45,23.21050071716309 +2021-01-04 07:31:32,23.21050071716309 +2021-01-04 07:41:20,23.21050071716309 +2021-01-04 07:51:08,23.20840072631836 +2021-01-04 08:00:56,23.1643009185791 +2021-01-04 08:10:44,23.166400909423828 +2021-01-04 08:20:32,23.1643009185791 +2021-01-04 08:30:19,23.21050071716309 +2021-01-04 08:40:07,23.20840072631836 +2021-01-04 08:49:55,23.21050071716309 +2021-01-04 08:59:43,23.21050071716309 +2021-01-04 09:09:30,23.21050071716309 +2021-01-04 09:19:18,23.166400909423828 +2021-01-04 09:29:06,23.166400909423828 +2021-01-04 09:38:54,23.166400909423828 +2021-01-04 09:48:41,23.252500534057617 +2021-01-04 09:58:29,23.166400909423828 +2021-01-04 10:08:17,23.166400909423828 +2021-01-04 10:18:05,23.21050071716309 +2021-01-04 10:27:53,23.166400909423828 +2021-01-04 10:37:40,23.21050071716309 +2021-01-04 10:47:28,23.166400909423828 +2021-01-04 10:57:16,23.21050071716309 +2021-01-04 11:07:03,23.166400909423828 +2021-01-04 11:16:51,23.21050071716309 +2021-01-04 11:26:39,23.21050071716309 +2021-01-04 11:36:27,23.166400909423828 +2021-01-04 11:46:14,23.21050071716309 +2021-01-04 11:56:02,23.166400909423828 +2021-01-04 12:05:50,23.21050071716309 +2021-01-04 12:15:38,23.21050071716309 +2021-01-04 12:25:26,23.20840072631836 +2021-01-04 12:35:13,23.21050071716309 +2021-01-04 12:45:01,23.166400909423828 +2021-01-04 12:54:49,23.1643009185791 +2021-01-04 13:04:36,23.166400909423828 +2021-01-04 13:14:24,23.21050071716309 +2021-01-04 13:24:12,23.21050071716309 +2021-01-04 13:34:00,23.20840072631836 +2021-01-04 13:43:47,23.21050071716309 +2021-01-04 13:53:35,23.21050071716309 +2021-01-04 14:03:23,23.166400909423828 +2021-01-04 14:13:11,23.1643009185791 +2021-01-04 14:22:59,23.21050071716309 +2021-01-04 14:32:46,23.21050071716309 +2021-01-04 14:42:34,23.20840072631836 +2021-01-04 14:52:22,23.166400909423828 +2021-01-04 15:02:10,23.20840072631836 +2021-01-04 15:11:57,23.20840072631836 +2021-01-04 15:21:45,23.252500534057617 +2021-01-04 15:31:33,23.21050071716309 +2021-01-04 15:41:21,23.166400909423828 +2021-01-04 15:51:08,23.21050071716309 +2021-01-04 16:00:56,23.166400909423828 +2021-01-04 16:10:44,23.166400909423828 +2021-01-04 16:20:31,23.21050071716309 +2021-01-04 16:30:19,23.166400909423828 +2021-01-04 16:40:07,23.20840072631836 +2021-01-04 16:49:55,23.20840072631836 +2021-01-04 16:59:42,23.20840072631836 +2021-01-04 17:09:30,23.20840072631836 +2021-01-04 17:19:18,23.20840072631836 +2021-01-04 17:29:05,23.254600524902344 +2021-01-04 17:38:53,23.20840072631836 +2021-01-04 17:48:41,23.252500534057617 +2021-01-04 17:58:29,23.254600524902344 +2021-01-04 18:08:16,23.1643009185791 +2021-01-04 18:18:04,23.21050071716309 +2021-01-04 18:27:52,23.1643009185791 +2021-01-04 18:37:40,23.21050071716309 +2021-01-04 18:47:28,23.20840072631836 +2021-01-04 18:57:15,23.20840072631836 +2021-01-04 19:07:03,23.20840072631836 +2021-01-04 19:16:51,23.21050071716309 +2021-01-04 19:26:39,23.20840072631836 +2021-01-04 19:36:27,23.20840072631836 +2021-01-04 19:46:14,23.254600524902344 +2021-01-04 19:56:02,23.21050071716309 +2021-01-04 20:05:50,23.21050071716309 +2021-01-04 20:15:38,23.20840072631836 +2021-01-04 20:25:26,23.254600524902344 +2021-01-04 20:35:13,23.21050071716309 +2021-01-04 20:45:01,23.20840072631836 +2021-01-04 20:54:49,23.252500534057617 +2021-01-04 21:04:37,23.20840072631836 +2021-01-04 21:14:25,23.20840072631836 +2021-01-04 21:24:13,23.21050071716309 +2021-01-04 21:34:01,23.29669952392578 +2021-01-04 21:43:49,23.20840072631836 +2021-01-04 21:53:36,23.166400909423828 +2021-01-04 22:03:24,23.1643009185791 +2021-01-04 22:13:12,23.20840072631836 +2021-01-04 22:23:00,23.166400909423828 +2021-01-04 22:32:48,23.21050071716309 +2021-01-04 22:42:36,23.166400909423828 +2021-01-04 22:52:24,23.1643009185791 +2021-01-04 23:02:12,23.1643009185791 +2021-01-04 23:11:59,23.254600524902344 +2021-01-04 23:21:47,23.20840072631836 +2021-01-04 23:31:35,23.166400909423828 +2021-01-04 23:41:23,23.1643009185791 +2021-01-04 23:51:11,23.21050071716309 +2021-01-05 00:00:59,23.21050071716309 +2021-01-05 00:10:46,23.21050071716309 +2021-01-05 00:20:34,23.298799514770508 +2021-01-05 00:30:22,23.166400909423828 +2021-01-05 00:40:10,23.20840072631836 +2021-01-05 00:49:58,23.20840072631836 +2021-01-05 01:00:00,23.20840072631836 +2021-01-05 01:09:54,23.21050071716309 +2021-01-05 01:19:42,23.21050071716309 +2021-01-05 01:29:30,23.340999603271484 +2021-01-05 01:39:18,23.21050071716309 +2021-01-05 01:49:06,23.20840072631836 +2021-01-05 01:58:54,23.34309959411621 +2021-01-05 02:08:42,23.298799514770508 +2021-01-05 02:18:30,23.21050071716309 +2021-01-05 02:28:18,23.166400909423828 +2021-01-05 02:38:06,23.166400909423828 +2021-01-05 02:47:54,23.21050071716309 +2021-01-05 02:57:41,23.21050071716309 +2021-01-05 03:07:29,23.166400909423828 +2021-01-05 03:17:17,23.21050071716309 +2021-01-05 03:27:05,23.254600524902344 +2021-01-05 03:36:53,23.21050071716309 +2021-01-05 03:46:41,23.29669952392578 +2021-01-05 03:56:29,23.166400909423828 +2021-01-05 04:06:16,23.21050071716309 +2021-01-05 04:16:04,23.21050071716309 +2021-01-05 04:25:52,23.21050071716309 +2021-01-05 04:35:40,23.166400909423828 +2021-01-05 04:45:28,23.1643009185791 +2021-01-05 04:55:16,23.1643009185791 +2021-01-05 05:05:04,23.166400909423828 +2021-01-05 05:14:52,23.1643009185791 +2021-01-05 05:24:40,23.21050071716309 +2021-01-05 05:34:28,23.21050071716309 +2021-01-05 05:44:16,23.21050071716309 +2021-01-05 05:54:04,23.34309959411621 +2021-01-05 06:03:52,23.254600524902344 +2021-01-05 06:13:40,23.166400909423828 +2021-01-05 06:23:28,23.21050071716309 +2021-01-05 06:33:16,23.21050071716309 +2021-01-05 06:43:04,23.166400909423828 +2021-01-05 06:52:52,23.20840072631836 +2021-01-05 07:02:40,23.166400909423828 +2021-01-05 07:12:28,23.20840072631836 +2021-01-05 07:22:16,23.20840072631836 +2021-01-05 07:32:03,23.21050071716309 +2021-01-05 07:41:51,23.21050071716309 +2021-01-05 07:51:39,23.21050071716309 +2021-01-05 08:01:27,23.21050071716309 +2021-01-05 08:11:15,23.21050071716309 +2021-01-05 08:21:03,23.21050071716309 +2021-01-05 08:30:51,23.21050071716309 +2021-01-05 08:40:39,23.21050071716309 +2021-01-05 08:50:27,23.20840072631836 +2021-01-05 09:00:15,23.21050071716309 +2021-01-05 09:10:03,23.20840072631836 +2021-01-05 09:19:50,23.166400909423828 +2021-01-05 09:29:38,23.252500534057617 +2021-01-05 09:39:26,23.20840072631836 +2021-01-05 09:49:14,23.21050071716309 +2021-01-05 09:59:02,23.1643009185791 +2021-01-05 10:08:50,23.254600524902344 +2021-01-05 10:18:38,23.29669952392578 +2021-01-05 10:28:26,23.21050071716309 +2021-01-05 10:38:14,23.21050071716309 +2021-01-05 10:48:02,23.21050071716309 +2021-01-05 10:57:49,23.21050071716309 +2021-01-05 11:07:37,23.20840072631836 +2021-01-05 11:17:25,23.21050071716309 +2021-01-05 11:27:13,23.166400909423828 +2021-01-05 11:37:01,23.166400909423828 +2021-01-05 11:46:49,23.298799514770508 +2021-01-05 11:56:37,23.21050071716309 +2021-01-05 12:06:25,23.166400909423828 +2021-01-05 12:16:12,23.166400909423828 +2021-01-05 12:26:00,23.166400909423828 +2021-01-05 12:35:48,23.21050071716309 +2021-01-05 12:45:36,23.20840072631836 +2021-01-05 12:55:24,23.252500534057617 +2021-01-05 13:05:12,23.166400909423828 +2021-01-05 13:15:00,23.254600524902344 +2021-01-05 13:24:48,23.254600524902344 +2021-01-05 13:34:36,23.21050071716309 +2021-01-05 13:44:24,23.20840072631836 +2021-01-05 13:54:11,23.20840072631836 +2021-01-05 14:03:59,23.21050071716309 +2021-01-05 14:13:47,23.21050071716309 +2021-01-05 14:23:35,23.21050071716309 +2021-01-05 14:33:23,23.21050071716309 +2021-01-05 14:43:11,23.166400909423828 +2021-01-05 14:52:59,23.166400909423828 +2021-01-05 15:02:46,23.21050071716309 +2021-01-05 15:12:34,23.20840072631836 +2021-01-05 15:22:22,23.20840072631836 +2021-01-05 15:32:10,23.254600524902344 +2021-01-05 15:41:58,23.252500534057617 +2021-01-05 15:51:46,23.20840072631836 +2021-01-05 16:01:33,23.1643009185791 +2021-01-05 16:11:21,23.20840072631836 +2021-01-05 16:21:09,23.21050071716309 +2021-01-05 16:30:57,23.166400909423828 +2021-01-05 16:40:44,23.21050071716309 +2021-01-05 16:50:32,23.166400909423828 +2021-01-05 17:00:20,23.21050071716309 +2021-01-05 17:10:08,23.20840072631836 +2021-01-05 17:19:56,23.20840072631836 +2021-01-05 17:29:43,23.20840072631836 +2021-01-05 17:39:31,23.20840072631836 +2021-01-05 17:49:19,23.21050071716309 +2021-01-05 17:59:07,23.166400909423828 +2021-01-05 18:08:55,23.166400909423828 +2021-01-05 18:18:42,23.20840072631836 +2021-01-05 18:28:30,23.20840072631836 +2021-01-05 18:38:18,23.21050071716309 +2021-01-05 18:48:06,23.166400909423828 +2021-01-05 18:57:54,23.21050071716309 +2021-01-05 19:07:41,23.21050071716309 +2021-01-05 19:17:29,23.166400909423828 +2021-01-05 19:27:17,23.21050071716309 +2021-01-05 19:37:05,23.166400909423828 +2021-01-05 19:46:53,23.21050071716309 +2021-01-05 19:56:41,23.1643009185791 +2021-01-05 20:06:29,23.166400909423828 +2021-01-05 20:16:17,23.21050071716309 +2021-01-05 20:26:04,23.252500534057617 +2021-01-05 20:35:52,23.166400909423828 +2021-01-05 20:45:40,23.254600524902344 +2021-01-05 20:55:28,23.166400909423828 +2021-01-05 21:05:16,23.166400909423828 +2021-01-05 21:15:04,23.166400909423828 +2021-01-05 21:24:52,23.1643009185791 +2021-01-05 21:34:40,23.166400909423828 +2021-01-05 21:44:28,23.166400909423828 +2021-01-05 21:54:16,23.166400909423828 +2021-01-05 22:04:03,23.21050071716309 +2021-01-05 22:13:51,23.21050071716309 +2021-01-05 22:23:39,23.166400909423828 +2021-01-05 22:33:27,23.21050071716309 +2021-01-05 22:43:15,23.166400909423828 +2021-01-05 22:53:03,23.166400909423828 +2021-01-05 23:02:51,23.166400909423828 +2021-01-05 23:12:39,23.166400909423828 +2021-01-05 23:22:27,23.166400909423828 +2021-01-05 23:32:15,23.21050071716309 +2021-01-05 23:42:03,23.21050071716309 +2021-01-05 23:51:51,23.166400909423828 +2021-01-06 00:01:39,23.21050071716309 +2021-01-06 00:11:27,23.166400909423828 +2021-01-06 00:21:14,23.21050071716309 +2021-01-06 00:31:02,23.21050071716309 +2021-01-06 00:40:50,23.21050071716309 +2021-01-06 00:50:38,23.1643009185791 +2021-01-06 01:00:26,23.166400909423828 +2021-01-06 01:10:14,23.166400909423828 +2021-01-06 01:20:01,23.21050071716309 +2021-01-06 01:29:49,23.166400909423828 +2021-01-06 01:39:37,23.166400909423828 +2021-01-06 01:49:24,23.166400909423828 +2021-01-06 01:59:12,23.21050071716309 +2021-01-06 02:09:00,23.166400909423828 +2021-01-06 02:18:47,23.21050071716309 +2021-01-06 02:28:35,23.166400909423828 +2021-01-06 02:38:23,23.166400909423828 +2021-01-06 02:48:10,23.1643009185791 +2021-01-06 02:57:58,23.166400909423828 +2021-01-06 03:07:46,23.21050071716309 +2021-01-06 03:17:34,23.21050071716309 +2021-01-06 03:27:22,23.21050071716309 +2021-01-06 03:37:09,23.21050071716309 +2021-01-06 03:46:57,23.1643009185791 +2021-01-06 03:56:45,23.1643009185791 +2021-01-06 04:06:33,23.21050071716309 +2021-01-06 04:16:20,23.21050071716309 +2021-01-06 04:26:08,23.166400909423828 +2021-01-06 04:35:56,23.166400909423828 +2021-01-06 04:45:44,23.166400909423828 +2021-01-06 04:55:31,23.20840072631836 +2021-01-06 05:05:19,23.21050071716309 +2021-01-06 05:15:07,23.21050071716309 +2021-01-06 05:24:54,23.166400909423828 +2021-01-06 05:34:42,23.166400909423828 +2021-01-06 05:44:30,23.166400909423828 +2021-01-06 05:54:18,23.1643009185791 +2021-01-06 06:04:06,23.21050071716309 +2021-01-06 06:13:54,23.166400909423828 +2021-01-06 06:23:42,23.166400909423828 +2021-01-06 06:33:29,23.166400909423828 +2021-01-06 06:43:17,23.166400909423828 +2021-01-06 06:53:05,23.166400909423828 +2021-01-06 07:02:53,23.21050071716309 +2021-01-06 07:12:41,23.166400909423828 +2021-01-06 07:22:29,23.21050071716309 +2021-01-06 07:32:16,23.166400909423828 +2021-01-06 07:42:04,23.166400909423828 +2021-01-06 07:51:52,23.166400909423828 +2021-01-06 08:01:40,23.166400909423828 +2021-01-06 08:11:27,23.166400909423828 +2021-01-06 08:21:15,23.166400909423828 +2021-01-06 08:31:03,23.21050071716309 +2021-01-06 08:40:51,23.21050071716309 +2021-01-06 08:50:38,23.1643009185791 +2021-01-06 09:00:26,23.166400909423828 +2021-01-06 09:10:14,23.21050071716309 +2021-01-06 09:20:02,23.166400909423828 +2021-01-06 09:29:49,23.166400909423828 +2021-01-06 09:39:37,23.166400909423828 +2021-01-06 09:49:25,23.21050071716309 +2021-01-06 09:59:13,23.166400909423828 +2021-01-06 10:09:00,23.166400909423828 +2021-01-06 10:18:48,23.166400909423828 +2021-01-06 10:28:36,23.166400909423828 +2021-01-06 10:38:24,23.21050071716309 +2021-01-06 10:48:12,23.166400909423828 +2021-01-06 10:57:59,23.166400909423828 +2021-01-06 11:07:47,23.166400909423828 +2021-01-06 11:17:35,23.21050071716309 +2021-01-06 11:27:23,23.20840072631836 +2021-01-06 11:37:11,23.166400909423828 +2021-01-06 11:46:59,23.21050071716309 +2021-01-06 11:56:47,23.166400909423828 +2021-01-06 12:06:34,23.166400909423828 +2021-01-06 12:16:22,23.21050071716309 +2021-01-06 12:26:10,23.21050071716309 +2021-01-06 12:35:58,23.166400909423828 +2021-01-06 12:45:46,23.21050071716309 +2021-01-06 12:55:34,23.21050071716309 +2021-01-06 13:05:22,23.166400909423828 +2021-01-06 13:15:10,23.20840072631836 +2021-01-06 13:24:58,23.166400909423828 +2021-01-06 13:34:46,23.166400909423828 +2021-01-06 13:44:34,23.20840072631836 +2021-01-06 13:54:22,23.20840072631836 +2021-01-06 14:04:10,23.21050071716309 +2021-01-06 14:13:58,23.1643009185791 +2021-01-06 14:23:45,23.254600524902344 +2021-01-06 14:33:33,23.21050071716309 +2021-01-06 14:43:21,23.21050071716309 +2021-01-06 14:53:10,23.21050071716309 +2021-01-06 15:02:58,23.21050071716309 +2021-01-06 15:12:46,23.166400909423828 +2021-01-06 15:22:34,23.166400909423828 +2021-01-06 15:32:22,23.21050071716309 +2021-01-06 15:42:10,23.20840072631836 +2021-01-06 15:51:58,23.21050071716309 +2021-01-06 16:01:46,23.20840072631836 +2021-01-06 16:11:34,23.166400909423828 +2021-01-06 16:21:22,23.166400909423828 +2021-01-06 16:31:10,23.166400909423828 +2021-01-06 16:40:58,23.166400909423828 +2021-01-06 16:50:46,23.166400909423828 +2021-01-06 17:00:34,23.21050071716309 +2021-01-06 17:10:22,23.166400909423828 +2021-01-06 17:20:10,23.21050071716309 +2021-01-06 17:29:58,23.166400909423828 +2021-01-06 17:39:46,23.21050071716309 +2021-01-06 17:49:34,23.1643009185791 +2021-01-06 17:59:22,23.166400909423828 +2021-01-06 18:09:10,23.166400909423828 +2021-01-06 18:18:58,23.21050071716309 +2021-01-06 18:28:46,23.166400909423828 +2021-01-06 18:38:34,23.166400909423828 +2021-01-06 18:48:22,23.21050071716309 +2021-01-06 18:58:10,23.166400909423828 +2021-01-06 19:07:57,23.21050071716309 +2021-01-06 19:17:45,23.166400909423828 +2021-01-06 19:27:33,23.166400909423828 +2021-01-06 19:37:21,23.166400909423828 +2021-01-06 19:47:09,23.21050071716309 +2021-01-06 19:56:57,23.166400909423828 +2021-01-06 20:06:45,23.166400909423828 +2021-01-06 20:16:33,23.21050071716309 +2021-01-06 20:26:21,23.21050071716309 +2021-01-06 20:36:09,23.21050071716309 +2021-01-06 20:45:57,23.21050071716309 +2021-01-06 20:55:45,23.21050071716309 +2021-01-06 21:05:33,23.166400909423828 +2021-01-06 21:15:21,23.166400909423828 +2021-01-06 21:25:09,23.166400909423828 +2021-01-06 21:34:56,23.21050071716309 +2021-01-06 21:44:44,23.166400909423828 +2021-01-06 21:54:32,23.166400909423828 +2021-01-06 22:04:20,23.21050071716309 +2021-01-06 22:14:08,23.1643009185791 +2021-01-06 22:23:55,23.166400909423828 +2021-01-06 22:33:43,23.166400909423828 +2021-01-06 22:43:31,23.166400909423828 +2021-01-06 22:53:19,23.21050071716309 +2021-01-06 23:03:07,23.166400909423828 +2021-01-06 23:12:55,23.21050071716309 +2021-01-06 23:22:42,23.166400909423828 +2021-01-06 23:32:30,23.166400909423828 +2021-01-06 23:42:18,23.166400909423828 +2021-01-06 23:52:06,23.166400909423828 +2021-01-07 00:01:54,23.166400909423828 +2021-01-07 00:11:41,23.21050071716309 +2021-01-07 00:21:29,23.166400909423828 +2021-01-07 00:31:17,23.166400909423828 +2021-01-07 00:41:05,23.21050071716309 +2021-01-07 00:50:53,23.20840072631836 +2021-01-07 01:00:40,23.166400909423828 +2021-01-07 01:10:28,23.166400909423828 +2021-01-07 01:20:16,23.166400909423828 +2021-01-07 01:30:04,23.21050071716309 +2021-01-07 01:39:52,23.166400909423828 +2021-01-07 01:49:40,23.166400909423828 +2021-01-07 01:59:28,23.166400909423828 +2021-01-07 02:09:16,23.21050071716309 +2021-01-07 02:19:04,23.254600524902344 +2021-01-07 02:28:52,23.21050071716309 +2021-01-07 02:38:39,23.166400909423828 +2021-01-07 02:48:27,23.168500900268555 +2021-01-07 02:58:15,177.4011993408203 +2021-01-07 03:08:03,23.21050071716309 +2021-01-07 03:17:51,23.254600524902344 +2021-01-07 03:27:39,23.21050071716309 +2021-01-07 03:37:26,23.166400909423828 +2021-01-07 03:47:14,23.166400909423828 +2021-01-07 03:57:02,23.20840072631836 +2021-01-07 04:06:50,23.166400909423828 +2021-01-07 04:16:38,23.21050071716309 +2021-01-07 04:26:26,23.166400909423828 +2021-01-07 04:36:14,23.21050071716309 +2021-01-07 04:46:01,23.21050071716309 +2021-01-07 04:55:49,177.41720581054688 +2021-01-07 05:05:37,23.166400909423828 +2021-01-07 05:15:25,23.166400909423828 +2021-01-07 05:25:13,23.1643009185791 +2021-01-07 05:35:01,23.166400909423828 +2021-01-07 05:44:49,23.21050071716309 +2021-01-07 05:54:37,23.166400909423828 +2021-01-07 06:04:25,23.21050071716309 +2021-01-07 06:14:12,23.166400909423828 +2021-01-07 06:24:00,23.166400909423828 +2021-01-07 06:33:48,23.21050071716309 +2021-01-07 06:43:36,23.166400909423828 +2021-01-07 06:53:24,23.21050071716309 +2021-01-07 07:03:12,23.20840072631836 +2021-01-07 07:13:00,23.21050071716309 +2021-01-07 07:22:47,23.21050071716309 +2021-01-07 07:32:35,23.21050071716309 +2021-01-07 07:42:23,23.20840072631836 +2021-01-07 07:52:11,23.166400909423828 +2021-01-07 08:01:59,23.254600524902344 +2021-01-07 08:11:47,23.166400909423828 +2021-01-07 08:21:35,23.166400909423828 +2021-01-07 08:31:23,23.166400909423828 +2021-01-07 08:41:11,23.21050071716309 +2021-01-07 08:50:59,23.298799514770508 +2021-01-07 09:00:47,23.21050071716309 +2021-01-07 09:10:35,23.166400909423828 +2021-01-07 09:20:23,23.166400909423828 +2021-01-07 09:30:11,23.254600524902344 +2021-01-07 09:39:58,23.21050071716309 +2021-01-07 09:49:46,23.252500534057617 +2021-01-07 09:59:34,23.21050071716309 +2021-01-07 10:09:22,23.1643009185791 +2021-01-07 10:19:10,23.166400909423828 +2021-01-07 10:28:58,23.21050071716309 +2021-01-07 10:38:46,23.21050071716309 +2021-01-07 10:48:34,23.21050071716309 +2021-01-07 10:58:21,23.21050071716309 +2021-01-07 11:08:09,23.21050071716309 +2021-01-07 11:17:57,23.21050071716309 +2021-01-07 11:27:45,23.21050071716309 +2021-01-07 11:37:33,23.21050071716309 +2021-01-07 11:47:21,23.166400909423828 +2021-01-07 11:57:09,23.166400909423828 +2021-01-07 12:06:56,23.21050071716309 +2021-01-07 12:16:44,23.21050071716309 +2021-01-07 12:26:32,23.166400909423828 +2021-01-07 12:36:20,23.21050071716309 +2021-01-07 12:46:08,23.166400909423828 +2021-01-07 12:55:55,23.166400909423828 +2021-01-07 13:05:43,23.254600524902344 +2021-01-07 13:15:31,23.166400909423828 +2021-01-07 13:25:19,23.21050071716309 +2021-01-07 13:35:07,23.21050071716309 +2021-01-07 13:44:55,177.4011993408203 +2021-01-07 13:54:43,23.21050071716309 +2021-01-07 14:04:30,23.21050071716309 +2021-01-07 14:14:18,23.166400909423828 +2021-01-07 14:24:06,23.166400909423828 +2021-01-07 14:33:54,23.166400909423828 +2021-01-07 14:43:42,23.21050071716309 +2021-01-07 14:53:30,23.20840072631836 +2021-01-07 15:03:18,23.166400909423828 +2021-01-07 15:13:06,23.166400909423828 +2021-01-07 15:22:54,23.166400909423828 +2021-01-07 15:32:41,23.166400909423828 +2021-01-07 15:42:29,23.21050071716309 +2021-01-07 15:52:17,23.21050071716309 +2021-01-07 16:02:05,23.20840072631836 +2021-01-07 16:11:53,23.298799514770508 +2021-01-07 16:21:41,23.166400909423828 +2021-01-07 16:31:29,23.21050071716309 +2021-01-07 16:41:17,23.166400909423828 +2021-01-07 16:51:05,23.21050071716309 +2021-01-07 17:00:53,23.21050071716309 +2021-01-07 17:10:41,23.166400909423828 +2021-01-07 17:20:29,23.21050071716309 +2021-01-07 17:30:17,23.21050071716309 +2021-01-07 17:40:04,23.166400909423828 +2021-01-07 17:49:52,23.166400909423828 +2021-01-07 17:59:40,23.21050071716309 +2021-01-07 18:09:28,23.21050071716309 +2021-01-07 18:19:16,23.166400909423828 +2021-01-07 18:29:04,23.1643009185791 +2021-01-07 18:38:52,23.21050071716309 +2021-01-07 18:48:40,23.166400909423828 +2021-01-07 18:58:27,23.21050071716309 +2021-01-07 19:08:15,23.254600524902344 +2021-01-07 19:18:03,23.166400909423828 +2021-01-07 19:27:51,23.21050071716309 +2021-01-07 19:37:39,23.166400909423828 +2021-01-07 19:47:27,23.166400909423828 +2021-01-07 19:57:14,23.21050071716309 +2021-01-07 20:07:02,23.21050071716309 +2021-01-07 20:16:50,179.16200256347656 +2021-01-07 20:26:38,23.166400909423828 +2021-01-07 20:36:26,177.4011993408203 +2021-01-07 20:46:13,179.16200256347656 +2021-01-07 20:56:01,23.21050071716309 +2021-01-07 21:05:49,23.166400909423828 +2021-01-07 21:15:37,23.166400909423828 +2021-01-07 21:25:25,23.21050071716309 +2021-01-07 21:35:13,23.21050071716309 +2021-01-07 21:45:01,23.166400909423828 +2021-01-07 21:54:49,23.21249961853028 +2021-01-07 22:04:36,23.166400909423828 +2021-01-07 22:14:24,23.25670051574707 +2021-01-07 22:24:12,23.21050071716309 +2021-01-07 22:34:00,23.166400909423828 +2021-01-07 22:43:48,23.166400909423828 +2021-01-07 22:53:36,23.21050071716309 +2021-01-07 23:03:24,23.166400909423828 +2021-01-07 23:13:12,23.166400909423828 +2021-01-07 23:23:00,23.166400909423828 +2021-01-07 23:32:48,23.166400909423828 +2021-01-07 23:42:36,23.166400909423828 +2021-01-07 23:52:24,23.166400909423828 +2021-01-08 00:02:12,23.166400909423828 +2021-01-08 00:12:00,23.21050071716309 +2021-01-08 00:21:48,23.21050071716309 +2021-01-08 00:31:36,23.254600524902344 +2021-01-08 00:41:24,23.166400909423828 +2021-01-08 00:51:12,23.21050071716309 +2021-01-08 01:00:59,23.166400909423828 +2021-01-08 01:10:47,23.166400909423828 +2021-01-08 01:20:35,23.166400909423828 +2021-01-08 01:30:23,23.166400909423828 +2021-01-08 01:40:11,23.166400909423828 +2021-01-08 01:49:59,23.166400909423828 +2021-01-08 01:59:46,23.166400909423828 +2021-01-08 02:09:34,23.166400909423828 +2021-01-08 02:19:22,23.166400909423828 +2021-01-08 02:29:10,23.254600524902344 +2021-01-08 02:38:57,23.166400909423828 +2021-01-08 02:48:45,23.166400909423828 +2021-01-08 02:58:33,23.21050071716309 +2021-01-08 03:08:21,-11.047900199890137 +2021-01-08 03:18:15,23.166400909423828 +2021-01-08 03:28:02,23.166400909423828 +2021-01-08 03:37:50,23.166400909423828 +2021-01-08 03:47:38,23.254600524902344 +2021-01-08 03:57:26,23.21050071716309 +2021-01-08 04:07:13,23.166400909423828 +2021-01-08 04:17:01,23.21050071716309 +2021-01-08 04:26:49,23.166400909423828 +2021-01-08 04:36:36,23.20840072631836 +2021-01-08 04:46:24,23.166400909423828 +2021-01-08 04:56:12,23.166400909423828 +2021-01-08 05:05:59,23.166400909423828 +2021-01-08 05:15:47,23.21050071716309 +2021-01-08 05:25:35,23.166400909423828 +2021-01-08 05:35:23,23.166400909423828 +2021-01-08 05:45:11,23.166400909423828 +2021-01-08 05:54:59,23.166400909423828 +2021-01-08 06:04:46,23.166400909423828 +2021-01-08 06:14:34,23.21050071716309 +2021-01-08 06:24:22,23.166400909423828 +2021-01-08 06:34:10,23.166400909423828 +2021-01-08 06:43:58,23.21050071716309 +2021-01-08 06:53:46,23.166400909423828 +2021-01-08 07:03:33,23.166400909423828 +2021-01-08 07:13:21,23.166400909423828 +2021-01-08 07:23:09,23.21050071716309 +2021-01-08 07:32:57,23.166400909423828 +2021-01-08 07:42:45,23.20840072631836 +2021-01-08 07:52:33,23.21050071716309 +2021-01-08 08:02:20,23.166400909423828 +2021-01-08 08:12:08,23.166400909423828 +2021-01-08 08:21:56,23.166400909423828 +2021-01-08 08:31:43,23.166400909423828 +2021-01-08 08:41:31,23.21050071716309 +2021-01-08 08:51:19,23.166400909423828 +2021-01-08 09:01:07,23.166400909423828 +2021-01-08 09:10:54,23.21050071716309 +2021-01-08 09:20:42,23.21050071716309 +2021-01-08 09:30:30,23.166400909423828 +2021-01-08 09:40:18,23.166400909423828 +2021-01-08 09:50:06,23.166400909423828 +2021-01-08 09:59:54,23.166400909423828 +2021-01-08 10:09:42,23.1643009185791 +2021-01-08 10:19:30,23.166400909423828 +2021-01-08 10:29:17,23.166400909423828 +2021-01-08 10:39:05,23.166400909423828 +2021-01-08 10:48:53,23.166400909423828 +2021-01-08 10:58:41,23.166400909423828 +2021-01-08 11:08:29,23.166400909423828 +2021-01-08 11:18:17,23.166400909423828 +2021-01-08 11:28:05,23.166400909423828 +2021-01-08 11:37:53,23.21050071716309 +2021-01-08 11:47:41,23.21050071716309 +2021-01-08 11:57:29,23.166400909423828 +2021-01-08 12:07:17,23.166400909423828 +2021-01-08 12:17:05,23.166400909423828 +2021-01-08 12:26:53,23.166400909423828 +2021-01-08 12:36:41,23.166400909423828 +2021-01-08 12:46:28,23.21050071716309 +2021-01-08 12:56:16,23.166400909423828 +2021-01-08 13:06:04,23.166400909423828 +2021-01-08 13:15:52,23.166400909423828 +2021-01-08 13:25:40,23.166400909423828 +2021-01-08 13:35:28,23.166400909423828 +2021-01-08 13:45:16,23.166400909423828 +2021-01-08 13:55:05,23.166400909423828 +2021-01-08 14:04:58,23.1643009185791 +2021-01-08 14:14:46,23.166400909423828 +2021-01-08 14:24:34,23.1643009185791 +2021-01-08 14:34:22,23.166400909423828 +2021-01-08 14:44:09,23.166400909423828 +2021-01-08 14:53:57,23.166400909423828 +2021-01-08 15:03:45,23.21050071716309 +2021-01-08 15:13:33,23.166400909423828 +2021-01-08 15:23:21,23.166400909423828 +2021-01-08 15:33:09,23.166400909423828 +2021-01-08 15:42:57,23.166400909423828 +2021-01-08 15:52:44,23.166400909423828 +2021-01-08 16:02:32,23.21050071716309 +2021-01-08 16:12:20,23.166400909423828 +2021-01-08 16:22:08,23.1643009185791 +2021-01-08 16:31:56,23.21050071716309 +2021-01-08 16:41:44,23.298799514770508 +2021-01-08 16:51:31,23.166400909423828 +2021-01-08 17:01:19,23.166400909423828 +2021-01-08 17:11:07,23.166400909423828 +2021-01-08 17:20:55,23.166400909423828 +2021-01-08 17:30:43,23.166400909423828 +2021-01-08 17:40:31,23.166400909423828 +2021-01-08 17:50:19,23.166400909423828 +2021-01-08 18:00:07,23.166400909423828 +2021-01-08 18:09:55,23.21050071716309 +2021-01-08 18:19:43,23.166400909423828 +2021-01-08 18:29:30,23.166400909423828 +2021-01-08 18:39:18,23.166400909423828 +2021-01-08 18:49:06,23.166400909423828 +2021-01-08 18:58:54,23.166400909423828 +2021-01-08 19:08:42,23.21050071716309 +2021-01-08 19:18:30,23.1643009185791 +2021-01-08 19:28:18,23.166400909423828 +2021-01-08 19:38:05,23.166400909423828 +2021-01-08 19:47:53,23.21050071716309 +2021-01-08 19:57:41,23.166400909423828 +2021-01-08 20:07:29,23.166400909423828 +2021-01-08 20:17:17,23.21050071716309 +2021-01-08 20:27:05,23.21050071716309 +2021-01-08 20:36:52,23.166400909423828 +2021-01-08 20:46:40,23.166400909423828 +2021-01-08 20:56:28,23.166400909423828 +2021-01-08 21:06:16,23.1643009185791 +2021-01-08 21:16:04,23.21050071716309 +2021-01-08 21:25:52,23.166400909423828 +2021-01-08 21:35:40,23.166400909423828 +2021-01-08 21:45:28,23.166400909423828 +2021-01-08 21:55:16,23.21050071716309 +2021-01-08 22:05:04,23.21050071716309 +2021-01-08 22:14:51,23.166400909423828 +2021-01-08 22:24:39,23.166400909423828 +2021-01-08 22:34:27,23.21050071716309 +2021-01-08 22:44:15,23.166400909423828 +2021-01-08 22:54:03,23.166400909423828 +2021-01-08 23:03:50,23.166400909423828 +2021-01-08 23:13:38,23.21050071716309 +2021-01-08 23:23:26,23.166400909423828 +2021-01-08 23:33:14,23.166400909423828 +2021-01-08 23:43:02,23.166400909423828 +2021-01-08 23:52:50,23.254600524902344 +2021-01-09 00:02:38,23.166400909423828 +2021-01-09 00:12:25,23.166400909423828 +2021-01-09 00:22:13,23.166400909423828 +2021-01-09 00:32:01,23.166400909423828 +2021-01-09 00:41:49,23.166400909423828 +2021-01-09 00:51:37,23.21050071716309 +2021-01-09 01:01:24,23.166400909423828 +2021-01-09 01:11:12,23.166400909423828 +2021-01-09 01:21:00,23.21050071716309 +2021-01-09 01:30:48,23.166400909423828 +2021-01-09 01:40:36,23.20840072631836 +2021-01-09 01:50:24,23.21050071716309 +2021-01-09 02:00:11,23.166400909423828 +2021-01-09 02:09:59,23.166400909423828 +2021-01-09 02:19:47,23.166400909423828 +2021-01-09 02:29:35,23.166400909423828 +2021-01-09 02:39:23,23.34309959411621 +2021-01-09 02:49:11,23.21050071716309 +2021-01-09 02:58:59,23.166400909423828 +2021-01-09 03:08:46,23.166400909423828 +2021-01-09 03:18:34,23.166400909423828 +2021-01-09 03:28:22,23.166400909423828 +2021-01-09 03:38:10,23.21050071716309 +2021-01-09 03:47:57,23.254600524902344 +2021-01-09 03:57:45,23.34309959411621 +2021-01-09 04:07:33,23.298799514770508 +2021-01-09 04:17:21,23.34309959411621 +2021-01-09 04:27:08,23.21050071716309 +2021-01-09 04:36:56,23.298799514770508 +2021-01-09 04:46:44,23.298799514770508 +2021-01-09 04:56:32,23.254600524902344 +2021-01-09 05:06:19,23.34309959411621 +2021-01-09 05:16:07,23.38739967346192 +2021-01-09 05:25:54,23.298799514770508 +2021-01-09 05:35:42,23.29669952392578 +2021-01-09 05:45:30,23.34309959411621 +2021-01-09 05:55:18,23.34309959411621 +2021-01-09 06:05:05,23.298799514770508 +2021-01-09 06:14:53,23.298799514770508 +2021-01-09 06:24:41,23.254600524902344 +2021-01-09 06:34:29,23.298799514770508 +2021-01-09 06:44:16,23.34309959411621 +2021-01-09 06:54:04,23.34309959411621 +2021-01-09 07:03:52,23.34309959411621 +2021-01-09 07:13:40,23.254600524902344 +2021-01-09 07:23:28,23.298799514770508 +2021-01-09 07:33:16,23.34309959411621 +2021-01-09 07:43:03,23.298799514770508 +2021-01-09 07:52:51,23.34309959411621 +2021-01-09 08:02:39,23.34309959411621 +2021-01-09 08:12:27,23.298799514770508 +2021-01-09 08:22:14,23.298799514770508 +2021-01-09 08:32:02,23.34309959411621 +2021-01-09 08:41:50,23.254600524902344 +2021-01-09 08:51:38,23.34309959411621 +2021-01-09 09:01:25,23.298799514770508 +2021-01-09 09:11:13,23.254600524902344 +2021-01-09 09:21:01,23.298799514770508 +2021-01-09 09:30:49,23.298799514770508 +2021-01-09 09:40:37,23.298799514770508 +2021-01-09 09:50:24,23.298799514770508 +2021-01-09 10:00:12,23.298799514770508 +2021-01-09 10:10:00,23.298799514770508 +2021-01-09 10:19:48,23.34309959411621 +2021-01-09 10:29:36,23.298799514770508 +2021-01-09 10:39:24,23.298799514770508 +2021-01-09 10:49:11,23.298799514770508 +2021-01-09 10:58:59,23.34309959411621 +2021-01-09 11:08:47,23.254600524902344 +2021-01-09 11:18:35,23.298799514770508 +2021-01-09 11:28:23,23.298799514770508 +2021-01-09 11:38:11,23.34309959411621 +2021-01-09 11:47:58,23.25670051574707 +2021-01-09 11:57:46,23.254600524902344 +2021-01-09 12:07:34,23.298799514770508 +2021-01-09 12:17:22,23.254600524902344 +2021-01-09 12:27:09,23.34309959411621 +2021-01-09 12:36:57,23.298799514770508 +2021-01-09 12:46:45,23.38949966430664 +2021-01-09 12:56:33,23.254600524902344 +2021-01-09 13:06:21,23.298799514770508 +2021-01-09 13:16:08,23.298799514770508 +2021-01-09 13:25:56,23.298799514770508 +2021-01-09 13:35:44,23.298799514770508 +2021-01-09 13:45:32,23.298799514770508 +2021-01-09 13:55:19,23.254600524902344 +2021-01-09 14:05:07,23.34309959411621 +2021-01-09 14:14:55,23.298799514770508 +2021-01-09 14:24:43,23.298799514770508 +2021-01-09 14:34:31,23.34309959411621 +2021-01-09 14:44:18,23.34309959411621 +2021-01-09 14:54:06,23.298799514770508 +2021-01-09 15:03:54,23.34309959411621 +2021-01-09 15:13:42,23.298799514770508 +2021-01-09 15:23:29,23.34309959411621 +2021-01-09 15:33:17,23.34309959411621 +2021-01-09 15:43:05,23.298799514770508 +2021-01-09 15:52:53,23.298799514770508 +2021-01-09 16:02:41,23.298799514770508 +2021-01-09 16:12:28,23.298799514770508 +2021-01-09 16:22:16,23.298799514770508 +2021-01-09 16:32:04,23.298799514770508 +2021-01-09 16:41:52,23.38739967346192 +2021-01-09 16:51:40,23.340999603271484 +2021-01-09 17:01:28,23.298799514770508 +2021-01-09 17:11:16,23.34309959411621 +2021-01-09 17:21:03,23.34309959411621 +2021-01-09 17:30:51,23.34309959411621 +2021-01-09 17:40:39,23.298799514770508 +2021-01-09 17:50:27,23.298799514770508 +2021-01-09 18:00:15,23.254600524902344 +2021-01-09 18:10:03,23.298799514770508 +2021-01-09 18:19:51,23.254600524902344 +2021-01-09 18:29:39,23.298799514770508 +2021-01-09 18:39:27,23.34309959411621 +2021-01-09 18:49:14,23.254600524902344 +2021-01-09 18:59:02,23.298799514770508 +2021-01-09 19:08:50,23.298799514770508 +2021-01-09 19:18:37,23.298799514770508 +2021-01-09 19:28:25,23.34309959411621 +2021-01-09 19:38:13,23.254600524902344 +2021-01-09 19:48:01,23.345199584960938 +2021-01-09 19:57:49,23.254600524902344 +2021-01-09 20:07:37,23.34309959411621 +2021-01-09 20:17:25,23.34309959411621 +2021-01-09 20:27:13,23.298799514770508 +2021-01-09 20:37:00,23.298799514770508 +2021-01-09 20:46:48,23.254600524902344 +2021-01-09 20:56:36,23.34309959411621 +2021-01-09 21:06:24,23.34309959411621 +2021-01-09 21:16:12,23.298799514770508 +2021-01-09 21:26:00,23.298799514770508 +2021-01-09 21:35:48,23.298799514770508 +2021-01-09 21:45:36,23.298799514770508 +2021-01-09 21:55:23,23.38739967346192 +2021-01-09 22:05:11,23.431900024414062 +2021-01-09 22:14:59,23.431900024414062 +2021-01-09 22:24:47,23.431900024414062 +2021-01-09 22:34:35,23.431900024414062 +2021-01-09 22:44:23,23.43400001525879 +2021-01-09 22:54:11,23.431900024414062 +2021-01-09 23:03:58,23.43400001525879 +2021-01-09 23:13:46,23.431900024414062 +2021-01-09 23:23:34,23.431900024414062 +2021-01-09 23:33:22,23.431900024414062 +2021-01-09 23:43:09,23.431900024414062 +2021-01-09 23:52:57,23.431900024414062 +2021-01-10 00:02:45,23.43400001525879 +2021-01-10 00:12:33,23.431900024414062 +2021-01-10 00:22:21,23.431900024414062 +2021-01-10 00:32:09,23.56559944152832 +2021-01-10 00:41:57,23.43400001525879 +2021-01-10 00:51:44,23.431900024414062 +2021-01-10 01:01:32,23.431900024414062 +2021-01-10 01:11:20,23.431900024414062 +2021-01-10 01:21:08,23.431900024414062 +2021-01-10 01:30:56,23.431900024414062 +2021-01-10 01:40:44,23.47640037536621 +2021-01-10 01:50:32,23.431900024414062 +2021-01-10 02:00:19,23.43400001525879 +2021-01-10 02:10:07,23.431900024414062 +2021-01-10 02:19:55,23.52090072631836 +2021-01-10 02:29:43,23.431900024414062 +2021-01-10 02:39:31,23.431900024414062 +2021-01-10 02:49:19,23.431900024414062 +2021-01-10 02:59:07,23.431900024414062 +2021-01-10 03:08:55,23.431900024414062 +2021-01-10 03:18:43,23.38739967346192 +2021-01-10 03:28:31,23.431900024414062 +2021-01-10 03:38:19,23.431900024414062 +2021-01-10 03:48:07,23.431900024414062 +2021-01-10 03:57:55,23.431900024414062 +2021-01-10 04:07:43,23.431900024414062 +2021-01-10 04:17:31,23.431900024414062 +2021-01-10 04:27:19,23.43400001525879 +2021-01-10 04:37:07,23.431900024414062 +2021-01-10 04:46:55,23.431900024414062 +2021-01-10 04:56:43,23.431900024414062 +2021-01-10 05:06:31,23.56559944152832 +2021-01-10 05:16:18,23.38739967346192 +2021-01-10 05:26:06,23.47640037536621 +2021-01-10 05:35:54,23.47640037536621 +2021-01-10 05:45:42,23.38739967346192 +2021-01-10 05:55:30,23.38739967346192 +2021-01-10 06:05:18,23.431900024414062 +2021-01-10 06:15:06,23.47640037536621 +2021-01-10 06:24:54,23.431900024414062 +2021-01-10 06:34:42,23.38739967346192 +2021-01-10 06:44:30,23.38739967346192 +2021-01-10 06:54:18,23.431900024414062 +2021-01-10 07:04:06,23.431900024414062 +2021-01-10 07:13:54,23.431900024414062 +2021-01-10 07:23:42,23.38949966430664 +2021-01-10 07:33:30,23.38739967346192 +2021-01-10 07:43:18,23.431900024414062 +2021-01-10 07:53:06,23.56559944152832 +2021-01-10 08:02:53,23.56559944152832 +2021-01-10 08:12:41,23.52090072631836 +2021-01-10 08:22:29,23.56559944152832 +2021-01-10 08:32:18,23.61240005493164 +2021-01-10 08:42:11,23.56559944152832 +2021-01-10 08:51:59,23.56559944152832 +2021-01-10 09:01:47,23.56559944152832 +2021-01-10 09:11:35,23.56559944152832 +2021-01-10 09:21:23,23.56559944152832 +2021-01-10 09:31:10,23.56559944152832 +2021-01-10 09:40:58,23.523099899291992 +2021-01-10 09:50:46,23.56559944152832 +2021-01-10 10:00:34,23.56559944152832 +2021-01-10 10:10:22,23.56559944152832 +2021-01-10 10:20:10,23.56559944152832 +2021-01-10 10:29:57,23.56559944152832 +2021-01-10 10:39:45,23.56559944152832 +2021-01-10 10:49:33,23.52090072631836 +2021-01-10 10:59:21,23.56559944152832 +2021-01-10 11:09:09,23.65719985961914 +2021-01-10 11:18:57,23.56559944152832 +2021-01-10 11:28:45,23.523099899291992 +2021-01-10 11:38:33,23.56559944152832 +2021-01-10 11:48:21,23.56559944152832 +2021-01-10 11:58:09,23.56559944152832 +2021-01-10 12:07:57,23.56559944152832 +2021-01-10 12:17:45,23.56559944152832 +2021-01-10 12:27:33,23.567699432373047 +2021-01-10 12:37:20,23.56559944152832 +2021-01-10 12:47:08,23.56559944152832 +2021-01-10 12:56:56,23.61030006408692 +2021-01-10 13:06:44,23.700000762939453 +2021-01-10 13:16:32,23.56559944152832 +2021-01-10 13:26:20,23.567699432373047 +2021-01-10 13:36:08,23.56559944152832 +2021-01-10 13:45:56,23.56559944152832 +2021-01-10 13:55:44,23.61030006408692 +2021-01-10 14:05:31,23.56559944152832 +2021-01-10 14:15:19,23.56559944152832 +2021-01-10 14:25:07,23.56559944152832 +2021-01-10 14:34:55,23.56559944152832 +2021-01-10 14:44:43,23.567699432373047 +2021-01-10 14:54:31,23.61030006408692 +2021-01-10 15:04:19,23.65719985961914 +2021-01-10 15:14:07,23.61030006408692 +2021-01-10 15:23:55,23.65509986877441 +2021-01-10 15:33:43,23.65509986877441 +2021-01-10 15:43:31,23.61030006408692 +2021-01-10 15:53:19,23.65509986877441 +2021-01-10 16:03:07,23.56559944152832 +2021-01-10 16:12:55,23.567699432373047 +2021-01-10 16:22:43,23.56559944152832 +2021-01-10 16:32:31,23.56559944152832 +2021-01-10 16:42:19,23.56559944152832 +2021-01-10 16:52:07,23.700000762939453 +2021-01-10 17:01:55,23.835100173950195 +2021-01-10 17:11:42,23.790000915527344 +2021-01-10 17:21:30,23.74489974975586 +2021-01-10 17:31:19,23.74489974975586 +2021-01-10 17:41:12,23.70210075378418 +2021-01-10 17:51:00,23.835100173950195 +2021-01-10 18:00:48,23.74489974975586 +2021-01-10 18:10:36,23.74489974975586 +2021-01-10 18:20:24,23.790000915527344 +2021-01-10 18:30:12,23.700000762939453 +2021-01-10 18:40:00,23.790000915527344 +2021-01-10 18:49:48,23.74489974975586 +2021-01-10 18:59:36,23.700000762939453 +2021-01-10 19:09:24,23.700000762939453 +2021-01-10 19:19:12,23.700000762939453 +2021-01-10 19:29:00,23.74489974975586 +2021-01-10 19:38:48,23.835100173950195 +2021-01-10 19:48:36,23.74489974975586 +2021-01-10 19:58:24,23.790000915527344 +2021-01-10 20:08:12,23.74489974975586 +2021-01-10 20:18:00,23.74489974975586 +2021-01-10 20:27:47,23.700000762939453 +2021-01-10 20:37:35,23.79210090637207 +2021-01-10 20:47:23,23.74489974975586 +2021-01-10 20:57:11,23.790000915527344 +2021-01-10 21:06:59,23.835100173950195 +2021-01-10 21:16:47,23.74489974975586 +2021-01-10 21:26:35,23.835100173950195 +2021-01-10 21:36:23,23.790000915527344 +2021-01-10 21:46:11,23.700000762939453 +2021-01-10 21:55:59,23.74489974975586 +2021-01-10 22:05:47,23.70210075378418 +2021-01-10 22:15:35,23.70210075378418 +2021-01-10 22:25:23,23.790000915527344 +2021-01-10 22:35:11,23.74489974975586 +2021-01-10 22:44:58,23.835100173950195 +2021-01-10 22:54:46,23.742799758911133 +2021-01-10 23:04:34,23.835100173950195 +2021-01-10 23:14:22,23.790000915527344 +2021-01-10 23:24:10,23.79210090637207 +2021-01-10 23:33:58,23.65719985961914 +2021-01-10 23:43:46,23.700000762939453 +2021-01-10 23:53:34,23.74489974975586 +2021-01-11 00:03:22,23.835100173950195 +2021-01-11 00:13:10,23.700000762939453 +2021-01-11 00:22:58,23.74489974975586 +2021-01-11 00:32:45,23.74489974975586 +2021-01-11 00:42:33,23.700000762939453 +2021-01-11 00:52:21,23.74489974975586 +2021-01-11 01:02:09,23.74489974975586 +2021-01-11 01:11:57,23.74489974975586 +2021-01-11 01:21:45,23.700000762939453 +2021-01-11 01:31:33,23.835100173950195 +2021-01-11 01:41:21,23.700000762939453 +2021-01-11 01:51:09,23.835100173950195 +2021-01-11 02:00:57,23.79210090637207 +2021-01-11 02:10:45,23.74489974975586 +2021-01-11 02:20:33,23.835100173950195 +2021-01-11 02:30:21,23.700000762939453 +2021-01-11 02:40:09,23.747100830078125 +2021-01-11 02:49:57,23.74489974975586 +2021-01-11 02:59:45,23.74489974975586 +2021-01-11 03:09:32,23.835100173950195 +2021-01-11 03:19:20,23.74489974975586 +2021-01-11 03:29:08,23.835100173950195 +2021-01-11 03:38:56,23.700000762939453 +2021-01-11 03:48:44,23.790000915527344 +2021-01-11 03:58:32,23.74489974975586 +2021-01-11 04:08:20,23.700000762939453 +2021-01-11 04:18:08,23.700000762939453 +2021-01-11 04:27:56,23.74489974975586 +2021-01-11 04:37:44,23.700000762939453 +2021-01-11 04:47:32,23.790000915527344 +2021-01-11 04:57:19,23.700000762939453 +2021-01-11 05:07:07,23.74489974975586 +2021-01-11 05:16:55,23.700000762939453 +2021-01-11 05:26:43,23.74489974975586 +2021-01-11 05:36:31,23.700000762939453 +2021-01-11 05:46:19,23.747100830078125 +2021-01-11 05:56:07,23.700000762939453 +2021-01-11 06:05:55,23.700000762939453 +2021-01-11 06:15:43,23.790000915527344 +2021-01-11 06:25:31,23.700000762939453 +2021-01-11 06:35:19,23.700000762939453 +2021-01-11 06:45:07,23.70210075378418 +2021-01-11 06:54:55,23.880199432373047 +2021-01-11 07:04:43,23.835100173950195 +2021-01-11 07:14:31,23.880199432373047 +2021-01-11 07:24:19,23.880199432373047 +2021-01-11 07:34:06,23.925500869750977 +2021-01-11 07:43:54,23.880199432373047 +2021-01-11 07:53:42,23.925500869750977 +2021-01-11 08:03:30,23.925500869750977 +2021-01-11 08:13:18,23.925500869750977 +2021-01-11 08:23:06,23.925500869750977 +2021-01-11 08:32:54,23.880199432373047 +2021-01-11 08:42:42,23.925500869750977 +2021-01-11 08:52:29,23.835100173950195 +2021-01-11 09:02:17,23.83720016479492 +2021-01-11 09:12:05,23.882400512695312 +2021-01-11 09:21:53,23.925500869750977 +2021-01-11 09:31:41,23.880199432373047 +2021-01-11 09:41:29,23.880199432373047 +2021-01-11 09:51:16,23.925500869750977 +2021-01-11 10:01:04,23.925500869750977 +2021-01-11 10:10:52,23.835100173950195 +2021-01-11 10:20:40,23.880199432373047 +2021-01-11 10:30:28,23.925500869750977 +2021-01-11 10:40:16,23.880199432373047 +2021-01-11 10:50:03,23.880199432373047 +2021-01-11 10:59:51,23.835100173950195 +2021-01-11 11:09:39,23.835100173950195 +2021-01-11 11:19:27,23.925500869750977 +2021-01-11 11:29:15,23.880199432373047 +2021-01-11 11:39:03,23.880199432373047 +2021-01-11 11:48:51,23.925500869750977 +2021-01-11 11:58:39,23.880199432373047 +2021-01-11 12:08:27,23.835100173950195 +2021-01-11 12:18:15,23.835100173950195 +2021-01-11 12:28:02,23.925500869750977 +2021-01-11 12:37:50,23.880199432373047 +2021-01-11 12:47:38,23.880199432373047 +2021-01-11 12:57:26,23.925500869750977 +2021-01-11 13:07:14,23.925500869750977 +2021-01-11 13:17:02,23.880199432373047 +2021-01-11 13:26:50,23.925500869750977 +2021-01-11 13:36:38,24.059600830078125 +2021-01-11 13:46:26,23.925500869750977 +2021-01-11 13:56:13,23.882400512695312 +2021-01-11 14:06:01,23.880199432373047 +2021-01-11 14:15:49,24.063899993896484 +2021-01-11 14:25:37,24.06170082092285 +2021-01-11 14:35:25,24.06170082092285 +2021-01-11 14:45:13,24.06170082092285 +2021-01-11 14:55:01,24.06170082092285 +2021-01-11 15:04:48,24.06170082092285 +2021-01-11 15:14:36,23.97080039978028 +2021-01-11 15:24:24,24.06170082092285 +2021-01-11 15:34:12,24.06170082092285 +2021-01-11 15:44:00,24.06170082092285 +2021-01-11 15:53:48,24.06170082092285 +2021-01-11 16:03:36,23.97080039978028 +2021-01-11 16:13:23,24.01619911193848 +2021-01-11 16:23:11,24.06170082092285 +2021-01-11 16:32:59,24.01619911193848 +2021-01-11 16:42:47,24.01619911193848 +2021-01-11 16:52:35,24.01409912109375 +2021-01-11 17:02:23,24.01619911193848 +2021-01-11 17:12:10,24.1072998046875 +2021-01-11 17:21:58,24.06170082092285 +2021-01-11 17:31:46,24.06170082092285 +2021-01-11 17:41:34,24.1072998046875 +2021-01-11 17:51:22,24.01619911193848 +2021-01-11 18:01:10,24.01619911193848 +2021-01-11 18:10:57,24.01619911193848 +2021-01-11 18:20:45,24.06170082092285 +2021-01-11 18:30:33,24.01619911193848 +2021-01-11 18:40:21,24.01619911193848 +2021-01-11 18:50:09,24.06170082092285 +2021-01-11 18:59:56,24.06170082092285 +2021-01-11 19:09:44,24.06170082092285 +2021-01-11 19:19:32,24.06170082092285 +2021-01-11 19:29:20,24.06170082092285 +2021-01-11 19:39:08,24.01619911193848 +2021-01-11 19:48:56,24.06170082092285 +2021-01-11 19:58:43,24.01619911193848 +2021-01-11 20:08:31,24.06170082092285 +2021-01-11 20:18:19,23.97080039978028 +2021-01-11 20:28:06,24.1072998046875 +2021-01-11 20:37:54,24.06170082092285 +2021-01-11 20:47:42,24.06170082092285 +2021-01-11 20:57:30,24.059600830078125 +2021-01-11 21:07:18,24.1072998046875 +2021-01-11 21:17:05,24.06170082092285 +2021-01-11 21:26:53,24.059600830078125 +2021-01-11 21:36:41,24.06170082092285 +2021-01-11 21:46:29,24.19860076904297 +2021-01-11 21:56:16,24.19860076904297 +2021-01-11 22:06:04,24.19860076904297 +2021-01-11 22:15:52,24.15290069580078 +2021-01-11 22:15:53,24.15290069580078 +2021-01-11 22:25:46,24.15069961547852 +2021-01-11 22:35:34,24.19860076904297 +2021-01-11 22:45:21,24.244400024414062 +2021-01-11 22:55:09,24.19860076904297 +2021-01-11 23:04:57,24.19860076904297 +2021-01-11 23:14:45,24.244400024414062 +2021-01-11 23:24:33,24.19860076904297 +2021-01-11 23:34:21,24.15290069580078 +2021-01-11 23:44:09,24.19650077819824 +2021-01-11 23:53:57,24.1072998046875 +2021-01-12 00:03:44,24.1072998046875 +2021-01-12 00:13:32,24.244400024414062 +2021-01-12 00:23:20,24.19860076904297 +2021-01-12 00:33:08,24.244400024414062 +2021-01-12 00:42:56,24.19860076904297 +2021-01-12 00:53:01,24.24659919738769 +2021-01-12 01:02:52,24.19860076904297 +2021-01-12 01:12:40,24.244400024414062 +2021-01-12 01:22:28,24.1072998046875 +2021-01-12 01:32:16,24.19860076904297 +2021-01-12 01:42:04,24.19860076904297 +2021-01-12 01:51:52,24.19860076904297 +2021-01-12 02:01:40,24.2007999420166 +2021-01-12 02:11:28,24.2007999420166 +2021-01-12 02:21:16,24.19860076904297 +2021-01-12 02:31:03,24.244400024414062 +2021-01-12 02:40:51,24.244400024414062 +2021-01-12 02:50:39,24.19860076904297 +2021-01-12 03:00:27,24.19860076904297 +2021-01-12 03:10:16,24.19860076904297 +2021-01-12 03:20:08,24.15290069580078 +2021-01-12 03:29:56,24.19650077819824 +2021-01-12 03:39:44,24.19860076904297 +2021-01-12 03:49:32,24.19860076904297 +2021-01-12 03:59:20,24.19860076904297 +2021-01-12 04:09:08,24.19650077819824 +2021-01-12 04:18:55,24.19860076904297 +2021-01-12 04:28:43,24.19650077819824 +2021-01-12 04:38:31,24.244400024414062 +2021-01-12 04:48:19,24.19860076904297 +2021-01-12 04:58:07,24.244400024414062 +2021-01-12 05:07:55,24.1072998046875 +2021-01-12 05:17:43,24.19860076904297 +2021-01-12 05:27:31,24.19860076904297 +2021-01-12 05:37:19,24.19860076904297 +2021-01-12 05:47:07,24.19860076904297 +2021-01-12 05:56:54,24.19860076904297 +2021-01-12 06:06:42,24.244400024414062 +2021-01-12 06:16:30,24.19860076904297 +2021-01-12 06:26:18,24.244400024414062 +2021-01-12 06:36:06,24.19860076904297 +2021-01-12 06:45:54,24.15290069580078 +2021-01-12 06:55:42,24.244400024414062 +2021-01-12 07:05:29,24.19860076904297 +2021-01-12 07:15:17,24.19650077819824 +2021-01-12 07:25:05,24.244400024414062 +2021-01-12 07:34:53,24.19860076904297 +2021-01-12 07:44:41,24.19860076904297 +2021-01-12 07:54:29,24.19860076904297 +2021-01-12 08:04:16,24.19860076904297 +2021-01-12 08:14:04,24.19860076904297 +2021-01-12 08:23:52,24.19860076904297 +2021-01-12 08:33:40,24.19860076904297 +2021-01-12 08:43:28,24.19650077819824 +2021-01-12 08:53:16,24.15290069580078 +2021-01-12 09:03:03,24.1072998046875 +2021-01-12 09:12:51,24.19860076904297 +2021-01-12 09:22:39,24.1072998046875 +2021-01-12 09:32:27,24.15290069580078 +2021-01-12 09:42:15,24.19860076904297 +2021-01-12 09:52:02,24.15290069580078 +2021-01-12 10:01:50,24.19860076904297 +2021-01-12 10:11:38,24.244400024414062 +2021-01-12 10:21:26,24.105100631713867 +2021-01-12 10:31:14,24.19860076904297 +2021-01-12 10:41:02,24.19860076904297 +2021-01-12 10:50:50,24.19860076904297 +2021-01-12 11:00:38,24.19860076904297 +2021-01-12 11:10:25,24.19860076904297 +2021-01-12 11:20:13,24.19650077819824 +2021-01-12 11:30:01,24.336299896240234 +2021-01-12 11:39:49,24.29030036926269 +2021-01-12 11:49:37,24.382299423217773 +2021-01-12 11:59:25,24.336299896240234 +2021-01-12 12:09:13,24.336299896240234 +2021-01-12 12:19:01,24.336299896240234 +2021-01-12 12:28:49,24.336299896240234 +2021-01-12 12:38:37,24.336299896240234 +2021-01-12 12:48:25,24.382299423217773 +2021-01-12 12:58:12,24.336299896240234 +2021-01-12 13:08:00,24.336299896240234 +2021-01-12 13:17:48,24.336299896240234 +2021-01-12 13:27:36,24.336299896240234 +2021-01-12 13:37:24,24.38450050354004 +2021-01-12 13:47:12,24.336299896240234 +2021-01-12 13:57:00,24.336299896240234 +2021-01-12 14:06:48,24.382299423217773 +2021-01-12 14:16:36,24.336299896240234 +2021-01-12 14:26:24,24.29030036926269 +2021-01-12 14:36:11,24.336299896240234 +2021-01-12 14:45:59,24.336299896240234 +2021-01-12 14:55:47,24.382299423217773 +2021-01-12 15:05:35,24.29030036926269 +2021-01-12 15:15:23,24.336299896240234 +2021-01-12 15:25:11,24.336299896240234 +2021-01-12 15:34:59,24.336299896240234 +2021-01-12 15:44:47,24.336299896240234 +2021-01-12 15:54:35,24.336299896240234 +2021-01-12 16:04:23,24.29030036926269 +2021-01-12 16:14:10,24.382299423217773 +2021-01-12 16:23:58,24.338499069213867 +2021-01-12 16:33:46,24.382299423217773 +2021-01-12 16:43:34,24.29030036926269 +2021-01-12 16:53:22,24.47459983825684 +2021-01-12 17:03:10,24.42620086669922 +2021-01-12 17:12:58,24.4768009185791 +2021-01-12 17:22:45,24.42840003967285 +2021-01-12 17:32:33,24.47459983825684 +2021-01-12 17:42:21,24.47459983825684 +2021-01-12 17:52:09,24.47459983825684 +2021-01-12 18:01:57,24.42840003967285 +2021-01-12 18:11:45,24.472400665283203 +2021-01-12 18:21:33,24.47459983825684 +2021-01-12 18:31:21,24.47459983825684 +2021-01-12 18:41:09,24.47459983825684 +2021-01-12 18:50:57,24.47459983825684 +2021-01-12 19:00:45,24.47459983825684 +2021-01-12 19:10:32,24.47459983825684 +2021-01-12 19:20:20,24.47459983825684 +2021-01-12 19:30:08,24.47459983825684 +2021-01-12 19:39:56,24.47459983825684 +2021-01-12 19:49:43,24.472400665283203 +2021-01-12 19:59:31,24.47459983825684 +2021-01-12 20:09:19,24.42840003967285 +2021-01-12 20:19:07,24.47459983825684 +2021-01-12 20:28:55,24.47459983825684 +2021-01-12 20:38:43,24.47459983825684 +2021-01-12 20:48:30,24.56719970703125 +2021-01-12 20:58:18,24.61590003967285 +2021-01-12 21:08:06,24.61359977722168 +2021-01-12 21:17:54,24.56719970703125 +2021-01-12 21:27:42,24.660200119018555 +2021-01-12 21:37:30,24.660200119018555 +2021-01-12 21:47:18,24.56719970703125 +2021-01-12 21:57:06,24.61359977722168 +2021-01-12 22:06:54,24.61590003967285 +2021-01-12 22:16:41,24.56940078735352 +2021-01-12 22:26:29,24.61359977722168 +2021-01-12 22:36:17,24.61359977722168 +2021-01-12 22:46:05,24.61359977722168 +2021-01-12 22:55:53,24.61359977722168 +2021-01-12 23:05:40,24.61590003967285 +2021-01-12 23:15:28,24.61359977722168 +2021-01-12 23:25:16,24.660200119018555 +2021-01-12 23:35:04,24.61359977722168 +2021-01-12 23:44:51,24.61359977722168 +2021-01-12 23:54:39,24.56719970703125 +2021-01-13 00:04:27,24.61359977722168 +2021-01-13 00:14:15,24.61359977722168 +2021-01-13 00:24:03,24.61359977722168 +2021-01-13 00:33:51,24.61359977722168 +2021-01-13 00:43:39,24.61359977722168 +2021-01-13 00:53:27,24.662399291992188 +2021-01-13 01:03:14,24.56719970703125 +2021-01-13 01:13:02,24.660200119018555 +2021-01-13 01:22:50,24.61359977722168 +2021-01-13 01:32:38,24.61359977722168 +2021-01-13 01:42:26,24.61359977722168 +2021-01-13 01:52:14,24.61359977722168 +2021-01-13 02:02:02,24.61359977722168 +2021-01-13 02:11:49,24.753400802612305 +2021-01-13 02:21:37,24.753400802612305 +2021-01-13 02:31:25,24.753400802612305 +2021-01-13 02:41:13,24.755699157714844 +2021-01-13 02:51:01,24.70680046081543 +2021-01-13 03:00:49,24.753400802612305 +2021-01-13 03:10:36,24.753400802612305 +2021-01-13 03:20:24,24.753400802612305 +2021-01-13 03:30:12,24.70680046081543 +2021-01-13 03:40:00,24.753400802612305 +2021-01-13 03:49:48,24.708999633789062 +2021-01-13 03:59:36,24.755699157714844 +2021-01-13 04:09:23,24.89620018005371 +2021-01-13 04:19:11,24.89389991760254 +2021-01-13 04:28:59,24.849300384521484 +2021-01-13 04:38:47,24.89389991760254 +2021-01-13 04:48:35,24.89389991760254 +2021-01-13 04:58:23,24.847000122070312 +2021-01-13 05:08:11,24.89389991760254 +2021-01-13 05:17:58,24.89389991760254 +2021-01-13 05:27:46,24.89389991760254 +2021-01-13 05:37:34,24.89389991760254 +2021-01-13 05:47:22,24.89389991760254 +2021-01-13 05:57:10,24.80240058898925 +2021-01-13 06:06:58,24.99029922485352 +2021-01-13 06:16:46,24.988000869750977 +2021-01-13 06:26:34,24.988000869750977 +2021-01-13 06:36:21,24.988000869750977 +2021-01-13 06:46:09,24.943199157714844 +2021-01-13 06:55:57,24.99029922485352 +2021-01-13 07:05:45,24.988000869750977 +2021-01-13 07:15:32,24.988000869750977 +2021-01-13 07:25:20,24.988000869750977 +2021-01-13 07:35:08,24.988000869750977 +2021-01-13 07:44:55,24.988000869750977 +2021-01-13 07:54:43,24.943199157714844 +2021-01-13 08:04:31,24.940900802612305 +2021-01-13 08:14:19,25.12980079650879 +2021-01-13 08:24:06,25.12980079650879 +2021-01-13 08:33:54,25.131999969482425 +2021-01-13 08:43:42,25.12980079650879 +2021-01-13 08:53:30,25.131999969482425 +2021-01-13 09:03:17,25.12980079650879 +2021-01-13 09:13:05,25.12980079650879 +2021-01-13 09:22:53,25.131999969482425 +2021-01-13 09:32:41,25.12980079650879 +2021-01-13 09:42:29,25.131999969482425 +2021-01-13 09:52:17,25.12980079650879 +2021-01-13 10:02:05,25.12980079650879 +2021-01-13 10:11:53,25.131999969482425 +2021-01-13 10:21:40,25.131999969482425 +2021-01-13 10:31:28,25.12980079650879 +2021-01-13 10:41:16,25.17720031738281 +2021-01-13 10:51:04,25.12980079650879 +2021-01-13 11:00:52,25.131999969482425 +2021-01-13 11:10:40,25.131999969482425 +2021-01-13 11:20:28,25.131999969482425 +2021-01-13 11:30:16,25.12980079650879 +2021-01-13 11:40:04,25.12980079650879 +2021-01-13 11:49:52,25.12980079650879 +2021-01-13 11:59:40,25.131999969482425 +2021-01-13 12:09:28,25.131999969482425 +2021-01-13 12:19:16,25.27449989318848 +2021-01-13 12:29:03,25.22699928283692 +2021-01-13 12:38:51,25.27449989318848 +2021-01-13 12:48:39,25.272300720214844 +2021-01-13 12:58:27,25.322200775146484 +2021-01-13 13:08:15,25.27449989318848 +2021-01-13 13:18:03,25.272300720214844 +2021-01-13 13:27:51,25.22699928283692 +2021-01-13 13:37:39,25.22699928283692 +2021-01-13 13:47:27,25.272300720214844 +2021-01-13 13:57:15,25.272300720214844 +2021-01-13 14:07:02,25.27449989318848 +2021-01-13 14:16:50,25.27449989318848 +2021-01-13 14:26:38,25.3700008392334 +2021-01-13 14:36:26,25.367700576782227 +2021-01-13 14:46:14,25.367700576782227 +2021-01-13 14:56:02,25.367700576782227 +2021-01-13 15:05:50,25.41550064086914 +2021-01-13 15:15:38,25.3700008392334 +2021-01-13 15:25:26,25.417800903320312 +2021-01-13 15:35:13,25.417800903320312 +2021-01-13 15:45:01,25.3700008392334 +2021-01-13 15:54:49,25.417800903320312 +2021-01-13 16:04:37,25.417800903320312 +2021-01-13 16:14:25,25.367700576782227 +2021-01-13 16:24:13,25.3700008392334 +2021-01-13 16:34:00,25.3700008392334 +2021-01-13 16:43:48,25.41550064086914 +2021-01-13 16:53:36,25.3700008392334 +2021-01-13 17:03:24,25.511499404907227 +2021-01-13 17:13:11,25.511499404907227 +2021-01-13 17:22:59,25.511499404907227 +2021-01-13 17:32:47,25.5137996673584 +2021-01-13 17:42:35,25.511499404907227 +2021-01-13 17:52:23,25.5137996673584 +2021-01-13 18:02:11,25.511499404907227 +2021-01-13 18:11:59,25.511499404907227 +2021-01-13 18:21:46,25.559600830078125 +2021-01-13 18:31:34,25.511499404907227 +2021-01-13 18:41:22,25.5137996673584 +2021-01-13 18:51:10,25.55730056762696 +2021-01-13 19:00:57,25.511499404907227 +2021-01-13 19:10:45,25.5137996673584 +2021-01-13 19:20:33,25.511499404907227 +2021-01-13 19:30:21,25.5137996673584 +2021-01-13 19:40:09,25.511499404907227 +2021-01-13 19:49:56,25.559600830078125 +2021-01-13 19:59:44,25.511499404907227 +2021-01-13 20:09:32,25.511499404907227 +2021-01-13 20:19:20,25.511499404907227 +2021-01-13 20:29:07,25.511499404907227 +2021-01-13 20:38:55,25.5137996673584 +2021-01-13 20:48:43,25.559600830078125 +2021-01-13 20:58:31,25.511499404907227 +2021-01-13 21:08:19,25.559600830078125 +2021-01-13 21:18:07,25.559600830078125 +2021-01-13 21:27:55,25.5137996673584 +2021-01-13 21:37:43,25.511499404907227 +2021-01-13 21:47:31,25.463499069213867 +2021-01-13 21:57:19,25.511499404907227 +2021-01-13 22:07:07,25.511499404907227 +2021-01-13 22:16:54,25.511499404907227 +2021-01-13 22:26:42,25.5137996673584 +2021-01-13 22:36:30,25.6560001373291 +2021-01-13 22:46:18,25.65830039978028 +2021-01-13 22:56:06,25.70439910888672 +2021-01-13 23:05:53,25.60770034790039 +2021-01-13 23:15:41,25.65830039978028 +2021-01-13 23:25:29,25.6560001373291 +2021-01-13 23:35:17,25.6560001373291 +2021-01-13 23:45:04,25.70439910888672 +2021-01-13 23:54:52,25.6560001373291 +2021-01-14 00:04:39,25.6560001373291 +2021-01-14 00:14:27,25.65830039978028 +2021-01-14 00:24:15,25.6560001373291 +2021-01-14 00:34:02,25.70439910888672 +2021-01-14 00:43:50,25.65830039978028 +2021-01-14 00:53:38,25.70439910888672 +2021-01-14 01:03:25,25.70439910888672 +2021-01-14 01:13:13,25.65830039978028 +2021-01-14 01:23:01,25.6560001373291 +2021-01-14 01:32:48,25.6560001373291 +2021-01-14 01:42:36,25.6560001373291 +2021-01-14 01:52:24,25.801300048828125 +2021-01-14 02:02:12,25.803699493408203 +2021-01-14 02:11:59,25.801300048828125 +2021-01-14 02:21:47,25.801300048828125 +2021-01-14 02:31:35,25.801300048828125 +2021-01-14 02:41:23,25.801300048828125 +2021-01-14 02:51:11,25.801300048828125 +2021-01-14 03:00:58,25.801300048828125 +2021-01-14 03:10:46,25.75279998779297 +2021-01-14 03:20:34,25.801300048828125 +2021-01-14 03:30:22,25.801300048828125 +2021-01-14 03:40:10,25.75279998779297 +2021-01-14 03:49:57,25.803699493408203 +2021-01-14 03:59:45,25.801300048828125 +2021-01-14 04:09:33,25.803699493408203 +2021-01-14 04:19:21,25.803699493408203 +2021-01-14 04:29:09,25.803699493408203 +2021-01-14 04:38:57,25.8523006439209 +2021-01-14 04:48:45,25.803699493408203 +2021-01-14 04:58:33,25.801300048828125 +2021-01-14 05:08:21,25.801300048828125 +2021-01-14 05:18:08,25.801300048828125 +2021-01-14 05:27:56,25.94750022888184 +2021-01-14 05:37:44,25.94750022888184 +2021-01-14 05:47:32,25.898700714111328 +2021-01-14 05:57:20,25.949800491333008 +2021-01-14 06:07:08,25.996400833129883 +2021-01-14 06:16:55,25.996400833129883 +2021-01-14 06:26:43,25.898700714111328 +2021-01-14 06:36:31,25.949800491333008 +2021-01-14 06:46:19,25.949800491333008 +2021-01-14 06:56:07,25.94750022888184 +2021-01-14 07:05:55,25.996400833129883 +2021-01-14 07:15:43,177.4011993408203 +2021-01-14 07:25:30,25.998699188232425 +2021-01-14 07:35:18,25.94750022888184 +2021-01-14 07:45:06,25.996400833129883 +2021-01-14 07:54:54,25.94750022888184 +2021-01-14 08:04:42,25.898700714111328 +2021-01-14 08:14:30,25.900999069213867 +2021-01-14 08:24:17,25.996400833129883 +2021-01-14 08:34:05,25.949800491333008 +2021-01-14 08:43:53,25.898700714111328 +2021-01-14 08:53:41,25.898700714111328 +2021-01-14 09:03:29,25.998699188232425 +2021-01-14 09:13:17,25.8523006439209 +2021-01-14 09:23:04,25.998699188232425 +2021-01-14 09:32:52,25.949800491333008 +2021-01-14 09:42:40,25.900999069213867 +2021-01-14 09:52:28,25.900999069213867 +2021-01-14 10:02:15,25.94750022888184 +2021-01-14 10:12:03,25.898700714111328 +2021-01-14 10:21:51,25.998699188232425 +2021-01-14 10:31:39,25.900999069213867 +2021-01-14 10:41:26,25.998699188232425 +2021-01-14 10:51:14,25.949800491333008 +2021-01-14 11:01:02,25.998699188232425 +2021-01-14 11:10:50,25.949800491333008 +2021-01-14 11:20:38,25.949800491333008 +2021-01-14 11:30:26,25.996400833129883 +2021-01-14 11:40:13,25.900999069213867 +2021-01-14 11:50:01,25.996400833129883 +2021-01-14 11:59:49,25.998699188232425 +2021-01-14 12:09:37,175.6842041015625 +2021-01-14 12:19:25,25.8523006439209 +2021-01-14 12:29:12,25.900999069213867 +2021-01-14 12:39:00,25.850000381469727 +2021-01-14 12:48:48,25.898700714111328 +2021-01-14 12:58:36,25.898700714111328 +2021-01-14 13:08:23,25.949800491333008 +2021-01-14 13:18:11,25.998699188232425 +2021-01-14 13:27:59,25.900999069213867 +2021-01-14 13:37:47,25.949800491333008 +2021-01-14 13:47:35,25.998699188232425 +2021-01-14 13:57:22,25.94750022888184 +2021-01-14 14:07:10,25.949800491333008 +2021-01-14 14:16:58,177.41720581054688 +2021-01-14 14:26:46,177.4011993408203 +2021-01-14 14:36:34,177.41720581054688 +2021-01-14 14:46:21,26.14349937438965 +2021-01-14 14:56:09,177.41720581054688 +2021-01-14 15:05:57,26.045299530029297 +2021-01-14 15:15:45,177.4011993408203 +2021-01-14 15:25:33,26.047700881958008 +2021-01-14 15:35:20,25.949800491333008 +2021-01-14 15:45:08,26.09670066833496 +2021-01-14 15:54:56,25.998699188232425 +2021-01-14 16:04:44,26.09440040588379 +2021-01-14 16:14:32,26.09670066833496 +2021-01-14 16:24:20,26.09670066833496 +2021-01-14 16:34:07,26.09670066833496 +2021-01-14 16:43:55,26.09440040588379 +2021-01-14 16:53:43,177.41720581054688 +2021-01-14 17:03:31,177.41720581054688 +2021-01-14 17:13:19,177.41720581054688 +2021-01-14 17:23:07,179.16200256347656 +2021-01-14 17:32:54,25.996400833129883 +2021-01-14 17:42:42,26.047700881958008 +2021-01-14 17:52:30,26.047700881958008 +2021-01-14 18:02:18,26.09670066833496 +2021-01-14 18:12:06,26.09670066833496 +2021-01-14 18:21:53,26.047700881958008 +2021-01-14 18:31:41,26.047700881958008 +2021-01-14 18:41:29,177.41720581054688 +2021-01-14 18:51:17,26.192800521850582 +2021-01-14 19:01:04,26.195199966430664 +2021-01-14 19:10:52,177.41720581054688 +2021-01-14 19:20:40,26.24449920654297 +2021-01-14 19:30:28,177.41720581054688 +2021-01-14 19:40:16,177.41720581054688 +2021-01-14 19:50:04,26.195199966430664 +2021-01-14 19:59:51,26.192800521850582 +2021-01-14 20:09:39,26.24209976196289 +2021-01-14 20:19:27,177.41720581054688 +2021-01-14 20:29:15,177.4011993408203 +2021-01-14 20:39:03,177.4011993408203 +2021-01-14 20:48:51,26.24449920654297 +2021-01-14 20:58:38,26.192800521850582 +2021-01-14 21:08:26,177.4011993408203 +2021-01-14 21:18:14,177.41720581054688 +2021-01-14 21:28:01,177.41720581054688 +2021-01-14 21:37:49,177.4011993408203 +2021-01-14 21:47:37,26.39310073852539 +2021-01-14 21:57:25,26.29150009155273 +2021-01-14 22:07:13,26.34339904785156 +2021-01-14 22:17:01,177.4011993408203 +2021-01-14 22:26:48,177.4011993408203 +2021-01-14 22:36:36,177.41720581054688 +2021-01-14 22:46:24,26.39310073852539 +2021-01-14 22:56:12,26.39069938659668 +2021-01-14 23:06:00,177.41720581054688 +2021-01-14 23:15:48,177.41720581054688 +2021-01-14 23:25:35,179.16200256347656 +2021-01-14 23:35:23,177.4011993408203 +2021-01-14 23:45:11,177.41720581054688 +2021-01-14 23:54:59,26.39310073852539 +2021-01-15 00:04:47,177.41720581054688 +2021-01-15 00:14:35,177.4011993408203 +2021-01-15 00:24:22,26.39310073852539 +2021-01-15 00:34:10,177.41720581054688 +2021-01-15 00:43:58,179.17820739746094 +2021-01-15 00:53:46,26.29389953613281 +2021-01-15 01:03:34,26.24209976196289 +2021-01-15 01:13:22,177.41720581054688 +2021-01-15 01:23:09,26.34339904785156 +2021-01-15 01:32:57,26.34339904785156 +2021-01-15 01:42:45,26.39310073852539 +2021-01-15 01:52:33,26.341100692749023 +2021-01-15 02:02:21,26.29389953613281 +2021-01-15 02:12:09,177.4011993408203 +2021-01-15 02:21:57,26.34339904785156 +2021-01-15 02:31:44,26.29389953613281 +2021-01-15 02:41:32,26.39069938659668 +2021-01-15 02:51:20,26.39069938659668 +2021-01-15 03:01:08,26.29389953613281 +2021-01-15 03:10:56,26.29150009155273 +2021-01-15 03:20:44,26.39310073852539 +2021-01-15 03:30:32,177.41720581054688 +2021-01-15 03:40:19,26.341100692749023 +2021-01-15 03:50:07,26.440399169921875 +2021-01-15 03:59:55,26.440399169921875 +2021-01-15 04:09:43,26.442800521850582 +2021-01-15 04:19:31,177.41720581054688 +2021-01-15 04:29:18,26.49020004272461 +2021-01-15 04:39:06,26.442800521850582 +2021-01-15 04:48:54,177.41720581054688 +2021-01-15 04:58:42,177.41720581054688 +2021-01-15 05:08:30,177.41720581054688 +2021-01-15 05:18:18,26.49250030517578 +2021-01-15 05:28:05,177.41720581054688 +2021-01-15 05:37:53,26.49250030517578 +2021-01-15 05:47:41,26.442800521850582 +2021-01-15 05:57:28,26.49020004272461 +2021-01-15 06:07:16,26.49250030517578 +2021-01-15 06:17:04,177.4011993408203 +2021-01-15 06:26:51,26.49250030517578 +2021-01-15 06:36:39,26.49250030517578 +2021-01-15 06:46:27,26.64249992370605 +2021-01-15 06:56:14,26.64249992370605 +2021-01-15 07:06:02,177.41720581054688 +2021-01-15 07:15:50,26.692699432373047 +2021-01-15 07:25:38,26.64249992370605 +2021-01-15 07:35:26,175.6842041015625 +2021-01-15 07:45:13,177.4011993408203 +2021-01-15 07:55:01,26.640100479125977 +2021-01-15 08:04:49,26.64249992370605 +2021-01-15 08:14:37,26.64249992370605 +2021-01-15 08:24:24,26.64249992370605 +2021-01-15 08:34:12,26.640100479125977 +2021-01-15 08:44:00,177.4011993408203 +2021-01-15 08:53:48,26.64249992370605 +2021-01-15 09:03:36,26.59000015258789 +2021-01-15 09:13:23,26.59000015258789 +2021-01-15 09:23:11,26.64249992370605 +2021-01-15 09:32:59,26.64249992370605 +2021-01-15 09:42:47,26.64249992370605 +2021-01-15 09:52:35,175.6842041015625 +2021-01-15 10:02:22,177.4011993408203 +2021-01-15 10:12:10,26.64249992370605 +2021-01-15 10:21:58,177.41720581054688 +2021-01-15 10:31:46,177.41720581054688 +2021-01-15 10:41:33,177.41720581054688 +2021-01-15 10:51:21,177.41720581054688 +2021-01-15 11:01:09,177.41720581054688 +2021-01-15 11:10:57,177.41720581054688 +2021-01-15 11:20:45,26.7908992767334 +2021-01-15 11:30:33,177.4011993408203 +2021-01-15 11:40:20,26.79330062866211 +2021-01-15 11:50:08,177.41720581054688 +2021-01-15 11:59:56,177.41720581054688 +2021-01-15 12:09:44,26.742900848388672 +2021-01-15 12:19:32,175.6999969482422 +2021-01-15 12:29:19,26.79330062866211 +2021-01-15 12:39:07,26.843700408935547 +2021-01-15 12:48:55,26.692699432373047 +2021-01-15 12:58:43,26.79330062866211 +2021-01-15 13:08:30,26.69029998779297 +2021-01-15 13:18:18,26.64249992370605 +2021-01-15 13:28:06,175.6999969482422 +2021-01-15 13:37:54,26.79330062866211 +2021-01-15 13:47:42,177.41720581054688 +2021-01-15 13:57:29,26.64249992370605 +2021-01-15 14:07:17,177.41720581054688 +2021-01-15 14:17:05,26.742900848388672 +2021-01-15 14:26:53,177.4011993408203 +2021-01-15 14:36:41,26.69029998779297 +2021-01-15 14:46:28,175.6999969482422 +2021-01-15 14:56:16,177.41720581054688 +2021-01-15 15:06:04,26.79330062866211 +2021-01-15 15:15:52,26.692699432373047 +2021-01-15 15:25:40,175.6999969482422 +2021-01-15 15:35:28,26.692699432373047 +2021-01-15 15:45:16,26.843700408935547 +2021-01-15 15:55:04,26.843700408935547 +2021-01-15 16:04:51,26.9424991607666 +2021-01-15 16:14:39,26.843700408935547 +2021-01-15 16:24:27,26.843700408935547 +2021-01-15 16:34:15,26.944900512695312 +2021-01-15 16:44:03,26.944900512695312 +2021-01-15 16:53:51,26.843700408935547 +2021-01-15 17:03:38,26.9424991607666 +2021-01-15 17:13:26,177.41720581054688 +2021-01-15 17:23:14,26.944900512695312 +2021-01-15 17:33:02,177.41720581054688 +2021-01-15 17:42:50,177.4011993408203 +2021-01-15 17:52:38,175.6842041015625 +2021-01-15 18:02:26,26.944900512695312 +2021-01-15 18:12:14,26.944900512695312 +2021-01-15 18:22:01,26.84129905700684 +2021-01-15 18:31:49,175.6999969482422 +2021-01-15 18:41:37,26.89430046081543 +2021-01-15 18:51:25,26.944900512695312 +2021-01-15 19:01:13,26.89430046081543 +2021-01-15 19:11:00,26.9424991607666 +2021-01-15 19:20:48,26.843700408935547 +2021-01-15 19:30:36,26.944900512695312 +2021-01-15 19:40:23,26.89430046081543 +2021-01-15 19:50:11,26.89430046081543 +2021-01-15 19:59:59,26.944900512695312 +2021-01-15 20:09:47,177.41720581054688 +2021-01-15 20:19:34,177.41720581054688 +2021-01-15 20:29:22,26.944900512695312 +2021-01-15 20:39:10,26.944900512695312 +2021-01-15 20:48:58,26.944900512695312 +2021-01-15 20:58:45,26.9424991607666 +2021-01-15 21:08:33,26.9424991607666 +2021-01-15 21:18:21,26.944900512695312 +2021-01-15 21:28:09,26.89430046081543 +2021-01-15 21:37:56,26.9424991607666 +2021-01-15 21:47:44,175.6842041015625 +2021-01-15 21:57:32,177.41720581054688 +2021-01-15 22:07:20,26.944900512695312 +2021-01-15 22:17:08,26.843700408935547 +2021-01-15 22:26:55,26.944900512695312 +2021-01-15 22:36:43,26.944900512695312 +2021-01-15 22:46:31,177.4011993408203 +2021-01-15 22:56:19,177.41720581054688 +2021-01-15 23:06:07,26.944900512695312 +2021-01-15 23:15:55,26.944900512695312 +2021-01-15 23:25:43,175.6999969482422 +2021-01-15 23:35:31,177.41720581054688 +2021-01-15 23:45:19,26.944900512695312 +2021-01-15 23:55:07,26.944900512695312 +2021-01-16 00:04:54,177.41720581054688 +2021-01-16 00:14:42,26.993200302124023 +2021-01-16 00:24:30,177.41720581054688 +2021-01-16 00:34:18,177.41720581054688 +2021-01-16 00:44:06,26.944900512695312 +2021-01-16 00:53:54,177.41720581054688 +2021-01-16 01:03:42,26.89430046081543 +2021-01-16 01:13:29,177.41720581054688 +2021-01-16 01:13:31,177.41720581054688 +2021-01-16 01:23:23,26.843700408935547 +2021-01-16 01:33:11,26.9424991607666 +2021-01-16 01:42:59,26.9424991607666 +2021-01-16 01:52:47,26.89179992675781 +2021-01-16 02:02:34,177.4011993408203 +2021-01-16 02:12:22,179.17820739746094 +2021-01-16 02:22:10,26.89430046081543 +2021-01-16 02:31:58,26.84129905700684 +2021-01-16 02:41:46,26.89430046081543 +2021-01-16 02:51:34,175.6999969482422 +2021-01-16 03:01:22,26.89430046081543 +2021-01-16 03:11:09,26.843700408935547 +2021-01-16 03:20:57,26.843700408935547 +2021-01-16 03:30:45,26.843700408935547 +2021-01-16 03:40:33,175.6999969482422 +2021-01-16 03:50:21,177.41720581054688 +2021-01-16 04:00:09,179.17820739746094 +2021-01-16 04:09:56,179.17820739746094 +2021-01-16 04:19:44,26.84129905700684 +2021-01-16 04:29:32,177.4011993408203 +2021-01-16 04:39:20,177.41720581054688 +2021-01-16 04:49:08,26.89430046081543 +2021-01-16 04:58:55,177.41720581054688 +2021-01-16 05:08:43,177.41720581054688 +2021-01-16 05:18:31,26.843700408935547 +2021-01-16 05:28:19,177.41720581054688 +2021-01-16 05:38:07,177.41720581054688 +2021-01-16 05:47:55,26.843700408935547 +2021-01-16 05:57:42,177.41720581054688 +2021-01-16 06:07:30,177.41720581054688 +2021-01-16 06:17:18,177.4011993408203 +2021-01-16 06:27:06,177.41720581054688 +2021-01-16 06:36:54,26.89430046081543 +2021-01-16 06:46:42,177.41720581054688 +2021-01-16 06:56:29,26.84129905700684 +2021-01-16 07:06:17,177.41720581054688 +2021-01-16 07:16:05,179.17820739746094 +2021-01-16 07:25:53,177.41720581054688 +2021-01-16 07:35:40,177.4011993408203 +2021-01-16 07:45:28,26.843700408935547 +2021-01-16 07:55:16,179.17820739746094 +2021-01-16 08:05:04,26.79330062866211 +2021-01-16 08:14:52,177.41720581054688 +2021-01-16 08:24:40,179.17820739746094 +2021-01-16 08:34:28,26.89430046081543 +2021-01-16 08:44:15,177.4011993408203 +2021-01-16 08:54:03,177.41720581054688 +2021-01-16 09:03:51,26.843700408935547 +2021-01-16 09:13:39,177.41720581054688 +2021-01-16 09:23:27,177.41720581054688 +2021-01-16 09:33:15,177.41720581054688 +2021-01-16 09:43:03,26.89430046081543 +2021-01-16 09:52:50,26.843700408935547 +2021-01-16 10:02:38,177.4011993408203 +2021-01-16 10:12:26,26.89430046081543 +2021-01-16 10:22:14,175.6999969482422 +2021-01-16 10:32:02,177.41720581054688 +2021-01-16 10:41:50,177.41720581054688 +2021-01-16 10:51:38,26.944900512695312 +2021-01-16 11:01:25,177.41720581054688 +2021-01-16 11:11:13,26.89179992675781 +2021-01-16 11:21:01,177.41720581054688 +2021-01-16 11:30:49,26.944900512695312 +2021-01-16 11:40:37,177.41720581054688 +2021-01-16 11:50:25,26.84129905700684 +2021-01-16 12:00:13,177.41720581054688 +2021-01-16 12:10:00,26.944900512695312 +2021-01-16 12:19:48,177.41720581054688 +2021-01-16 12:29:36,26.9424991607666 +2021-01-16 12:39:24,177.41720581054688 +2021-01-16 12:49:12,26.89179992675781 +2021-01-16 12:59:00,26.944900512695312 +2021-01-16 13:08:47,26.944900512695312 +2021-01-16 13:18:35,26.944900512695312 +2021-01-16 13:28:23,175.6842041015625 +2021-01-16 13:38:10,26.944900512695312 +2021-01-16 13:47:58,177.4011993408203 +2021-01-16 13:57:46,26.9955997467041 +2021-01-16 14:07:34,177.41720581054688 +2021-01-16 14:17:21,177.41720581054688 +2021-01-16 14:27:09,177.41720581054688 +2021-01-16 14:36:57,26.89179992675781 +2021-01-16 14:46:45,177.4011993408203 +2021-01-16 14:56:32,177.41720581054688 +2021-01-16 15:06:20,26.944900512695312 +2021-01-16 15:16:08,177.41720581054688 +2021-01-16 15:25:56,26.89179992675781 +2021-01-16 15:35:43,26.944900512695312 +2021-01-16 15:45:31,177.41720581054688 +2021-01-16 15:55:19,26.9424991607666 +2021-01-16 16:05:07,177.41720581054688 +2021-01-16 16:14:55,26.944900512695312 +2021-01-16 16:24:43,177.4011993408203 +2021-01-16 16:34:30,26.944900512695312 +2021-01-16 16:44:18,177.41720581054688 +2021-01-16 16:54:06,26.944900512695312 +2021-01-16 17:03:54,177.41720581054688 +2021-01-16 17:13:42,26.944900512695312 +2021-01-16 17:23:29,26.944900512695312 +2021-01-16 17:33:17,26.944900512695312 +2021-01-16 17:43:05,175.6999969482422 +2021-01-16 17:52:53,177.41720581054688 +2021-01-16 18:02:40,177.4011993408203 +2021-01-16 18:12:28,26.944900512695312 +2021-01-16 18:22:16,177.4011993408203 +2021-01-16 18:32:04,177.4011993408203 +2021-01-16 18:41:52,177.41720581054688 +2021-01-16 18:51:39,26.9424991607666 +2021-01-16 19:01:27,177.41720581054688 +2021-01-16 19:11:15,26.9424991607666 +2021-01-16 19:21:03,177.41720581054688 +2021-01-16 19:30:51,177.41720581054688 +2021-01-16 19:40:39,26.944900512695312 +2021-01-16 19:50:26,177.41720581054688 +2021-01-16 20:00:14,26.89430046081543 +2021-01-16 20:10:02,177.4011993408203 +2021-01-16 20:19:50,26.944900512695312 +2021-01-16 20:29:38,175.6999969482422 +2021-01-16 20:39:25,26.944900512695312 +2021-01-16 20:49:13,175.6999969482422 +2021-01-16 20:59:01,26.944900512695312 +2021-01-16 21:08:49,177.41720581054688 +2021-01-16 21:18:37,26.944900512695312 +2021-01-16 21:28:25,177.4011993408203 +2021-01-16 21:38:12,177.4011993408203 +2021-01-16 21:48:00,26.944900512695312 +2021-01-16 21:57:48,175.6999969482422 +2021-01-16 22:07:36,177.41720581054688 +2021-01-16 22:17:24,177.41720581054688 +2021-01-16 22:27:12,177.41720581054688 +2021-01-16 22:36:59,177.4011993408203 +2021-01-16 22:46:47,26.9955997467041 +2021-01-16 22:56:35,177.41720581054688 +2021-01-16 23:06:23,177.41720581054688 +2021-01-16 23:16:11,177.41720581054688 +2021-01-16 23:25:59,177.41720581054688 +2021-01-16 23:35:47,26.944900512695312 +2021-01-16 23:45:35,177.41720581054688 +2021-01-16 23:55:22,26.944900512695312 +2021-01-17 00:05:10,177.41720581054688 +2021-01-17 00:14:58,179.16200256347656 +2021-01-17 00:24:46,177.4011993408203 +2021-01-17 00:34:34,177.41720581054688 +2021-01-17 00:44:22,26.944900512695312 +2021-01-17 00:54:10,175.6999969482422 +2021-01-17 01:03:58,26.944900512695312 +2021-01-17 01:13:45,175.6842041015625 +2021-01-17 01:23:33,26.944900512695312 +2021-01-17 01:33:21,177.41720581054688 +2021-01-17 01:43:09,177.41720581054688 +2021-01-17 01:52:57,177.41720581054688 +2021-01-17 02:02:47,26.944900512695312 +2021-01-17 02:12:33,175.6999969482422 +2021-01-17 02:22:21,177.41720581054688 +2021-01-17 02:32:09,177.41720581054688 +2021-01-17 02:41:57,26.944900512695312 +2021-01-17 02:51:45,175.6999969482422 +2021-01-17 03:01:33,177.41720581054688 +2021-01-17 03:11:21,177.41720581054688 +2021-01-17 03:21:08,26.944900512695312 +2021-01-17 03:30:56,177.41720581054688 +2021-01-17 03:40:44,26.944900512695312 +2021-01-17 03:50:32,177.41720581054688 +2021-01-17 04:00:20,26.9424991607666 +2021-01-17 04:10:08,177.41720581054688 +2021-01-17 04:19:55,177.41720581054688 +2021-01-17 04:29:43,177.41720581054688 +2021-01-17 04:39:31,177.4011993408203 +2021-01-17 04:49:19,26.944900512695312 +2021-01-17 04:59:07,26.89430046081543 +2021-01-17 05:08:55,174.00900268554688 +2021-01-17 05:18:43,177.41720581054688 +2021-01-17 05:28:31,177.41720581054688 +2021-01-17 05:38:19,26.944900512695312 +2021-01-17 05:48:07,174.0247039794922 +2021-01-17 05:57:55,179.17820739746094 +2021-01-17 06:07:43,177.41720581054688 +2021-01-17 06:17:31,26.944900512695312 +2021-01-17 06:27:19,177.4011993408203 +2021-01-17 06:37:07,26.9424991607666 +2021-01-17 06:46:55,174.00900268554688 +2021-01-17 06:56:43,26.89430046081543 +2021-01-17 07:06:31,177.41720581054688 +2021-01-17 07:16:18,26.9424991607666 +2021-01-17 07:26:06,177.41720581054688 +2021-01-17 07:35:54,26.9424991607666 +2021-01-17 07:45:42,177.41720581054688 +2021-01-17 07:55:30,26.944900512695312 +2021-01-17 08:05:18,175.6999969482422 +2021-01-17 08:15:06,177.4011993408203 +2021-01-17 08:24:54,177.41720581054688 +2021-01-17 08:34:41,26.944900512695312 +2021-01-17 08:44:29,175.6842041015625 +2021-01-17 08:54:17,26.9955997467041 +2021-01-17 09:04:05,175.6999969482422 +2021-01-17 09:13:53,26.89430046081543 +2021-01-17 09:23:41,175.6842041015625 +2021-01-17 09:33:28,26.944900512695312 +2021-01-17 09:43:16,177.41720581054688 +2021-01-17 09:53:04,26.944900512695312 +2021-01-17 10:02:52,177.4011993408203 +2021-01-17 10:12:40,26.9424991607666 +2021-01-17 10:22:28,177.41720581054688 +2021-01-17 10:32:16,26.944900512695312 +2021-01-17 10:42:03,177.41720581054688 +2021-01-17 10:51:51,177.41720581054688 +2021-01-17 11:01:39,177.41720581054688 +2021-01-17 11:11:27,26.9424991607666 +2021-01-17 11:21:15,177.4011993408203 +2021-01-17 11:31:03,26.944900512695312 +2021-01-17 11:40:51,174.00900268554688 +2021-01-17 11:50:38,175.6999969482422 +2021-01-17 12:00:26,177.41720581054688 +2021-01-17 12:10:14,177.41720581054688 +2021-01-17 12:20:02,26.944900512695312 +2021-01-17 12:29:50,175.6842041015625 +2021-01-17 12:39:38,26.9955997467041 +2021-01-17 12:49:26,175.6999969482422 +2021-01-17 12:59:13,26.993200302124023 +2021-01-17 13:09:01,177.41720581054688 +2021-01-17 13:18:49,177.41720581054688 +2021-01-17 13:28:37,177.41720581054688 +2021-01-17 13:38:25,177.4011993408203 +2021-01-17 13:48:13,177.41720581054688 +2021-01-17 13:58:01,26.944900512695312 +2021-01-17 14:07:49,175.6999969482422 +2021-01-17 14:17:37,177.41720581054688 +2021-01-17 14:27:25,26.89430046081543 +2021-01-17 14:37:12,175.6999969482422 +2021-01-17 14:47:00,177.41720581054688 +2021-01-17 14:56:48,177.41720581054688 +2021-01-17 15:06:36,177.41720581054688 +2021-01-17 15:16:24,26.944900512695312 +2021-01-17 15:26:12,175.6842041015625 +2021-01-17 15:36:00,177.4011993408203 +2021-01-17 15:45:47,177.4011993408203 +2021-01-17 15:55:35,177.41720581054688 +2021-01-17 16:05:23,177.41720581054688 +2021-01-17 16:15:11,177.41720581054688 +2021-01-17 16:24:58,177.4011993408203 +2021-01-17 16:34:46,26.9424991607666 +2021-01-17 16:44:34,175.6999969482422 +2021-01-17 16:54:22,26.944900512695312 +2021-01-17 17:04:10,177.4011993408203 +2021-01-17 17:13:57,177.41720581054688 +2021-01-17 17:23:45,177.4011993408203 +2021-01-17 17:33:33,26.944900512695312 +2021-01-17 17:43:21,175.6999969482422 +2021-01-17 17:53:08,26.944900512695312 +2021-01-17 18:02:56,175.6999969482422 +2021-01-17 18:12:44,177.41720581054688 +2021-01-17 18:22:32,177.4011993408203 +2021-01-17 18:32:19,177.41720581054688 +2021-01-17 18:42:07,177.4011993408203 +2021-01-17 18:51:55,177.41720581054688 +2021-01-17 19:01:43,177.4011993408203 +2021-01-17 19:11:30,177.4011993408203 +2021-01-17 19:21:18,26.89430046081543 +2021-01-17 19:31:06,177.4011993408203 +2021-01-17 19:40:54,177.4011993408203 +2021-01-17 19:50:42,177.41720581054688 +2021-01-17 20:00:29,177.41720581054688 +2021-01-17 20:10:17,26.944900512695312 +2021-01-17 20:20:05,175.6999969482422 +2021-01-17 20:29:53,26.9424991607666 +2021-01-17 20:39:40,175.6999969482422 +2021-01-17 20:49:28,177.41720581054688 +2021-01-17 20:59:16,26.9424991607666 +2021-01-17 21:09:04,177.41720581054688 +2021-01-17 21:18:51,26.94729995727539 +2021-01-17 21:28:39,175.71580505371094 +2021-01-17 21:38:27,26.89179992675781 +2021-01-17 21:48:15,177.41720581054688 +2021-01-17 21:58:02,177.41720581054688 +2021-01-17 22:07:50,175.6999969482422 +2021-01-17 22:17:38,177.41720581054688 +2021-01-17 22:27:26,26.89430046081543 +2021-01-17 22:37:13,177.41720581054688 +2021-01-17 22:47:01,177.41720581054688 +2021-01-17 22:56:49,177.41720581054688 +2021-01-17 23:06:37,177.41720581054688 +2021-01-17 23:16:24,26.944900512695312 +2021-01-17 23:26:12,177.41720581054688 +2021-01-17 23:36:00,179.17820739746094 +2021-01-17 23:45:47,177.41720581054688 +2021-01-17 23:55:35,26.9424991607666 +2021-01-18 00:05:23,177.41720581054688 +2021-01-18 00:15:10,177.41720581054688 +2021-01-18 00:24:58,175.6999969482422 +2021-01-18 00:34:46,26.944900512695312 +2021-01-18 00:44:34,177.4011993408203 +2021-01-18 00:54:21,177.4011993408203 +2021-01-18 01:04:09,26.944900512695312 +2021-01-18 01:13:57,26.9424991607666 +2021-01-18 01:23:45,177.41720581054688 +2021-01-18 01:33:32,177.4011993408203 +2021-01-18 01:43:20,177.41720581054688 +2021-01-18 01:53:08,26.944900512695312 +2021-01-18 02:02:56,177.4011993408203 +2021-01-18 02:12:43,177.41720581054688 +2021-01-18 02:22:31,26.944900512695312 +2021-01-18 02:32:19,177.41720581054688 +2021-01-18 02:42:07,26.944900512695312 +2021-01-18 02:51:55,174.00900268554688 +2021-01-18 03:01:43,26.9424991607666 +2021-01-18 03:11:30,177.4011993408203 +2021-01-18 03:21:18,26.9424991607666 +2021-01-18 03:31:06,177.41720581054688 +2021-01-18 03:40:54,26.944900512695312 +2021-01-18 03:50:41,177.41720581054688 +2021-01-18 04:00:29,177.41720581054688 +2021-01-18 04:10:17,26.944900512695312 +2021-01-18 04:20:04,177.41720581054688 +2021-01-18 04:29:52,26.944900512695312 +2021-01-18 04:39:40,177.41720581054688 +2021-01-18 04:49:27,177.41720581054688 +2021-01-18 04:59:15,26.843700408935547 +2021-01-18 05:09:03,175.6999969482422 +2021-01-18 05:18:51,177.41720581054688 +2021-01-18 05:28:39,26.79330062866211 +2021-01-18 05:38:27,177.41720581054688 +2021-01-18 05:48:15,177.41720581054688 +2021-01-18 05:58:03,177.41720581054688 +2021-01-18 06:07:50,26.79330062866211 +2021-01-18 06:17:38,177.41720581054688 +2021-01-18 06:27:26,177.41720581054688 +2021-01-18 06:37:14,177.41720581054688 +2021-01-18 06:47:02,177.41720581054688 +2021-01-18 06:56:50,26.89430046081543 +2021-01-18 07:06:38,177.41720581054688 +2021-01-18 07:16:26,26.89430046081543 +2021-01-18 07:26:14,177.41720581054688 +2021-01-18 07:36:01,177.41720581054688 +2021-01-18 07:45:49,177.41720581054688 +2021-01-18 07:55:37,26.89430046081543 +2021-01-18 08:05:25,177.41720581054688 +2021-01-18 08:15:13,26.944900512695312 +2021-01-18 08:25:01,177.41720581054688 +2021-01-18 08:34:49,26.944900512695312 +2021-01-18 08:44:36,177.41720581054688 +2021-01-18 08:54:24,177.41720581054688 +2021-01-18 09:04:12,179.17820739746094 +2021-01-18 09:14:00,26.843700408935547 +2021-01-18 09:23:47,175.6999969482422 +2021-01-18 09:33:35,26.944900512695312 +2021-01-18 09:43:23,177.41720581054688 +2021-01-18 09:53:11,177.41720581054688 +2021-01-18 10:02:59,26.843700408935547 +2021-01-18 10:12:47,174.0247039794922 +2021-01-18 10:22:34,26.944900512695312 +2021-01-18 10:32:22,175.6842041015625 +2021-01-18 10:42:10,177.41720581054688 +2021-01-18 10:51:58,26.944900512695312 +2021-01-18 11:01:46,177.41720581054688 +2021-01-18 11:11:34,177.41720581054688 +2021-01-18 11:21:22,26.9424991607666 +2021-01-18 11:31:09,177.41720581054688 +2021-01-18 11:40:57,26.944900512695312 +2021-01-18 11:50:45,175.6999969482422 +2021-01-18 12:00:33,179.16200256347656 +2021-01-18 12:10:20,26.89179992675781 +2021-01-18 12:20:08,177.41720581054688 +2021-01-18 12:29:56,26.89179992675781 +2021-01-18 12:39:44,177.4011993408203 +2021-01-18 12:49:31,26.9424991607666 +2021-01-18 12:59:19,175.6842041015625 +2021-01-18 13:09:07,177.4011993408203 +2021-01-18 13:18:55,175.6999969482422 +2021-01-18 13:28:43,177.41720581054688 +2021-01-18 13:38:30,177.41720581054688 +2021-01-18 13:48:18,26.9424991607666 +2021-01-18 13:58:06,177.41720581054688 +2021-01-18 14:07:54,26.944900512695312 +2021-01-18 14:17:42,26.9424991607666 +2021-01-18 14:27:30,177.41720581054688 +2021-01-18 14:37:18,26.89430046081543 +2021-01-18 14:47:05,175.6842041015625 +2021-01-18 14:56:53,26.944900512695312 +2021-01-18 15:06:41,175.6999969482422 +2021-01-18 15:16:29,177.41720581054688 +2021-01-18 15:26:17,177.41720581054688 +2021-01-18 15:36:05,26.9424991607666 +2021-01-18 15:45:53,177.41720581054688 +2021-01-18 15:55:40,26.9424991607666 +2021-01-18 16:05:28,175.6999969482422 +2021-01-18 16:15:16,177.41720581054688 +2021-01-18 16:25:03,177.4011993408203 +2021-01-18 16:34:51,177.41720581054688 +2021-01-18 16:44:39,174.00900268554688 +2021-01-18 16:54:27,177.41720581054688 +2021-01-18 17:04:15,175.6842041015625 +2021-01-18 17:14:03,26.9424991607666 +2021-01-18 17:23:50,177.41720581054688 +2021-01-18 17:33:38,177.4011993408203 +2021-01-18 17:43:26,177.41720581054688 +2021-01-18 17:53:14,26.944900512695312 +2021-01-18 18:03:02,175.6999969482422 +2021-01-18 18:12:50,177.41720581054688 +2021-01-18 18:22:37,26.9424991607666 +2021-01-18 18:32:25,175.6999969482422 +2021-01-18 18:42:13,177.41720581054688 +2021-01-18 18:52:01,26.944900512695312 +2021-01-18 19:01:49,175.6999969482422 +2021-01-18 19:11:36,26.9424991607666 +2021-01-18 19:21:24,175.6999969482422 +2021-01-18 19:31:12,175.6999969482422 +2021-01-18 19:41:00,26.944900512695312 +2021-01-18 19:50:47,175.6999969482422 +2021-01-18 20:00:35,179.17820739746094 +2021-01-18 20:10:23,177.41720581054688 +2021-01-18 20:20:11,26.944900512695312 +2021-01-18 20:29:58,175.6999969482422 +2021-01-18 20:39:46,177.41720581054688 +2021-01-18 20:49:34,177.41720581054688 +2021-01-18 20:59:22,175.6842041015625 +2021-01-18 21:09:09,26.944900512695312 +2021-01-18 21:18:57,175.6842041015625 +2021-01-18 21:28:45,177.41720581054688 +2021-01-18 21:38:33,175.6842041015625 +2021-01-18 21:48:20,26.9424991607666 +2021-01-18 21:58:08,175.6999969482422 +2021-01-18 22:07:56,177.41720581054688 +2021-01-18 22:17:44,177.41720581054688 +2021-01-18 22:27:32,177.41720581054688 +2021-01-18 22:37:19,177.41720581054688 +2021-01-18 22:47:07,177.4011993408203 +2021-01-18 22:56:55,26.9424991607666 +2021-01-18 23:06:43,175.6842041015625 +2021-01-18 23:16:30,26.9424991607666 +2021-01-18 23:26:18,175.6999969482422 +2021-01-18 23:36:06,177.4011993408203 +2021-01-18 23:45:54,26.9424991607666 +2021-01-18 23:55:41,175.6999969482422 +2021-01-19 00:05:29,177.41720581054688 +2021-01-19 00:15:17,177.41720581054688 +2021-01-19 00:25:05,177.41720581054688 +2021-01-19 00:34:52,175.6999969482422 +2021-01-19 00:44:40,175.6999969482422 +2021-01-19 00:54:39,177.41720581054688 +2021-01-19 01:04:35,179.16200256347656 +2021-01-19 01:14:24,177.41720581054688 +2021-01-19 01:24:12,177.41720581054688 +2021-01-19 01:34:00,177.4011993408203 +2021-01-19 01:43:47,175.6999969482422 +2021-01-19 01:53:36,175.6999969482422 +2021-01-19 02:03:29,26.9424991607666 +2021-01-19 02:13:17,175.6999969482422 +2021-01-19 02:23:05,177.41720581054688 +2021-01-19 02:32:52,177.41720581054688 +2021-01-19 02:42:40,175.6842041015625 +2021-01-19 02:52:28,177.4011993408203 +2021-01-19 03:02:16,177.41720581054688 +2021-01-19 03:12:03,175.6999969482422 +2021-01-19 03:21:51,177.41720581054688 +2021-01-19 03:31:39,177.4011993408203 +2021-01-19 03:41:27,175.6999969482422 +2021-01-19 03:51:15,177.41720581054688 +2021-01-19 04:01:02,177.4011993408203 +2021-01-19 04:10:50,175.6999969482422 +2021-01-19 04:20:38,177.41720581054688 +2021-01-19 04:30:26,177.41720581054688 +2021-01-19 04:40:13,175.6842041015625 +2021-01-19 04:50:01,177.41720581054688 +2021-01-19 04:59:49,26.9424991607666 +2021-01-19 05:09:37,175.6842041015625 +2021-01-19 05:19:24,179.17820739746094 +2021-01-19 05:29:12,177.41720581054688 +2021-01-19 05:39:00,175.6842041015625 +2021-01-19 05:48:48,177.41720581054688 +2021-01-19 05:58:35,177.4011993408203 +2021-01-19 06:08:23,26.89430046081543 +2021-01-19 06:18:11,175.6999969482422 +2021-01-19 06:27:59,177.41720581054688 +2021-01-19 06:37:46,177.4011993408203 +2021-01-19 06:47:34,175.6842041015625 +2021-01-19 06:57:22,177.41720581054688 +2021-01-19 07:07:10,177.41720581054688 +2021-01-19 07:16:57,177.41720581054688 +2021-01-19 07:26:45,177.41720581054688 +2021-01-19 07:36:33,177.41720581054688 +2021-01-19 07:46:20,26.9424991607666 +2021-01-19 07:56:08,175.6999969482422 +2021-01-19 08:05:56,177.41720581054688 +2021-01-19 08:15:43,177.41720581054688 +2021-01-19 08:25:31,175.6842041015625 +2021-01-19 08:35:18,177.4011993408203 +2021-01-19 08:45:06,177.41720581054688 +2021-01-19 08:54:54,26.84129905700684 +2021-01-19 09:04:42,175.6999969482422 +2021-01-19 09:14:30,26.89179992675781 +2021-01-19 09:24:18,175.6842041015625 +2021-01-19 09:34:05,26.944900512695312 +2021-01-19 09:43:53,174.0247039794922 +2021-01-19 09:53:40,175.6842041015625 +2021-01-19 10:03:28,26.84129905700684 +2021-01-19 10:13:16,174.0247039794922 +2021-01-19 10:23:03,177.4011993408203 +2021-01-19 10:32:51,177.4011993408203 +2021-01-19 10:42:39,26.9424991607666 +2021-01-19 10:52:27,174.00900268554688 +2021-01-19 11:02:14,26.9424991607666 +2021-01-19 11:12:02,175.6842041015625 +2021-01-19 11:21:50,177.4011993408203 +2021-01-19 11:31:38,177.4011993408203 +2021-01-19 11:41:25,26.9424991607666 +2021-01-19 11:51:13,175.6999969482422 +2021-01-19 12:01:01,177.41720581054688 +2021-01-19 12:10:49,177.41720581054688 +2021-01-19 12:20:36,177.4011993408203 +2021-01-19 12:30:24,177.41720581054688 +2021-01-19 12:40:12,26.9424991607666 +2021-01-19 12:50:00,174.0247039794922 +2021-01-19 12:59:48,26.84129905700684 +2021-01-19 13:09:35,175.6999969482422 +2021-01-19 13:19:23,177.41720581054688 +2021-01-19 13:29:11,26.944900512695312 +2021-01-19 13:38:59,174.0247039794922 +2021-01-19 13:48:47,175.6999969482422 +2021-01-19 13:58:34,26.89179992675781 +2021-01-19 14:08:22,26.9424991607666 +2021-01-19 14:18:10,26.9424991607666 +2021-01-19 14:27:58,26.843700408935547 +2021-01-19 14:37:45,26.9424991607666 +2021-01-19 14:47:33,26.89179992675781 +2021-01-19 14:57:21,26.84129905700684 +2021-01-19 15:07:09,175.6842041015625 +2021-01-19 15:16:56,177.41720581054688 +2021-01-19 15:26:44,175.6842041015625 +2021-01-19 15:36:32,177.4011993408203 +2021-01-19 15:46:20,177.41720581054688 +2021-01-19 15:56:07,177.41720581054688 +2021-01-19 16:05:55,177.4011993408203 +2021-01-19 16:15:43,177.41720581054688 +2021-01-19 16:25:30,177.41720581054688 +2021-01-19 16:35:18,177.41720581054688 +2021-01-19 16:45:06,175.6999969482422 +2021-01-19 16:54:54,177.41720581054688 +2021-01-19 17:04:42,26.9424991607666 +2021-01-19 17:14:29,174.00900268554688 +2021-01-19 17:24:17,175.6999969482422 +2021-01-19 17:34:05,175.6999969482422 +2021-01-19 17:43:53,177.41720581054688 +2021-01-19 17:53:40,177.41720581054688 +2021-01-19 18:03:28,177.41720581054688 +2021-01-19 18:13:16,177.41720581054688 +2021-01-19 18:23:03,175.6999969482422 +2021-01-19 18:32:51,177.41720581054688 +2021-01-19 18:42:39,177.4011993408203 +2021-01-19 18:52:27,177.4011993408203 +2021-01-19 19:02:14,27.04400062561035 +2021-01-19 19:12:02,175.6999969482422 +2021-01-19 19:21:50,27.046499252319336 +2021-01-19 19:31:37,174.0247039794922 +2021-01-19 19:41:25,177.4011993408203 +2021-01-19 19:51:13,175.6999969482422 +2021-01-19 20:01:00,175.6999969482422 +2021-01-19 20:10:48,177.4011993408203 +2021-01-19 20:20:36,27.04400062561035 +2021-01-19 20:30:24,175.6842041015625 +2021-01-19 20:40:11,177.41720581054688 +2021-01-19 20:49:59,177.43319702148438 +2021-01-19 20:59:47,177.41720581054688 +2021-01-19 21:09:35,26.9955997467041 +2021-01-19 21:19:22,175.6999969482422 +2021-01-19 21:29:10,177.41720581054688 +2021-01-19 21:38:58,27.04400062561035 +2021-01-19 21:48:46,177.4011993408203 +2021-01-19 21:58:33,26.944900512695312 +2021-01-19 22:08:21,175.6842041015625 +2021-01-19 22:18:09,27.04400062561035 +2021-01-19 22:27:57,175.6999969482422 +2021-01-19 22:37:45,27.04400062561035 +2021-01-19 22:47:32,175.6842041015625 +2021-01-19 22:57:20,177.4011993408203 +2021-01-19 23:07:08,177.4011993408203 +2021-01-19 23:16:56,175.6842041015625 +2021-01-19 23:26:43,177.41720581054688 +2021-01-19 23:36:31,177.4011993408203 +2021-01-19 23:46:19,177.4011993408203 +2021-01-19 23:56:07,177.41720581054688 +2021-01-20 00:05:55,175.6842041015625 +2021-01-20 00:15:42,177.4011993408203 +2021-01-20 00:25:30,177.4011993408203 +2021-01-20 00:35:18,27.145999908447266 +2021-01-20 00:45:06,175.6999969482422 +2021-01-20 00:54:53,27.148399353027344 +2021-01-20 01:04:41,174.0247039794922 +2021-01-20 01:14:29,27.145999908447266 +2021-01-20 01:24:17,175.6999969482422 +2021-01-20 01:34:05,175.6842041015625 +2021-01-20 01:43:52,27.199499130249023 +2021-01-20 01:53:40,175.6999969482422 +2021-01-20 02:03:28,27.199499130249023 +2021-01-20 02:13:16,27.199499130249023 +2021-01-20 02:23:04,27.199499130249023 +2021-01-20 02:32:52,27.199499130249023 +2021-01-20 02:42:39,27.197099685668945 +2021-01-20 02:52:27,27.199499130249023 +2021-01-20 03:02:15,27.197099685668945 +2021-01-20 03:12:03,175.6842041015625 +2021-01-20 03:21:50,177.41720581054688 +2021-01-20 03:31:38,174.0247039794922 +2021-01-20 03:41:26,177.41720581054688 +2021-01-20 03:51:14,27.199499130249023 +2021-01-20 04:01:01,175.6999969482422 +2021-01-20 04:10:49,27.199499130249023 +2021-01-20 04:20:37,175.6999969482422 +2021-01-20 04:30:25,175.6999969482422 +2021-01-20 04:40:13,177.41720581054688 +2021-01-20 04:50:00,177.41720581054688 +2021-01-20 04:59:48,177.41720581054688 +2021-01-20 05:09:36,27.199499130249023 +2021-01-20 05:19:24,174.0247039794922 +2021-01-20 05:29:12,177.41720581054688 +2021-01-20 05:38:59,175.6999969482422 +2021-01-20 05:48:47,177.41720581054688 +2021-01-20 05:58:35,27.35099983215332 +2021-01-20 06:08:23,174.0247039794922 +2021-01-20 06:18:11,175.6842041015625 +2021-01-20 06:27:58,177.41720581054688 +2021-01-20 06:37:46,177.41720581054688 +2021-01-20 06:47:34,177.41720581054688 +2021-01-20 06:57:22,27.353500366210938 +2021-01-20 07:07:10,174.0247039794922 +2021-01-20 07:16:58,177.41720581054688 +2021-01-20 07:26:46,177.41720581054688 +2021-01-20 07:36:34,177.41720581054688 +2021-01-20 07:46:22,177.41720581054688 +2021-01-20 07:56:09,175.6999969482422 +2021-01-20 08:05:57,177.41720581054688 +2021-01-20 08:15:45,177.41720581054688 +2021-01-20 08:25:33,175.6999969482422 +2021-01-20 08:35:20,27.353500366210938 +2021-01-20 08:45:08,174.0247039794922 +2021-01-20 08:54:56,175.6999969482422 +2021-01-20 09:04:44,175.6999969482422 +2021-01-20 09:14:32,27.35099983215332 +2021-01-20 09:24:20,175.6999969482422 +2021-01-20 09:34:08,27.35099983215332 +2021-01-20 09:43:56,27.30209922790528 +2021-01-20 09:53:43,27.353500366210938 +2021-01-20 10:03:31,174.0247039794922 +2021-01-20 10:13:19,175.6999969482422 +2021-01-20 10:23:07,175.6999969482422 +2021-01-20 10:32:55,174.0247039794922 +2021-01-20 10:42:43,174.0247039794922 +2021-01-20 10:52:31,175.6999969482422 +2021-01-20 11:02:18,174.0247039794922 +2021-01-20 11:12:06,175.6999969482422 +2021-01-20 11:21:54,177.41720581054688 +2021-01-20 11:31:42,175.6999969482422 +2021-01-20 11:41:30,175.6999969482422 +2021-01-20 11:51:17,175.6999969482422 +2021-01-20 12:01:05,27.353500366210938 +2021-01-20 12:10:53,27.30209922790528 +2021-01-20 12:20:41,27.30209922790528 +2021-01-20 12:30:28,174.0247039794922 +2021-01-20 12:40:16,174.0247039794922 +2021-01-20 12:50:04,177.41720581054688 +2021-01-20 12:59:52,177.41720581054688 +2021-01-20 13:09:40,27.353500366210938 +2021-01-20 13:19:27,175.6999969482422 +2021-01-20 13:29:15,27.353500366210938 +2021-01-20 13:39:03,27.353500366210938 +2021-01-20 13:48:51,27.353500366210938 +2021-01-20 13:58:39,27.353500366210938 +2021-01-20 14:08:26,27.30209922790528 +2021-01-20 14:18:14,27.353500366210938 +2021-01-20 14:28:02,27.353500366210938 +2021-01-20 14:37:50,27.353500366210938 +2021-01-20 14:47:38,27.30209922790528 +2021-01-20 14:57:25,27.353500366210938 +2021-01-20 15:07:13,27.30209922790528 +2021-01-20 15:17:01,27.25079917907715 +2021-01-20 15:26:49,27.248300552368164 +2021-01-20 15:36:36,27.353500366210938 +2021-01-20 15:46:24,27.30209922790528 +2021-01-20 15:56:12,27.353500366210938 +2021-01-20 16:06:00,27.30209922790528 +2021-01-20 16:15:47,27.353500366210938 +2021-01-20 16:25:35,27.30209922790528 +2021-01-20 16:35:23,27.304500579833984 +2021-01-20 16:45:10,27.25079917907715 +2021-01-20 16:54:58,27.353500366210938 +2021-01-20 17:04:46,27.353500366210938 +2021-01-20 17:14:33,27.25079917907715 +2021-01-20 17:24:21,27.30209922790528 +2021-01-20 17:34:09,27.30209922790528 +2021-01-20 17:43:56,27.30209922790528 +2021-01-20 17:53:44,27.197099685668945 +2021-01-20 18:03:32,27.199499130249023 +2021-01-20 18:13:20,175.6999969482422 +2021-01-20 18:23:07,175.6999969482422 +2021-01-20 18:32:55,175.6999969482422 +2021-01-20 18:42:43,175.6999969482422 +2021-01-20 18:52:31,27.25079917907715 +2021-01-20 19:02:19,27.248300552368164 +2021-01-20 19:12:07,27.30209922790528 +2021-01-20 19:21:54,27.353500366210938 +2021-01-20 19:31:42,27.25079917907715 +2021-01-20 19:41:30,27.353500366210938 +2021-01-20 19:51:18,27.20199966430664 +2021-01-20 20:01:06,27.199499130249023 +2021-01-20 20:10:53,27.25079917907715 +2021-01-20 20:20:41,27.353500366210938 +2021-01-20 20:30:29,27.304500579833984 +2021-01-20 20:40:17,27.30209922790528 +2021-01-20 20:50:05,27.456600189208984 +2021-01-20 20:59:52,27.456600189208984 +2021-01-20 21:09:40,174.0247039794922 +2021-01-20 21:19:28,27.353500366210938 +2021-01-20 21:29:16,174.0247039794922 +2021-01-20 21:39:03,175.6999969482422 +2021-01-20 21:48:51,174.0247039794922 +2021-01-20 21:58:39,27.456600189208984 +2021-01-20 22:08:27,27.405000686645508 +2021-01-20 22:18:15,27.456600189208984 +2021-01-20 22:28:02,174.0247039794922 +2021-01-20 22:37:50,175.6999969482422 +2021-01-20 22:47:38,174.0247039794922 +2021-01-20 22:57:26,174.0247039794922 +2021-01-20 23:07:14,27.456600189208984 +2021-01-20 23:17:01,174.0247039794922 +2021-01-20 23:26:49,27.456600189208984 +2021-01-20 23:36:37,27.50830078125 +2021-01-20 23:46:25,174.0404052734375 +2021-01-20 23:56:12,27.456600189208984 +2021-01-21 00:06:00,175.6999969482422 +2021-01-21 00:15:48,174.0247039794922 +2021-01-21 00:25:36,175.6999969482422 +2021-01-21 00:35:24,27.405000686645508 +2021-01-21 00:45:12,27.50830078125 +2021-01-21 00:54:59,172.3896026611328 +2021-01-21 01:04:47,27.456600189208984 +2021-01-21 01:14:35,174.0247039794922 +2021-01-21 01:24:23,175.6999969482422 +2021-01-21 01:34:11,174.0247039794922 +2021-01-21 01:43:59,174.0404052734375 +2021-01-21 01:53:46,175.71580505371094 +2021-01-21 02:03:34,174.0247039794922 +2021-01-21 02:13:22,174.0247039794922 +2021-01-21 02:23:10,27.405000686645508 +2021-01-21 02:32:57,27.353500366210938 +2021-01-21 02:42:45,27.456600189208984 +2021-01-21 02:52:33,27.456600189208984 +2021-01-21 03:02:21,27.456600189208984 +2021-01-21 03:12:08,27.4591007232666 +2021-01-21 03:21:56,27.405000686645508 +2021-01-21 03:31:44,27.4591007232666 +2021-01-21 03:41:32,27.353500366210938 +2021-01-21 03:51:20,27.353500366210938 +2021-01-21 04:01:07,27.405000686645508 +2021-01-21 04:10:55,27.405000686645508 +2021-01-21 04:20:43,27.456600189208984 +2021-01-21 04:30:31,27.405000686645508 +2021-01-21 04:40:19,27.353500366210938 +2021-01-21 04:50:06,27.405000686645508 +2021-01-21 04:59:54,27.353500366210938 +2021-01-21 05:09:42,27.456600189208984 +2021-01-21 05:19:30,27.405000686645508 +2021-01-21 05:29:18,27.456600189208984 +2021-01-21 05:39:06,27.456600189208984 +2021-01-21 05:48:53,27.456600189208984 +2021-01-21 05:58:41,27.405000686645508 +2021-01-21 06:08:29,27.456600189208984 +2021-01-21 06:18:17,27.456600189208984 +2021-01-21 06:28:05,27.405000686645508 +2021-01-21 06:37:53,27.353500366210938 +2021-01-21 06:47:40,27.405000686645508 +2021-01-21 06:57:28,27.456600189208984 +2021-01-21 07:07:16,27.456600189208984 +2021-01-21 07:17:04,27.353500366210938 +2021-01-21 07:26:52,27.353500366210938 +2021-01-21 07:36:40,27.353500366210938 +2021-01-21 07:46:27,27.353500366210938 +2021-01-21 07:56:15,27.456600189208984 +2021-01-21 08:06:03,27.4591007232666 +2021-01-21 08:15:51,27.405000686645508 +2021-01-21 08:25:39,27.456600189208984 +2021-01-21 08:35:27,27.456600189208984 +2021-01-21 08:45:15,27.456600189208984 +2021-01-21 08:55:03,27.40749931335449 +2021-01-21 09:04:51,27.30209922790528 +2021-01-21 09:14:38,27.456600189208984 +2021-01-21 09:24:26,27.456600189208984 +2021-01-21 09:34:14,27.353500366210938 +2021-01-21 09:44:02,27.353500366210938 +2021-01-21 09:53:50,27.405000686645508 +2021-01-21 10:03:37,27.30209922790528 +2021-01-21 10:13:25,27.353500366210938 +2021-01-21 10:23:13,27.405000686645508 +2021-01-21 10:33:01,27.35099983215332 +2021-01-21 10:42:49,27.353500366210938 +2021-01-21 10:52:37,27.353500366210938 +2021-01-21 11:02:24,27.35099983215332 +2021-01-21 11:12:12,27.353500366210938 +2021-01-21 11:22:00,27.4591007232666 +2021-01-21 11:31:48,27.30209922790528 +2021-01-21 11:41:36,27.353500366210938 +2021-01-21 11:51:24,27.353500366210938 +2021-01-21 12:01:11,27.456600189208984 +2021-01-21 12:10:59,27.405000686645508 +2021-01-21 12:20:47,27.353500366210938 +2021-01-21 12:30:35,27.35099983215332 +2021-01-21 12:40:23,27.405000686645508 +2021-01-21 12:50:11,27.456600189208984 +2021-01-21 12:59:59,172.3896026611328 +2021-01-21 13:09:47,174.0247039794922 +2021-01-21 13:19:34,174.0247039794922 +2021-01-21 13:29:22,27.353500366210938 +2021-01-21 13:39:10,27.353500366210938 +2021-01-21 13:48:58,27.353500366210938 +2021-01-21 13:58:46,27.353500366210938 +2021-01-21 14:08:34,27.353500366210938 +2021-01-21 14:18:22,27.355899810791016 +2021-01-21 14:28:09,27.353500366210938 +2021-01-21 14:37:57,27.4591007232666 +2021-01-21 14:47:45,27.40749931335449 +2021-01-21 14:57:33,27.353500366210938 +2021-01-21 15:07:21,27.353500366210938 +2021-01-21 15:17:09,172.3896026611328 +2021-01-21 15:26:57,174.0247039794922 +2021-01-21 15:36:44,174.0247039794922 +2021-01-21 15:46:32,27.405000686645508 +2021-01-21 15:56:20,27.30209922790528 +2021-01-21 16:06:08,27.4591007232666 +2021-01-21 16:15:56,27.456600189208984 +2021-01-21 16:25:44,27.30209922790528 +2021-01-21 16:35:32,27.353500366210938 +2021-01-21 16:45:20,27.405000686645508 +2021-01-21 16:55:07,172.4051971435547 +2021-01-21 17:04:55,27.353500366210938 +2021-01-21 17:14:43,27.405000686645508 +2021-01-21 17:24:31,27.355899810791016 +2021-01-21 17:34:19,27.353500366210938 +2021-01-21 17:44:06,27.30209922790528 +2021-01-21 17:53:54,27.405000686645508 +2021-01-21 18:03:42,27.30209922790528 +2021-01-21 18:13:30,27.353500366210938 +2021-01-21 18:23:18,27.355899810791016 +2021-01-21 18:33:06,27.353500366210938 +2021-01-21 18:42:53,27.353500366210938 +2021-01-21 18:52:41,27.405000686645508 +2021-01-21 19:02:29,27.40749931335449 +2021-01-21 19:12:17,27.353500366210938 +2021-01-21 19:22:05,27.405000686645508 +2021-01-21 19:31:52,27.353500366210938 +2021-01-21 19:41:40,27.40749931335449 +2021-01-21 19:51:28,27.405000686645508 +2021-01-21 20:01:16,27.405000686645508 +2021-01-21 20:11:04,27.353500366210938 +2021-01-21 20:20:52,27.353500366210938 +2021-01-21 20:30:40,27.353500366210938 +2021-01-21 20:40:28,27.353500366210938 +2021-01-21 20:50:16,27.405000686645508 +2021-01-21 21:00:03,27.4591007232666 +2021-01-21 21:09:51,27.456600189208984 +2021-01-21 21:19:39,27.353500366210938 +2021-01-21 21:29:27,27.405000686645508 +2021-01-21 21:39:15,27.4591007232666 +2021-01-21 21:49:03,27.40749931335449 +2021-01-21 21:58:50,27.405000686645508 +2021-01-21 22:08:38,27.353500366210938 +2021-01-21 22:18:26,27.353500366210938 +2021-01-21 22:28:14,27.355899810791016 +2021-01-21 22:38:02,27.353500366210938 +2021-01-21 22:47:49,27.353500366210938 +2021-01-21 22:57:37,27.30209922790528 +2021-01-21 23:07:25,27.405000686645508 +2021-01-21 23:17:13,27.405000686645508 +2021-01-21 23:27:01,27.405000686645508 +2021-01-21 23:36:48,27.405000686645508 +2021-01-21 23:46:36,27.29960060119629 +2021-01-21 23:56:24,27.30209922790528 +2021-01-22 00:06:11,27.353500366210938 +2021-01-22 00:15:59,27.30209922790528 +2021-01-22 00:25:47,27.353500366210938 +2021-01-22 00:35:35,27.353500366210938 +2021-01-22 00:45:22,27.30209922790528 +2021-01-22 00:55:10,27.353500366210938 +2021-01-22 01:04:58,172.3896026611328 +2021-01-22 01:14:45,172.3896026611328 +2021-01-22 01:24:33,172.3896026611328 +2021-01-22 01:34:21,170.79319763183594 +2021-01-22 01:44:09,174.0247039794922 +2021-01-22 01:53:57,174.0247039794922 +2021-01-22 02:03:45,27.353500366210938 +2021-01-22 02:13:33,172.3896026611328 +2021-01-22 02:23:20,174.0247039794922 +2021-01-22 02:33:08,174.0247039794922 +2021-01-22 02:42:56,27.405000686645508 +2021-01-22 02:52:44,27.353500366210938 +2021-01-22 03:02:32,172.3896026611328 +2021-01-22 03:12:20,172.3896026611328 +2021-01-22 03:22:08,27.456600189208984 +2021-01-22 03:31:56,172.3896026611328 +2021-01-22 03:41:44,27.353500366210938 +2021-01-22 03:51:31,27.30209922790528 +2021-01-22 04:01:19,172.3896026611328 +2021-01-22 04:11:07,27.353500366210938 +2021-01-22 04:20:55,172.3896026611328 +2021-01-22 04:30:42,174.0247039794922 +2021-01-22 04:40:30,172.3896026611328 +2021-01-22 04:50:18,27.353500366210938 +2021-01-22 05:00:06,27.30209922790528 +2021-01-22 05:09:54,27.353500366210938 +2021-01-22 05:19:42,27.353500366210938 +2021-01-22 05:29:30,27.353500366210938 +2021-01-22 05:39:17,27.30209922790528 +2021-01-22 05:49:05,27.353500366210938 +2021-01-22 05:58:53,27.353500366210938 +2021-01-22 06:08:41,27.353500366210938 +2021-01-22 06:18:29,27.35099983215332 +2021-01-22 06:28:17,27.353500366210938 +2021-01-22 06:38:05,27.353500366210938 +2021-01-22 06:47:52,27.30209922790528 +2021-01-22 06:57:40,27.405000686645508 +2021-01-22 07:07:28,27.353500366210938 +2021-01-22 07:17:16,27.353500366210938 +2021-01-22 07:27:04,172.3740997314453 +2021-01-22 07:36:51,172.3896026611328 +2021-01-22 07:46:39,174.0247039794922 +2021-01-22 07:56:27,27.353500366210938 +2021-01-22 08:06:15,27.353500366210938 +2021-01-22 08:16:03,27.353500366210938 +2021-01-22 08:25:51,27.30209922790528 +2021-01-22 08:35:39,27.353500366210938 +2021-01-22 08:45:27,27.355899810791016 +2021-01-22 08:55:14,172.3896026611328 +2021-01-22 09:05:02,172.3896026611328 +2021-01-22 09:14:50,172.3896026611328 +2021-01-22 09:24:38,172.3740997314453 +2021-01-22 09:34:26,27.35099983215332 +2021-01-22 09:44:14,27.30209922790528 +2021-01-22 09:54:02,27.353500366210938 +2021-01-22 10:03:50,27.353500366210938 +2021-01-22 10:13:37,27.30209922790528 +2021-01-22 10:23:25,27.353500366210938 +2021-01-22 10:33:13,27.353500366210938 +2021-01-22 10:43:01,27.353500366210938 +2021-01-22 10:52:49,27.353500366210938 +2021-01-22 11:02:37,27.353500366210938 +2021-01-22 11:12:25,27.353500366210938 +2021-01-22 11:22:12,27.353500366210938 +2021-01-22 11:32:00,27.30209922790528 +2021-01-22 11:41:48,27.353500366210938 +2021-01-22 11:51:36,27.353500366210938 +2021-01-22 12:01:24,27.29960060119629 +2021-01-22 12:11:12,27.30209922790528 +2021-01-22 12:20:59,27.353500366210938 +2021-01-22 12:30:47,27.353500366210938 +2021-01-22 12:40:35,27.353500366210938 +2021-01-22 12:50:23,27.30209922790528 +2021-01-22 13:00:11,27.353500366210938 +2021-01-22 13:09:59,27.29960060119629 +2021-01-22 13:19:47,27.353500366210938 +2021-01-22 13:29:34,27.353500366210938 +2021-01-22 13:39:22,27.35099983215332 +2021-01-22 13:49:10,27.353500366210938 +2021-01-22 13:58:58,27.30209922790528 +2021-01-22 14:08:46,27.353500366210938 +2021-01-22 14:18:34,27.35099983215332 +2021-01-22 14:28:22,27.35099983215332 +2021-01-22 14:38:09,170.79319763183594 +2021-01-22 14:47:57,172.3896026611328 +2021-01-22 14:57:45,172.3896026611328 +2021-01-22 15:07:33,172.3896026611328 +2021-01-22 15:17:20,172.3740997314453 +2021-01-22 15:27:08,172.3896026611328 +2021-01-22 15:36:56,172.3740997314453 +2021-01-22 15:46:44,172.3896026611328 +2021-01-22 15:56:32,27.405000686645508 +2021-01-22 16:06:20,27.353500366210938 +2021-01-22 16:16:08,27.405000686645508 +2021-01-22 16:25:56,27.29960060119629 +2021-01-22 16:35:43,27.353500366210938 +2021-01-22 16:45:31,27.25079917907715 +2021-01-22 16:55:19,27.30209922790528 +2021-01-22 17:05:07,27.353500366210938 +2021-01-22 17:14:55,27.29960060119629 +2021-01-22 17:24:43,27.353500366210938 +2021-01-22 17:34:31,27.35099983215332 +2021-01-22 17:44:19,27.25079917907715 +2021-01-22 17:54:06,27.29960060119629 +2021-01-22 18:03:54,27.353500366210938 +2021-01-22 18:13:42,27.353500366210938 +2021-01-22 18:23:30,27.30209922790528 +2021-01-22 18:33:18,27.30209922790528 +2021-01-22 18:43:06,27.353500366210938 +2021-01-22 18:52:54,27.30209922790528 +2021-01-22 19:02:41,27.405000686645508 +2021-01-22 19:12:29,172.3896026611328 +2021-01-22 19:22:17,169.23390197753906 +2021-01-22 19:32:05,172.3896026611328 +2021-01-22 19:41:53,172.3896026611328 +2021-01-22 19:51:41,170.77780151367188 +2021-01-22 20:01:28,27.30209922790528 +2021-01-22 20:11:16,27.353500366210938 +2021-01-22 20:21:04,27.353500366210938 +2021-01-22 20:30:52,27.30209922790528 +2021-01-22 20:40:40,27.29960060119629 +2021-01-22 20:50:28,170.77780151367188 +2021-01-22 21:00:16,172.3896026611328 +2021-01-22 21:10:04,172.3740997314453 +2021-01-22 21:19:52,27.353500366210938 +2021-01-22 21:29:39,27.30209922790528 +2021-01-22 21:39:27,27.25079917907715 +2021-01-22 21:49:15,27.353500366210938 +2021-01-22 21:59:03,27.355899810791016 +2021-01-22 22:08:51,27.353500366210938 +2021-01-22 22:18:39,27.405000686645508 +2021-01-22 22:28:26,27.353500366210938 +2021-01-22 22:38:14,27.30209922790528 +2021-01-22 22:48:02,27.353500366210938 +2021-01-22 22:57:50,27.353500366210938 +2021-01-22 23:07:38,27.30209922790528 +2021-01-22 23:17:26,27.353500366210938 +2021-01-22 23:27:14,27.353500366210938 +2021-01-22 23:37:02,169.23390197753906 +2021-01-22 23:46:49,172.4051971435547 +2021-01-22 23:56:37,172.4051971435547 +2021-01-23 00:06:25,27.353500366210938 +2021-01-23 00:16:13,27.353500366210938 +2021-01-23 00:26:01,27.405000686645508 +2021-01-23 00:35:49,27.40749931335449 +2021-01-23 00:45:37,170.79319763183594 +2021-01-23 00:55:25,27.405000686645508 +2021-01-23 01:05:13,172.3896026611328 +2021-01-23 01:15:01,172.3896026611328 +2021-01-23 01:24:48,172.3896026611328 +2021-01-23 01:34:36,27.4591007232666 +2021-01-23 01:44:24,27.353500366210938 +2021-01-23 01:54:12,27.353500366210938 +2021-01-23 02:04:00,27.456600189208984 +2021-01-23 02:13:47,27.353500366210938 +2021-01-23 02:23:35,27.353500366210938 +2021-01-23 02:33:23,27.355899810791016 +2021-01-23 02:43:11,27.456600189208984 +2021-01-23 02:52:59,27.355899810791016 +2021-01-23 03:02:47,27.355899810791016 +2021-01-23 03:12:34,27.353500366210938 +2021-01-23 03:22:22,27.405000686645508 +2021-01-23 03:32:10,27.353500366210938 +2021-01-23 03:41:58,27.353500366210938 +2021-01-23 03:51:46,27.456600189208984 +2021-01-23 04:01:34,27.40749931335449 +2021-01-23 04:11:22,27.4591007232666 +2021-01-23 04:21:09,27.40749931335449 +2021-01-23 04:30:57,27.4591007232666 +2021-01-23 04:40:45,27.4591007232666 +2021-01-23 04:50:33,27.4591007232666 +2021-01-23 05:00:21,170.79319763183594 +2021-01-23 05:10:09,27.405000686645508 +2021-01-23 05:19:57,170.79319763183594 +2021-01-23 05:29:45,170.79319763183594 +2021-01-23 05:39:33,172.3896026611328 +2021-01-23 05:49:20,170.79319763183594 +2021-01-23 05:59:08,27.353500366210938 +2021-01-23 06:08:56,27.353500366210938 +2021-01-23 06:18:44,170.79319763183594 +2021-01-23 06:28:32,27.405000686645508 +2021-01-23 06:38:20,27.353500366210938 +2021-01-23 06:48:08,27.30209922790528 +2021-01-23 06:57:55,27.353500366210938 +2021-01-23 07:07:43,27.30209922790528 +2021-01-23 07:17:31,27.353500366210938 +2021-01-23 07:27:19,27.30209922790528 +2021-01-23 07:37:07,27.35099983215332 +2021-01-23 07:46:55,27.405000686645508 +2021-01-23 07:56:43,27.353500366210938 +2021-01-23 08:06:31,27.353500366210938 +2021-01-23 08:16:19,27.30209922790528 +2021-01-23 08:26:07,170.79319763183594 +2021-01-23 08:35:54,27.30209922790528 +2021-01-23 08:45:42,27.353500366210938 +2021-01-23 08:55:30,170.79319763183594 +2021-01-23 09:05:18,170.79319763183594 +2021-01-23 09:15:06,170.79319763183594 +2021-01-23 09:24:54,27.50830078125 +2021-01-23 09:34:42,167.71029663085938 +2021-01-23 09:44:30,27.456600189208984 +2021-01-23 09:54:18,27.56010055541992 +2021-01-23 10:04:06,27.562599182128903 +2021-01-23 10:13:54,27.30209922790528 +2021-01-23 10:23:42,27.353500366210938 +2021-01-23 10:33:30,27.353500366210938 +2021-01-23 10:43:18,27.353500366210938 +2021-01-23 10:53:05,27.456600189208984 +2021-01-23 11:02:53,27.30209922790528 +2021-01-23 11:12:41,170.79319763183594 +2021-01-23 11:22:29,169.23390197753906 +2021-01-23 11:32:17,167.71029663085938 +2021-01-23 11:42:05,169.23390197753906 +2021-01-23 11:51:53,27.50830078125 +2021-01-23 12:01:41,167.71029663085938 +2021-01-23 12:11:28,172.3896026611328 +2021-01-23 12:21:16,172.3896026611328 +2021-01-23 12:31:04,27.353500366210938 +2021-01-23 12:40:52,27.353500366210938 +2021-01-23 12:50:40,27.355899810791016 +2021-01-23 13:00:28,27.353500366210938 +2021-01-23 13:10:16,27.562599182128903 +2021-01-23 13:20:04,27.355899810791016 +2021-01-23 13:29:51,27.40749931335449 +2021-01-23 13:39:39,27.4591007232666 +2021-01-23 13:49:27,27.353500366210938 +2021-01-23 13:59:15,27.30209922790528 +2021-01-23 14:09:03,27.353500366210938 +2021-01-23 14:18:51,27.353500366210938 +2021-01-23 14:28:39,27.353500366210938 +2021-01-23 14:38:27,27.353500366210938 +2021-01-23 14:48:14,27.405000686645508 +2021-01-23 14:58:02,27.50830078125 +2021-01-23 15:07:50,27.405000686645508 +2021-01-23 15:17:38,27.355899810791016 +2021-01-23 15:27:26,27.353500366210938 +2021-01-23 15:37:14,27.30209922790528 +2021-01-23 15:47:02,27.405000686645508 +2021-01-23 15:56:50,27.353500366210938 +2021-01-23 16:06:38,27.353500366210938 +2021-01-23 16:16:26,27.30209922790528 +2021-01-23 16:26:14,27.353500366210938 +2021-01-23 16:36:02,27.30209922790528 +2021-01-23 16:45:49,27.353500366210938 +2021-01-23 16:55:37,27.353500366210938 +2021-01-23 17:05:25,27.353500366210938 +2021-01-23 17:15:13,27.353500366210938 +2021-01-23 17:25:01,169.23390197753906 +2021-01-23 17:34:49,27.405000686645508 +2021-01-23 17:44:37,27.30209922790528 +2021-01-23 17:54:25,170.79319763183594 +2021-01-23 18:04:13,27.30209922790528 +2021-01-23 18:14:01,27.40749931335449 +2021-01-23 18:23:49,170.79319763183594 +2021-01-23 18:33:37,27.353500366210938 +2021-01-23 18:43:24,169.23390197753906 +2021-01-23 18:53:12,27.353500366210938 +2021-01-23 19:03:00,27.456600189208984 +2021-01-23 19:12:48,27.30209922790528 +2021-01-23 19:22:36,27.353500366210938 +2021-01-23 19:32:24,27.405000686645508 +2021-01-23 19:42:12,27.353500366210938 +2021-01-23 19:52:00,27.4591007232666 +2021-01-23 20:01:48,27.353500366210938 +2021-01-23 20:11:36,27.29960060119629 +2021-01-23 20:21:24,27.353500366210938 +2021-01-23 20:31:12,27.355899810791016 +2021-01-23 20:41:00,27.355899810791016 +2021-01-23 20:50:48,27.353500366210938 +2021-01-23 21:00:35,27.30209922790528 +2021-01-23 21:10:23,27.353500366210938 +2021-01-23 21:20:11,27.30209922790528 +2021-01-23 21:29:59,27.353500366210938 +2021-01-23 21:39:47,27.30209922790528 +2021-01-23 21:49:35,27.405000686645508 +2021-01-23 21:59:23,27.304500579833984 +2021-01-23 22:09:11,27.405000686645508 +2021-01-23 22:18:59,27.50830078125 +2021-01-23 22:28:47,27.353500366210938 +2021-01-23 22:38:35,27.456600189208984 +2021-01-23 22:48:23,27.30209922790528 +2021-01-23 22:58:11,27.4591007232666 +2021-01-23 23:07:59,27.50830078125 +2021-01-23 23:17:47,27.353500366210938 +2021-01-23 23:27:35,27.405000686645508 +2021-01-23 23:37:23,27.456600189208984 +2021-01-23 23:47:10,27.355899810791016 +2021-01-23 23:56:58,27.353500366210938 +2021-01-24 00:06:46,27.353500366210938 +2021-01-24 00:16:34,27.405000686645508 +2021-01-24 00:26:22,27.405000686645508 +2021-01-24 00:36:10,27.304500579833984 +2021-01-24 00:45:58,27.56010055541992 +2021-01-24 00:55:46,27.353500366210938 +2021-01-24 01:05:34,27.405000686645508 +2021-01-24 01:15:21,170.80859375 +2021-01-24 01:25:09,27.355899810791016 +2021-01-24 01:34:57,169.23390197753906 +2021-01-24 01:44:45,170.80859375 +2021-01-24 01:54:33,27.353500366210938 +2021-01-24 02:04:20,27.25079917907715 +2021-01-24 02:14:08,27.29960060119629 +2021-01-24 02:23:56,27.30209922790528 +2021-01-24 02:33:44,27.35099983215332 +2021-01-24 02:43:32,27.30209922790528 +2021-01-24 02:53:20,27.30209922790528 +2021-01-24 03:03:07,27.353500366210938 +2021-01-24 03:12:55,27.353500366210938 +2021-01-24 03:22:43,27.30209922790528 +2021-01-24 03:32:31,27.355899810791016 +2021-01-24 03:42:19,27.405000686645508 +2021-01-24 03:52:07,27.405000686645508 +2021-01-24 04:01:55,27.40749931335449 +2021-01-24 04:11:42,27.353500366210938 +2021-01-24 04:21:30,27.353500366210938 +2021-01-24 04:31:18,27.456600189208984 +2021-01-24 04:41:06,27.355899810791016 +2021-01-24 04:50:54,27.40749931335449 +2021-01-24 05:00:42,27.353500366210938 +2021-01-24 05:10:30,27.25079917907715 +2021-01-24 05:20:17,27.40749931335449 +2021-01-24 05:30:05,27.405000686645508 +2021-01-24 05:39:53,27.40749931335449 +2021-01-24 05:49:41,27.353500366210938 +2021-01-24 05:59:29,27.405000686645508 +2021-01-24 06:09:17,170.79319763183594 +2021-01-24 06:19:05,27.4591007232666 +2021-01-24 06:28:53,27.4591007232666 +2021-01-24 06:38:41,27.456600189208984 +2021-01-24 06:48:28,27.40749931335449 +2021-01-24 06:58:16,27.40749931335449 +2021-01-24 07:08:04,27.4591007232666 +2021-01-24 07:17:52,27.40749931335449 +2021-01-24 07:27:40,27.4591007232666 +2021-01-24 07:37:28,27.40749931335449 +2021-01-24 07:47:16,27.4591007232666 +2021-01-24 07:57:03,27.4591007232666 +2021-01-24 08:06:51,27.4591007232666 +2021-01-24 08:16:39,27.4591007232666 +2021-01-24 08:26:27,27.40749931335449 +2021-01-24 08:36:15,27.4591007232666 +2021-01-24 08:46:03,27.40749931335449 +2021-01-24 08:55:51,27.4591007232666 +2021-01-24 09:05:39,27.4591007232666 +2021-01-24 09:15:27,27.405000686645508 +2021-01-24 09:25:15,27.4591007232666 +2021-01-24 09:35:02,27.4591007232666 +2021-01-24 09:44:50,27.456600189208984 +2021-01-24 09:54:38,27.4591007232666 +2021-01-24 10:04:26,27.4591007232666 +2021-01-24 10:14:14,27.4591007232666 +2021-01-24 10:24:02,27.4591007232666 +2021-01-24 10:33:50,27.4591007232666 +2021-01-24 10:43:38,27.4591007232666 +2021-01-24 10:53:26,27.4591007232666 +2021-01-24 11:03:14,27.405000686645508 +2021-01-24 11:13:01,27.40749931335449 +2021-01-24 11:22:49,27.4591007232666 +2021-01-24 11:32:37,27.4591007232666 +2021-01-24 11:42:25,27.4591007232666 +2021-01-24 11:52:13,27.510799407958984 +2021-01-24 12:02:01,27.4591007232666 +2021-01-24 12:11:49,27.40749931335449 +2021-01-24 12:21:37,27.40749931335449 +2021-01-24 12:31:24,27.456600189208984 +2021-01-24 12:41:12,27.510799407958984 +2021-01-24 12:51:00,27.4591007232666 +2021-01-24 13:00:48,27.40749931335449 +2021-01-24 13:10:36,27.40749931335449 +2021-01-24 13:20:23,27.4591007232666 +2021-01-24 13:30:11,27.4591007232666 +2021-01-24 13:39:59,27.40749931335449 +2021-01-24 13:49:47,27.40749931335449 +2021-01-24 13:59:34,27.4591007232666 +2021-01-24 14:09:22,27.4591007232666 +2021-01-24 14:19:10,27.40749931335449 +2021-01-24 14:28:58,27.456600189208984 +2021-01-24 14:38:45,27.456600189208984 +2021-01-24 14:48:33,27.405000686645508 +2021-01-24 14:58:21,27.40749931335449 +2021-01-24 15:08:08,27.4591007232666 +2021-01-24 15:17:56,27.40749931335449 +2021-01-24 15:27:44,27.456600189208984 +2021-01-24 15:37:31,27.4591007232666 +2021-01-24 15:47:19,27.4591007232666 +2021-01-24 15:57:07,27.405000686645508 +2021-01-24 16:06:54,27.4591007232666 +2021-01-24 16:16:42,27.4591007232666 +2021-01-24 16:26:30,27.4591007232666 +2021-01-24 16:36:18,27.4591007232666 +2021-01-24 16:46:06,27.510799407958984 +2021-01-24 16:55:53,27.4591007232666 +2021-01-24 17:05:41,27.4591007232666 +2021-01-24 17:15:29,27.4591007232666 +2021-01-24 17:25:17,27.40749931335449 +2021-01-24 17:35:05,27.4591007232666 +2021-01-24 17:44:52,27.4591007232666 +2021-01-24 17:54:40,27.4591007232666 +2021-01-24 18:04:28,27.40749931335449 +2021-01-24 18:14:16,27.40749931335449 +2021-01-24 18:24:04,27.4591007232666 +2021-01-24 18:33:52,27.40749931335449 +2021-01-24 18:43:40,27.4591007232666 +2021-01-24 18:53:28,27.4591007232666 +2021-01-24 19:03:16,27.4591007232666 +2021-01-24 19:13:04,27.456600189208984 +2021-01-24 19:22:52,27.510799407958984 +2021-01-24 19:32:39,27.456600189208984 +2021-01-24 19:42:27,27.510799407958984 +2021-01-24 19:52:15,27.4591007232666 +2021-01-24 20:02:03,27.40749931335449 +2021-01-24 20:11:51,27.510799407958984 +2021-01-24 20:21:39,27.405000686645508 +2021-01-24 20:31:27,27.456600189208984 +2021-01-24 20:41:14,27.4591007232666 +2021-01-24 20:51:02,27.4591007232666 +2021-01-24 21:00:50,27.4591007232666 +2021-01-24 21:10:38,27.4591007232666 +2021-01-24 21:20:26,27.4591007232666 +2021-01-24 21:30:14,27.456600189208984 +2021-01-24 21:40:02,27.40749931335449 +2021-01-24 21:49:50,27.405000686645508 +2021-01-24 21:59:38,27.4591007232666 +2021-01-24 22:09:26,27.456600189208984 +2021-01-24 22:19:13,27.456600189208984 +2021-01-24 22:29:01,27.4591007232666 +2021-01-24 22:38:49,27.456600189208984 +2021-01-24 22:48:37,27.4591007232666 +2021-01-24 22:58:25,27.4591007232666 +2021-01-24 23:08:13,27.40749931335449 +2021-01-24 23:18:00,27.4591007232666 +2021-01-24 23:27:48,27.405000686645508 +2021-01-24 23:37:36,27.4591007232666 +2021-01-24 23:47:24,27.405000686645508 +2021-01-24 23:57:12,27.405000686645508 +2021-01-25 00:06:59,27.4591007232666 +2021-01-25 00:16:47,27.4591007232666 +2021-01-25 00:26:35,27.405000686645508 +2021-01-25 00:36:23,27.40749931335449 +2021-01-25 00:46:11,27.405000686645508 +2021-01-25 00:55:59,27.40749931335449 +2021-01-25 01:05:47,27.456600189208984 +2021-01-25 01:15:35,27.405000686645508 +2021-01-25 01:25:22,27.405000686645508 +2021-01-25 01:35:10,27.405000686645508 +2021-01-25 01:44:58,27.456600189208984 +2021-01-25 01:54:46,27.456600189208984 +2021-01-25 02:04:34,27.4591007232666 +2021-01-25 02:14:22,27.456600189208984 +2021-01-25 02:24:10,27.4591007232666 +2021-01-25 02:33:58,27.405000686645508 +2021-01-25 02:43:46,27.405000686645508 +2021-01-25 02:53:33,27.456600189208984 +2021-01-25 03:03:21,27.40749931335449 +2021-01-25 03:13:09,27.4591007232666 +2021-01-25 03:22:57,167.71029663085938 +2021-01-25 03:32:45,27.456600189208984 +2021-01-25 03:42:33,27.456600189208984 +2021-01-25 03:52:21,169.23390197753906 +2021-01-25 04:02:09,27.456600189208984 +2021-01-25 04:11:56,27.405000686645508 +2021-01-25 04:21:44,27.353500366210938 +2021-01-25 04:31:32,27.4591007232666 +2021-01-25 04:41:20,27.40749931335449 +2021-01-25 04:51:07,27.456600189208984 +2021-01-25 05:00:55,27.405000686645508 +2021-01-25 05:10:43,27.405000686645508 +2021-01-25 05:20:31,169.23390197753906 +2021-01-25 05:30:18,27.456600189208984 +2021-01-25 05:40:06,27.456600189208984 +2021-01-25 05:49:54,169.23390197753906 +2021-01-25 05:59:42,27.456600189208984 +2021-01-25 06:09:29,170.80859375 +2021-01-25 06:19:17,27.456600189208984 +2021-01-25 06:29:05,170.80859375 +2021-01-25 06:38:53,27.4591007232666 +2021-01-25 06:48:41,27.456600189208984 +2021-01-25 06:58:29,27.4591007232666 +2021-01-25 07:08:16,169.2490997314453 +2021-01-25 07:18:04,27.4591007232666 +2021-01-25 07:27:52,169.23390197753906 +2021-01-25 07:37:40,27.4591007232666 +2021-01-25 07:47:28,27.4591007232666 +2021-01-25 07:57:15,27.405000686645508 +2021-01-25 08:07:03,27.40749931335449 +2021-01-25 08:16:51,27.405000686645508 +2021-01-25 08:26:39,169.2490997314453 +2021-01-25 08:36:27,169.2490997314453 +2021-01-25 08:46:14,27.456600189208984 +2021-01-25 08:56:02,27.456600189208984 +2021-01-25 09:05:50,27.40749931335449 +2021-01-25 09:15:38,27.40749931335449 +2021-01-25 09:25:26,27.405000686645508 +2021-01-25 09:35:14,27.405000686645508 +2021-01-25 09:45:01,27.40749931335449 +2021-01-25 09:54:49,27.40749931335449 +2021-01-25 10:04:37,27.405000686645508 +2021-01-25 10:14:25,27.4591007232666 +2021-01-25 10:24:13,27.405000686645508 +2021-01-25 10:34:01,27.40749931335449 +2021-01-25 10:43:48,27.456600189208984 +2021-01-25 10:53:36,27.456600189208984 +2021-01-25 11:03:24,27.4591007232666 +2021-01-25 11:13:12,27.405000686645508 +2021-01-25 11:23:00,27.405000686645508 +2021-01-25 11:32:48,27.405000686645508 +2021-01-25 11:42:35,27.40749931335449 +2021-01-25 11:52:23,27.4591007232666 +2021-01-25 12:02:11,27.40749931335449 +2021-01-25 12:11:59,27.4591007232666 +2021-01-25 12:21:46,27.40749931335449 +2021-01-25 12:31:34,27.405000686645508 +2021-01-25 12:41:22,27.4591007232666 +2021-01-25 12:51:10,27.40749931335449 +2021-01-25 13:00:57,27.4591007232666 +2021-01-25 13:10:45,27.456600189208984 +2021-01-25 13:20:33,27.40749931335449 +2021-01-25 13:30:20,27.4591007232666 +2021-01-25 13:40:08,27.456600189208984 +2021-01-25 13:49:56,27.4591007232666 +2021-01-25 13:59:44,27.4591007232666 +2021-01-25 14:09:31,27.40749931335449 +2021-01-25 14:19:19,27.4591007232666 +2021-01-25 14:29:07,27.40749931335449 +2021-01-25 14:38:55,27.40749931335449 +2021-01-25 14:48:43,27.4591007232666 +2021-01-25 14:58:30,27.4591007232666 +2021-01-25 15:08:18,27.4591007232666 +2021-01-25 15:18:06,27.4591007232666 +2021-01-25 15:27:54,27.4591007232666 +2021-01-25 15:37:42,27.4591007232666 +2021-01-25 15:47:29,27.4591007232666 +2021-01-25 15:57:17,27.4591007232666 +2021-01-25 16:07:05,27.4591007232666 +2021-01-25 16:16:53,27.4591007232666 +2021-01-25 16:26:40,27.40749931335449 +2021-01-25 16:36:28,27.456600189208984 +2021-01-25 16:46:16,27.40749931335449 +2021-01-25 16:56:04,27.40749931335449 +2021-01-25 17:05:51,27.4591007232666 +2021-01-25 17:15:39,27.456600189208984 +2021-01-25 17:25:27,27.40749931335449 +2021-01-25 17:35:15,27.405000686645508 +2021-01-25 17:45:03,27.4591007232666 +2021-01-25 17:54:50,27.4591007232666 +2021-01-25 18:04:38,27.40749931335449 +2021-01-25 18:14:26,27.4591007232666 +2021-01-25 18:24:14,27.40749931335449 +2021-01-25 18:34:02,27.456600189208984 +2021-01-25 18:43:50,27.40749931335449 +2021-01-25 18:53:37,27.405000686645508 +2021-01-25 19:03:25,27.4591007232666 +2021-01-25 19:13:13,27.40749931335449 +2021-01-25 19:23:01,27.4591007232666 +2021-01-25 19:32:49,27.405000686645508 +2021-01-25 19:42:37,27.4591007232666 +2021-01-25 19:52:25,27.4591007232666 +2021-01-25 20:02:12,27.409900665283203 +2021-01-25 20:12:00,27.40749931335449 +2021-01-25 20:21:48,27.456600189208984 +2021-01-25 20:31:36,27.461599349975582 +2021-01-25 20:41:23,27.405000686645508 +2021-01-25 20:51:11,27.4591007232666 +2021-01-25 21:00:59,27.4591007232666 +2021-01-25 21:10:47,27.40749931335449 +2021-01-25 21:20:35,27.4591007232666 +2021-01-25 21:30:22,27.40749931335449 +2021-01-25 21:40:10,27.405000686645508 +2021-01-25 21:49:58,27.4591007232666 +2021-01-25 21:59:46,27.4591007232666 +2021-01-25 22:09:34,27.405000686645508 +2021-01-25 22:19:21,27.456600189208984 +2021-01-25 22:29:09,27.4591007232666 +2021-01-25 22:38:57,27.510799407958984 +2021-01-25 22:48:45,27.4591007232666 +2021-01-25 22:58:33,27.510799407958984 +2021-01-25 23:08:20,27.40749931335449 +2021-01-25 23:18:08,27.456600189208984 +2021-01-25 23:27:56,27.456600189208984 +2021-01-25 23:37:43,27.405000686645508 +2021-01-25 23:47:31,27.40749931335449 +2021-01-25 23:57:19,27.40749931335449 +2021-01-26 00:07:07,27.405000686645508 +2021-01-26 00:16:55,27.40749931335449 +2021-01-26 00:26:42,27.405000686645508 +2021-01-26 00:36:30,27.4591007232666 +2021-01-26 00:46:18,27.40749931335449 +2021-01-26 00:56:06,27.4591007232666 +2021-01-26 01:06:00,27.40749931335449 +2021-01-26 01:16:00,27.40749931335449 +2021-01-26 01:25:50,27.456600189208984 +2021-01-26 01:35:38,27.40749931335449 +2021-01-26 01:45:26,27.4591007232666 +2021-01-26 01:55:13,27.40749931335449 +2021-01-26 02:05:01,27.405000686645508 +2021-01-26 02:14:49,27.456600189208984 +2021-01-26 02:24:37,27.405000686645508 +2021-01-26 02:34:24,27.456600189208984 +2021-01-26 02:44:12,27.40749931335449 +2021-01-26 02:54:00,27.456600189208984 +2021-01-26 03:03:48,27.456600189208984 +2021-01-26 03:13:36,27.405000686645508 +2021-01-26 03:23:24,27.456600189208984 +2021-01-26 03:33:11,27.405000686645508 +2021-01-26 03:42:59,27.456600189208984 +2021-01-26 03:52:47,27.40749931335449 +2021-01-26 04:02:35,27.405000686645508 +2021-01-26 04:12:23,27.4591007232666 +2021-01-26 04:22:11,27.40749931335449 +2021-01-26 04:31:58,27.405000686645508 +2021-01-26 04:41:46,27.4591007232666 +2021-01-26 04:51:34,27.405000686645508 +2021-01-26 05:01:22,27.456600189208984 +2021-01-26 05:11:10,27.4591007232666 +2021-01-26 05:20:58,27.40749931335449 +2021-01-26 05:30:46,27.456600189208984 +2021-01-26 05:40:34,27.4591007232666 +2021-01-26 05:50:21,27.4591007232666 +2021-01-26 06:00:09,27.40749931335449 +2021-01-26 06:09:57,27.4591007232666 +2021-01-26 06:19:45,27.4591007232666 +2021-01-26 06:29:33,27.405000686645508 +2021-01-26 06:39:21,27.40749931335449 +2021-01-26 06:49:08,27.40749931335449 +2021-01-26 06:58:56,27.456600189208984 +2021-01-26 07:08:44,27.456600189208984 +2021-01-26 07:18:32,27.4591007232666 +2021-01-26 07:28:20,27.456600189208984 +2021-01-26 07:38:08,27.40749931335449 +2021-01-26 07:47:56,27.4591007232666 +2021-01-26 07:57:44,27.405000686645508 +2021-01-26 08:07:31,27.405000686645508 +2021-01-26 08:17:19,27.456600189208984 +2021-01-26 08:27:07,27.4591007232666 +2021-01-26 08:36:55,27.456600189208984 +2021-01-26 08:46:43,27.40749931335449 +2021-01-26 08:56:31,27.456600189208984 +2021-01-26 09:06:18,27.405000686645508 +2021-01-26 09:16:06,27.405000686645508 +2021-01-26 09:25:54,27.4591007232666 +2021-01-26 09:35:42,27.40749931335449 +2021-01-26 09:45:30,27.456600189208984 +2021-01-26 09:55:17,27.456600189208984 +2021-01-26 10:05:05,27.456600189208984 +2021-01-26 10:14:53,27.456600189208984 +2021-01-26 10:24:41,27.40749931335449 +2021-01-26 10:34:29,27.4591007232666 +2021-01-26 10:44:16,27.40749931335449 +2021-01-26 10:54:04,27.405000686645508 +2021-01-26 11:03:52,27.40749931335449 +2021-01-26 11:13:40,27.40749931335449 +2021-01-26 11:23:27,27.405000686645508 +2021-01-26 11:33:15,27.456600189208984 +2021-01-26 11:43:03,27.405000686645508 +2021-01-26 11:52:51,27.405000686645508 +2021-01-26 12:02:39,27.405000686645508 +2021-01-26 12:12:27,27.4591007232666 +2021-01-26 12:22:14,27.456600189208984 +2021-01-26 12:32:02,27.405000686645508 +2021-01-26 12:41:50,27.4591007232666 +2021-01-26 12:51:38,27.405000686645508 +2021-01-26 13:01:26,27.4591007232666 +2021-01-26 13:11:14,27.456600189208984 +2021-01-26 13:21:02,27.4591007232666 +2021-01-26 13:30:49,27.456600189208984 +2021-01-26 13:40:37,27.4591007232666 +2021-01-26 13:50:25,27.4591007232666 +2021-01-26 14:00:13,27.4591007232666 +2021-01-26 14:10:01,27.405000686645508 +2021-01-26 14:19:48,27.405000686645508 +2021-01-26 14:29:36,27.4591007232666 +2021-01-26 14:39:24,27.405000686645508 +2021-01-26 14:49:12,27.4591007232666 +2021-01-26 14:59:00,27.456600189208984 +2021-01-26 15:08:47,27.40749931335449 +2021-01-26 15:18:35,27.456600189208984 +2021-01-26 15:28:23,27.456600189208984 +2021-01-26 15:38:11,27.456600189208984 +2021-01-26 15:47:58,27.456600189208984 +2021-01-26 15:57:46,27.405000686645508 +2021-01-26 16:07:34,27.456600189208984 +2021-01-26 16:17:22,27.405000686645508 +2021-01-26 16:27:10,27.405000686645508 +2021-01-26 16:36:58,27.456600189208984 +2021-01-26 16:46:46,27.456600189208984 +2021-01-26 16:56:33,27.456600189208984 +2021-01-26 17:06:21,27.405000686645508 +2021-01-26 17:16:09,27.456600189208984 +2021-01-26 17:25:57,27.40749931335449 +2021-01-26 17:35:45,27.4591007232666 +2021-01-26 17:45:32,27.456600189208984 +2021-01-26 17:55:20,27.4591007232666 +2021-01-26 18:05:08,27.4591007232666 +2021-01-26 18:14:55,27.4591007232666 +2021-01-26 18:24:43,27.4591007232666 +2021-01-26 18:34:31,27.40749931335449 +2021-01-26 18:44:18,27.40749931335449 +2021-01-26 18:54:06,27.40749931335449 +2021-01-26 19:03:54,27.461599349975582 +2021-01-26 19:13:42,27.409900665283203 +2021-01-26 19:23:29,27.40749931335449 +2021-01-26 19:33:17,27.40749931335449 +2021-01-26 19:43:05,27.40749931335449 +2021-01-26 19:52:53,27.456600189208984 +2021-01-26 20:02:40,27.40749931335449 +2021-01-26 20:12:28,27.4591007232666 +2021-01-26 20:22:16,27.40749931335449 +2021-01-26 20:32:04,27.40749931335449 +2021-01-26 20:41:51,27.40749931335449 +2021-01-26 20:51:39,27.4591007232666 +2021-01-26 21:01:27,27.40749931335449 +2021-01-26 21:11:14,27.40749931335449 +2021-01-26 21:21:02,27.40749931335449 +2021-01-26 21:30:50,27.405000686645508 +2021-01-26 21:40:37,27.40749931335449 +2021-01-26 21:50:25,27.40749931335449 +2021-01-26 22:00:13,27.4591007232666 +2021-01-26 22:10:01,27.456600189208984 +2021-01-26 22:19:48,27.40749931335449 +2021-01-26 22:29:36,27.4591007232666 +2021-01-26 22:39:23,27.4591007232666 +2021-01-26 22:49:11,27.456600189208984 +2021-01-26 22:58:59,27.456600189208984 +2021-01-26 23:08:46,27.4591007232666 +2021-01-26 23:18:34,27.4591007232666 +2021-01-26 23:28:22,27.456600189208984 +2021-01-26 23:38:09,27.40749931335449 +2021-01-26 23:47:57,27.40749931335449 +2021-01-26 23:57:45,27.40749931335449 +2021-01-27 00:07:33,27.40749931335449 +2021-01-27 00:17:20,27.405000686645508 +2021-01-27 00:27:08,36.360801696777344 +2021-01-27 00:36:56,36.93830108642578 +2021-01-27 00:46:43,33.31779861450195 +2021-01-27 00:56:31,29.052600860595703 +2021-01-27 01:06:19,27.405000686645508 +2021-01-27 01:16:06,27.40749931335449 +2021-01-27 01:25:54,27.40749931335449 +2021-01-27 01:35:42,27.456600189208984 +2021-01-27 01:45:30,27.40749931335449 +2021-01-27 01:55:17,27.4591007232666 +2021-01-27 02:05:05,27.4591007232666 +2021-01-27 02:14:53,27.40749931335449 +2021-01-27 02:24:40,27.456600189208984 +2021-01-27 02:34:28,27.4591007232666 +2021-01-27 02:44:15,27.4591007232666 +2021-01-27 02:54:03,27.40749931335449 +2021-01-27 03:03:51,27.4591007232666 +2021-01-27 03:13:38,27.405000686645508 +2021-01-27 03:23:26,27.40749931335449 +2021-01-27 03:33:14,27.4591007232666 +2021-01-27 03:43:01,27.456600189208984 +2021-01-27 03:52:49,27.405000686645508 +2021-01-27 04:02:37,27.4591007232666 +2021-01-27 04:12:25,27.4591007232666 +2021-01-27 04:22:12,27.4591007232666 +2021-01-27 04:32:00,27.4591007232666 +2021-01-27 04:41:48,27.405000686645508 +2021-01-27 04:51:35,27.40749931335449 +2021-01-27 05:01:23,27.40749931335449 +2021-01-27 05:11:10,27.4591007232666 +2021-01-27 05:20:58,27.40749931335449 +2021-01-27 05:30:46,27.4591007232666 +2021-01-27 05:40:33,27.40749931335449 +2021-01-27 05:50:21,27.456600189208984 +2021-01-27 06:00:09,27.456600189208984 +2021-01-27 06:09:56,27.40749931335449 +2021-01-27 06:19:44,27.456600189208984 +2021-01-27 06:29:31,27.405000686645508 +2021-01-27 06:39:19,27.405000686645508 +2021-01-27 06:49:07,27.40749931335449 +2021-01-27 06:58:54,27.40749931335449 +2021-01-27 07:08:42,27.4591007232666 +2021-01-27 07:18:29,27.40749931335449 +2021-01-27 07:28:17,27.4591007232666 +2021-01-27 07:38:05,27.4591007232666 +2021-01-27 07:47:52,27.456600189208984 +2021-01-27 07:57:40,27.40749931335449 +2021-01-27 08:07:28,27.40749931335449 +2021-01-27 08:17:15,27.40749931335449 +2021-01-27 08:27:03,27.40749931335449 +2021-01-27 08:36:51,27.4591007232666 +2021-01-27 08:46:38,27.40749931335449 +2021-01-27 08:56:26,27.461599349975582 +2021-01-27 09:06:13,27.4591007232666 +2021-01-27 09:16:01,27.4591007232666 +2021-01-27 09:25:49,27.4591007232666 +2021-01-27 09:35:37,27.405000686645508 +2021-01-27 09:45:25,27.4591007232666 +2021-01-27 09:55:12,27.40749931335449 +2021-01-27 10:05:00,27.4591007232666 +2021-01-27 10:14:48,27.4591007232666 +2021-01-27 10:24:36,27.4591007232666 +2021-01-27 10:34:23,27.456600189208984 +2021-01-27 10:44:11,27.456600189208984 +2021-01-27 10:53:59,27.4591007232666 +2021-01-27 11:03:47,27.456600189208984 +2021-01-27 11:13:35,27.456600189208984 +2021-01-27 11:23:22,27.4591007232666 +2021-01-27 11:33:10,27.4591007232666 +2021-01-27 11:42:58,27.4591007232666 +2021-01-27 11:52:46,27.456600189208984 +2021-01-27 12:02:34,27.456600189208984 +2021-01-27 12:12:21,27.456600189208984 +2021-01-27 12:22:09,27.40749931335449 +2021-01-27 12:31:57,27.456600189208984 +2021-01-27 12:41:45,27.456600189208984 +2021-01-27 12:51:33,27.40749931335449 +2021-01-27 13:01:20,27.4591007232666 +2021-01-27 13:11:08,27.456600189208984 +2021-01-27 13:20:56,27.456600189208984 +2021-01-27 13:30:44,27.456600189208984 +2021-01-27 13:40:31,27.456600189208984 +2021-01-27 13:50:19,27.4591007232666 +2021-01-27 14:00:07,27.4591007232666 +2021-01-27 14:09:55,27.4591007232666 +2021-01-27 14:19:42,27.405000686645508 +2021-01-27 14:29:30,27.456600189208984 +2021-01-27 14:39:18,27.4591007232666 +2021-01-27 14:49:06,27.4591007232666 +2021-01-27 14:58:53,27.4591007232666 +2021-01-27 15:08:41,27.4591007232666 +2021-01-27 15:18:29,27.4591007232666 +2021-01-27 15:28:17,27.4591007232666 +2021-01-27 15:38:04,27.4591007232666 +2021-01-27 15:47:52,27.4591007232666 +2021-01-27 15:57:40,27.4591007232666 +2021-01-27 16:07:27,27.40749931335449 +2021-01-27 16:17:15,27.405000686645508 +2021-01-27 16:27:03,27.4591007232666 +2021-01-27 16:36:51,27.40749931335449 +2021-01-27 16:46:38,27.4591007232666 +2021-01-27 16:56:26,27.4591007232666 +2021-01-27 17:06:14,27.4591007232666 +2021-01-27 17:16:02,27.4591007232666 +2021-01-27 17:25:49,27.4591007232666 +2021-01-27 17:35:37,27.456600189208984 +2021-01-27 17:45:25,27.4591007232666 +2021-01-27 17:55:13,27.405000686645508 +2021-01-27 18:05:01,27.4591007232666 +2021-01-27 18:14:49,27.4591007232666 +2021-01-27 18:24:36,27.456600189208984 +2021-01-27 18:34:24,27.4591007232666 +2021-01-27 18:44:12,27.405000686645508 +2021-01-27 18:53:59,27.456600189208984 +2021-01-27 19:03:47,27.40749931335449 +2021-01-27 19:13:35,27.4591007232666 +2021-01-27 19:23:23,27.40749931335449 +2021-01-27 19:33:10,27.4591007232666 +2021-01-27 19:42:58,27.4591007232666 +2021-01-27 19:52:46,27.4591007232666 +2021-01-27 20:02:33,27.4591007232666 +2021-01-27 20:12:21,27.40749931335449 +2021-01-27 20:22:09,27.40749931335449 +2021-01-27 20:31:56,27.4591007232666 +2021-01-27 20:41:44,27.4591007232666 +2021-01-27 20:51:32,27.40749931335449 +2021-01-27 21:01:20,27.4591007232666 +2021-01-27 21:11:07,27.4591007232666 +2021-01-27 21:20:55,27.4591007232666 +2021-01-27 21:30:43,27.4591007232666 +2021-01-27 21:40:31,27.4591007232666 +2021-01-27 21:50:19,27.4591007232666 +2021-01-27 22:00:06,27.4591007232666 +2021-01-27 22:09:54,27.4591007232666 +2021-01-27 22:19:42,27.4591007232666 +2021-01-27 22:29:30,27.4591007232666 +2021-01-27 22:39:17,27.4591007232666 +2021-01-27 22:49:05,27.4591007232666 +2021-01-27 22:58:53,27.4591007232666 +2021-01-27 23:08:41,27.40749931335449 +2021-01-27 23:18:28,27.4591007232666 +2021-01-27 23:28:16,27.4591007232666 +2021-01-27 23:38:04,27.4591007232666 +2021-01-27 23:47:52,27.4591007232666 +2021-01-27 23:57:39,27.40749931335449 +2021-01-28 00:07:27,27.40749931335449 +2021-01-28 00:17:15,27.4591007232666 +2021-01-28 00:27:03,27.4591007232666 +2021-01-28 00:36:50,27.510799407958984 +2021-01-28 00:46:38,27.510799407958984 +2021-01-28 00:56:26,27.4591007232666 +2021-01-28 01:06:14,27.4591007232666 +2021-01-28 01:16:01,27.4591007232666 +2021-01-28 01:25:49,27.40749931335449 +2021-01-28 01:35:37,27.4591007232666 +2021-01-28 01:45:25,27.40749931335449 +2021-01-28 01:55:12,27.4591007232666 +2021-01-28 02:05:00,27.456600189208984 +2021-01-28 02:14:48,27.4591007232666 +2021-01-28 02:24:35,27.4591007232666 +2021-01-28 02:34:23,27.40749931335449 +2021-01-28 02:44:11,27.405000686645508 +2021-01-28 02:53:59,27.4591007232666 +2021-01-28 03:03:46,27.4591007232666 +2021-01-28 03:13:34,27.4591007232666 +2021-01-28 03:23:22,27.4591007232666 +2021-01-28 03:33:09,27.4591007232666 +2021-01-28 03:42:57,27.4591007232666 +2021-01-28 03:52:45,27.4591007232666 +2021-01-28 04:02:33,27.355899810791016 +2021-01-28 04:12:20,27.4591007232666 +2021-01-28 04:22:08,27.4591007232666 +2021-01-28 04:31:56,27.4591007232666 +2021-01-28 04:41:44,27.4591007232666 +2021-01-28 04:51:32,27.461599349975582 +2021-01-28 05:01:20,27.4591007232666 +2021-01-28 05:11:08,27.4591007232666 +2021-01-28 05:20:56,27.4591007232666 +2021-01-28 05:30:43,27.510799407958984 +2021-01-28 05:40:31,27.40749931335449 +2021-01-28 05:50:19,27.4591007232666 +2021-01-28 06:00:07,27.4591007232666 +2021-01-28 06:09:55,27.4591007232666 +2021-01-28 06:19:43,27.4591007232666 +2021-01-28 06:29:30,27.4591007232666 +2021-01-28 06:39:18,27.4591007232666 +2021-01-28 06:49:06,27.4591007232666 +2021-01-28 06:58:54,27.40749931335449 +2021-01-28 07:08:41,27.4591007232666 +2021-01-28 07:18:29,27.40749931335449 +2021-01-28 07:28:17,27.4591007232666 +2021-01-28 07:38:05,27.614500045776367 +2021-01-28 07:47:52,27.66650009155273 +2021-01-28 07:57:40,27.4591007232666 +2021-01-28 08:07:28,27.4591007232666 +2021-01-28 08:17:16,27.40749931335449 +2021-01-28 08:27:03,27.4591007232666 +2021-01-28 08:36:51,27.4591007232666 +2021-01-28 08:46:39,27.66650009155273 +2021-01-28 08:56:27,27.614500045776367 +2021-01-28 09:06:14,27.617000579833984 +2021-01-28 09:16:02,27.614500045776367 +2021-01-28 09:25:50,27.614500045776367 +2021-01-28 09:35:38,27.614500045776367 +2021-01-28 09:45:25,27.614500045776367 +2021-01-28 09:55:13,27.614500045776367 +2021-01-28 10:05:01,27.614500045776367 +2021-01-28 10:14:48,27.614500045776367 +2021-01-28 10:24:36,27.614500045776367 +2021-01-28 10:34:24,27.614500045776367 +2021-01-28 10:44:12,27.56010055541992 +2021-01-28 10:54:00,27.61199951171875 +2021-01-28 11:03:47,27.56010055541992 +2021-01-28 11:13:35,27.614500045776367 +2021-01-28 11:23:23,27.61199951171875 +2021-01-28 11:33:11,27.614500045776367 +2021-01-28 11:42:59,27.562599182128903 +2021-01-28 11:52:46,27.614500045776367 +2021-01-28 12:02:34,27.61199951171875 +2021-01-28 12:12:22,27.61199951171875 +2021-01-28 12:22:10,27.56010055541992 +2021-01-28 12:31:58,27.614500045776367 +2021-01-28 12:41:45,27.614500045776367 +2021-01-28 12:51:33,27.614500045776367 +2021-01-28 13:01:21,27.50830078125 +2021-01-28 13:11:09,27.510799407958984 +2021-01-28 13:20:57,27.562599182128903 +2021-01-28 13:30:44,27.562599182128903 +2021-01-28 13:40:32,27.61199951171875 +2021-01-28 13:50:20,27.614500045776367 +2021-01-28 14:00:07,27.562599182128903 +2021-01-28 14:09:55,27.61199951171875 +2021-01-28 14:19:43,27.56010055541992 +2021-01-28 14:29:31,27.614500045776367 +2021-01-28 14:39:18,27.56010055541992 +2021-01-28 14:49:06,27.562599182128903 +2021-01-28 14:58:54,27.614500045776367 +2021-01-28 15:08:41,27.562599182128903 +2021-01-28 15:18:29,27.614500045776367 +2021-01-28 15:28:17,27.61199951171875 +2021-01-28 15:38:05,27.510799407958984 +2021-01-28 15:47:53,27.56010055541992 +2021-01-28 15:57:40,27.510799407958984 +2021-01-28 16:07:28,27.56010055541992 +2021-01-28 16:17:16,27.614500045776367 +2021-01-28 16:27:04,27.614500045776367 +2021-01-28 16:36:51,27.614500045776367 +2021-01-28 16:46:39,27.614500045776367 +2021-01-28 16:56:27,27.614500045776367 +2021-01-28 17:06:14,27.56010055541992 +2021-01-28 17:16:02,27.50830078125 +2021-01-28 17:25:50,27.56010055541992 +2021-01-28 17:35:38,27.61199951171875 +2021-01-28 17:45:25,27.562599182128903 +2021-01-28 17:55:13,27.56010055541992 +2021-01-28 18:05:02,27.614500045776367 +2021-01-28 18:14:55,27.56010055541992 +2021-01-28 18:24:42,27.56010055541992 +2021-01-28 18:34:30,27.562599182128903 +2021-01-28 18:44:18,27.61199951171875 +2021-01-28 18:54:06,27.50830078125 +2021-01-28 19:03:53,27.562599182128903 +2021-01-28 19:13:41,27.510799407958984 +2021-01-28 19:23:29,27.61199951171875 +2021-01-28 19:33:16,27.510799407958984 +2021-01-28 19:43:04,27.61199951171875 +2021-01-28 19:52:52,27.50830078125 +2021-01-28 20:02:40,27.614500045776367 +2021-01-28 20:12:28,27.66399955749512 +2021-01-28 20:22:15,27.456600189208984 +2021-01-28 20:32:03,27.50830078125 +2021-01-28 20:41:51,27.562599182128903 +2021-01-28 20:51:39,27.50830078125 +2021-01-28 21:01:26,27.61199951171875 +2021-01-28 21:11:14,27.56010055541992 +2021-01-28 21:21:02,27.56010055541992 +2021-01-28 21:30:50,27.562599182128903 +2021-01-28 21:40:38,27.56010055541992 +2021-01-28 21:50:25,27.50830078125 +2021-01-28 22:00:13,27.614500045776367 +2021-01-28 22:10:01,27.56010055541992 +2021-01-28 22:19:49,27.56010055541992 +2021-01-28 22:29:36,27.614500045776367 +2021-01-28 22:39:24,27.562599182128903 +2021-01-28 22:49:12,27.4591007232666 +2021-01-28 22:58:59,27.510799407958984 +2021-01-28 23:08:47,27.768299102783203 +2021-01-28 23:18:35,27.66399955749512 +2021-01-28 23:28:23,27.718599319458008 +2021-01-28 23:38:11,27.66399955749512 +2021-01-28 23:47:58,27.716100692749023 +2021-01-28 23:57:46,27.768299102783203 +2021-01-29 00:07:34,27.61199951171875 +2021-01-29 00:17:22,27.768299102783203 +2021-01-29 00:27:10,27.66399955749512 +2021-01-29 00:36:57,27.716100692749023 +2021-01-29 00:46:45,27.61199951171875 +2021-01-29 00:56:33,27.66399955749512 +2021-01-29 01:06:20,27.77090072631836 +2021-01-29 01:16:08,27.66650009155273 +2021-01-29 01:25:56,27.66399955749512 +2021-01-29 01:35:44,27.716100692749023 +2021-01-29 01:45:31,27.66399955749512 +2021-01-29 01:55:19,27.77090072631836 +2021-01-29 02:05:07,27.77090072631836 +2021-01-29 02:14:54,27.768299102783203 +2021-01-29 02:24:42,27.66650009155273 +2021-01-29 02:34:30,27.77090072631836 +2021-01-29 02:44:17,27.77090072631836 +2021-01-29 02:54:05,27.77090072631836 +2021-01-29 03:03:53,27.77090072631836 +2021-01-29 03:13:40,27.77090072631836 +2021-01-29 03:23:28,27.768299102783203 +2021-01-29 03:33:16,27.77090072631836 +2021-01-29 03:43:03,27.718599319458008 +2021-01-29 03:52:51,27.77090072631836 +2021-01-29 04:02:39,27.718599319458008 +2021-01-29 04:12:26,27.77090072631836 +2021-01-29 04:22:14,27.925600051879883 +2021-01-29 04:32:02,27.77090072631836 +2021-01-29 04:41:49,27.716100692749023 +2021-01-29 04:51:37,27.77090072631836 +2021-01-29 05:01:25,27.77090072631836 +2021-01-29 05:11:13,27.77090072631836 +2021-01-29 05:21:01,27.716100692749023 +2021-01-29 05:30:48,27.768299102783203 +2021-01-29 05:40:36,27.82069969177246 +2021-01-29 05:50:24,27.614500045776367 +2021-01-29 06:00:12,27.77090072631836 +2021-01-29 06:09:59,27.77090072631836 +2021-01-29 06:19:47,27.77090072631836 +2021-01-29 06:29:35,27.77090072631836 +2021-01-29 06:39:22,27.77090072631836 +2021-01-29 06:49:10,27.77090072631836 +2021-01-29 06:58:58,27.718599319458008 +2021-01-29 07:08:45,27.77090072631836 +2021-01-29 07:18:33,27.721099853515625 +2021-01-29 07:28:20,27.718599319458008 +2021-01-29 07:38:08,27.66650009155273 +2021-01-29 07:47:56,27.773399353027344 +2021-01-29 07:57:44,27.77090072631836 +2021-01-29 08:07:31,27.718599319458008 +2021-01-29 08:17:19,27.718599319458008 +2021-01-29 08:27:07,27.77090072631836 +2021-01-29 08:36:54,27.82320022583008 +2021-01-29 08:46:42,27.66399955749512 +2021-01-29 08:56:30,27.77090072631836 +2021-01-29 09:06:18,27.716100692749023 +2021-01-29 09:16:06,27.77090072631836 +2021-01-29 09:25:53,27.77090072631836 +2021-01-29 09:35:41,27.77090072631836 +2021-01-29 09:45:29,27.768299102783203 +2021-01-29 09:55:17,27.77090072631836 +2021-01-29 10:05:04,27.768299102783203 +2021-01-29 10:14:52,27.77090072631836 +2021-01-29 10:24:40,27.77090072631836 +2021-01-29 10:34:27,27.77090072631836 +2021-01-29 10:44:15,27.77090072631836 +2021-01-29 10:54:03,27.77090072631836 +2021-01-29 11:03:51,27.77090072631836 +2021-01-29 11:13:39,27.77090072631836 +2021-01-29 11:23:26,27.77090072631836 +2021-01-29 11:33:14,27.77090072631836 +2021-01-29 11:43:02,27.77090072631836 +2021-01-29 11:52:49,27.77090072631836 +2021-01-29 12:02:37,27.768299102783203 +2021-01-29 12:12:25,27.82320022583008 +2021-01-29 12:22:12,27.66650009155273 +2021-01-29 12:32:00,27.77090072631836 +2021-01-29 12:41:47,27.77090072631836 +2021-01-29 12:51:35,27.77090072631836 +2021-01-29 13:01:23,27.77090072631836 +2021-01-29 13:11:10,27.82069969177246 +2021-01-29 13:20:58,27.768299102783203 +2021-01-29 13:30:46,27.768299102783203 +2021-01-29 13:40:33,27.562599182128903 +2021-01-29 13:50:21,27.77090072631836 +2021-01-29 14:00:09,27.77090072631836 +2021-01-29 14:09:57,29.107500076293945 +2021-01-29 14:19:44,28.780000686645508 +2021-01-29 14:29:32,28.242799758911133 +2021-01-29 14:39:20,27.716100692749023 +2021-01-29 14:49:08,29.718299865722656 +2021-01-29 14:58:55,31.700899124145508 +2021-01-29 15:08:43,35.93539810180664 +2021-01-29 15:18:31,36.35760116577149 +2021-01-29 15:28:19,37.602298736572266 +2021-01-29 15:38:07,41.0885009765625 +2021-01-29 15:47:54,44.95980072021485 +2021-01-29 15:57:42,48.63970184326172 +2021-01-29 16:07:30,53.83380126953125 +2021-01-29 16:17:18,43.276798248291016 +2021-01-29 16:27:06,54.09149932861328 +2021-01-29 16:36:54,60.35919952392578 +2021-01-29 16:46:41,46.84600067138672 +2021-01-29 16:56:29,72.65180206298828 +2021-01-29 17:06:17,76.14949798583984 +2021-01-29 17:16:04,89.76260375976562 +2021-01-29 17:25:52,98.09420013427734 +2021-01-29 17:35:40,90.45690155029295 +2021-01-29 17:45:28,82.51509857177734 +2021-01-29 17:55:16,102.9457015991211 +2021-01-29 18:05:03,91.16280364990234 +2021-01-29 18:14:51,90.80020141601562 +2021-01-29 18:24:39,79.7417984008789 +2021-01-29 18:34:27,68.0647964477539 +2021-01-29 18:44:15,45.94189834594727 +2021-01-29 18:54:03,56.51499938964844 +2021-01-29 19:03:50,56.099098205566406 +2021-01-29 19:13:38,44.48659896850586 +2021-01-29 19:23:26,44.772098541259766 +2021-01-29 19:33:14,43.92390060424805 +2021-01-29 19:43:02,43.18989944458008 +2021-01-29 19:52:49,52.5801010131836 +2021-01-29 20:02:37,45.05619812011719 +2021-01-29 20:12:25,45.44889831542969 +2021-01-29 20:22:13,46.74789810180664 +2021-01-29 20:32:01,48.212398529052734 +2021-01-29 20:41:48,34.559200286865234 +2021-01-29 20:51:36,46.54019927978516 +2021-01-29 21:01:24,50.78189849853516 +2021-01-29 21:11:12,45.351200103759766 +2021-01-29 21:20:59,46.74789810180664 +2021-01-29 21:30:47,54.613399505615234 +2021-01-29 21:40:35,55.547698974609375 +2021-01-29 21:50:23,44.20000076293945 +2021-01-29 22:00:11,58.52389907836914 +2021-01-29 22:09:58,61.30770111083984 +2021-01-29 22:19:46,64.69640350341797 +2021-01-29 22:29:34,51.96910095214844 +2021-01-29 22:39:22,51.128700256347656 +2021-01-29 22:49:09,72.20939636230469 +2021-01-29 22:58:57,85.82489776611328 +2021-01-29 23:08:45,90.44869995117188 +2021-01-29 23:18:32,74.01170349121094 +2021-01-29 23:28:20,72.88159942626953 +2021-01-29 23:38:08,100.67539978027344 +2021-01-29 23:47:56,93.72219848632812 +2021-01-29 23:57:43,96.85780334472656 +2021-01-30 00:07:31,131.23129272460938 +2021-01-30 00:17:19,169.23390197753906 +2021-01-30 00:27:07,94.87159729003906 +2021-01-30 00:36:55,76.15630340576172 +2021-01-30 00:46:43,69.66840362548828 +2021-01-30 00:56:30,68.26129913330078 +2021-01-30 01:06:18,71.3467025756836 +2021-01-30 01:16:06,71.99669647216797 +2021-01-30 01:25:54,51.25139999389648 +2021-01-30 01:35:42,70.28230285644531 +2021-01-30 01:45:29,45.06019973754883 +2021-01-30 01:55:17,43.92390060424805 +2021-01-30 02:05:05,54.35139846801758 +2021-01-30 02:14:53,47.36259841918945 +2021-01-30 02:24:41,47.78239822387695 +2021-01-30 02:34:28,169.23390197753906 +2021-01-30 02:44:16,36.35760116577149 +2021-01-30 02:54:04,33.31480026245117 +2021-01-30 03:03:51,32.12409973144531 +2021-01-30 03:13:39,32.30870056152344 +2021-01-30 03:23:27,30.51619911193848 +2021-01-30 03:33:15,30.28580093383789 +2021-01-30 03:43:03,30.28580093383789 +2021-01-30 03:52:50,30.28580093383789 +2021-01-30 04:02:38,30.86540031433105 +2021-01-30 04:12:26,31.577600479125977 +2021-01-30 04:22:14,32.74440002441406 +2021-01-30 04:32:01,32.99649810791016 +2021-01-30 04:41:49,34.42559814453125 +2021-01-30 04:51:37,35.37810134887695 +2021-01-30 05:01:25,36.14410018920898 +2021-01-30 05:11:13,36.35760116577149 +2021-01-30 05:21:00,39.36989974975586 +2021-01-30 05:30:48,37.00790023803711 +2021-01-30 05:40:36,40.42160034179688 +2021-01-30 05:50:24,41.42779922485352 +2021-01-30 06:00:11,41.598899841308594 +2021-01-30 06:09:59,43.55070114135742 +2021-01-30 06:19:47,45.93769836425781 +2021-01-30 06:29:35,54.613399505615234 +2021-01-30 06:39:22,45.15280151367188 +2021-01-30 06:49:10,55.81969833374024 +2021-01-30 06:58:58,46.74369812011719 +2021-01-30 07:08:46,61.79499816894531 +2021-01-30 07:18:34,61.30770111083984 +2021-01-30 07:28:22,61.79499816894531 +2021-01-30 07:38:09,47.26290130615234 +2021-01-30 07:47:57,46.3380012512207 +2021-01-30 07:57:45,46.3380012512207 +2021-01-30 08:07:32,52.08570098876953 +2021-01-30 08:17:20,70.07440185546875 +2021-01-30 08:27:08,112.18399810791016 +2021-01-30 08:36:56,129.6147003173828 +2021-01-30 08:46:44,169.23390197753906 +2021-01-30 08:56:32,170.79319763183594 +2021-01-30 09:06:20,126.52050018310548 +2021-01-30 09:16:08,134.61529541015625 +2021-01-30 09:25:55,98.93810272216795 +2021-01-30 09:35:43,100.22570037841795 +2021-01-30 09:45:31,104.8563003540039 +2021-01-30 09:55:19,104.36419677734376 +2021-01-30 10:05:07,111.62079620361328 +2021-01-30 10:14:55,104.36419677734376 +2021-01-30 10:24:42,88.3998031616211 +2021-01-30 10:34:30,88.7343978881836 +2021-01-30 10:44:18,78.93769836425781 +2021-01-30 10:54:06,45.64099884033203 +2021-01-30 11:03:54,57.21500015258789 +2021-01-30 11:13:42,64.16629791259766 +2021-01-30 11:23:30,34.69350051879883 +2021-01-30 11:33:17,30.74850082397461 +2021-01-30 11:43:05,34.42559814453125 +2021-01-30 11:52:53,33.37900161743164 +2021-01-30 12:02:41,32.55680084228516 +2021-01-30 12:12:28,31.94070053100586 +2021-01-30 12:22:16,32.004600524902344 +2021-01-30 12:32:04,32.24700164794922 +2021-01-30 12:41:52,32.00170135498047 +2021-01-30 12:51:40,32.99649810791016 +2021-01-30 13:01:27,34.094200134277344 +2021-01-30 13:11:15,33.832000732421875 +2021-01-30 13:21:03,34.292598724365234 +2021-01-30 13:30:51,35.168701171875 +2021-01-30 13:40:38,32.93320083618164 +2021-01-30 13:50:26,36.57270050048828 +2021-01-30 14:00:14,52.69900131225586 +2021-01-30 14:10:02,46.54019927978516 +2021-01-30 14:19:50,48.96749877929688 +2021-01-30 14:29:37,68.45279693603516 +2021-01-30 14:39:25,66.90180206298828 +2021-01-30 14:49:13,73.78160095214844 +2021-01-30 14:59:01,66.52439880371094 +2021-01-30 15:08:48,69.05229949951172 +2021-01-30 15:18:36,101.56990051269533 +2021-01-30 15:28:24,108.89969635009766 +2021-01-30 15:38:12,122.89099884033205 +2021-01-30 15:48:00,166.22109985351562 +2021-01-30 15:57:47,115.70680236816406 +2021-01-30 16:07:35,106.32589721679688 +2021-01-30 16:17:23,148.36500549316406 +2021-01-30 16:27:11,65.78170013427734 +2021-01-30 16:36:59,76.6415023803711 +2021-01-30 16:46:46,55.27799987792969 +2021-01-30 16:56:34,70.28230285644531 +2021-01-30 17:06:22,89.41169738769531 +2021-01-30 17:16:10,78.41539764404297 +2021-01-30 17:25:58,51.60359954833984 +2021-01-30 17:35:45,47.05160140991211 +2021-01-30 17:45:33,47.67689895629883 +2021-01-30 17:55:21,60.35380172729492 +2021-01-30 18:05:09,56.93109893798828 +2021-01-30 18:14:57,71.55570220947266 +2021-01-30 18:24:44,75.42330169677734 +2021-01-30 18:34:32,54.09149932861328 +2021-01-30 18:44:20,46.54019927978516 +2021-01-30 18:54:08,45.64099884033203 +2021-01-30 19:03:55,71.55570220947266 +2021-01-30 19:13:43,52.3296012878418 +2021-01-30 19:23:31,78.15689849853516 +2021-01-30 19:33:19,50.6609992980957 +2021-01-30 19:43:06,57.21500015258789 +2021-01-30 19:52:54,47.67689895629883 +2021-01-30 20:02:42,45.63690185546875 +2021-01-30 20:12:29,46.23740005493164 +2021-01-30 20:22:17,46.13719940185547 +2021-01-30 20:32:05,46.54019927978516 +2021-01-30 20:41:53,65.23480224609375 +2021-01-30 20:51:40,50.20029830932617 +2021-01-30 21:01:28,67.85710144042969 +2021-01-30 21:11:15,45.93769836425781 +2021-01-30 21:21:03,66.331298828125 +2021-01-30 21:30:51,48.31539916992188 +2021-01-30 21:40:39,61.63180160522461 +2021-01-30 21:50:26,68.05860137939453 +2021-01-30 22:00:14,49.29890060424805 +2021-01-30 22:10:02,61.141300201416016 +2021-01-30 22:19:49,46.54019927978516 +2021-01-30 22:29:37,64.8749008178711 +2021-01-30 22:39:25,48.63970184326172 +2021-01-30 22:49:12,46.13719940185547 +2021-01-30 22:59:00,62.79119873046875 +2021-01-30 23:08:48,65.23480224609375 +2021-01-30 23:18:35,71.55570220947266 +2021-01-30 23:28:23,48.63529968261719 +2021-01-30 23:38:11,47.05160140991211 +2021-01-30 23:47:59,47.99449920654297 +2021-01-30 23:57:46,45.64099884033203 +2021-01-31 00:07:34,46.43889999389648 +2021-01-31 00:17:22,67.86319732666016 +2021-01-31 00:27:10,75.90579986572266 +2021-01-31 00:36:57,47.05160140991211 +2021-01-31 00:46:45,47.36259841918945 +2021-01-31 00:56:33,46.74369812011719 +2021-01-31 01:06:20,45.53860092163086 +2021-01-31 01:16:08,46.74369812011719 +2021-01-31 01:25:56,46.84600067138672 +2021-01-31 01:35:44,47.36259841918945 +2021-01-31 01:45:32,45.542701721191406 +2021-01-31 01:55:19,61.14680099487305 +2021-01-31 02:05:07,66.71260070800781 +2021-01-31 02:14:55,48.63970184326172 +2021-01-31 02:24:43,62.45589828491211 +2021-01-31 02:34:30,46.84600067138672 +2021-01-31 02:44:18,60.1973991394043 +2021-01-31 02:54:06,65.23480224609375 +2021-01-31 03:03:54,50.20029830932617 +2021-01-31 03:13:42,48.63970184326172 +2021-01-31 03:23:30,47.67689895629883 +2021-01-31 03:33:17,70.70179748535156 +2021-01-31 03:43:05,170.79319763183594 +2021-01-31 03:52:53,84.28250122070312 +2021-01-31 04:02:41,50.54520034790039 +2021-01-31 04:12:29,52.57529830932617 +2021-01-31 04:22:16,45.542701721191406 +2021-01-31 04:32:04,66.331298828125 +2021-01-31 04:41:52,166.2061004638672 +2021-01-31 04:51:40,52.3296012878418 +2021-01-31 05:01:27,60.8218994140625 +2021-01-31 05:11:15,53.45100021362305 +2021-01-31 05:21:03,59.42620086669922 +2021-01-31 05:30:51,54.35139846801758 +2021-01-31 05:40:38,170.79319763183594 +2021-01-31 05:50:26,52.70370101928711 +2021-01-31 06:00:14,58.67259979248047 +2021-01-31 06:10:02,169.23390197753906 +2021-01-31 06:19:49,78.41539764404297 +2021-01-31 06:29:37,70.91339874267578 +2021-01-31 06:39:25,62.79119873046875 +2021-01-31 06:49:13,170.79319763183594 +2021-01-31 06:59:01,60.1973991394043 +2021-01-31 07:08:48,55.67839813232422 +2021-01-31 07:18:36,53.32440185546875 +2021-01-31 07:28:24,48.423099517822266 +2021-01-31 07:38:12,47.36259841918945 +2021-01-31 07:47:59,37.22809982299805 +2021-01-31 07:57:47,37.37580108642578 +2021-01-31 08:07:35,52.3296012878418 +2021-01-31 08:17:23,51.60359954833984 +2021-01-31 08:27:10,46.54019927978516 +2021-01-31 08:36:58,47.67689895629883 +2021-01-31 08:46:46,47.36259841918945 +2021-01-31 08:56:33,66.33719635009766 +2021-01-31 09:06:21,50.31480026245117 +2021-01-31 09:16:09,62.96009826660156 +2021-01-31 09:25:56,71.55570220947266 +2021-01-31 09:35:44,64.16629791259766 +2021-01-31 09:45:32,56.09400177001953 +2021-01-31 09:55:20,51.964500427246094 +2021-01-31 10:05:07,51.964500427246094 +2021-01-31 10:14:55,51.84370040893555 +2021-01-31 10:24:43,47.5718002319336 +2021-01-31 10:34:30,71.34030151367188 +2021-01-31 10:44:18,51.24679946899414 +2021-01-31 10:54:05,66.71260070800781 +2021-01-31 11:03:53,66.71260070800781 +2021-01-31 11:13:41,49.6338005065918 +2021-01-31 11:23:28,170.79319763183594 +2021-01-31 11:33:16,71.1261978149414 +2021-01-31 11:43:03,42.03120040893555 +2021-01-31 11:52:51,45.73960113525391 +2021-01-31 12:02:39,42.91550064086914 +2021-01-31 12:12:26,40.50419998168945 +2021-01-31 12:22:14,170.79319763183594 +2021-01-31 12:32:02,45.73960113525391 +2021-01-31 12:41:49,39.52920150756836 +2021-01-31 12:51:37,39.85049819946289 +2021-01-31 13:01:25,38.43220138549805 +2021-01-31 13:11:12,169.23390197753906 +2021-01-31 13:21:00,41.00429916381836 +2021-01-31 13:30:47,36.50080108642578 +2021-01-31 13:40:35,36.71699905395508 +2021-01-31 13:50:23,35.51319885253906 +2021-01-31 14:00:10,36.35430145263672 +2021-01-31 14:09:58,36.14410018920898 +2021-01-31 14:19:45,35.51319885253906 +2021-01-31 14:29:33,34.028499603271484 +2021-01-31 14:39:21,31.51749992370605 +2021-01-31 14:49:08,32.432498931884766 +2021-01-31 14:58:56,33.31480026245117 +2021-01-31 15:08:44,33.63690185546875 +2021-01-31 15:18:31,32.494598388671875 +2021-01-31 15:28:19,32.494598388671875 +2021-01-31 15:38:06,32.93320083618164 +2021-01-31 15:47:54,32.93619918823242 +2021-01-31 15:57:41,34.094200134277344 +2021-01-31 16:07:29,33.897300720214844 +2021-01-31 16:17:16,32.249900817871094 +2021-01-31 16:27:04,33.507598876953125 +2021-01-31 16:36:51,30.74850082397461 +2021-01-31 16:46:39,31.278600692749023 +2021-01-31 16:56:27,31.51749992370605 +2021-01-31 17:06:14,30.92679977416992 +2021-01-31 17:16:02,30.75130081176757 +2021-01-31 17:25:49,29.887300491333008 +2021-01-31 17:35:37,31.04450035095215 +2021-01-31 17:45:25,30.17410087585449 +2021-01-31 17:55:12,29.441600799560547 +2021-01-31 18:05:00,29.275299072265625 +2021-01-31 18:14:47,28.62030029296875 +2021-01-31 18:24:35,28.242799758911133 +2021-01-31 18:34:22,29.77720069885254 +2021-01-31 18:44:10,29.664899826049805 +2021-01-31 18:53:57,30.17140007019043 +2021-01-31 19:03:45,29.606199264526367 +2021-01-31 19:13:33,29.94659996032715 +2021-01-31 19:23:20,29.11009979248047 +2021-01-31 19:33:08,33.76679992675781 +2021-01-31 19:42:55,44.20000076293945 +2021-01-31 19:52:43,36.21500015258789 +2021-01-31 20:02:31,29.494600296020508 +2021-01-31 20:12:18,28.35199928283692 +2021-01-31 20:22:06,28.298599243164062 +2021-01-31 20:31:54,28.298599243164062 +2021-01-31 20:41:42,29.217500686645508 +2021-01-31 20:51:29,28.617700576782227 +2021-01-31 21:01:17,29.55039978027344 +2021-01-31 21:11:05,39.52920150756836 +2021-01-31 21:20:53,38.975399017333984 +2021-01-31 21:30:41,30.57410049438477 +2021-01-31 21:40:29,28.88870048522949 +2021-01-31 21:50:16,29.606199264526367 +2021-01-31 22:00:04,30.00329971313477 +2021-01-31 22:09:52,29.217500686645508 +2021-01-31 22:19:40,30.11429977416992 +2021-01-31 22:29:28,28.99790000915528 +2021-01-31 22:39:15,30.28580093383789 +2021-01-31 22:49:03,30.86540031433105 +2021-01-31 22:58:51,170.79319763183594 +2021-01-31 23:08:39,54.482200622558594 +2021-01-31 23:18:27,31.94070053100586 +2021-01-31 23:28:15,29.94389915466309 +2021-01-31 23:38:02,29.2726993560791 +2021-01-31 23:47:50,33.31480026245117 +2021-01-31 23:57:38,28.29610061645508 +2021-02-01 00:07:26,29.774599075317383 +2021-02-01 00:17:13,34.292598724365234 +2021-02-01 00:27:01,28.242799758911133 +2021-02-01 00:36:49,28.298599243164062 +2021-02-01 00:46:37,28.29610061645508 +2021-02-01 00:56:24,28.34939956665039 +2021-02-01 01:06:12,37.97460174560547 +2021-02-01 01:16:00,44.10630035400391 +2021-02-01 01:25:48,31.04170036315918 +2021-02-01 01:35:35,28.40290069580078 +2021-02-01 01:45:23,28.242799758911133 +2021-02-01 01:55:11,28.29610061645508 +2021-02-01 02:04:59,28.29610061645508 +2021-02-01 02:14:47,28.242799758911133 +2021-02-01 02:24:34,28.242799758911133 +2021-02-01 02:34:22,28.242799758911133 +2021-02-01 02:44:10,28.242799758911133 +2021-02-01 02:53:58,28.242799758911133 +2021-02-01 03:03:46,28.245399475097656 +2021-02-01 03:13:33,28.242799758911133 +2021-02-01 03:23:21,28.242799758911133 +2021-02-01 03:33:09,28.34939956665039 +2021-02-01 03:42:57,28.18969917297364 +2021-02-01 03:52:45,28.242799758911133 +2021-02-01 04:02:33,28.242799758911133 +2021-02-01 04:12:20,28.242799758911133 +2021-02-01 04:22:08,28.34939956665039 +2021-02-01 04:31:56,28.242799758911133 +2021-02-01 04:41:44,28.242799758911133 +2021-02-01 04:51:32,28.18969917297364 +2021-02-01 05:01:20,28.18969917297364 +2021-02-01 05:11:08,28.242799758911133 +2021-02-01 05:20:55,28.242799758911133 +2021-02-01 05:30:43,28.242799758911133 +2021-02-01 05:40:31,28.18969917297364 +2021-02-01 05:50:19,28.242799758911133 +2021-02-01 06:00:06,28.18969917297364 +2021-02-01 06:09:54,28.34939956665039 +2021-02-01 06:19:42,28.18969917297364 +2021-02-01 06:29:30,28.242799758911133 +2021-02-01 06:39:17,28.242799758911133 +2021-02-01 06:49:05,28.18969917297364 +2021-02-01 06:58:53,28.136699676513672 +2021-02-01 07:08:41,28.18969917297364 +2021-02-01 07:18:28,28.242799758911133 +2021-02-01 07:28:16,28.242799758911133 +2021-02-01 07:38:04,28.242799758911133 +2021-02-01 07:47:52,28.242799758911133 +2021-02-01 07:57:39,28.18969917297364 +2021-02-01 08:07:27,28.242799758911133 +2021-02-01 08:17:15,28.18969917297364 +2021-02-01 08:27:03,28.242799758911133 +2021-02-01 08:36:50,28.18969917297364 +2021-02-01 08:46:38,28.242799758911133 +2021-02-01 08:56:26,28.242799758911133 +2021-02-01 09:06:14,28.18969917297364 +2021-02-01 09:16:01,28.18969917297364 +2021-02-01 09:25:49,28.08370018005371 +2021-02-01 09:35:37,28.18969917297364 +2021-02-01 09:45:25,28.242799758911133 +2021-02-01 09:55:12,28.03089904785156 +2021-02-01 10:05:00,28.29610061645508 +2021-02-01 10:14:48,28.03089904785156 +2021-02-01 10:24:36,28.03089904785156 +2021-02-01 10:34:24,28.03089904785156 +2021-02-01 10:44:11,28.03089904785156 +2021-02-01 10:53:59,28.03089904785156 +2021-02-01 11:03:47,28.18969917297364 +2021-02-01 11:13:35,28.08370018005371 +2021-02-01 11:23:23,28.03089904785156 +2021-02-01 11:33:11,28.18969917297364 +2021-02-01 11:42:58,28.08370018005371 +2021-02-01 11:52:46,28.02840042114257 +2021-02-01 12:02:34,28.08370018005371 +2021-02-01 12:12:22,28.03089904785156 +2021-02-01 12:22:10,28.08370018005371 +2021-02-01 12:31:57,28.03089904785156 +2021-02-01 12:41:45,28.03089904785156 +2021-02-01 12:51:33,28.03089904785156 +2021-02-01 13:01:20,28.08370018005371 +2021-02-01 13:11:08,28.02840042114257 +2021-02-01 13:20:56,28.081199645996094 +2021-02-01 13:30:43,28.03089904785156 +2021-02-01 13:40:31,28.03089904785156 +2021-02-01 13:50:18,28.03089904785156 +2021-02-01 14:00:06,27.925600051879883 +2021-02-01 14:09:54,94.47660064697266 +2021-02-01 14:19:41,31.157100677490234 +2021-02-01 14:29:29,28.02840042114257 +2021-02-01 14:39:17,28.03089904785156 +2021-02-01 14:49:04,28.02840042114257 +2021-02-01 14:58:52,28.02840042114257 +2021-02-01 15:08:40,28.03089904785156 +2021-02-01 15:18:28,28.03089904785156 +2021-02-01 15:28:15,28.08370018005371 +2021-02-01 15:38:03,28.03089904785156 +2021-02-01 15:47:51,28.03089904785156 +2021-02-01 15:57:39,28.03089904785156 +2021-02-01 16:07:26,28.02840042114257 +2021-02-01 16:17:14,28.03089904785156 +2021-02-01 16:27:02,28.03089904785156 +2021-02-01 16:36:50,28.08370018005371 +2021-02-01 16:46:38,28.03089904785156 +2021-02-01 16:56:25,28.03089904785156 +2021-02-01 17:06:13,28.03089904785156 +2021-02-01 17:16:01,28.03339958190918 +2021-02-01 17:25:49,28.03089904785156 +2021-02-01 17:35:36,32.99649810791016 +2021-02-01 17:45:24,169.2490997314453 +2021-02-01 17:55:12,42.293701171875 +2021-02-01 18:05:00,30.690200805664062 +2021-02-01 18:14:48,28.02840042114257 +2021-02-01 18:24:36,28.03089904785156 +2021-02-01 18:34:24,28.03089904785156 +2021-02-01 18:44:11,28.03089904785156 +2021-02-01 18:53:59,28.617700576782227 +2021-02-01 19:03:47,169.21859741210938 +2021-02-01 19:13:35,169.23390197753906 +2021-02-01 19:23:23,66.1511001586914 +2021-02-01 19:33:10,167.71029663085938 +2021-02-01 19:42:58,166.22109985351562 +2021-02-01 19:52:46,53.329200744628906 +2021-02-01 20:02:34,46.43470001220703 +2021-02-01 20:12:21,32.55390167236328 +2021-02-01 20:22:09,29.104799270629883 +2021-02-01 20:31:57,169.21859741210938 +2021-02-01 20:41:45,170.79319763183594 +2021-02-01 20:51:33,34.29570007324219 +2021-02-01 21:01:20,40.17190170288086 +2021-02-01 21:11:08,169.21859741210938 +2021-02-01 21:20:56,170.79319763183594 +2021-02-01 21:30:44,164.764892578125 +2021-02-01 21:40:32,169.23390197753906 +2021-02-01 21:50:20,170.79319763183594 +2021-02-01 22:00:07,169.23390197753906 +2021-02-01 22:09:55,170.79319763183594 +2021-02-01 22:19:43,169.23390197753906 +2021-02-01 22:29:30,94.48509979248048 +2021-02-01 22:39:18,90.1001968383789 +2021-02-01 22:49:06,81.94309997558594 +2021-02-01 22:58:54,118.8467025756836 +2021-02-01 23:08:41,80.00389862060547 +2021-02-01 23:18:29,70.91339874267578 +2021-02-01 23:28:17,68.05860137939453 +2021-02-01 23:38:05,61.62630081176758 +2021-02-01 23:47:52,94.87159729003906 +2021-02-01 23:57:40,100.67539978027344 +2021-02-02 00:07:28,56.79010009765625 +2021-02-02 00:17:15,55.27799987792969 +2021-02-02 00:27:03,60.1973991394043 +2021-02-02 00:36:51,60.1973991394043 +2021-02-02 00:46:38,75.42330169677734 +2021-02-02 00:56:35,54.482200622558594 +2021-02-02 01:06:33,47.99020004272461 +2021-02-02 01:16:22,74.01170349121094 +2021-02-02 01:26:10,49.29890060424805 +2021-02-02 01:35:58,50.78189849853516 +2021-02-02 01:45:45,51.964500427246094 +2021-02-02 01:55:33,47.36690139770508 +2021-02-02 02:05:21,48.8578987121582 +2021-02-02 02:15:09,78.15689849853516 +2021-02-02 02:24:57,54.87760162353516 +2021-02-02 02:34:44,49.52619934082031 +2021-02-02 02:44:32,82.8042984008789 +2021-02-02 02:54:20,54.487098693847656 +2021-02-02 03:04:08,78.15689849853516 +2021-02-02 03:13:55,81.94309997558594 +2021-02-02 03:23:43,92.60279846191406 +2021-02-02 03:33:31,116.94979858398438 +2021-02-02 03:43:19,167.71029663085938 +2021-02-02 03:53:06,166.22109985351562 +2021-02-02 04:02:54,167.71029663085938 +2021-02-02 04:12:42,111.06410217285156 +2021-02-02 04:22:30,128.82420349121094 +2021-02-02 04:32:18,136.40049743652344 +2021-02-02 04:42:05,166.22109985351562 +2021-02-02 04:51:53,126.52050018310548 +2021-02-02 05:01:41,166.22109985351562 +2021-02-02 05:11:29,81.3718032836914 +2021-02-02 05:21:17,78.93769836425781 +2021-02-02 05:31:05,112.18399810791016 +2021-02-02 05:40:52,131.23129272460938 +2021-02-02 05:50:40,99.36609649658205 +2021-02-02 06:00:28,89.75450134277344 +2021-02-02 06:10:16,49.1879997253418 +2021-02-02 06:20:03,28.136699676513672 +2021-02-02 06:29:51,28.08370018005371 +2021-02-02 06:39:39,28.136699676513672 +2021-02-02 06:49:27,28.03089904785156 +2021-02-02 06:59:14,28.03089904785156 +2021-02-02 07:09:02,28.03089904785156 +2021-02-02 07:18:50,28.03089904785156 +2021-02-02 07:28:38,28.02840042114257 +2021-02-02 07:38:26,28.03089904785156 +2021-02-02 07:48:14,60.668701171875 +2021-02-02 07:58:02,169.23390197753906 +2021-02-02 08:07:50,118.83599853515624 +2021-02-02 08:17:38,76.88990020751953 +2021-02-02 08:27:26,169.23390197753906 +2021-02-02 08:37:13,166.22109985351562 +2021-02-02 08:47:01,110.51380157470705 +2021-02-02 08:56:49,28.03089904785156 +2021-02-02 09:06:37,28.08370018005371 +2021-02-02 09:16:25,28.086299896240234 +2021-02-02 09:26:13,68.45279693603516 +2021-02-02 09:36:01,62.12379837036133 +2021-02-02 09:45:48,28.08370018005371 +2021-02-02 09:55:36,28.03089904785156 +2021-02-02 10:05:30,28.03089904785156 +2021-02-02 10:15:18,28.136699676513672 +2021-02-02 10:25:05,28.08370018005371 +2021-02-02 10:34:53,28.03089904785156 +2021-02-02 10:44:41,28.08370018005371 +2021-02-02 10:54:29,28.03089904785156 +2021-02-02 11:04:17,28.03089904785156 +2021-02-02 11:14:04,28.03089904785156 +2021-02-02 11:23:52,28.03089904785156 +2021-02-02 11:33:40,28.03089904785156 +2021-02-02 11:43:28,166.22109985351562 +2021-02-02 11:53:15,47.99449920654297 +2021-02-02 12:03:03,50.54520034790039 +2021-02-02 12:12:51,37.30189895629883 +2021-02-02 12:22:39,36.78950119018555 +2021-02-02 12:32:26,45.542701721191406 +2021-02-02 12:42:14,54.09149932861328 +2021-02-02 12:52:02,47.67689895629883 +2021-02-02 13:01:50,64.34210205078125 +2021-02-02 13:11:37,56.23199844360352 +2021-02-02 13:21:25,169.21859741210938 +2021-02-02 13:31:13,76.39469909667969 +2021-02-02 13:41:01,91.51200103759766 +2021-02-02 13:50:48,93.3458023071289 +2021-02-02 14:00:36,56.37070083618164 +2021-02-02 14:10:23,48.63970184326172 +2021-02-02 14:20:11,62.28950119018555 +2021-02-02 14:29:59,81.37920379638672 +2021-02-02 14:39:47,74.71080017089844 +2021-02-02 14:49:34,100.23470306396484 +2021-02-02 14:59:22,74.24330139160156 +2021-02-02 15:09:10,75.1843032836914 +2021-02-02 15:18:58,71.98370361328125 +2021-02-02 15:28:46,30.28580093383789 +2021-02-02 15:38:33,28.081199645996094 +2021-02-02 15:48:21,28.03089904785156 +2021-02-02 15:58:09,28.03089904785156 +2021-02-02 16:07:57,28.03089904785156 +2021-02-02 16:17:45,28.13409996032715 +2021-02-02 16:27:32,27.978200912475582 +2021-02-02 16:37:20,27.978200912475582 +2021-02-02 16:47:08,27.978200912475582 +2021-02-02 16:56:56,28.18969917297364 +2021-02-02 17:06:44,164.764892578125 +2021-02-02 17:16:31,68.85140228271484 +2021-02-02 17:26:19,87.08809661865234 +2021-02-02 17:36:07,98.51409912109376 +2021-02-02 17:45:55,118.8467025756836 +2021-02-02 17:55:42,120.15959930419922 +2021-02-02 18:05:30,91.15460205078124 +2021-02-02 18:15:18,56.79010009765625 +2021-02-02 18:25:06,67.86319732666016 +2021-02-02 18:34:53,169.23390197753906 +2021-02-02 18:44:41,49.1879997253418 +2021-02-02 18:54:29,93.3458023071289 +2021-02-02 19:04:17,93.3458023071289 +2021-02-02 19:14:04,71.34030151367188 +2021-02-02 19:23:52,59.73789978027344 +2021-02-02 19:33:40,169.23390197753906 +2021-02-02 19:43:28,28.242799758911133 +2021-02-02 19:53:15,28.18969917297364 +2021-02-02 20:03:03,28.242799758911133 +2021-02-02 20:12:51,28.18969917297364 +2021-02-02 20:22:39,28.18969917297364 +2021-02-02 20:32:26,28.18969917297364 +2021-02-02 20:42:14,28.18969917297364 +2021-02-02 20:52:02,28.242799758911133 +2021-02-02 21:01:50,28.34939956665039 +2021-02-02 21:11:37,28.18969917297364 +2021-02-02 21:21:25,28.40290069580078 +2021-02-02 21:31:13,28.18969917297364 +2021-02-02 21:41:00,169.23390197753906 +2021-02-02 21:50:48,85.19619750976562 +2021-02-02 22:00:36,81.3864974975586 +2021-02-02 22:10:23,60.1973991394043 +2021-02-02 22:20:11,95.26170349121094 +2021-02-02 22:29:59,122.89099884033205 +2021-02-02 22:39:46,120.8289031982422 +2021-02-02 22:49:34,131.23129272460938 +2021-02-02 22:59:22,117.56710052490234 +2021-02-02 23:09:09,92.60279846191406 +2021-02-02 23:18:57,104.36419677734376 +2021-02-02 23:28:45,110.51380157470705 +2021-02-02 23:38:32,79.7345962524414 +2021-02-02 23:48:20,102.9457015991211 +2021-02-02 23:58:08,112.18399810791016 +2021-02-03 00:07:56,83.9823989868164 +2021-02-03 00:17:43,108.89969635009766 +2021-02-03 00:27:31,86.7667007446289 +2021-02-03 00:37:19,118.8467025756836 +2021-02-03 00:47:07,143.07130432128906 +2021-02-03 00:56:54,167.71029663085938 +2021-02-03 01:06:42,170.79319763183594 +2021-02-03 01:16:30,170.79319763183594 +2021-02-03 01:26:17,161.94700622558594 +2021-02-03 01:36:05,133.74960327148438 +2021-02-03 01:45:53,147.2677001953125 +2021-02-03 01:55:41,154.17239379882812 +2021-02-03 02:05:28,128.05679321289062 +2021-02-03 02:15:16,128.82420349121094 +2021-02-03 02:25:04,170.79319763183594 +2021-02-03 02:34:52,166.22109985351562 +2021-02-03 02:44:40,149.48280334472656 +2021-02-03 02:54:27,131.23129272460938 +2021-02-03 03:04:15,110.51380157470705 +2021-02-03 03:14:03,117.56710052490234 +2021-02-03 03:23:51,100.67539978027344 +2021-02-03 03:33:39,97.6781997680664 +2021-02-03 03:43:26,105.82759857177734 +2021-02-03 03:53:14,96.45320129394533 +2021-02-03 04:03:02,92.60279846191406 +2021-02-03 04:12:50,148.37840270996094 +2021-02-03 04:22:38,142.06759643554688 +2021-02-03 04:32:25,125.03839874267578 +2021-02-03 04:42:13,122.89099884033205 +2021-02-03 04:52:01,128.82420349121094 +2021-02-03 05:01:49,166.22109985351562 +2021-02-03 05:11:37,169.23390197753906 +2021-02-03 05:21:24,163.34060668945312 +2021-02-03 05:31:12,108.89969635009766 +2021-02-03 05:41:00,94.48509979248048 +2021-02-03 05:50:48,130.41700744628906 +2021-02-03 06:00:35,128.82420349121094 +2021-02-03 06:10:23,86.7667007446289 +2021-02-03 06:20:11,120.81800079345705 +2021-02-03 06:29:59,169.23390197753906 +2021-02-03 06:39:46,149.48280334472656 +2021-02-03 06:49:34,170.79319763183594 +2021-02-03 06:59:22,170.80859375 +2021-02-03 07:09:10,170.79319763183594 +2021-02-03 07:18:57,138.218994140625 +2021-02-03 07:28:45,122.89099884033205 +2021-02-03 07:38:33,107.3386001586914 +2021-02-03 07:48:20,97.6781997680664 +2021-02-03 07:58:08,98.09420013427734 +2021-02-03 08:07:56,82.81169891357422 +2021-02-03 08:17:43,77.3917007446289 +2021-02-03 08:27:31,98.93810272216795 +2021-02-03 08:37:19,106.82949829101562 +2021-02-03 08:47:06,111.62079620361328 +2021-02-03 08:56:54,111.62079620361328 +2021-02-03 09:06:42,116.93930053710938 +2021-02-03 09:16:29,120.17040252685548 +2021-02-03 09:26:17,128.82420349121094 +2021-02-03 09:36:05,147.2677001953125 +2021-02-03 09:45:53,170.79319763183594 +2021-02-03 09:55:40,159.2476043701172 +2021-02-03 10:05:28,147.2677001953125 +2021-02-03 10:15:16,170.80859375 +2021-02-03 10:25:03,126.52050018310548 +2021-02-03 10:34:51,104.8469009399414 +2021-02-03 10:44:39,96.45320129394533 +2021-02-03 10:54:26,98.09420013427734 +2021-02-03 11:04:14,94.48509979248048 +2021-02-03 11:14:02,89.75450134277344 +2021-02-03 11:23:50,118.8467025756836 +2021-02-03 11:33:37,94.48509979248048 +2021-02-03 11:43:25,92.60279846191406 +2021-02-03 11:53:13,95.65519714355467 +2021-02-03 12:03:00,133.76170349121094 +2021-02-03 12:12:48,108.38330078125 +2021-02-03 12:22:35,101.5791015625 +2021-02-03 12:32:23,101.5791015625 +2021-02-03 12:42:11,106.83910369873048 +2021-02-03 12:51:59,144.10560607910156 +2021-02-03 13:01:46,131.23129272460938 +2021-02-03 13:11:34,130.42869567871094 +2021-02-03 13:21:22,108.37359619140624 +2021-02-03 13:31:10,122.20539855957033 +2021-02-03 13:40:57,98.10299682617188 +2021-02-03 13:50:45,133.76170349121094 +2021-02-03 14:00:33,100.23470306396484 +2021-02-03 14:10:21,91.87249755859376 +2021-02-03 14:20:08,170.79319763183594 +2021-02-03 14:29:56,157.9539031982422 +2021-02-03 14:39:44,137.30859375 +2021-02-03 14:49:31,101.5791015625 +2021-02-03 14:59:19,96.46189880371094 +2021-02-03 15:09:06,126.53189849853516 +2021-02-03 15:18:54,140.12359619140625 +2021-02-03 15:28:42,97.69580078125 +2021-02-03 15:38:29,94.88020324707033 +2021-02-03 15:48:17,120.17040252685548 +2021-02-03 15:58:05,87.09600067138672 +2021-02-03 16:07:52,82.81169891357422 +2021-02-03 16:17:40,118.8573989868164 +2021-02-03 16:27:28,118.8573989868164 +2021-02-03 16:37:15,83.10310363769531 +2021-02-03 16:47:03,103.8864974975586 +2021-02-03 16:56:51,74.71759796142578 +2021-02-03 17:06:38,63.4718017578125 +2021-02-03 17:16:26,68.85759735107422 +2021-02-03 17:26:14,111.63089752197266 +2021-02-03 17:36:01,132.9093017578125 +2021-02-03 17:45:49,106.83910369873048 +2021-02-03 17:55:36,140.12359619140625 +2021-02-03 18:05:24,143.08419799804688 +2021-02-03 18:15:12,94.49359893798828 +2021-02-03 18:24:59,128.83590698242188 +2021-02-03 18:34:47,97.68699645996094 +2021-02-03 18:44:35,95.27030181884766 +2021-02-03 18:54:22,92.9811019897461 +2021-02-03 19:04:10,92.9811019897461 +2021-02-03 19:13:58,82.2354965209961 +2021-02-03 19:23:45,118.8573989868164 +2021-02-03 19:33:33,122.20539855957033 +2021-02-03 19:43:21,122.20539855957033 +2021-02-03 19:53:08,131.24310302734375 +2021-02-03 20:02:56,128.83590698242188 +2021-02-03 20:12:44,94.49359893798828 +2021-02-03 20:22:31,131.24310302734375 +2021-02-03 20:32:19,128.83590698242188 +2021-02-03 20:42:07,90.1082992553711 +2021-02-03 20:51:54,86.13899993896484 +2021-02-03 21:01:42,116.32969665527344 +2021-02-03 21:11:29,86.13899993896484 +2021-02-03 21:21:17,82.8042984008789 +2021-02-03 21:31:05,111.63089752197266 +2021-02-03 21:40:52,81.94309997558594 +2021-02-03 21:50:40,82.2354965209961 +2021-02-03 22:00:27,106.83910369873048 +2021-02-03 22:10:15,102.9457015991211 +2021-02-03 22:20:03,106.82949829101562 +2021-02-03 22:29:50,104.37359619140624 +2021-02-03 22:39:38,107.3386001586914 +2021-02-03 22:49:25,67.47550201416016 +2021-02-03 22:59:13,57.50139999389648 +2021-02-03 23:09:01,60.1973991394043 +2021-02-03 23:18:48,62.12379837036133 +2021-02-03 23:28:36,73.55280303955078 +2021-02-03 23:38:24,76.6415023803711 +2021-02-03 23:48:11,76.88990020751953 +2021-02-03 23:57:59,78.15689849853516 +2021-02-04 00:07:47,74.47630310058594 +2021-02-04 00:17:34,78.93769836425781 +2021-02-04 00:27:22,75.42330169677734 +2021-02-04 00:37:09,105.82759857177734 +2021-02-04 00:46:57,113.3405990600586 +2021-02-04 00:56:45,80.54820251464844 +2021-02-04 01:06:32,75.66380310058594 +2021-02-04 01:16:20,96.45320129394533 +2021-02-04 01:26:08,79.46710205078125 +2021-02-04 01:35:55,122.19439697265624 +2021-02-04 01:45:43,125.03839874267578 +2021-02-04 01:55:30,169.2490997314453 +2021-02-04 02:05:18,169.23390197753906 +2021-02-04 02:15:06,169.2490997314453 +2021-02-04 02:24:53,169.23390197753906 +2021-02-04 02:34:41,115.11229705810548 +2021-02-04 02:44:29,92.9811019897461 +2021-02-04 02:54:16,85.20390319824219 +2021-02-04 03:04:04,116.31919860839844 +2021-02-04 03:13:52,94.1103973388672 +2021-02-04 03:23:39,128.04519653320312 +2021-02-04 03:33:27,102.9457015991211 +2021-02-04 03:43:15,138.218994140625 +2021-02-04 03:53:02,113.33039855957033 +2021-02-04 04:02:50,139.16969299316406 +2021-02-04 04:12:38,169.23390197753906 +2021-02-04 04:22:26,131.23129272460938 +2021-02-04 04:32:13,123.59700012207033 +2021-02-04 04:42:01,138.218994140625 +2021-02-04 04:51:49,169.2490997314453 +2021-02-04 05:01:36,141.08099365234375 +2021-02-04 05:11:24,169.23390197753906 +2021-02-04 05:21:11,118.8467025756836 +2021-02-04 05:30:59,122.19439697265624 +2021-02-04 05:40:47,112.19409942626952 +2021-02-04 05:50:35,152.96580505371094 +2021-02-04 06:00:23,116.93930053710938 +2021-02-04 06:10:10,102.9457015991211 +2021-02-04 06:19:58,129.6147003173828 +2021-02-04 06:29:46,152.96580505371094 +2021-02-04 06:39:34,151.79620361328125 +2021-02-04 06:49:21,87.08809661865234 +2021-02-04 06:59:09,87.09600067138672 +2021-02-04 07:08:57,103.8864974975586 +2021-02-04 07:18:45,106.82949829101562 +2021-02-04 07:28:33,91.16280364990234 +2021-02-04 07:38:21,102.49169921875 +2021-02-04 07:48:09,88.06800079345703 +2021-02-04 07:57:57,167.71029663085938 +2021-02-04 08:07:44,169.23390197753906 +2021-02-04 08:17:32,128.05679321289062 +2021-02-04 08:27:20,128.83590698242188 +2021-02-04 08:37:08,146.1903076171875 +2021-02-04 08:46:56,137.30859375 +2021-02-04 08:56:43,88.06800079345703 +2021-02-04 09:06:31,90.1001968383789 +2021-02-04 09:16:19,145.14520263671875 +2021-02-04 09:26:07,160.58299255371094 +2021-02-04 09:35:55,109.43170166015624 +2021-02-04 09:45:43,91.87249755859376 +2021-02-04 09:55:30,78.67569732666016 +2021-02-04 10:05:18,87.08809661865234 +2021-02-04 10:15:06,106.82949829101562 +2021-02-04 10:24:54,129.6147003173828 +2021-02-04 10:34:41,118.20279693603516 +2021-02-04 10:44:29,135.4947052001953 +2021-02-04 10:54:17,147.281005859375 +2021-02-04 11:04:05,139.15719604492188 +2021-02-04 11:13:53,111.06410217285156 +2021-02-04 11:23:41,130.42869567871094 +2021-02-04 11:33:29,103.8770980834961 +2021-02-04 11:43:16,86.43990325927734 +2021-02-04 11:53:04,78.6686019897461 +2021-02-04 12:02:52,75.66380310058594 +2021-02-04 12:12:40,108.36380004882812 +2021-02-04 12:22:28,110.51380157470705 +2021-02-04 12:32:16,74.9468002319336 +2021-02-04 12:42:03,86.1312026977539 +2021-02-04 12:51:51,54.34650039672852 +2021-02-04 13:01:39,74.48310089111328 +2021-02-04 13:11:27,55.95660018920898 +2021-02-04 13:21:15,166.22109985351562 +2021-02-04 13:31:03,68.25520324707031 +2021-02-04 13:40:50,61.47489929199219 +2021-02-04 13:50:38,63.63840103149414 +2021-02-04 14:00:26,62.79119873046875 +2021-02-04 14:10:14,52.45690155029297 +2021-02-04 14:20:02,51.128700256347656 +2021-02-04 14:29:49,50.08620071411133 +2021-02-04 14:39:37,53.19350051879883 +2021-02-04 14:49:25,167.72540283203125 +2021-02-04 14:59:13,50.4297981262207 +2021-02-04 15:09:00,41.77099990844727 +2021-02-04 15:18:48,40.42160034179688 +2021-02-04 15:28:36,54.74530029296875 +2021-02-04 15:38:24,56.93109893798828 +2021-02-04 15:48:11,55.96160125732422 +2021-02-04 15:57:59,60.82740020751953 +2021-02-04 16:07:47,55.14400100708008 +2021-02-04 16:17:35,52.82310104370117 +2021-02-04 16:27:23,50.78189849853516 +2021-02-04 16:37:10,52.82780075073242 +2021-02-04 16:46:58,40.09389877319336 +2021-02-04 16:56:46,45.24980163574219 +2021-02-04 17:06:34,44.95980072021485 +2021-02-04 17:16:22,43.73080062866211 +2021-02-04 17:26:10,45.83430099487305 +2021-02-04 17:35:57,42.20589828491211 +2021-02-04 17:45:45,166.23599243164062 +2021-02-04 17:55:33,50.31480026245117 +2021-02-04 18:05:21,44.10630035400391 +2021-02-04 18:15:09,43.63869857788086 +2021-02-04 18:24:56,43.6426010131836 +2021-02-04 18:34:44,166.2061004638672 +2021-02-04 18:44:32,41.51319885253906 +2021-02-04 18:54:20,41.08480072021485 +2021-02-04 19:04:08,40.5004997253418 +2021-02-04 19:13:56,41.17660140991211 +2021-02-04 19:23:44,43.82329940795898 +2021-02-04 19:33:31,40.66619873046875 +2021-02-04 19:43:19,38.35540008544922 +2021-02-04 19:53:07,33.37900161743164 +2021-02-04 20:02:55,29.159799575805664 +2021-02-04 20:12:43,29.217500686645508 +2021-02-04 20:22:31,29.047399520874023 +2021-02-04 20:32:18,33.69879913330078 +2021-02-04 20:42:06,29.21489906311035 +2021-02-04 20:51:54,29.217500686645508 +2021-02-04 21:01:42,47.778099060058594 +2021-02-04 21:11:30,66.90779876708984 +2021-02-04 21:21:18,55.81969833374024 +2021-02-04 21:31:06,30.283100128173828 +2021-02-04 21:40:54,29.217500686645508 +2021-02-04 21:50:42,29.104799270629883 +2021-02-04 22:00:29,29.162399291992188 +2021-02-04 22:10:17,37.44660186767578 +2021-02-04 22:20:05,29.21489906311035 +2021-02-04 22:29:53,29.049999237060547 +2021-02-04 22:39:41,29.21489906311035 +2021-02-04 22:49:29,34.28950119018555 +2021-02-04 22:59:17,34.35900115966797 +2021-02-04 23:09:05,51.7140998840332 +2021-02-04 23:18:53,166.2061004638672 +2021-02-04 23:28:40,50.7681999206543 +2021-02-04 23:38:28,32.12120056152344 +2021-02-04 23:48:16,29.21489906311035 +2021-02-04 23:58:04,38.27539825439453 +2021-02-05 00:07:52,166.2061004638672 +2021-02-05 00:17:39,39.60210037231445 +2021-02-05 00:27:27,41.591400146484375 +2021-02-05 00:37:15,32.48870086669922 +2021-02-05 00:47:03,32.48870086669922 +2021-02-05 00:56:50,35.785400390625 +2021-02-05 01:06:38,46.73529815673828 +2021-02-05 01:16:26,34.022300720214844 +2021-02-05 01:26:14,96.03510284423828 +2021-02-05 01:36:02,110.4937973022461 +2021-02-05 01:45:50,43.26900100708008 +2021-02-05 01:55:37,30.918500900268555 +2021-02-05 02:05:25,31.392099380493164 +2021-02-05 02:15:13,30.80139923095703 +2021-02-05 02:25:01,52.07630157470703 +2021-02-05 02:34:49,36.78279876708984 +2021-02-05 02:44:37,37.22140121459961 +2021-02-05 02:54:24,35.09400177001953 +2021-02-05 03:04:12,167.66490173339844 +2021-02-05 03:14:00,53.06320190429688 +2021-02-05 03:23:48,36.205299377441406 +2021-02-05 03:33:36,39.35929870605469 +2021-02-05 03:43:24,36.92829895019531 +2021-02-05 03:53:12,166.1761016845703 +2021-02-05 04:03:00,53.31480026245117 +2021-02-05 04:12:48,35.64569854736328 +2021-02-05 04:22:36,129.59140014648438 +2021-02-05 04:32:24,166.19110107421875 +2021-02-05 04:42:11,49.40119934082031 +2021-02-05 04:51:59,37.58869934082031 +2021-02-05 05:01:47,31.5718994140625 +2021-02-05 05:11:35,82.78189849853516 +2021-02-05 05:21:23,80.52639770507812 +2021-02-05 05:31:11,40.74580001831055 +2021-02-05 05:40:59,85.18090057373047 +2021-02-05 05:50:46,44.8557014465332 +2021-02-05 06:00:34,37.00130081176758 +2021-02-05 06:10:22,36.99789810180664 +2021-02-05 06:20:10,33.63090133666992 +2021-02-05 06:29:58,50.64730072021485 +2021-02-05 06:39:46,32.051300048828125 +2021-02-05 06:49:34,30.2775993347168 +2021-02-05 06:59:21,38.88669967651367 +2021-02-05 07:09:09,29.99519920349121 +2021-02-05 07:18:57,164.72030639648438 +2021-02-05 07:28:45,42.903900146484375 +2021-02-05 07:38:33,44.09040069580078 +2021-02-05 07:48:21,37.07109832763672 +2021-02-05 07:58:08,36.562801361083984 +2021-02-05 08:07:56,42.81420135498047 +2021-02-05 08:17:44,161.9031982421875 +2021-02-05 08:27:32,164.72030639648438 +2021-02-05 08:37:20,163.2816925048828 +2021-02-05 08:47:08,163.2816925048828 +2021-02-05 08:56:56,163.2816925048828 +2021-02-05 09:06:44,164.72030639648438 +2021-02-05 09:16:32,166.19110107421875 +2021-02-05 09:26:19,71.32099914550781 +2021-02-05 09:36:07,32.92729949951172 +2021-02-05 09:45:55,30.74300003051757 +2021-02-05 09:55:43,29.654199600219727 +2021-02-05 10:05:31,28.992599487304688 +2021-02-05 10:15:18,28.93540000915528 +2021-02-05 10:25:06,38.80870056152344 +2021-02-05 10:34:54,31.932100296020508 +2021-02-05 10:44:42,31.932100296020508 +2021-02-05 10:54:30,29.71030044555664 +2021-02-05 11:04:18,30.50790023803711 +2021-02-05 11:14:05,29.7637996673584 +2021-02-05 11:23:53,29.43099975585937 +2021-02-05 11:33:41,29.32270050048828 +2021-02-05 11:43:29,28.88089942932129 +2021-02-05 11:53:17,28.60740089416504 +2021-02-05 12:03:04,28.88349914550781 +2021-02-05 12:12:52,28.772199630737305 +2021-02-05 12:22:40,29.542400360107425 +2021-02-05 12:32:28,39.51850128173828 +2021-02-05 12:42:16,30.450199127197266 +2021-02-05 12:52:03,29.71299934387207 +2021-02-05 13:01:51,29.26219940185547 +2021-02-05 13:11:39,30.2775993347168 +2021-02-05 13:21:27,34.7484016418457 +2021-02-05 13:31:15,163.29640197753906 +2021-02-05 13:41:03,164.70550537109375 +2021-02-05 13:50:51,37.43989944458008 +2021-02-05 14:00:38,31.03330039978028 +2021-02-05 14:10:26,30.28039932250977 +2021-02-05 14:20:14,35.572898864746094 +2021-02-05 14:30:02,51.70479965209961 +2021-02-05 14:39:50,39.27640151977539 +2021-02-05 14:49:37,33.117401123046875 +2021-02-05 14:59:25,37.1411018371582 +2021-02-05 15:09:13,38.34159851074219 +2021-02-05 15:19:01,38.03670120239258 +2021-02-05 15:28:49,42.5432014465332 +2021-02-05 15:38:37,53.94779968261719 +2021-02-05 15:48:24,42.019798278808594 +2021-02-05 15:58:12,41.41279983520508 +2021-02-05 16:08:00,37.43989944458008 +2021-02-05 16:17:48,35.36529922485352 +2021-02-05 16:27:36,35.92250061035156 +2021-02-05 16:37:23,34.28329849243164 +2021-02-05 16:47:11,34.47990036010742 +2021-02-05 16:56:59,33.04790115356445 +2021-02-05 17:06:47,30.795799255371094 +2021-02-05 17:16:35,30.56579971313477 +2021-02-05 17:26:22,30.73740005493164 +2021-02-05 17:36:10,29.651500701904297 +2021-02-05 17:45:58,29.71030044555664 +2021-02-05 17:55:45,28.82390022277832 +2021-02-05 18:05:33,28.98740005493164 +2021-02-05 18:15:21,28.98740005493164 +2021-02-05 18:25:09,28.87829971313477 +2021-02-05 18:34:56,28.87829971313477 +2021-02-05 18:44:44,28.88089942932129 +2021-02-05 18:54:32,28.93280029296875 +2021-02-05 19:04:19,28.989999771118164 +2021-02-05 19:14:07,28.98740005493164 +2021-02-05 19:23:55,28.989999771118164 +2021-02-05 19:33:42,28.98740005493164 +2021-02-05 19:43:30,28.98740005493164 +2021-02-05 19:53:18,48.51369857788086 +2021-02-05 20:03:06,28.772199630737305 +2021-02-05 20:12:53,29.097000122070312 +2021-02-05 20:22:41,29.428300857543945 +2021-02-05 20:32:29,32.98460006713867 +2021-02-05 20:42:17,164.70550537109375 +2021-02-05 20:52:04,38.72740173339844 +2021-02-05 21:01:52,44.75189971923828 +2021-02-05 21:11:40,42.81039810180664 +2021-02-05 21:21:28,37.51079940795898 +2021-02-05 21:31:16,163.2816925048828 +2021-02-05 21:41:03,163.2816925048828 +2021-02-05 21:50:51,113.28949737548828 +2021-02-05 22:00:39,37.36240005493164 +2021-02-05 22:10:27,28.93540000915528 +2021-02-05 22:20:14,28.98740005493164 +2021-02-05 22:30:02,29.097000122070312 +2021-02-05 22:39:50,29.04210090637207 +2021-02-05 22:49:37,29.04210090637207 +2021-02-05 22:59:25,43.90409851074219 +2021-02-05 23:09:13,29.097000122070312 +2021-02-05 23:19:01,33.68960189819336 +2021-02-05 23:28:48,35.08769989013672 +2021-02-05 23:38:36,29.04210090637207 +2021-02-05 23:48:24,28.98740005493164 +2021-02-05 23:58:11,29.04210090637207 +2021-02-06 00:07:59,29.03949928283692 +2021-02-06 00:17:47,29.04210090637207 +2021-02-06 00:27:35,29.097000122070312 +2021-02-06 00:37:22,29.04210090637207 +2021-02-06 00:47:10,29.04210090637207 +2021-02-06 00:56:57,29.151899337768555 +2021-02-06 01:06:45,29.097000122070312 +2021-02-06 01:16:33,163.2816925048828 +2021-02-06 01:26:21,161.87399291992188 +2021-02-06 01:36:08,161.8885955810547 +2021-02-06 01:45:56,161.87399291992188 +2021-02-06 01:55:44,163.2816925048828 +2021-02-06 02:05:32,50.29669952392578 +2021-02-06 02:15:20,86.41649627685547 +2021-02-06 02:25:07,163.26699829101562 +2021-02-06 02:34:55,161.8885955810547 +2021-02-06 02:44:43,161.8885955810547 +2021-02-06 02:54:31,151.72779846191406 +2021-02-06 03:04:19,161.8885955810547 +2021-02-06 03:14:06,161.8885955810547 +2021-02-06 03:23:54,161.8885955810547 +2021-02-06 03:33:42,161.8885955810547 +2021-02-06 03:43:29,161.87399291992188 +2021-02-06 03:53:17,161.87399291992188 +2021-02-06 04:03:05,161.8885955810547 +2021-02-06 04:12:53,161.8885955810547 +2021-02-06 04:22:40,161.8885955810547 +2021-02-06 04:32:28,163.2816925048828 +2021-02-06 04:42:16,161.8885955810547 +2021-02-06 04:52:03,161.8885955810547 +2021-02-06 05:01:51,161.87399291992188 +2021-02-06 05:11:39,161.87399291992188 +2021-02-06 05:21:27,163.2816925048828 +2021-02-06 05:31:14,161.8885955810547 +2021-02-06 05:41:02,167.64979553222656 +2021-02-06 05:50:50,163.2816925048828 +2021-02-06 06:00:38,163.2816925048828 +2021-02-06 06:10:25,132.83740234375 +2021-02-06 06:20:13,157.88279724121094 +2021-02-06 06:30:01,148.3115997314453 +2021-02-06 06:39:48,161.8885955810547 +2021-02-06 06:49:36,161.8885955810547 +2021-02-06 06:59:24,161.8885955810547 +2021-02-06 07:09:12,163.2816925048828 +2021-02-06 07:18:59,163.2816925048828 +2021-02-06 07:28:47,161.8885955810547 +2021-02-06 07:38:35,163.26699829101562 +2021-02-06 07:48:22,163.26699829101562 +2021-02-06 07:58:10,161.8885955810547 +2021-02-06 08:07:58,163.2816925048828 +2021-02-06 08:17:46,163.2816925048828 +2021-02-06 08:27:34,163.2816925048828 +2021-02-06 08:37:21,161.8885955810547 +2021-02-06 08:47:09,161.8885955810547 +2021-02-06 08:56:57,163.2816925048828 +2021-02-06 09:06:45,163.2816925048828 +2021-02-06 09:16:32,161.87399291992188 +2021-02-06 09:26:20,161.8885955810547 +2021-02-06 09:36:08,163.2816925048828 +2021-02-06 09:45:56,164.70550537109375 +2021-02-06 09:55:44,147.20140075683594 +2021-02-06 10:05:31,135.44590759277344 +2021-02-06 10:15:19,90.76740264892578 +2021-02-06 10:25:07,77.87200164794922 +2021-02-06 10:34:55,91.8394012451172 +2021-02-06 10:44:42,144.02769470214844 +2021-02-06 10:54:30,163.2816925048828 +2021-02-06 11:04:18,164.70550537109375 +2021-02-06 11:14:06,166.16110229492188 +2021-02-06 11:23:54,164.70550537109375 +2021-02-06 11:33:41,161.8885955810547 +2021-02-06 11:43:29,161.8885955810547 +2021-02-06 11:53:17,161.8885955810547 +2021-02-06 12:03:05,163.2816925048828 +2021-02-06 12:12:53,163.2816925048828 +2021-02-06 12:22:41,164.70550537109375 +2021-02-06 12:32:29,163.26699829101562 +2021-02-06 12:42:17,163.2816925048828 +2021-02-06 12:52:04,164.70550537109375 +2021-02-06 13:01:52,163.26699829101562 +2021-02-06 13:11:40,123.55239868164062 +2021-02-06 13:21:28,119.45580291748048 +2021-02-06 13:31:16,109.3823013305664 +2021-02-06 13:41:04,161.8885955810547 +2021-02-06 13:50:51,161.8885955810547 +2021-02-06 14:00:39,163.2816925048828 +2021-02-06 14:10:27,163.2816925048828 +2021-02-06 14:20:15,161.8885955810547 +2021-02-06 14:30:02,161.8885955810547 +2021-02-06 14:39:50,159.19009399414062 +2021-02-06 14:49:38,141.0301055908203 +2021-02-06 14:59:26,143.0196990966797 +2021-02-06 15:09:13,141.0301055908203 +2021-02-06 15:19:01,159.19009399414062 +2021-02-06 15:28:49,149.42889404296875 +2021-02-06 15:38:36,132.83740234375 +2021-02-06 15:48:24,164.70550537109375 +2021-02-06 15:58:12,164.70550537109375 +2021-02-06 16:07:59,164.70550537109375 +2021-02-06 16:17:47,164.70550537109375 +2021-02-06 16:27:35,166.16110229492188 +2021-02-06 16:37:22,157.88279724121094 +2021-02-06 16:47:10,139.10699462890625 +2021-02-06 16:56:58,164.70550537109375 +2021-02-06 17:06:45,141.0301055908203 +2021-02-06 17:16:33,120.11630249023438 +2021-02-06 17:26:21,133.70140075683594 +2021-02-06 17:36:09,166.16110229492188 +2021-02-06 17:45:56,164.70550537109375 +2021-02-06 17:55:44,109.93000030517578 +2021-02-06 18:05:32,100.19860076904295 +2021-02-06 18:15:20,141.0301055908203 +2021-02-06 18:25:08,105.78949737548828 +2021-02-06 18:34:55,93.31220245361328 +2021-02-06 18:44:43,92.56939697265624 +2021-02-06 18:54:31,93.31220245361328 +2021-02-06 19:04:19,81.63069915771484 +2021-02-06 19:14:06,81.07099914550781 +2021-02-06 19:23:54,78.12870025634766 +2021-02-06 19:33:42,76.12200164794922 +2021-02-06 19:43:30,87.05670166015625 +2021-02-06 19:53:18,76.61380004882812 +2021-02-06 20:03:05,102.90859985351562 +2021-02-06 20:12:53,110.4738998413086 +2021-02-06 20:22:41,83.95210266113281 +2021-02-06 20:22:42,83.95210266113281 +2021-02-06 20:32:35,163.2816925048828 +2021-02-06 20:42:22,163.2816925048828 +2021-02-06 20:52:10,164.70550537109375 +2021-02-06 21:01:58,164.70550537109375 +2021-02-06 21:11:45,163.2816925048828 +2021-02-06 21:21:33,161.8885955810547 +2021-02-06 21:31:21,163.2816925048828 +2021-02-06 21:41:09,143.0196990966797 +2021-02-06 21:50:56,132.84939575195312 +2021-02-06 22:00:44,143.0196990966797 +2021-02-06 22:10:31,166.16110229492188 +2021-02-06 22:20:19,164.70550537109375 +2021-02-06 22:30:07,83.06559753417969 +2021-02-06 22:39:54,164.72030639648438 +2021-02-06 22:49:42,163.29640197753906 +2021-02-06 22:59:30,119.4665985107422 +2021-02-06 23:09:17,100.19860076904295 +2021-02-06 23:19:05,163.2816925048828 +2021-02-06 23:28:53,161.8885955810547 +2021-02-06 23:38:40,164.70550537109375 +2021-02-06 23:48:28,164.70550537109375 +2021-02-06 23:58:16,164.70550537109375 +2021-02-07 00:08:04,163.2816925048828 +2021-02-07 00:17:51,159.19009399414062 +2021-02-07 00:27:39,157.88279724121094 +2021-02-07 00:37:27,106.79100036621094 +2021-02-07 00:47:15,124.99330139160156 +2021-02-07 00:57:02,106.79100036621094 +2021-02-07 01:06:50,124.99330139160156 +2021-02-07 01:16:38,102.44550323486328 +2021-02-07 01:26:26,83.65440368652344 +2021-02-07 01:36:14,76.12200164794922 +2021-02-07 01:46:01,77.87200164794922 +2021-02-07 01:55:49,109.402099609375 +2021-02-07 02:05:37,107.30960083007812 +2021-02-07 02:15:25,164.70550537109375 +2021-02-07 02:25:12,164.70550537109375 +2021-02-07 02:35:00,164.70550537109375 +2021-02-07 02:44:48,109.402099609375 +2021-02-07 02:54:35,164.70550537109375 +2021-02-07 03:04:23,164.70550537109375 +2021-02-07 03:14:11,164.70550537109375 +2021-02-07 03:23:59,163.2816925048828 +2021-02-07 03:33:46,163.2816925048828 +2021-02-07 03:43:34,163.2816925048828 +2021-02-07 03:53:22,163.2816925048828 +2021-02-07 04:03:10,163.2816925048828 +2021-02-07 04:12:57,166.1761016845703 +2021-02-07 04:22:45,163.2816925048828 +2021-02-07 04:32:33,115.07080078125 +2021-02-07 04:42:20,164.72030639648438 +2021-02-07 04:52:08,100.2165985107422 +2021-02-07 05:01:56,94.45099639892578 +2021-02-07 05:11:43,128.01060485839844 +2021-02-07 05:21:31,130.3699951171875 +2021-02-07 05:31:19,128.77780151367188 +2021-02-07 05:41:06,143.0196990966797 +2021-02-07 05:50:54,159.20449829101562 +2021-02-07 06:00:42,164.73519897460938 +2021-02-07 06:10:29,163.2816925048828 +2021-02-07 06:20:17,142.02920532226562 +2021-02-07 06:30:04,163.29640197753906 +2021-02-07 06:39:52,163.31109619140625 +2021-02-07 06:49:40,164.72030639648438 +2021-02-07 06:59:27,161.8885955810547 +2021-02-07 07:09:15,163.29640197753906 +2021-02-07 07:19:03,134.56680297851562 +2021-02-07 07:28:50,99.34819793701172 +2021-02-07 07:38:38,79.44560241699219 +2021-02-07 07:48:26,77.87899780273438 +2021-02-07 07:58:14,163.29640197753906 +2021-02-07 08:08:01,163.31109619140625 +2021-02-07 08:17:49,88.0521011352539 +2021-02-07 08:27:37,74.93329620361328 +2021-02-07 08:37:25,73.76830291748047 +2021-02-07 08:47:12,163.31109619140625 +2021-02-07 08:57:00,164.75 +2021-02-07 09:06:48,164.72030639648438 +2021-02-07 09:16:35,134.5789031982422 +2021-02-07 09:26:23,92.95590209960938 +2021-02-07 09:36:10,163.29640197753906 +2021-02-07 09:45:58,163.31109619140625 +2021-02-07 09:55:46,163.31109619140625 +2021-02-07 10:05:34,163.31109619140625 +2021-02-07 10:15:21,148.3249053955078 +2021-02-07 10:25:09,133.7135009765625 +2021-02-07 10:34:57,164.73519897460938 +2021-02-07 10:44:44,108.35399627685548 +2021-02-07 10:54:32,93.3206024169922 +2021-02-07 11:04:20,125.75160217285156 +2021-02-07 11:14:08,106.8102035522461 +2021-02-07 11:23:55,109.41190338134766 +2021-02-07 11:33:43,164.73519897460938 +2021-02-07 11:43:31,163.31109619140625 +2021-02-07 11:53:18,146.1638946533203 +2021-02-07 12:03:06,109.41190338134766 +2021-02-07 12:12:54,101.55159759521484 +2021-02-07 12:22:41,104.8280029296875 +2021-02-07 12:32:29,114.4835968017578 +2021-02-07 12:42:17,84.57710266113281 +2021-02-07 12:52:04,164.73519897460938 +2021-02-07 13:01:52,146.1638946533203 +2021-02-07 13:11:40,100.6572036743164 +2021-02-07 13:21:27,109.42179870605467 +2021-02-07 13:31:15,94.46800231933594 +2021-02-07 13:41:03,119.47740173339844 +2021-02-07 13:50:51,111.61080169677734 +2021-02-07 14:00:38,128.0220947265625 +2021-02-07 14:10:26,109.94979858398438 +2021-02-07 14:20:14,163.31109619140625 +2021-02-07 14:30:02,163.31109619140625 +2021-02-07 14:39:49,164.75 +2021-02-07 14:49:37,163.31109619140625 +2021-02-07 14:59:25,163.31109619140625 +2021-02-07 15:09:13,164.73519897460938 +2021-02-07 15:19:00,161.9178009033203 +2021-02-07 15:28:48,164.73519897460938 +2021-02-07 15:38:36,163.31109619140625 +2021-02-07 15:48:23,164.73519897460938 +2021-02-07 15:58:11,164.73519897460938 +2021-02-07 16:07:59,163.31109619140625 +2021-02-07 16:17:46,163.31109619140625 +2021-02-07 16:27:34,164.72030639648438 +2021-02-07 16:37:21,163.31109619140625 +2021-02-07 16:47:09,163.29640197753906 +2021-02-07 16:56:57,163.31109619140625 +2021-02-07 17:06:44,164.73519897460938 +2021-02-07 17:16:32,163.31109619140625 +2021-02-07 17:26:20,164.73519897460938 +2021-02-07 17:36:07,164.73519897460938 +2021-02-07 17:45:55,164.73519897460938 +2021-02-07 17:55:43,122.17240142822266 +2021-02-07 18:05:30,163.31109619140625 +2021-02-07 18:15:18,161.9031982421875 +2021-02-07 18:25:06,163.29640197753906 +2021-02-07 18:34:53,163.31109619140625 +2021-02-07 18:44:41,164.73519897460938 +2021-02-07 18:54:29,161.9178009033203 +2021-02-07 19:04:16,151.7415008544922 +2021-02-07 19:14:04,163.29640197753906 +2021-02-07 19:23:52,163.29640197753906 +2021-02-07 19:33:39,163.31109619140625 +2021-02-07 19:43:27,161.9178009033203 +2021-02-07 19:53:15,116.91819763183594 +2021-02-07 20:03:02,151.7552032470703 +2021-02-07 20:12:50,163.31109619140625 +2021-02-07 20:22:38,163.31109619140625 +2021-02-07 20:32:26,164.73519897460938 +2021-02-07 20:42:13,164.73519897460938 +2021-02-07 20:52:01,164.73519897460938 +2021-02-07 21:01:49,163.32589721679688 +2021-02-07 21:11:37,163.29640197753906 +2021-02-07 21:21:24,163.29640197753906 +2021-02-07 21:31:12,114.47329711914062 +2021-02-07 21:41:00,155.375 +2021-02-07 21:50:48,163.32589721679688 +2021-02-07 22:01:06,128.03370666503906 +2021-02-07 22:11:46,163.31109619140625 +2021-02-07 22:21:34,163.31109619140625 +2021-02-07 22:31:22,143.04550170898438 +2021-02-07 22:41:09,135.4824981689453 +2021-02-07 22:50:57,100.66629791259766 +2021-02-07 23:00:45,132.8852996826172 +2021-02-07 23:10:32,163.32589721679688 +2021-02-07 23:20:20,163.32589721679688 +2021-02-07 23:30:08,163.34060668945312 +2021-02-07 23:39:56,164.75 +2021-02-07 23:49:43,114.49400329589844 +2021-02-07 23:59:31,105.80860137939452 +2021-02-08 00:09:19,106.8102035522461 +2021-02-08 00:19:06,132.87330627441406 +2021-02-08 00:28:54,111.60070037841795 +2021-02-08 00:38:42,101.10220336914062 +2021-02-08 00:48:30,108.35399627685548 +2021-02-08 00:58:17,161.9178009033203 +2021-02-08 01:08:05,164.73519897460938 +2021-02-08 01:17:53,163.31109619140625 +2021-02-08 01:27:41,163.31109619140625 +2021-02-08 01:37:28,135.45809936523438 +2021-02-08 01:47:16,85.80169677734375 +2021-02-08 01:57:04,77.37770080566406 +2021-02-08 02:06:51,102.46399688720705 +2021-02-08 02:16:39,113.89330291748048 +2021-02-08 02:26:27,140.085693359375 +2021-02-08 02:36:14,164.72030639648438 +2021-02-08 02:46:02,163.31109619140625 +2021-02-08 02:55:50,163.31109619140625 +2021-02-08 03:05:37,163.29640197753906 +2021-02-08 03:15:25,163.29640197753906 +2021-02-08 03:25:13,163.29640197753906 +2021-02-08 03:35:01,163.31109619140625 +2021-02-08 03:44:48,163.31109619140625 +2021-02-08 03:54:36,120.79630279541016 +2021-02-08 04:04:24,119.47740173339844 +2021-02-08 04:14:11,135.47030639648438 +2021-02-08 04:23:59,129.59140014648438 +2021-02-08 04:33:47,107.8240966796875 +2021-02-08 04:43:35,100.64820098876952 +2021-02-08 04:53:22,77.87899780273438 +2021-02-08 05:03:10,106.2970962524414 +2021-02-08 05:12:58,81.92829895019531 +2021-02-08 05:22:45,112.7334976196289 +2021-02-08 05:32:33,112.7334976196289 +2021-02-08 05:42:21,86.42430114746094 +2021-02-08 05:52:08,92.94750213623048 +2021-02-08 06:01:56,159.20449829101562 +2021-02-08 06:11:44,161.9178009033203 +2021-02-08 06:21:31,163.29640197753906 +2021-02-08 06:31:19,163.2816925048828 +2021-02-08 06:41:07,161.9031982421875 +2021-02-08 06:50:55,114.4835968017578 +2021-02-08 07:00:42,122.1613998413086 +2021-02-08 07:10:30,96.43579864501952 +2021-02-08 07:20:18,79.17289733886719 +2021-02-08 07:30:06,74.46289825439453 +2021-02-08 07:39:53,91.13819885253906 +2021-02-08 07:49:41,163.29640197753906 +2021-02-08 07:59:29,164.72030639648438 +2021-02-08 08:09:17,163.2816925048828 +2021-02-08 08:19:04,117.5458984375 +2021-02-08 08:28:52,128.0220947265625 +2021-02-08 08:38:40,78.92340087890625 +2021-02-08 08:48:28,86.42430114746094 +2021-02-08 08:58:15,92.95590209960938 +2021-02-08 09:08:03,120.13790130615234 +2021-02-08 09:17:51,163.29640197753906 +2021-02-08 09:27:39,77.88610076904297 +2021-02-08 09:37:26,60.49449920654297 +2021-02-08 09:47:14,75.40969848632812 +2021-02-08 09:57:02,63.632598876953125 +2021-02-08 10:06:50,86.1156997680664 +2021-02-08 10:16:37,62.94869995117188 +2021-02-08 10:26:25,97.65170288085938 +2021-02-08 10:36:13,83.3740005493164 +2021-02-08 10:46:01,82.78939819335938 +2021-02-08 10:55:48,104.8280029296875 +2021-02-08 11:05:36,97.6604995727539 +2021-02-08 11:15:24,109.41190338134766 +2021-02-08 11:25:11,117.5458984375 +2021-02-08 11:34:59,114.4835968017578 +2021-02-08 11:44:47,163.31109619140625 +2021-02-08 11:54:35,116.29830169677734 +2021-02-08 12:04:22,125.75160217285156 +2021-02-08 12:14:10,114.47329711914062 +2021-02-08 12:23:58,128.0220947265625 +2021-02-08 12:33:45,99.7802963256836 +2021-02-08 12:43:33,128.01060485839844 +2021-02-08 12:53:21,163.29640197753906 +2021-02-08 13:03:09,163.31109619140625 +2021-02-08 13:12:56,163.31109619140625 +2021-02-08 13:22:44,164.73519897460938 +2021-02-08 13:32:32,164.73519897460938 +2021-02-08 13:42:19,163.29640197753906 +2021-02-08 13:52:07,163.31109619140625 +2021-02-08 14:01:55,164.72030639648438 +2021-02-08 14:11:43,163.29640197753906 +2021-02-08 14:21:30,122.8687973022461 +2021-02-08 14:31:18,134.5789031982422 +2021-02-08 14:41:06,104.81849670410156 +2021-02-08 14:51:00,101.55159759521484 +2021-02-08 15:00:47,119.47740173339844 +2021-02-08 15:10:35,106.80059814453124 +2021-02-08 15:20:23,103.8583984375 +2021-02-08 15:30:10,102.46399688720705 +2021-02-08 15:39:58,102.91790008544922 +2021-02-08 15:49:45,-12.366000175476074 +2021-02-08 15:49:46,163.29640197753906 +2021-02-08 15:59:39,114.4835968017578 +2021-02-08 16:09:27,80.26069641113281 +2021-02-08 16:19:14,96.02639770507812 +2021-02-08 16:29:02,76.62770080566406 +2021-02-08 16:38:49,71.1134033203125 +2021-02-08 16:48:37,75.65010070800781 +2021-02-08 16:58:24,106.2970962524414 +2021-02-08 17:08:12,163.31109619140625 +2021-02-08 17:18:00,164.73519897460938 +2021-02-08 17:27:47,156.61610412597656 +2021-02-08 17:37:35,163.29640197753906 +2021-02-08 17:47:23,163.29640197753906 +2021-02-08 17:57:10,163.29640197753906 +2021-02-08 18:06:58,135.45809936523438 +2021-02-08 18:16:45,105.3061981201172 +2021-02-08 18:26:33,123.57469940185548 +2021-02-08 18:36:21,134.5789031982422 +2021-02-08 18:46:08,98.07649993896484 +2021-02-08 18:55:56,97.6604995727539 +2021-02-08 19:05:43,133.72549438476562 +2021-02-08 19:15:31,163.31109619140625 +2021-02-08 19:25:19,164.72030639648438 +2021-02-08 19:35:07,120.13790130615234 +2021-02-08 19:44:54,96.84030151367188 +2021-02-08 19:54:42,116.28780364990234 +2021-02-08 20:04:30,101.55159759521484 +2021-02-08 20:14:24,114.47329711914062 +2021-02-08 20:24:11,113.88300323486328 +2021-02-08 20:33:59,74.69059753417969 +2021-02-08 20:43:47,89.7302017211914 +2021-02-08 20:53:34,71.53630065917969 +2021-02-08 21:03:22,100.64820098876952 +2021-02-08 21:13:10,98.91130065917967 +2021-02-08 21:22:58,59.25809860229492 +2021-02-08 21:32:45,53.5635986328125 +2021-02-08 21:42:33,79.45279693603516 +2021-02-08 21:52:21,85.79389953613281 +2021-02-08 22:02:08,94.45950317382812 +2021-02-08 22:11:56,92.94750213623048 +2021-02-08 22:21:44,92.94750213623048 +2021-02-08 22:31:32,71.32749938964844 +2021-02-08 22:41:19,59.25809860229492 +2021-02-08 22:51:07,88.04409790039062 +2021-02-08 23:00:55,67.65049743652344 +2021-02-08 23:10:43,85.80169677734375 +2021-02-08 23:20:30,57.91999816894531 +2021-02-08 23:30:18,75.88529968261719 +2021-02-08 23:40:06,62.43899917602539 +2021-02-08 23:49:54,55.53269958496094 +2021-02-08 23:59:42,54.0817985534668 +2021-02-09 00:09:29,87.722900390625 +2021-02-09 00:19:17,97.2397003173828 +2021-02-09 00:29:05,75.64330291748047 +2021-02-09 00:38:52,62.60049819946289 +2021-02-09 00:48:40,63.4547004699707 +2021-02-09 00:58:28,64.32469940185547 +2021-02-09 01:08:32,61.13579940795898 +2021-02-09 01:18:23,85.17320251464844 +2021-02-09 01:28:11,93.3290023803711 +2021-02-09 01:37:59,95.23590087890624 +2021-02-09 01:47:46,65.7697982788086 +2021-02-09 01:57:34,161.9031982421875 +2021-02-09 02:07:21,106.80059814453124 +2021-02-09 02:17:09,67.07379913330078 +2021-02-09 02:26:56,85.80169677734375 +2021-02-09 02:36:43,103.8583984375 +2021-02-09 02:46:31,109.402099609375 +2021-02-09 02:56:19,109.93000030517578 +2021-02-09 03:06:06,122.17240142822266 +2021-02-09 03:15:54,99.77130126953124 +2021-02-09 03:25:42,99.77130126953124 +2021-02-09 03:35:29,159.20449829101562 +2021-02-09 03:45:17,134.5789031982422 +2021-02-09 03:55:04,146.1638946533203 +2021-02-09 04:04:52,134.59109497070312 +2021-02-09 04:14:39,119.47740173339844 +2021-02-09 04:24:27,108.87020111083984 +2021-02-09 04:34:15,127.24299621582033 +2021-02-09 04:44:02,161.9031982421875 +2021-02-09 04:53:50,164.72030639648438 +2021-02-09 05:03:37,164.70550537109375 +2021-02-09 05:13:25,164.73519897460938 +2021-02-09 05:23:13,155.375 +2021-02-09 05:33:00,163.29640197753906 +2021-02-09 05:42:48,129.57969665527344 +2021-02-09 05:52:36,122.1613998413086 +2021-02-09 06:02:23,134.56680297851562 +2021-02-09 06:12:11,142.0164031982422 +2021-02-09 06:21:59,103.8583984375 +2021-02-09 06:31:46,116.91819763183594 +2021-02-09 06:41:34,90.77559661865234 +2021-02-09 06:51:22,105.79900360107422 +2021-02-09 07:01:09,105.79900360107422 +2021-02-09 07:10:57,96.43579864501952 +2021-02-09 07:20:44,83.65440368652344 +2021-02-09 07:30:32,96.4185028076172 +2021-02-09 07:40:20,104.81849670410156 +2021-02-09 07:50:07,123.57469940185548 +2021-02-09 07:59:55,96.02639770507812 +2021-02-09 08:09:42,121.46330261230467 +2021-02-09 08:19:30,113.29969787597656 +2021-02-09 08:29:18,105.79900360107422 +2021-02-09 08:39:05,111.04409790039062 +2021-02-09 08:48:53,155.34689331054688 +2021-02-09 08:58:41,164.70550537109375 +2021-02-09 09:08:28,137.25909423828125 +2021-02-09 09:18:15,125.74019622802734 +2021-02-09 09:28:03,127.99909973144533 +2021-02-09 09:37:51,129.59140014648438 +2021-02-09 09:47:38,135.44590759277344 +2021-02-09 09:57:26,98.4875030517578 +2021-02-09 10:07:13,127.23149871826172 +2021-02-09 10:17:01,141.0301055908203 +2021-02-09 10:26:48,143.0196990966797 +2021-02-09 10:36:36,128.78939819335938 +2021-02-09 10:46:24,121.46330261230467 +2021-02-09 10:56:11,102.45480346679688 +2021-02-09 11:05:59,114.47329711914062 +2021-02-09 11:15:47,105.29669952392578 +2021-02-09 11:25:34,130.38169860839844 +2021-02-09 11:35:22,113.29969787597656 +2021-02-09 11:45:09,130.38169860839844 +2021-02-09 11:54:57,134.5789031982422 +2021-02-09 12:04:45,157.89700317382812 +2021-02-09 12:14:32,141.0301055908203 +2021-02-09 12:24:20,106.80059814453124 +2021-02-09 12:34:07,96.4185028076172 +2021-02-09 12:43:55,71.10060119628906 +2021-02-09 12:53:43,94.08499908447266 +2021-02-09 13:03:30,103.8583984375 +2021-02-09 13:13:18,68.4343032836914 +2021-02-09 13:23:06,70.04910278320312 +2021-02-09 13:32:53,65.03099822998047 +2021-02-09 13:42:41,163.29640197753906 +2021-02-09 13:52:29,99.76229858398438 +2021-02-09 14:02:17,80.24620056152344 +2021-02-09 14:12:04,101.09310150146484 +2021-02-09 14:21:52,107.29989624023438 +2021-02-09 14:31:40,96.4271011352539 +2021-02-09 14:41:27,98.90239715576172 +2021-02-09 14:51:15,89.7302017211914 +2021-02-09 15:01:03,111.03410339355467 +2021-02-09 15:10:50,88.70240020751953 +2021-02-09 15:20:38,81.07830047607422 +2021-02-09 15:30:26,106.80059814453124 +2021-02-09 15:40:13,85.79389953613281 +2021-02-09 15:50:01,106.2970962524414 +2021-02-09 15:59:49,108.87020111083984 +2021-02-09 16:09:36,116.28780364990234 +2021-02-09 16:19:24,100.64820098876952 +2021-02-09 16:29:12,68.4343032836914 +2021-02-09 16:38:59,61.93669891357422 +2021-02-09 16:48:47,83.66200256347656 +2021-02-09 16:58:34,86.7509994506836 +2021-02-09 17:08:22,69.43890380859375 +2021-02-09 17:18:10,64.1489028930664 +2021-02-09 17:27:57,88.71040344238281 +2021-02-09 17:37:45,65.57479858398438 +2021-02-09 17:47:32,56.6343994140625 +2021-02-09 17:57:20,57.199501037597656 +2021-02-09 18:07:08,95.22730255126952 +2021-02-09 18:16:55,88.70240020751953 +2021-02-09 18:26:43,81.3572006225586 +2021-02-09 18:36:30,77.87899780273438 +2021-02-09 18:46:18,64.1489028930664 +2021-02-09 18:56:05,63.44889831542969 +2021-02-09 19:05:53,60.17570114135742 +2021-02-09 19:15:40,56.62929916381836 +2021-02-09 19:25:28,60.65230178833008 +2021-02-09 19:35:16,84.2520980834961 +2021-02-09 19:45:03,92.93920135498048 +2021-02-09 19:54:51,102.45480346679688 +2021-02-09 20:04:39,106.2874984741211 +2021-02-09 20:14:26,104.80909729003906 +2021-02-09 20:24:14,86.73539733886719 +2021-02-09 20:34:01,88.03620147705078 +2021-02-09 20:43:49,132.84939575195312 +2021-02-09 20:53:37,163.2816925048828 +2021-02-09 21:03:24,163.2816925048828 +2021-02-09 21:13:12,156.6020050048828 +2021-02-09 21:23:00,133.7135009765625 +2021-02-09 21:32:47,163.2816925048828 +2021-02-09 21:42:35,163.2816925048828 +2021-02-09 21:52:22,163.2816925048828 +2021-02-09 22:02:10,163.2816925048828 +2021-02-09 22:11:58,160.5251007080078 +2021-02-09 22:21:45,164.72030639648438 +2021-02-09 22:31:33,163.29640197753906 +2021-02-09 22:41:21,161.9031982421875 +2021-02-09 22:51:08,164.72030639648438 +2021-02-09 23:00:56,154.13070678710938 +2021-02-09 23:10:43,118.80390167236328 +2021-02-09 23:20:31,134.56680297851562 +2021-02-09 23:30:19,163.2816925048828 +2021-02-09 23:40:06,163.2816925048828 +2021-02-09 23:49:54,77.87200164794922 +2021-02-09 23:59:42,161.8885955810547 +2021-02-10 00:09:30,84.2520980834961 +2021-02-10 00:19:17,96.4185028076172 +2021-02-10 00:29:05,92.56939697265624 +2021-02-10 00:38:53,163.2816925048828 +2021-02-10 00:48:40,70.67630004882812 +2021-02-10 00:58:28,70.67630004882812 +2021-02-10 01:08:16,83.35890197753906 +2021-02-10 01:18:03,61.12480163574219 +2021-02-10 01:27:51,73.75499725341797 +2021-02-10 01:37:39,86.10009765625 +2021-02-10 01:47:26,161.8885955810547 +2021-02-10 01:57:14,97.64289855957033 +2021-02-10 02:07:02,65.03679656982422 +2021-02-10 02:16:49,84.5542984008789 +2021-02-10 02:26:37,161.8885955810547 +2021-02-10 02:36:25,72.84870147705078 +2021-02-10 02:46:12,99.76229858398438 +2021-02-10 02:56:00,81.07099914550781 +2021-02-10 03:05:47,92.20279693603516 +2021-02-10 03:15:35,95.22730255126952 +2021-02-10 03:25:22,90.06770324707031 +2021-02-10 03:35:10,65.03099822998047 +2021-02-10 03:44:58,73.99169921875 +2021-02-10 03:54:45,83.65440368652344 +2021-02-10 04:04:33,82.19840240478516 +2021-02-10 04:14:21,163.2816925048828 +2021-02-10 04:24:08,57.914798736572266 +2021-02-10 04:33:56,59.25809860229492 +2021-02-10 04:43:43,65.9480972290039 +2021-02-10 04:53:31,161.8885955810547 +2021-02-10 05:03:18,59.1067008972168 +2021-02-10 05:13:06,75.40290069580078 +2021-02-10 05:22:54,53.18870162963867 +2021-02-10 05:32:41,74.44950103759766 +2021-02-10 05:42:29,113.872802734375 +2021-02-10 05:52:17,126.48629760742188 +2021-02-10 06:02:04,111.58059692382812 +2021-02-10 06:11:52,107.8240966796875 +2021-02-10 06:21:39,107.29989624023438 +2021-02-10 06:31:27,94.45950317382812 +2021-02-10 06:41:15,75.64330291748047 +2021-02-10 06:51:02,58.805999755859375 +2021-02-10 07:00:50,161.8885955810547 +2021-02-10 07:10:38,100.19860076904295 +2021-02-10 07:20:25,99.3302993774414 +2021-02-10 07:30:13,69.84249877929688 +2021-02-10 07:40:01,59.25270080566406 +2021-02-10 07:49:49,58.20750045776367 +2021-02-10 07:59:36,74.22319793701172 +2021-02-10 08:09:24,98.47859954833984 +2021-02-10 08:19:11,67.45719909667969 +2021-02-10 08:28:59,88.3678970336914 +2021-02-10 08:38:46,67.06780242919922 +2021-02-10 08:48:34,63.44889831542969 +2021-02-10 08:58:22,59.10139846801758 +2021-02-10 09:08:09,123.5635986328125 +2021-02-10 09:17:57,160.5251007080078 +2021-02-10 09:27:44,161.8885955810547 +2021-02-10 09:37:32,161.9031982421875 +2021-02-10 09:47:20,160.5251007080078 +2021-02-10 09:57:07,163.29640197753906 +2021-02-10 10:06:55,163.2816925048828 +2021-02-10 10:16:43,142.0164031982422 +2021-02-10 10:26:30,88.70240020751953 +2021-02-10 10:36:18,73.75499725341797 +2021-02-10 10:46:06,98.47859954833984 +2021-02-10 10:55:53,68.82649993896484 +2021-02-10 11:05:41,58.80070114135742 +2021-02-10 11:15:28,58.35480117797852 +2021-02-10 11:25:16,57.914798736572266 +2021-02-10 11:35:03,160.5251007080078 +2021-02-10 11:44:51,83.95970153808594 +2021-02-10 11:54:39,80.80139923095703 +2021-02-10 12:04:26,108.87020111083984 +2021-02-10 12:14:14,106.79100036621094 +2021-02-10 12:24:02,87.38059997558594 +2021-02-10 12:33:49,81.63800048828125 +2021-02-10 12:43:37,82.78189849853516 +2021-02-10 12:53:25,110.4738998413086 +2021-02-10 13:03:12,120.1270980834961 +2021-02-10 13:13:00,113.30999755859376 +2021-02-10 13:22:48,85.47470092773438 +2021-02-10 13:32:35,118.8145980834961 +2021-02-10 13:42:23,139.10699462890625 +2021-02-10 13:52:11,115.0604019165039 +2021-02-10 14:01:58,108.87020111083984 +2021-02-10 14:11:46,82.48539733886719 +2021-02-10 14:21:34,101.98709869384766 +2021-02-10 14:31:21,99.76229858398438 +2021-02-10 14:41:09,80.25340270996094 +2021-02-10 14:50:56,62.43339920043945 +2021-02-10 15:00:44,122.8467025756836 +2021-02-10 15:10:31,124.99330139160156 +2021-02-10 15:20:19,160.5251007080078 +2021-02-10 15:30:07,126.48629760742188 +2021-02-10 15:39:54,161.8885955810547 +2021-02-10 15:49:42,136.33909606933594 +2021-02-10 15:59:30,70.67630004882812 +2021-02-10 16:09:17,94.45099639892578 +2021-02-10 16:19:05,159.20449829101562 +2021-02-10 16:28:53,80.79409790039062 +2021-02-10 16:38:40,89.72209930419922 +2021-02-10 16:48:28,92.20279693603516 +2021-02-10 16:58:15,61.77270126342773 +2021-02-10 17:08:03,160.5395965576172 +2021-02-10 17:17:51,79.9822998046875 +2021-02-10 17:27:38,58.80070114135742 +2021-02-10 17:37:26,61.44720077514648 +2021-02-10 17:47:14,83.06559753417969 +2021-02-10 17:57:01,161.8885955810547 +2021-02-10 18:06:49,120.785400390625 +2021-02-10 18:16:37,113.28949737548828 +2021-02-10 18:26:24,106.30670166015624 +2021-02-10 18:36:12,68.02799987792969 +2021-02-10 18:45:59,160.5251007080078 +2021-02-10 18:55:47,99.76229858398438 +2021-02-10 19:05:34,64.85160064697266 +2021-02-10 19:15:22,86.73539733886719 +2021-02-10 19:25:09,92.56939697265624 +2021-02-10 19:34:57,161.8885955810547 +2021-02-10 19:44:45,86.10009765625 +2021-02-10 19:54:32,101.08399963378906 +2021-02-10 20:04:20,161.8885955810547 +2021-02-10 20:14:08,91.47899627685548 +2021-02-10 20:23:55,104.80909729003906 +2021-02-10 20:33:43,80.51920318603516 +2021-02-10 20:43:31,105.28720092773438 +2021-02-10 20:53:19,113.872802734375 +2021-02-10 21:03:06,114.46299743652344 +2021-02-10 21:12:54,109.39219665527344 +2021-02-10 21:22:42,108.8603973388672 +2021-02-10 21:32:29,100.1894989013672 +2021-02-10 21:42:17,160.5251007080078 +2021-02-10 21:52:05,83.35890197753906 +2021-02-10 22:01:53,80.79409790039062 +2021-02-10 22:11:40,163.2816925048828 +2021-02-10 22:21:28,145.0666961669922 +2021-02-10 22:31:16,132.83740234375 +2021-02-10 22:41:03,154.11680603027344 +2021-02-10 22:50:51,159.19009399414062 +2021-02-10 23:00:38,159.19009399414062 +2021-02-10 23:10:26,140.0605010986328 +2021-02-10 23:20:13,118.80390167236328 +2021-02-10 23:30:01,125.72889709472656 +2021-02-10 23:39:49,161.8885955810547 +2021-02-10 23:49:36,160.5251007080078 +2021-02-10 23:59:24,160.5251007080078 +2021-02-11 00:09:11,161.8885955810547 +2021-02-11 00:18:59,161.8885955810547 +2021-02-11 00:28:46,161.8885955810547 +2021-02-11 00:38:34,161.8885955810547 +2021-02-11 00:48:22,161.8885955810547 +2021-02-11 00:58:09,161.8885955810547 +2021-02-11 01:07:57,161.8885955810547 +2021-02-11 01:17:44,147.214599609375 +2021-02-11 01:27:32,161.8885955810547 +2021-02-11 01:37:20,161.8885955810547 +2021-02-11 01:47:07,96.8227996826172 +2021-02-11 01:56:55,96.4185028076172 +2021-02-11 02:06:43,126.4748992919922 +2021-02-11 02:16:30,159.17579650878906 +2021-02-11 02:26:18,160.5251007080078 +2021-02-11 02:36:05,159.19009399414062 +2021-02-11 02:45:53,161.8885955810547 +2021-02-11 02:55:41,154.11680603027344 +2021-02-11 03:05:28,161.8885955810547 +2021-02-11 03:15:16,160.5251007080078 +2021-02-11 03:25:04,161.8885955810547 +2021-02-11 03:34:51,163.2816925048828 +2021-02-11 03:44:39,161.8885955810547 +2021-02-11 03:54:27,161.8885955810547 +2021-02-11 04:04:14,160.51060485839844 +2021-02-11 04:14:02,160.5251007080078 +2021-02-11 04:23:50,151.72779846191406 +2021-02-11 04:33:38,138.16920471191406 +2021-02-11 04:43:25,161.8885955810547 +2021-02-11 04:53:13,161.8885955810547 +2021-02-11 05:03:01,161.8885955810547 +2021-02-11 05:12:48,161.8885955810547 +2021-02-11 05:22:36,160.5251007080078 +2021-02-11 05:32:24,161.8885955810547 +2021-02-11 05:42:12,161.8885955810547 +2021-02-11 05:51:59,161.87399291992188 +2021-02-11 06:01:47,161.87399291992188 +2021-02-11 06:11:34,160.51060485839844 +2021-02-11 06:21:22,161.8885955810547 +2021-02-11 06:31:10,160.5251007080078 +2021-02-11 06:40:57,160.51060485839844 +2021-02-11 06:50:45,163.26699829101562 +2021-02-11 07:00:33,163.2816925048828 +2021-02-11 07:10:20,161.8885955810547 +2021-02-11 07:20:08,160.5251007080078 +2021-02-11 07:29:55,161.87399291992188 +2021-02-11 07:39:43,99.3302993774414 +2021-02-11 07:49:31,82.47789764404297 +2021-02-11 07:59:18,79.16580200195312 +2021-02-11 08:09:06,87.38059997558594 +2021-02-11 08:18:53,86.40869903564453 +2021-02-11 08:28:41,116.89710235595705 +2021-02-11 08:38:29,141.0301055908203 +2021-02-11 08:48:16,160.5251007080078 +2021-02-11 08:58:04,161.8885955810547 +2021-02-11 09:07:52,161.87399291992188 +2021-02-11 09:17:39,161.8885955810547 +2021-02-11 09:27:27,160.5251007080078 +2021-02-11 09:37:15,157.88279724121094 +2021-02-11 09:47:02,152.8968963623047 +2021-02-11 09:56:49,161.87399291992188 +2021-02-11 10:06:37,152.8968963623047 +2021-02-11 10:16:24,142.00360107421875 +2021-02-11 10:26:12,150.5675048828125 +2021-02-11 10:36:00,130.3699951171875 +2021-02-11 10:45:47,131.1840057373047 +2021-02-11 10:55:35,134.56680297851562 +2021-02-11 11:05:22,159.19009399414062 +2021-02-11 11:15:10,160.5251007080078 +2021-02-11 11:24:58,159.17579650878906 +2021-02-11 11:34:45,161.8885955810547 +2021-02-11 11:44:33,159.19009399414062 +2021-02-11 11:54:21,159.19009399414062 +2021-02-11 12:04:08,155.34689331054688 +2021-02-11 12:13:56,159.19009399414062 +2021-02-11 12:23:44,159.19009399414062 +2021-02-11 12:33:32,117.5353012084961 +2021-02-11 12:43:19,111.02410125732422 +2021-02-11 12:53:07,125.72889709472656 +2021-02-11 13:02:54,125.72889709472656 +2021-02-11 13:12:42,127.23149871826172 +2021-02-11 13:22:30,152.91070556640625 +2021-02-11 13:32:17,117.52469635009766 +2021-02-11 13:42:05,127.99909973144533 +2021-02-11 13:51:53,125.72889709472656 +2021-02-11 14:01:40,159.19009399414062 +2021-02-11 14:11:28,159.19009399414062 +2021-02-11 14:21:16,160.51060485839844 +2021-02-11 14:31:03,157.86849975585938 +2021-02-11 14:40:51,159.19009399414062 +2021-02-11 14:50:39,159.19009399414062 +2021-02-11 15:00:26,159.17579650878906 +2021-02-11 15:10:14,159.19009399414062 +2021-02-11 15:20:01,159.17579650878906 +2021-02-11 15:29:49,159.19009399414062 +2021-02-11 15:39:37,159.17579650878906 +2021-02-11 15:49:24,159.17579650878906 +2021-02-11 15:59:12,159.19009399414062 +2021-02-11 16:09:00,161.8885955810547 +2021-02-11 16:18:47,159.19009399414062 +2021-02-11 16:28:35,159.17579650878906 +2021-02-11 16:38:23,161.8885955810547 +2021-02-11 16:48:11,157.86849975585938 +2021-02-11 16:57:58,157.88279724121094 +2021-02-11 17:07:46,159.17579650878906 +2021-02-11 17:17:33,159.17579650878906 +2021-02-11 17:27:21,159.19009399414062 +2021-02-11 17:37:09,159.17579650878906 +2021-02-11 17:46:56,159.19009399414062 +2021-02-11 17:56:44,159.17579650878906 +2021-02-11 18:06:32,159.19009399414062 +2021-02-11 18:16:20,159.19009399414062 +2021-02-11 18:26:07,157.86849975585938 +2021-02-11 18:35:55,157.88279724121094 +2021-02-11 18:45:43,157.88279724121094 +2021-02-11 18:55:31,159.19009399414062 +2021-02-11 19:05:19,159.19009399414062 +2021-02-11 19:15:06,159.17579650878906 +2021-02-11 19:24:54,159.17579650878906 +2021-02-11 19:34:42,157.88279724121094 +2021-02-11 19:44:29,157.88279724121094 +2021-02-11 19:54:17,157.88279724121094 +2021-02-11 20:04:05,159.19009399414062 +2021-02-11 20:13:53,157.88279724121094 +2021-02-11 20:23:40,159.19009399414062 +2021-02-11 20:33:28,159.19009399414062 +2021-02-11 20:43:16,159.17579650878906 +2021-02-11 20:53:04,161.87399291992188 +2021-02-11 21:02:51,159.19009399414062 +2021-02-11 21:12:39,160.5251007080078 +2021-02-11 21:22:27,157.88279724121094 +2021-02-11 21:32:15,159.17579650878906 +2021-02-11 21:42:02,161.8885955810547 +2021-02-11 21:51:50,161.87399291992188 +2021-02-11 22:01:38,157.88279724121094 +2021-02-11 22:11:26,160.51060485839844 +2021-02-11 22:21:13,160.51060485839844 +2021-02-11 22:31:01,159.19009399414062 +2021-02-11 22:40:49,159.19009399414062 +2021-02-11 22:50:37,157.86849975585938 +2021-02-11 23:00:25,159.17579650878906 +2021-02-11 23:10:12,159.17579650878906 +2021-02-11 23:20:00,159.17579650878906 +2021-02-11 23:29:48,159.17579650878906 +2021-02-11 23:39:36,159.17579650878906 +2021-02-11 23:49:24,159.17579650878906 +2021-02-11 23:59:11,159.19009399414062 +2021-02-12 00:08:59,157.86849975585938 +2021-02-12 00:18:46,159.17579650878906 +2021-02-12 00:28:34,159.19009399414062 +2021-02-12 00:38:22,157.88279724121094 +2021-02-12 00:48:09,159.19009399414062 +2021-02-12 00:57:57,160.5251007080078 +2021-02-12 01:07:45,159.19009399414062 +2021-02-12 01:17:32,159.19009399414062 +2021-02-12 01:27:20,159.19009399414062 +2021-02-12 01:37:08,159.19009399414062 +2021-02-12 01:46:55,159.19009399414062 +2021-02-12 01:56:43,159.19009399414062 +2021-02-12 02:06:31,159.19009399414062 +2021-02-12 02:16:18,159.19009399414062 +2021-02-12 02:26:06,159.19009399414062 +2021-02-12 02:35:54,159.19009399414062 +2021-02-12 02:45:41,160.5251007080078 +2021-02-12 02:55:29,146.13760375976562 +2021-02-12 03:05:17,159.19009399414062 +2021-02-12 03:15:04,160.5251007080078 +2021-02-12 03:24:52,146.13760375976562 +2021-02-12 03:34:39,159.19009399414062 +2021-02-12 03:44:27,159.19009399414062 +2021-02-12 03:54:15,160.5251007080078 +2021-02-12 04:04:02,159.20449829101562 +2021-02-12 04:13:50,152.91070556640625 +2021-02-12 04:23:38,160.5251007080078 +2021-02-12 04:33:25,159.20449829101562 +2021-02-12 04:43:13,159.19009399414062 +2021-02-12 04:53:01,159.17579650878906 +2021-02-12 05:02:48,159.19009399414062 +2021-02-12 05:12:36,159.19009399414062 +2021-02-12 05:22:24,157.86849975585938 +2021-02-12 05:32:11,159.19009399414062 +2021-02-12 05:41:59,159.20449829101562 +2021-02-12 05:51:47,159.19009399414062 +2021-02-12 06:01:34,161.8885955810547 +2021-02-12 06:11:22,159.20449829101562 +2021-02-12 06:21:10,160.5251007080078 +2021-02-12 06:30:57,159.19009399414062 +2021-02-12 06:40:45,160.5251007080078 +2021-02-12 06:50:33,159.19009399414062 +2021-02-12 07:00:20,157.88279724121094 +2021-02-12 07:10:08,159.19009399414062 +2021-02-12 07:19:56,157.88279724121094 +2021-02-12 07:29:43,159.19009399414062 +2021-02-12 07:39:31,159.19009399414062 +2021-02-12 07:49:18,160.5251007080078 +2021-02-12 07:59:06,159.19009399414062 +2021-02-12 08:08:54,159.19009399414062 +2021-02-12 08:18:41,159.19009399414062 +2021-02-12 08:28:29,160.5251007080078 +2021-02-12 08:38:17,157.88279724121094 +2021-02-12 08:48:05,157.88279724121094 +2021-02-12 08:57:52,159.17579650878906 +2021-02-12 09:07:40,161.8885955810547 +2021-02-12 09:17:28,159.19009399414062 +2021-02-12 09:27:16,160.51060485839844 +2021-02-12 09:37:03,161.87399291992188 +2021-02-12 09:46:51,157.86849975585938 +2021-02-12 09:56:39,159.17579650878906 +2021-02-12 10:06:26,160.51060485839844 +2021-02-12 10:16:14,161.85940551757812 +2021-02-12 10:26:02,161.87399291992188 +2021-02-12 10:35:50,109.92009735107422 +2021-02-12 10:45:37,159.16140747070312 +2021-02-12 10:55:25,159.16140747070312 +2021-02-12 11:05:13,159.17579650878906 +2021-02-12 11:15:00,138.14430236816406 +2021-02-12 11:24:48,131.99839782714844 +2021-02-12 11:34:36,98.88459777832033 +2021-02-12 11:44:23,113.85220336914062 +2021-02-12 11:54:11,120.76360321044922 +2021-02-12 12:03:59,77.1052017211914 +2021-02-12 12:13:47,98.0500030517578 +2021-02-12 12:23:34,70.66999816894531 +2021-02-12 12:33:22,65.20539855957031 +2021-02-12 12:43:10,61.11930084228516 +2021-02-12 12:52:58,69.22319793701172 +2021-02-12 13:02:46,99.32129669189452 +2021-02-12 13:12:33,123.54129791259766 +2021-02-12 13:22:21,137.2342987060547 +2021-02-12 13:32:09,157.86849975585938 +2021-02-12 13:41:57,163.26699829101562 +2021-02-12 13:51:45,161.87399291992188 +2021-02-12 14:01:33,139.0944061279297 +2021-02-12 14:11:20,122.83560180664062 +2021-02-12 14:21:08,141.01739501953125 +2021-02-12 14:30:56,148.28480529785156 +2021-02-12 14:40:44,105.27770233154295 +2021-02-12 14:50:32,99.74430084228516 +2021-02-12 15:00:20,66.8656005859375 +2021-02-12 15:10:07,63.78850173950195 +2021-02-12 15:19:55,61.7672004699707 +2021-02-12 15:29:43,102.427001953125 +2021-02-12 15:39:31,70.0364990234375 +2021-02-12 15:49:19,70.0364990234375 +2021-02-12 15:59:07,96.00050354003906 +2021-02-12 16:08:54,100.62100219726562 +2021-02-12 16:18:42,103.839599609375 +2021-02-12 16:28:30,113.279296875 +2021-02-12 16:38:18,75.6229019165039 +2021-02-12 16:48:06,108.31500244140624 +2021-02-12 16:57:53,157.86849975585938 +2021-02-12 17:07:41,157.8542938232422 +2021-02-12 17:17:29,159.16140747070312 +2021-02-12 17:27:17,159.16140747070312 +2021-02-12 17:37:04,159.16140747070312 +2021-02-12 17:46:52,159.16140747070312 +2021-02-12 17:56:40,159.16140747070312 +2021-02-12 18:06:28,159.16140747070312 +2021-02-12 18:16:15,159.16140747070312 +2021-02-12 18:26:03,161.87399291992188 +2021-02-12 18:35:51,159.16140747070312 +2021-02-12 18:45:38,157.86849975585938 +2021-02-12 18:55:26,159.16140747070312 +2021-02-12 19:05:14,157.86849975585938 +2021-02-12 19:15:01,160.49609375 +2021-02-12 19:24:49,159.17579650878906 +2021-02-12 19:34:36,159.16140747070312 +2021-02-12 19:44:24,159.16140747070312 +2021-02-12 19:54:12,157.8542938232422 +2021-02-12 20:03:59,161.85940551757812 +2021-02-12 20:13:47,161.87399291992188 +2021-02-12 20:23:35,159.16140747070312 +2021-02-12 20:33:22,161.87399291992188 +2021-02-12 20:43:10,159.16140747070312 +2021-02-12 20:52:57,161.87399291992188 +2021-02-12 21:02:45,160.51060485839844 +2021-02-12 21:12:33,159.17579650878906 +2021-02-12 21:22:21,159.16140747070312 +2021-02-12 21:32:08,161.85940551757812 +2021-02-12 21:41:56,160.51060485839844 +2021-02-12 21:51:44,150.55389404296875 +2021-02-12 22:01:31,160.49609375 +2021-02-12 22:11:19,132.8253936767578 +2021-02-12 22:21:07,157.86849975585938 +2021-02-12 22:30:54,161.87399291992188 +2021-02-12 22:40:42,157.86849975585938 +2021-02-12 22:50:30,157.86849975585938 +2021-02-12 23:00:18,113.26909637451172 +2021-02-12 23:10:05,159.16140747070312 +2021-02-12 23:19:53,159.16140747070312 +2021-02-12 23:29:41,156.5738067626953 +2021-02-12 23:39:29,159.17579650878906 +2021-02-12 23:49:16,159.16140747070312 +2021-02-12 23:59:04,159.16140747070312 +2021-02-13 00:08:52,161.85940551757812 +2021-02-13 00:18:40,160.49609375 +2021-02-13 00:28:27,159.16140747070312 +2021-02-13 00:38:15,159.16140747070312 +2021-02-13 00:48:03,161.85940551757812 +2021-02-13 00:57:50,157.86849975585938 +2021-02-13 01:07:38,159.16140747070312 +2021-02-13 01:07:39,159.16140747070312 +2021-02-13 01:17:27,160.49609375 +2021-02-13 01:27:14,159.16140747070312 +2021-02-13 01:37:32,157.86849975585938 +2021-02-13 01:47:50,157.86849975585938 +2021-02-13 01:57:54,156.58790588378906 +2021-02-13 02:08:10,156.58790588378906 +2021-02-13 02:08:20,156.58790588378906 +2021-02-13 02:18:14,156.5738067626953 +2021-02-13 02:28:02,157.86849975585938 +2021-02-13 02:37:50,157.86849975585938 +2021-02-13 02:47:38,159.17579650878906 +2021-02-13 02:57:25,157.86849975585938 +2021-02-13 03:07:13,160.49609375 +2021-02-13 03:17:01,156.58790588378906 +2021-02-13 03:26:48,161.85940551757812 +2021-02-13 03:36:36,161.85940551757812 +2021-02-13 03:46:24,159.16140747070312 +2021-02-13 03:56:11,161.85940551757812 +2021-02-13 04:05:59,156.58790588378906 +2021-02-13 04:15:47,159.17579650878906 +2021-02-13 04:25:34,160.51060485839844 +2021-02-13 04:35:22,157.86849975585938 +2021-02-13 04:45:10,160.49609375 +2021-02-13 04:54:57,161.87399291992188 +2021-02-13 05:04:45,159.17579650878906 +2021-02-13 05:14:33,160.49609375 +2021-02-13 05:24:20,160.49609375 +2021-02-13 05:34:08,159.16140747070312 +2021-02-13 05:43:56,159.17579650878906 +2021-02-13 05:53:44,161.85940551757812 +2021-02-13 06:03:32,160.49609375 +2021-02-13 06:03:33,160.49609375 +2021-02-13 06:13:25,160.49609375 +2021-02-13 06:23:13,160.49609375 +2021-02-13 06:33:01,159.16140747070312 +2021-02-13 06:42:49,161.85940551757812 +2021-02-13 06:52:37,157.86849975585938 +2021-02-13 07:02:24,159.16140747070312 +2021-02-13 07:12:12,156.5738067626953 +2021-02-13 07:22:00,157.86849975585938 +2021-02-13 07:31:48,156.58790588378906 +2021-02-13 07:41:36,159.16140747070312 +2021-02-13 07:51:23,159.17579650878906 +2021-02-13 08:01:11,156.58790588378906 +2021-02-13 08:10:59,156.58790588378906 +2021-02-13 08:20:47,157.8542938232422 +2021-02-13 08:30:34,156.58790588378906 +2021-02-13 08:40:22,156.58790588378906 +2021-02-13 08:50:10,157.86849975585938 +2021-02-13 08:59:58,157.86849975585938 +2021-02-13 09:09:46,156.5738067626953 +2021-02-13 09:19:33,157.8542938232422 +2021-02-13 09:29:21,157.8542938232422 +2021-02-13 09:39:09,159.16140747070312 +2021-02-13 09:48:57,160.49609375 +2021-02-13 09:58:44,156.5738067626953 +2021-02-13 10:08:32,156.58790588378906 +2021-02-13 10:18:20,157.8542938232422 +2021-02-13 10:28:08,159.16140747070312 +2021-02-13 10:28:09,159.16140747070312 +2021-02-13 10:38:02,156.58790588378906 +2021-02-13 10:47:49,161.85940551757812 +2021-02-13 10:57:37,157.8542938232422 +2021-02-13 11:07:25,156.58790588378906 +2021-02-13 11:17:13,156.58790588378906 +2021-02-13 11:27:00,161.85940551757812 +2021-02-13 11:36:48,159.16140747070312 +2021-02-13 11:46:36,159.16140747070312 +2021-02-13 11:56:24,159.16140747070312 +2021-02-13 12:06:12,160.49609375 +2021-02-13 12:15:59,157.8542938232422 +2021-02-13 12:25:47,159.17579650878906 +2021-02-13 12:35:35,161.85940551757812 +2021-02-13 12:45:23,159.16140747070312 +2021-02-13 12:55:11,160.51060485839844 +2021-02-13 13:04:58,157.8542938232422 +2021-02-13 13:14:46,159.16140747070312 +2021-02-13 13:24:34,157.8542938232422 +2021-02-13 13:34:22,156.5738067626953 +2021-02-13 13:44:09,157.86849975585938 +2021-02-13 13:53:57,156.58790588378906 +2021-02-13 14:03:45,157.86849975585938 +2021-02-13 14:13:32,156.5738067626953 +2021-02-13 14:23:20,157.8542938232422 +2021-02-13 14:33:08,159.17579650878906 +2021-02-13 14:42:55,157.8542938232422 +2021-02-13 14:52:43,157.8542938232422 +2021-02-13 15:02:31,157.8542938232422 +2021-02-13 15:12:18,157.8542938232422 +2021-02-13 15:22:06,160.49609375 +2021-02-13 15:31:54,159.16140747070312 +2021-02-13 15:41:41,160.49609375 +2021-02-13 15:51:29,159.16140747070312 +2021-02-13 16:01:17,159.16140747070312 +2021-02-13 16:11:04,157.8542938232422 +2021-02-13 16:20:52,159.16140747070312 +2021-02-13 16:30:39,160.49609375 +2021-02-13 16:40:27,159.16140747070312 +2021-02-13 16:50:15,159.16140747070312 +2021-02-13 17:00:02,159.16140747070312 +2021-02-13 17:09:50,157.8542938232422 +2021-02-13 17:19:37,157.8542938232422 +2021-02-13 17:29:25,157.8542938232422 +2021-02-13 17:39:12,159.16140747070312 +2021-02-13 17:49:00,159.16140747070312 +2021-02-13 17:58:48,159.16140747070312 +2021-02-13 18:08:36,156.5738067626953 +2021-02-13 18:18:23,156.5738067626953 +2021-02-13 18:28:11,157.86849975585938 +2021-02-13 18:37:58,156.58790588378906 +2021-02-13 18:47:46,159.16140747070312 +2021-02-13 18:57:34,157.8542938232422 +2021-02-13 19:07:21,157.86849975585938 +2021-02-13 19:17:09,159.16140747070312 +2021-02-13 19:26:56,157.8542938232422 +2021-02-13 19:36:44,159.16140747070312 +2021-02-13 19:46:31,156.5738067626953 +2021-02-13 19:56:19,156.58790588378906 +2021-02-13 20:06:07,156.58790588378906 +2021-02-13 20:15:54,155.3188934326172 +2021-02-13 20:25:42,156.5738067626953 +2021-02-13 20:35:30,156.5738067626953 +2021-02-13 20:45:17,156.58790588378906 +2021-02-13 20:55:05,156.58790588378906 +2021-02-13 21:04:52,157.86849975585938 +2021-02-13 21:14:40,157.86849975585938 +2021-02-13 21:24:28,156.58790588378906 +2021-02-13 21:34:15,156.58790588378906 +2021-02-13 21:44:03,156.58790588378906 +2021-02-13 21:53:50,156.58790588378906 +2021-02-13 22:03:38,157.86849975585938 +2021-02-13 22:13:25,157.86849975585938 +2021-02-13 22:23:13,157.86849975585938 +2021-02-13 22:33:00,156.5738067626953 +2021-02-13 22:42:48,156.58790588378906 +2021-02-13 22:52:35,156.58790588378906 +2021-02-13 23:02:23,156.58790588378906 +2021-02-13 23:12:11,156.58790588378906 +2021-02-13 23:21:58,157.8542938232422 +2021-02-13 23:31:46,157.86849975585938 +2021-02-13 23:41:33,157.86849975585938 +2021-02-13 23:51:21,156.58790588378906 +2021-02-14 00:01:09,159.16140747070312 +2021-02-14 00:10:56,156.58790588378906 +2021-02-14 00:20:44,159.16140747070312 +2021-02-14 00:30:31,159.16140747070312 +2021-02-14 00:40:19,157.8542938232422 +2021-02-14 00:50:06,159.16140747070312 +2021-02-14 00:59:54,159.16140747070312 +2021-02-14 01:09:42,157.8542938232422 +2021-02-14 01:19:29,156.5738067626953 +2021-02-14 01:29:17,159.16140747070312 +2021-02-14 01:39:04,156.58790588378906 +2021-02-14 01:48:52,156.5738067626953 +2021-02-14 01:58:40,156.5738067626953 +2021-02-14 02:08:27,156.58790588378906 +2021-02-14 02:18:15,157.8542938232422 +2021-02-14 02:28:03,159.16140747070312 +2021-02-14 02:37:50,124.9708023071289 +2021-02-14 02:47:38,159.1470947265625 +2021-02-14 02:57:26,144.0146942138672 +2021-02-14 03:07:14,159.16140747070312 +2021-02-14 03:17:01,159.16140747070312 +2021-02-14 03:26:49,157.8542938232422 +2021-02-14 03:36:37,157.84010314941406 +2021-02-14 03:46:24,156.5738067626953 +2021-02-14 03:56:12,156.5738067626953 +2021-02-14 04:06:00,156.5738067626953 +2021-02-14 04:15:47,157.8542938232422 +2021-02-14 04:25:35,159.16140747070312 +2021-02-14 04:35:22,159.16140747070312 +2021-02-14 04:45:10,156.5738067626953 +2021-02-14 04:54:58,155.3188934326172 +2021-02-14 05:04:45,156.5738067626953 +2021-02-14 05:14:33,156.5738067626953 +2021-02-14 05:24:21,157.8542938232422 +2021-02-14 05:34:09,151.7003936767578 +2021-02-14 05:43:56,156.5738067626953 +2021-02-14 05:53:44,156.5738067626953 +2021-02-14 06:03:32,157.8542938232422 +2021-02-14 06:13:19,157.8542938232422 +2021-02-14 06:23:07,157.8542938232422 +2021-02-14 06:32:55,156.5738067626953 +2021-02-14 06:42:42,156.5738067626953 +2021-02-14 06:52:30,159.16140747070312 +2021-02-14 07:02:18,156.5738067626953 +2021-02-14 07:12:05,156.5738067626953 +2021-02-14 07:21:53,157.8542938232422 +2021-02-14 07:31:41,159.16140747070312 +2021-02-14 07:41:28,156.5738067626953 +2021-02-14 07:51:16,156.58790588378906 +2021-02-14 08:01:04,156.5738067626953 +2021-02-14 08:10:51,159.16140747070312 +2021-02-14 08:20:39,156.5738067626953 +2021-02-14 08:30:26,156.5738067626953 +2021-02-14 08:40:14,157.8542938232422 +2021-02-14 08:50:02,156.5738067626953 +2021-02-14 08:59:49,156.5738067626953 +2021-02-14 09:09:37,156.5738067626953 +2021-02-14 09:19:25,156.58790588378906 +2021-02-14 09:29:12,156.58790588378906 +2021-02-14 09:39:00,156.58790588378906 +2021-02-14 09:48:48,156.5738067626953 +2021-02-14 09:58:35,156.5738067626953 +2021-02-14 10:08:23,156.5738067626953 +2021-02-14 10:18:11,156.5738067626953 +2021-02-14 10:27:58,156.5738067626953 +2021-02-14 10:37:46,157.86849975585938 +2021-02-14 10:47:34,156.5738067626953 +2021-02-14 10:57:22,156.58790588378906 +2021-02-14 11:07:09,156.58790588378906 +2021-02-14 11:16:57,156.5738067626953 +2021-02-14 11:26:45,155.3188934326172 +2021-02-14 11:36:32,156.58790588378906 +2021-02-14 11:46:20,156.5738067626953 +2021-02-14 11:56:08,156.5738067626953 +2021-02-14 12:05:55,156.5738067626953 +2021-02-14 12:15:43,135.42149353027344 +2021-02-14 12:25:31,141.00469970703125 +2021-02-14 12:35:19,149.41549682617188 +2021-02-14 12:45:06,102.88999938964844 +2021-02-14 12:54:54,91.10530090332033 +2021-02-14 13:04:42,102.427001953125 +2021-02-14 13:14:29,157.8542938232422 +2021-02-14 13:24:17,156.5738067626953 +2021-02-14 13:34:04,156.5738067626953 +2021-02-14 13:43:52,156.5738067626953 +2021-02-14 13:53:40,156.5738067626953 +2021-02-14 14:03:28,156.5738067626953 +2021-02-14 14:13:15,157.8542938232422 +2021-02-14 14:23:03,159.16140747070312 +2021-02-14 14:32:51,156.5738067626953 +2021-02-14 14:42:38,156.5738067626953 +2021-02-14 14:52:26,159.16140747070312 +2021-02-14 15:02:13,155.3188934326172 +2021-02-14 15:12:01,156.5738067626953 +2021-02-14 15:21:49,159.16140747070312 +2021-02-14 15:31:37,155.3188934326172 +2021-02-14 15:41:24,156.5738067626953 +2021-02-14 15:51:12,154.08900451660156 +2021-02-14 16:01:00,157.8542938232422 +2021-02-14 16:10:47,156.5738067626953 +2021-02-14 16:20:35,155.3188934326172 +2021-02-14 16:30:23,156.5738067626953 +2021-02-14 16:40:10,155.3188934326172 +2021-02-14 16:49:58,157.8542938232422 +2021-02-14 16:59:46,156.5738067626953 +2021-02-14 17:09:33,156.5738067626953 +2021-02-14 17:19:21,157.8542938232422 +2021-02-14 17:29:09,157.8542938232422 +2021-02-14 17:38:56,159.16140747070312 +2021-02-14 17:48:44,157.8542938232422 +2021-02-14 17:58:32,155.3188934326172 +2021-02-14 18:08:20,156.5738067626953 +2021-02-14 18:18:13,156.5738067626953 +2021-02-14 18:28:01,155.3188934326172 +2021-02-14 18:37:48,156.5738067626953 +2021-02-14 18:47:36,156.5738067626953 +2021-02-14 18:57:24,156.5738067626953 +2021-02-14 19:07:11,156.5738067626953 +2021-02-14 19:16:59,155.3188934326172 +2021-02-14 19:26:47,155.3188934326172 +2021-02-14 19:36:35,156.58790588378906 +2021-02-14 19:46:22,155.3188934326172 +2021-02-14 19:56:10,156.5738067626953 +2021-02-14 20:05:58,155.3188934326172 +2021-02-14 20:15:45,156.5738067626953 +2021-02-14 20:25:33,156.5738067626953 +2021-02-14 20:35:21,157.8542938232422 +2021-02-14 20:45:08,155.3188934326172 +2021-02-14 20:54:56,156.5738067626953 +2021-02-14 21:04:44,156.5738067626953 +2021-02-14 21:14:32,156.5738067626953 +2021-02-14 21:24:19,156.5738067626953 +2021-02-14 21:34:07,156.5738067626953 +2021-02-14 21:43:55,155.33290100097656 +2021-02-14 21:53:43,156.5738067626953 +2021-02-14 22:03:30,156.5738067626953 +2021-02-14 22:13:18,156.5738067626953 +2021-02-14 22:23:06,157.8542938232422 +2021-02-14 22:32:54,156.5738067626953 +2021-02-14 22:42:41,155.3188934326172 +2021-02-14 22:52:29,156.5738067626953 +2021-02-14 23:02:17,154.08900451660156 +2021-02-14 23:12:05,156.5738067626953 +2021-02-14 23:21:53,156.5738067626953 +2021-02-14 23:31:40,155.3188934326172 +2021-02-14 23:41:28,155.33290100097656 +2021-02-14 23:51:16,156.5738067626953 +2021-02-15 00:01:04,155.3188934326172 +2021-02-15 00:10:52,156.5738067626953 +2021-02-15 00:20:39,156.5738067626953 +2021-02-15 00:30:27,155.3188934326172 +2021-02-15 00:40:15,156.5738067626953 +2021-02-15 00:50:03,156.5738067626953 +2021-02-15 00:59:51,159.16140747070312 +2021-02-15 01:09:39,155.3188934326172 +2021-02-15 01:19:26,155.3188934326172 +2021-02-15 01:29:14,155.3188934326172 +2021-02-15 01:39:02,155.3188934326172 +2021-02-15 01:48:50,155.3188934326172 +2021-02-15 01:58:38,155.3188934326172 +2021-02-15 02:08:26,156.5738067626953 +2021-02-15 02:18:13,156.5738067626953 +2021-02-15 02:28:01,155.33290100097656 +2021-02-15 02:37:49,155.3188934326172 +2021-02-15 02:47:38,155.33290100097656 +2021-02-15 02:57:31,156.58790588378906 +2021-02-15 03:07:19,157.86849975585938 +2021-02-15 03:17:06,156.5738067626953 +2021-02-15 03:26:54,156.58790588378906 +2021-02-15 03:36:42,156.5738067626953 +2021-02-15 03:46:30,156.5738067626953 +2021-02-15 03:56:18,155.30490112304688 +2021-02-15 04:06:06,156.5738067626953 +2021-02-15 04:15:54,156.5738067626953 +2021-02-15 04:25:41,157.84010314941406 +2021-02-15 04:35:29,156.5738067626953 +2021-02-15 04:45:17,156.5738067626953 +2021-02-15 04:55:05,156.5738067626953 +2021-02-15 05:04:53,156.5738067626953 +2021-02-15 05:14:41,156.5738067626953 +2021-02-15 05:24:28,156.5738067626953 +2021-02-15 05:34:16,154.08900451660156 +2021-02-15 05:44:04,156.5738067626953 +2021-02-15 05:53:52,157.8542938232422 +2021-02-15 06:03:40,156.5738067626953 +2021-02-15 06:13:28,156.5738067626953 +2021-02-15 06:23:15,156.5738067626953 +2021-02-15 06:33:03,155.3188934326172 +2021-02-15 06:42:51,156.5738067626953 +2021-02-15 06:52:39,156.5738067626953 +2021-02-15 07:02:27,157.8542938232422 +2021-02-15 07:12:14,159.16140747070312 +2021-02-15 07:22:02,154.08900451660156 +2021-02-15 07:31:50,157.8542938232422 +2021-02-15 07:41:38,157.8542938232422 +2021-02-15 07:51:26,156.5738067626953 +2021-02-15 08:01:14,156.55960083007812 +2021-02-15 08:11:02,156.5738067626953 +2021-02-15 08:20:49,157.8542938232422 +2021-02-15 08:30:37,157.8542938232422 +2021-02-15 08:40:25,159.16140747070312 +2021-02-15 08:50:13,157.84010314941406 +2021-02-15 09:00:01,156.5738067626953 +2021-02-15 09:09:49,155.3188934326172 +2021-02-15 09:19:37,155.3188934326172 +2021-02-15 09:29:25,155.3188934326172 +2021-02-15 09:39:12,156.5738067626953 +2021-02-15 09:49:00,156.5738067626953 +2021-02-15 09:58:48,156.5738067626953 +2021-02-15 10:08:36,156.5738067626953 +2021-02-15 10:18:24,156.5738067626953 +2021-02-15 10:28:11,160.49609375 +2021-02-15 10:37:59,157.8542938232422 +2021-02-15 10:47:47,159.16140747070312 +2021-02-15 10:57:35,155.3188934326172 +2021-02-15 11:07:23,155.33290100097656 +2021-02-15 11:17:10,156.5738067626953 +2021-02-15 11:26:58,-13.840900421142578 +2021-02-15 11:26:59,156.5738067626953 +2021-02-15 11:36:52,155.3188934326172 +2021-02-15 11:46:40,155.3188934326172 +2021-02-15 11:56:28,156.5738067626953 +2021-02-15 12:06:16,156.5738067626953 +2021-02-15 12:16:04,155.33290100097656 +2021-02-15 12:25:51,155.3188934326172 +2021-02-15 12:35:39,155.3188934326172 +2021-02-15 12:45:27,156.5738067626953 +2021-02-15 12:55:15,156.58790588378906 +2021-02-15 13:05:02,155.3188934326172 +2021-02-15 13:14:50,157.8542938232422 +2021-02-15 13:24:38,155.33290100097656 +2021-02-15 13:34:26,156.58790588378906 +2021-02-15 13:44:14,156.5738067626953 +2021-02-15 13:54:02,155.3188934326172 +2021-02-15 14:03:50,156.58790588378906 +2021-02-15 14:13:37,156.5738067626953 +2021-02-15 14:23:25,156.58790588378906 +2021-02-15 14:33:13,156.58790588378906 +2021-02-15 14:43:01,155.33290100097656 +2021-02-15 14:52:49,155.3188934326172 +2021-02-15 15:02:37,155.3188934326172 +2021-02-15 15:12:24,156.5738067626953 +2021-02-15 15:22:12,157.86849975585938 +2021-02-15 15:32:00,157.86849975585938 +2021-02-15 15:41:48,156.58790588378906 +2021-02-15 15:51:36,155.33290100097656 +2021-02-15 16:01:23,156.58790588378906 +2021-02-15 16:11:11,157.86849975585938 +2021-02-15 16:20:59,156.58790588378906 +2021-02-15 16:30:47,157.86849975585938 +2021-02-15 16:40:35,157.86849975585938 +2021-02-15 16:50:23,157.88279724121094 +2021-02-15 17:00:11,156.58790588378906 +2021-02-15 17:09:59,156.58790588378906 +2021-02-15 17:19:47,156.58790588378906 +2021-02-15 17:29:35,156.58790588378906 +2021-02-15 17:39:22,156.5738067626953 +2021-02-15 17:49:10,156.58790588378906 +2021-02-15 17:58:58,156.58790588378906 +2021-02-15 18:08:46,155.33290100097656 +2021-02-15 18:18:34,154.08900451660156 +2021-02-15 18:28:22,156.58790588378906 +2021-02-15 18:38:10,156.58790588378906 +2021-02-15 18:47:58,156.58790588378906 +2021-02-15 18:57:45,156.58790588378906 +2021-02-15 19:07:33,156.58790588378906 +2021-02-15 19:17:21,155.33290100097656 +2021-02-15 19:27:09,156.58790588378906 +2021-02-15 19:36:57,156.6020050048828 +2021-02-15 19:46:45,156.58790588378906 +2021-02-15 19:56:33,156.5738067626953 +2021-02-15 20:06:20,156.58790588378906 +2021-02-15 20:16:08,154.1029052734375 +2021-02-15 20:25:56,155.33290100097656 +2021-02-15 20:35:44,156.58790588378906 +2021-02-15 20:45:32,154.11680603027344 +2021-02-15 20:55:20,155.33290100097656 +2021-02-15 21:05:07,154.1029052734375 +2021-02-15 21:14:55,157.91119384765625 +2021-02-15 21:24:43,154.1029052734375 +2021-02-15 21:34:31,155.34689331054688 +2021-02-15 21:44:19,154.1029052734375 +2021-02-15 21:54:07,154.1029052734375 +2021-02-15 22:03:54,154.1029052734375 +2021-02-15 22:13:42,154.11680603027344 +2021-02-15 22:23:30,154.11680603027344 +2021-02-15 22:33:18,154.11680603027344 +2021-02-15 22:43:06,154.11680603027344 +2021-02-15 22:52:54,154.11680603027344 +2021-02-15 23:02:42,155.34689331054688 +2021-02-15 23:12:30,154.11680603027344 +2021-02-15 23:22:17,154.11680603027344 +2021-02-15 23:32:05,155.34689331054688 +2021-02-15 23:41:53,156.61610412597656 +2021-02-15 23:51:41,156.6020050048828 +2021-02-16 00:01:29,156.6020050048828 +2021-02-16 00:11:17,157.88279724121094 +2021-02-16 00:21:05,156.61610412597656 +2021-02-16 00:30:53,156.6020050048828 +2021-02-16 00:40:41,155.34689331054688 +2021-02-16 00:50:45,157.89700317382812 +2021-02-16 01:00:37,156.58790588378906 +2021-02-16 01:10:25,156.58790588378906 +2021-02-16 01:20:13,156.58790588378906 +2021-02-16 01:30:01,156.58790588378906 +2021-02-16 01:39:49,155.3188934326172 +2021-02-16 01:49:37,155.3188934326172 +2021-02-16 01:59:24,156.5738067626953 +2021-02-16 02:09:12,156.58790588378906 +2021-02-16 02:19:00,155.3188934326172 +2021-02-16 02:28:48,155.3188934326172 +2021-02-16 02:28:49,155.3188934326172 +2021-02-16 02:38:42,154.08900451660156 +2021-02-16 02:48:30,154.08900451660156 +2021-02-16 02:58:18,155.3188934326172 +2021-02-16 03:08:05,155.3188934326172 +2021-02-16 03:17:53,154.08900451660156 +2021-02-16 03:27:41,155.3188934326172 +2021-02-16 03:37:29,154.08900451660156 +2021-02-16 03:47:17,155.3188934326172 +2021-02-16 03:57:04,155.33290100097656 +2021-02-16 04:06:52,155.3188934326172 +2021-02-16 04:16:40,155.3188934326172 +2021-02-16 04:26:28,155.3188934326172 +2021-02-16 04:36:16,154.08900451660156 +2021-02-16 04:46:04,154.08900451660156 +2021-02-16 04:55:52,155.3188934326172 +2021-02-16 05:05:39,156.5738067626953 +2021-02-16 05:15:27,155.3188934326172 +2021-02-16 05:25:15,156.5738067626953 +2021-02-16 05:35:03,156.5738067626953 +2021-02-16 05:44:51,155.3188934326172 +2021-02-16 05:54:39,155.3188934326172 +2021-02-16 06:04:27,155.3188934326172 +2021-02-16 06:14:14,156.5738067626953 +2021-02-16 06:24:02,156.58790588378906 +2021-02-16 06:33:50,155.3188934326172 +2021-02-16 06:43:38,154.08900451660156 +2021-02-16 06:53:26,156.5738067626953 +2021-02-16 07:03:14,155.3188934326172 +2021-02-16 07:13:02,156.5738067626953 +2021-02-16 07:22:50,155.33290100097656 +2021-02-16 07:32:38,154.08900451660156 +2021-02-16 07:42:25,155.3188934326172 +2021-02-16 07:52:13,154.08900451660156 +2021-02-16 08:02:01,155.3188934326172 +2021-02-16 08:11:49,155.3188934326172 +2021-02-16 08:21:37,156.5738067626953 +2021-02-16 08:31:25,155.3188934326172 +2021-02-16 08:41:12,156.5738067626953 +2021-02-16 08:51:00,154.08900451660156 +2021-02-16 09:00:48,156.55960083007812 +2021-02-16 09:10:36,156.55960083007812 +2021-02-16 09:20:24,154.1029052734375 +2021-02-16 09:30:12,154.08900451660156 +2021-02-16 09:40:00,156.5738067626953 +2021-02-16 09:49:47,155.3188934326172 +2021-02-16 09:59:35,155.3188934326172 +2021-02-16 10:09:23,156.58790588378906 +2021-02-16 10:19:11,156.58790588378906 +2021-02-16 10:28:59,154.08900451660156 +2021-02-16 10:38:47,154.08900451660156 +2021-02-16 10:48:34,156.5738067626953 +2021-02-16 10:58:22,155.3188934326172 +2021-02-16 11:08:10,156.5738067626953 +2021-02-16 11:17:59,155.33290100097656 +2021-02-16 11:18:04,155.33290100097656 +2021-02-16 11:27:53,155.3188934326172 +2021-02-16 11:37:52,155.3188934326172 +2021-02-16 11:47:39,155.3188934326172 +2021-02-16 11:57:27,154.08900451660156 +2021-02-16 11:57:28,154.08900451660156 +2021-02-16 12:07:16,154.08900451660156 +2021-02-16 12:17:10,154.08900451660156 +2021-02-16 12:26:58,155.3188934326172 +2021-02-16 12:37:16,155.3188934326172 +2021-02-16 12:48:02,154.1029052734375 +2021-02-16 12:57:50,156.5738067626953 +2021-02-16 13:07:38,155.33290100097656 +2021-02-16 13:17:26,156.5738067626953 +2021-02-16 13:27:14,155.3188934326172 +2021-02-16 13:37:02,154.08900451660156 +2021-02-16 13:46:49,155.3188934326172 +2021-02-16 13:56:37,155.3188934326172 +2021-02-16 14:06:25,155.33290100097656 +2021-02-16 14:16:13,155.33290100097656 +2021-02-16 14:26:01,155.3188934326172 +2021-02-16 14:35:48,155.33290100097656 +2021-02-16 14:45:36,154.08900451660156 +2021-02-16 14:55:24,155.3188934326172 +2021-02-16 15:05:12,156.5738067626953 +2021-02-16 15:14:59,155.3188934326172 +2021-02-16 15:24:47,156.5738067626953 +2021-02-16 15:34:35,155.3188934326172 +2021-02-16 15:44:23,154.08900451660156 +2021-02-16 15:54:11,154.08900451660156 +2021-02-16 16:03:58,156.5738067626953 +2021-02-16 16:13:46,155.3188934326172 +2021-02-16 16:23:34,154.08900451660156 +2021-02-16 16:33:22,156.5738067626953 +2021-02-16 16:43:10,156.5738067626953 +2021-02-16 16:52:58,155.3188934326172 +2021-02-16 17:02:46,156.58790588378906 +2021-02-16 17:12:33,156.58790588378906 +2021-02-16 17:22:21,155.3188934326172 +2021-02-16 17:32:09,154.1029052734375 +2021-02-16 17:41:57,154.08900451660156 +2021-02-16 17:51:45,154.08900451660156 +2021-02-16 18:01:33,154.08900451660156 +2021-02-16 18:11:21,154.08900451660156 +2021-02-16 18:21:09,154.08900451660156 +2021-02-16 18:30:57,156.6020050048828 +2021-02-16 18:40:44,155.3188934326172 +2021-02-16 18:50:32,154.08900451660156 +2021-02-16 19:00:20,155.3188934326172 +2021-02-16 19:10:08,154.08900451660156 +2021-02-16 19:19:56,155.3188934326172 +2021-02-16 19:29:43,155.3188934326172 +2021-02-16 19:39:31,154.08900451660156 +2021-02-16 19:49:19,156.5738067626953 +2021-02-16 19:59:07,154.08900451660156 +2021-02-16 20:08:55,155.3188934326172 +2021-02-16 20:18:42,154.08900451660156 +2021-02-16 20:28:30,154.08900451660156 +2021-02-16 20:38:18,155.3188934326172 +2021-02-16 20:48:06,155.3188934326172 +2021-02-16 20:57:54,155.33290100097656 +2021-02-16 21:07:42,155.33290100097656 +2021-02-16 21:17:30,154.08900451660156 +2021-02-16 21:27:18,154.08900451660156 +2021-02-16 21:37:06,154.08900451660156 +2021-02-16 21:46:53,154.08900451660156 +2021-02-16 21:56:41,156.5738067626953 +2021-02-16 22:06:29,155.3188934326172 +2021-02-16 22:16:17,154.08900451660156 +2021-02-16 22:26:05,156.58790588378906 +2021-02-16 22:35:53,154.1029052734375 +2021-02-16 22:45:40,155.3188934326172 +2021-02-16 22:55:28,155.3188934326172 +2021-02-16 23:05:16,155.3188934326172 +2021-02-16 23:15:04,154.08900451660156 +2021-02-16 23:24:52,154.08900451660156 +2021-02-16 23:34:40,156.5738067626953 +2021-02-16 23:44:28,156.5738067626953 +2021-02-16 23:54:16,155.3188934326172 +2021-02-17 00:04:03,155.3188934326172 +2021-02-17 00:13:51,155.3188934326172 +2021-02-17 00:23:39,155.3188934326172 +2021-02-17 00:33:27,154.08900451660156 +2021-02-17 00:43:15,155.3188934326172 +2021-02-17 00:53:03,155.3188934326172 +2021-02-17 01:02:50,154.08900451660156 +2021-02-17 01:12:38,154.08900451660156 +2021-02-17 01:22:26,154.08900451660156 +2021-02-17 01:32:14,154.08900451660156 +2021-02-17 01:42:02,154.08900451660156 +2021-02-17 01:51:49,155.3188934326172 +2021-02-17 02:01:37,156.5738067626953 +2021-02-17 02:11:25,154.08900451660156 +2021-02-17 02:21:13,154.08900451660156 +2021-02-17 02:31:01,154.08900451660156 +2021-02-17 02:40:48,154.08900451660156 +2021-02-17 02:50:36,154.08900451660156 +2021-02-17 03:00:24,154.08900451660156 +2021-02-17 03:10:11,156.5738067626953 +2021-02-17 03:19:59,154.08900451660156 +2021-02-17 03:29:47,154.08900451660156 +2021-02-17 03:39:35,156.55960083007812 +2021-02-17 03:49:22,154.08900451660156 +2021-02-17 03:59:10,155.3188934326172 +2021-02-17 04:08:57,154.08900451660156 +2021-02-17 04:18:45,154.07510375976562 +2021-02-17 04:28:33,155.3188934326172 +2021-02-17 04:38:21,154.08900451660156 +2021-02-17 04:48:08,155.3188934326172 +2021-02-17 04:57:56,154.08900451660156 +2021-02-17 05:07:44,156.5738067626953 +2021-02-17 05:17:31,156.5738067626953 +2021-02-17 05:27:19,154.07510375976562 +2021-02-17 05:37:07,154.08900451660156 +2021-02-17 05:46:54,155.3188934326172 +2021-02-17 05:56:42,156.5738067626953 +2021-02-17 06:06:30,155.3188934326172 +2021-02-17 06:16:18,154.07510375976562 +2021-02-17 06:26:06,156.55960083007812 +2021-02-17 06:35:53,154.07510375976562 +2021-02-17 06:45:41,154.08900451660156 +2021-02-17 06:55:29,155.30490112304688 +2021-02-17 07:05:17,157.8542938232422 +2021-02-17 07:15:05,156.5738067626953 +2021-02-17 07:24:52,154.07510375976562 +2021-02-17 07:34:40,154.07510375976562 +2021-02-17 07:44:28,159.1470947265625 +2021-02-17 07:54:16,155.3188934326172 +2021-02-17 08:04:03,154.08900451660156 +2021-02-17 08:13:51,156.5738067626953 +2021-02-17 08:23:39,155.3188934326172 +2021-02-17 08:33:27,154.08900451660156 +2021-02-17 08:43:15,156.5738067626953 +2021-02-17 08:53:02,155.3188934326172 +2021-02-17 09:02:50,154.08900451660156 +2021-02-17 09:12:38,154.08900451660156 +2021-02-17 09:22:25,154.08900451660156 +2021-02-17 09:32:13,154.07510375976562 +2021-02-17 09:42:01,154.08900451660156 +2021-02-17 09:51:49,154.08900451660156 +2021-02-17 10:01:36,154.08900451660156 +2021-02-17 10:11:24,154.08900451660156 +2021-02-17 10:21:12,155.3188934326172 +2021-02-17 10:31:00,154.07510375976562 +2021-02-17 10:40:47,155.3188934326172 +2021-02-17 10:50:35,154.08900451660156 +2021-02-17 11:00:23,155.33290100097656 +2021-02-17 11:10:11,154.07510375976562 +2021-02-17 11:19:58,154.08900451660156 +2021-02-17 11:29:46,155.30490112304688 +2021-02-17 11:39:34,154.07510375976562 +2021-02-17 11:49:22,154.08900451660156 +2021-02-17 11:59:09,155.30490112304688 +2021-02-17 12:08:57,154.07510375976562 +2021-02-17 12:18:45,154.07510375976562 +2021-02-17 12:28:33,154.07510375976562 +2021-02-17 12:38:20,154.07510375976562 +2021-02-17 12:48:08,155.33290100097656 +2021-02-17 12:57:56,157.86849975585938 +2021-02-17 13:07:43,154.08900451660156 +2021-02-17 13:17:31,154.08900451660156 +2021-02-17 13:27:19,154.08900451660156 +2021-02-17 13:37:07,156.5738067626953 +2021-02-17 13:46:54,154.08900451660156 +2021-02-17 13:56:42,156.58790588378906 +2021-02-17 14:06:30,155.33290100097656 +2021-02-17 14:16:17,155.33290100097656 +2021-02-17 14:26:05,155.3188934326172 +2021-02-17 14:35:53,155.3188934326172 +2021-02-17 14:45:41,154.08900451660156 +2021-02-17 14:55:28,154.08900451660156 +2021-02-17 15:05:16,155.33290100097656 +2021-02-17 15:15:04,154.1029052734375 +2021-02-17 15:24:51,154.08900451660156 +2021-02-17 15:34:39,154.08900451660156 +2021-02-17 15:44:27,155.3188934326172 +2021-02-17 15:54:15,155.30490112304688 +2021-02-17 16:04:03,154.08900451660156 +2021-02-17 16:13:50,154.08900451660156 +2021-02-17 16:23:38,154.08900451660156 +2021-02-17 16:33:26,154.1029052734375 +2021-02-17 16:43:14,155.33290100097656 +2021-02-17 16:53:01,155.3188934326172 +2021-02-17 17:02:49,156.58790588378906 +2021-02-17 17:12:37,154.1029052734375 +2021-02-17 17:22:24,155.33290100097656 +2021-02-17 17:32:12,155.33290100097656 +2021-02-17 17:42:00,154.1029052734375 +2021-02-17 17:51:47,137.2342987060547 +2021-02-17 18:01:35,155.33290100097656 +2021-02-17 18:11:23,156.58790588378906 +2021-02-17 18:21:11,156.5738067626953 +2021-02-17 18:30:58,156.58790588378906 +2021-02-17 18:40:46,155.33290100097656 +2021-02-17 18:50:34,155.3188934326172 +2021-02-17 19:00:22,155.33290100097656 +2021-02-17 19:10:09,156.58790588378906 +2021-02-17 19:19:57,155.33290100097656 +2021-02-17 19:29:45,155.33290100097656 +2021-02-17 19:39:33,155.3188934326172 +2021-02-17 19:49:20,155.33290100097656 +2021-02-17 19:59:08,156.5738067626953 +2021-02-17 20:08:56,155.33290100097656 +2021-02-17 20:18:43,154.1029052734375 +2021-02-17 20:28:31,155.33290100097656 +2021-02-17 20:38:19,155.33290100097656 +2021-02-17 20:48:07,148.29820251464844 +2021-02-17 20:57:54,155.33290100097656 +2021-02-17 21:07:42,155.33290100097656 +2021-02-17 21:17:30,157.8542938232422 +2021-02-17 21:27:17,156.58790588378906 +2021-02-17 21:37:05,155.33290100097656 +2021-02-17 21:46:53,157.86849975585938 +2021-02-17 21:56:41,155.3188934326172 +2021-02-17 22:06:28,155.33290100097656 +2021-02-17 22:16:16,156.58790588378906 +2021-02-17 22:26:04,156.58790588378906 +2021-02-17 22:35:52,154.1029052734375 +2021-02-17 22:45:40,155.33290100097656 +2021-02-17 22:55:28,157.86849975585938 +2021-02-17 23:05:15,156.5738067626953 +2021-02-17 23:15:03,155.33290100097656 +2021-02-17 23:24:51,156.58790588378906 +2021-02-17 23:34:39,155.33290100097656 +2021-02-17 23:44:27,157.86849975585938 +2021-02-17 23:54:15,151.71409606933594 +2021-02-18 00:04:03,151.71409606933594 +2021-02-18 00:13:50,155.33290100097656 +2021-02-18 00:23:38,154.1029052734375 +2021-02-18 00:33:26,131.99839782714844 +2021-02-18 00:43:13,155.33290100097656 +2021-02-18 00:53:01,137.2220001220703 +2021-02-18 01:02:49,116.2667999267578 +2021-02-18 01:12:37,154.08900451660156 +2021-02-18 01:22:25,148.29820251464844 +2021-02-18 01:32:12,137.2342987060547 +2021-02-18 01:42:00,155.33290100097656 +2021-02-18 01:51:48,156.58790588378906 +2021-02-18 02:01:36,154.08900451660156 +2021-02-18 02:11:24,154.1029052734375 +2021-02-18 02:21:11,122.83560180664062 +2021-02-18 02:30:59,106.78140258789062 +2021-02-18 02:40:47,108.32469940185548 +2021-02-18 02:50:34,155.33290100097656 +2021-02-18 03:00:22,154.1029052734375 +2021-02-18 03:10:10,134.55470275878906 +2021-02-18 03:19:58,125.71759796142578 +2021-02-18 03:29:45,130.3582000732422 +2021-02-18 03:39:33,123.55239868164062 +2021-02-18 03:49:21,87.04889678955078 +2021-02-18 03:59:09,77.86499786376953 +2021-02-18 04:08:56,151.71409606933594 +2021-02-18 04:18:44,154.1029052734375 +2021-02-18 04:28:32,154.08900451660156 +2021-02-18 04:38:20,154.1029052734375 +2021-02-18 04:48:07,156.5738067626953 +2021-02-18 04:57:55,53.04880142211914 +2021-02-18 05:07:43,36.48429870605469 +2021-02-18 05:17:30,68.02799987792969 +2021-02-18 05:27:18,102.4363021850586 +2021-02-18 05:37:06,88.69439697265625 +2021-02-18 05:46:54,95.21869659423828 +2021-02-18 05:56:41,72.61250305175781 +2021-02-18 06:06:29,42.274600982666016 +2021-02-18 06:16:17,39.83259963989258 +2021-02-18 06:26:05,45.71480178833008 +2021-02-18 06:35:52,50.29219818115234 +2021-02-18 06:45:40,93.68000030517578 +2021-02-18 06:55:28,154.1029052734375 +2021-02-18 07:05:15,52.54690170288086 +2021-02-18 07:15:03,46.31710052490234 +2021-02-18 07:24:51,154.08900451660156 +2021-02-18 07:34:39,50.63819885253906 +2021-02-18 07:44:27,90.75920104980467 +2021-02-18 07:54:14,127.22000122070312 +2021-02-18 08:04:02,154.1029052734375 +2021-02-18 08:13:50,155.33290100097656 +2021-02-18 08:23:38,154.1029052734375 +2021-02-18 08:33:26,154.1029052734375 +2021-02-18 08:43:13,155.33290100097656 +2021-02-18 08:53:01,155.33290100097656 +2021-02-18 09:02:49,155.33290100097656 +2021-02-18 09:12:37,154.1029052734375 +2021-02-18 09:22:24,154.1029052734375 +2021-02-18 09:32:12,118.14959716796876 +2021-02-18 09:42:00,122.83560180664062 +2021-02-18 09:51:47,154.1029052734375 +2021-02-18 10:01:35,128.76620483398438 +2021-02-18 10:11:23,154.08900451660156 +2021-02-18 10:21:11,154.1029052734375 +2021-02-18 10:30:58,38.801700592041016 +2021-02-18 10:40:46,30.73469924926757 +2021-02-18 10:50:34,31.683799743652344 +2021-02-18 11:00:22,84.24449920654297 +2021-02-18 11:10:10,152.8968963623047 +2021-02-18 11:19:57,51.94100189208984 +2021-02-18 11:29:45,88.03620147705078 +2021-02-18 11:39:33,152.8968963623047 +2021-02-18 11:49:21,154.1029052734375 +2021-02-18 11:59:08,152.8968963623047 +2021-02-18 12:08:56,154.1029052734375 +2021-02-18 12:18:44,154.1029052734375 +2021-02-18 12:28:32,152.8968963623047 +2021-02-18 12:38:20,40.14649963378906 +2021-02-18 12:48:07,107.29019927978516 +2021-02-18 12:57:55,154.1029052734375 +2021-02-18 13:07:43,154.1029052734375 +2021-02-18 13:17:31,154.1029052734375 +2021-02-18 13:27:19,154.08900451660156 +2021-02-18 13:37:07,154.1029052734375 +2021-02-18 13:46:54,154.1029052734375 +2021-02-18 13:56:42,146.12440490722656 +2021-02-18 14:06:30,154.1029052734375 +2021-02-18 14:16:18,154.1029052734375 +2021-02-18 14:26:06,155.33290100097656 +2021-02-18 14:35:54,154.1029052734375 +2021-02-18 14:45:41,154.1029052734375 +2021-02-18 14:55:29,139.0944061279297 +2021-02-18 15:05:17,154.1029052734375 +2021-02-18 15:15:05,154.1029052734375 +2021-02-18 15:24:52,154.11680603027344 +2021-02-18 15:34:40,154.1029052734375 +2021-02-18 15:44:28,154.11680603027344 +2021-02-18 15:54:16,152.91070556640625 +2021-02-18 16:04:03,47.44559860229492 +2021-02-18 16:13:51,152.91070556640625 +2021-02-18 16:23:39,145.0666961669922 +2021-02-18 16:33:27,43.80350112915039 +2021-02-18 16:43:15,91.4708023071289 +2021-02-18 16:53:02,122.83560180664062 +2021-02-18 17:02:50,154.1029052734375 +2021-02-18 17:12:38,154.1029052734375 +2021-02-18 17:22:26,97.63410186767578 +2021-02-18 17:32:13,136.32679748535156 +2021-02-18 17:42:01,125.71759796142578 +2021-02-18 17:51:49,91.1135025024414 +2021-02-18 18:01:36,82.47789764404297 +2021-02-18 18:11:24,154.1029052734375 +2021-02-18 18:21:12,154.1029052734375 +2021-02-18 18:30:59,154.11680603027344 +2021-02-18 18:40:47,108.85060119628906 +2021-02-18 18:50:35,71.08779907226562 +2021-02-18 19:00:23,69.83619689941406 +2021-02-18 19:10:10,131.17210388183594 +2021-02-18 19:19:58,154.1029052734375 +2021-02-18 19:29:46,154.1029052734375 +2021-02-18 19:39:34,154.1029052734375 +2021-02-18 19:49:21,154.1029052734375 +2021-02-18 19:59:09,154.1029052734375 +2021-02-18 20:08:57,154.1029052734375 +2021-02-18 20:18:44,154.1029052734375 +2021-02-18 20:28:32,154.1029052734375 +2021-02-18 20:38:20,155.33290100097656 +2021-02-18 20:48:08,152.84170532226562 +2021-02-18 20:57:56,154.1029052734375 +2021-02-18 21:07:43,154.11680603027344 +2021-02-18 21:17:31,155.33290100097656 +2021-02-18 21:27:19,91.1135025024414 +2021-02-18 21:37:07,59.870601654052734 +2021-02-18 21:46:54,101.52410125732422 +2021-02-18 21:56:42,96.84030151367188 +2021-02-18 22:06:30,152.91070556640625 +2021-02-18 22:16:18,56.34529876708984 +2021-02-18 22:26:06,70.88150024414062 +2021-02-18 22:35:54,47.13370132446289 +2021-02-18 22:45:41,99.73529815673828 +2021-02-18 22:55:29,59.24739837646485 +2021-02-18 23:05:17,47.34130096435547 +2021-02-18 23:15:05,70.88150024414062 +2021-02-18 23:24:53,46.21659851074219 +2021-02-18 23:34:40,36.41590118408203 +2021-02-18 23:44:28,31.98730087280273 +2021-02-18 23:54:16,31.323999404907227 +2021-02-19 00:04:04,32.355899810791016 +2021-02-19 00:13:52,32.355899810791016 +2021-02-19 00:23:39,82.47789764404297 +2021-02-19 00:33:27,49.94990158081055 +2021-02-19 00:43:15,37.06439971923828 +2021-02-19 00:53:03,42.62810134887695 +2021-02-19 01:02:51,52.92380142211914 +2021-02-19 01:12:38,74.20989990234375 +2021-02-19 01:22:26,151.71409606933594 +2021-02-19 01:32:14,62.60049819946289 +2021-02-19 01:42:01,48.945499420166016 +2021-02-19 01:51:49,47.97719955444336 +2021-02-19 02:01:37,151.71409606933594 +2021-02-19 02:11:25,45.23350143432617 +2021-02-19 02:21:12,96.81410217285156 +2021-02-19 02:31:00,134.55470275878906 +2021-02-19 02:40:48,84.54660034179688 +2021-02-19 02:50:36,152.8968963623047 +2021-02-19 03:00:24,69.84249877929688 +2021-02-19 03:10:11,152.8968963623047 +2021-02-19 03:19:59,93.30370330810548 +2021-02-19 03:29:47,141.0301055908203 +2021-02-19 03:39:35,115.0500030517578 +2021-02-19 03:49:23,51.82500076293945 +2021-02-19 03:59:10,110.4738998413086 +2021-02-19 04:08:58,152.8968963623047 +2021-02-19 04:18:46,90.05950164794922 +2021-02-19 04:28:34,94.45099639892578 +2021-02-19 04:38:22,96.8227996826172 +2021-02-19 04:48:09,126.4748992919922 +2021-02-19 04:57:57,123.54129791259766 +2021-02-19 05:07:45,140.0478057861328 +2021-02-19 05:17:33,152.8968963623047 +2021-02-19 05:27:21,93.68000030517578 +2021-02-19 05:37:08,152.8968963623047 +2021-02-19 05:46:56,152.8968963623047 +2021-02-19 05:56:44,152.91070556640625 +2021-02-19 06:06:32,80.51190185546875 +2021-02-19 06:16:20,152.91070556640625 +2021-02-19 06:26:08,152.91070556640625 +2021-02-19 06:35:55,152.8968963623047 +2021-02-19 06:45:43,152.8968963623047 +2021-02-19 06:55:31,152.8968963623047 +2021-02-19 07:05:19,146.12440490722656 +2021-02-19 07:15:07,152.8968963623047 +2021-02-19 07:24:55,126.4635009765625 +2021-02-19 07:34:43,152.91070556640625 +2021-02-19 07:44:31,154.11680603027344 +2021-02-19 07:54:18,151.71409606933594 +2021-02-19 08:04:06,152.8968963623047 +2021-02-19 08:13:54,154.11680603027344 +2021-02-19 08:23:42,152.91070556640625 +2021-02-19 08:33:30,152.8968963623047 +2021-02-19 08:43:18,152.8968963623047 +2021-02-19 08:53:05,152.8968963623047 +2021-02-19 09:02:53,152.8968963623047 +2021-02-19 09:12:41,118.14959716796876 +2021-02-19 09:22:29,101.52410125732422 +2021-02-19 09:32:17,152.91070556640625 +2021-02-19 09:42:05,152.8968963623047 +2021-02-19 09:51:53,152.8968963623047 +2021-02-19 10:01:40,122.13929748535156 +2021-02-19 10:11:28,122.13929748535156 +2021-02-19 10:21:16,152.91070556640625 +2021-02-19 10:31:04,152.8968963623047 +2021-02-19 10:40:52,108.8603973388672 +2021-02-19 10:50:40,109.92009735107422 +2021-02-19 11:00:28,105.77989959716795 +2021-02-19 11:10:16,152.8968963623047 +2021-02-19 11:20:03,152.8968963623047 +2021-02-19 11:29:51,152.8968963623047 +2021-02-19 11:39:39,94.83740234375 +2021-02-19 11:49:27,151.72779846191406 +2021-02-19 11:59:15,53.9380989074707 +2021-02-19 12:09:03,47.13370132446289 +2021-02-19 12:18:51,49.1702995300293 +2021-02-19 12:28:39,152.8968963623047 +2021-02-19 12:38:27,152.8968963623047 +2021-02-19 12:48:14,54.72060012817383 +2021-02-19 12:58:02,152.8968963623047 +2021-02-19 13:07:50,56.20669937133789 +2021-02-19 13:17:38,52.18389892578125 +2021-02-19 13:27:26,47.972900390625 +2021-02-19 13:37:14,50.87110137939453 +2021-02-19 13:47:02,54.462501525878906 +2021-02-19 13:56:50,52.556400299072266 +2021-02-19 14:06:38,51.580299377441406 +2021-02-19 14:16:25,48.945499420166016 +2021-02-19 14:26:13,49.836700439453125 +2021-02-19 14:36:01,154.11680603027344 +2021-02-19 14:45:49,76.36019897460938 +2021-02-19 14:55:37,152.8968963623047 +2021-02-19 15:05:25,152.8968963623047 +2021-02-19 15:15:13,57.18920135498047 +2021-02-19 15:25:01,50.08620071411133 +2021-02-19 15:34:49,47.972900390625 +2021-02-19 15:44:37,48.62220001220703 +2021-02-19 15:54:24,52.305999755859375 +2021-02-19 16:04:12,152.8968963623047 +2021-02-19 16:14:00,54.45759963989258 +2021-02-19 16:23:48,49.836700439453125 +2021-02-19 16:33:36,47.13370132446289 +2021-02-19 16:43:23,48.5093994140625 +2021-02-19 16:53:11,152.8968963623047 +2021-02-19 17:02:59,152.8968963623047 +2021-02-19 17:12:47,55.52270126342773 +2021-02-19 17:22:35,49.16590118408203 +2021-02-19 17:32:23,48.29359817504883 +2021-02-19 17:42:12,49.61140060424805 +2021-02-19 17:52:04,51.57569885253906 +2021-02-19 18:01:52,47.655399322509766 +2021-02-19 18:11:40,50.28760147094727 +2021-02-19 18:21:28,50.40710067749024 +2021-02-19 18:31:16,51.8203010559082 +2021-02-19 18:41:04,47.659698486328125 +2021-02-19 18:50:52,47.655399322509766 +2021-02-19 19:00:39,47.34560012817383 +2021-02-19 19:10:27,48.945499420166016 +2021-02-19 19:20:15,47.34130096435547 +2021-02-19 19:30:03,48.945499420166016 +2021-02-19 19:39:51,48.617801666259766 +2021-02-19 19:49:38,47.96849822998047 +2021-02-19 19:59:26,53.30039978027344 +2021-02-19 20:09:14,56.34529876708984 +2021-02-19 20:19:02,63.44319915771485 +2021-02-19 20:28:49,152.8968963623047 +2021-02-19 20:38:37,74.20320129394531 +2021-02-19 20:48:25,62.93170166015625 +2021-02-19 20:58:13,73.74169921875 +2021-02-19 21:08:01,62.92599868774414 +2021-02-19 21:17:48,61.93109893798828 +2021-02-19 21:27:36,67.63829803466797 +2021-02-19 21:37:24,67.63829803466797 +2021-02-19 21:47:12,69.84249877929688 +2021-02-19 21:57:00,67.06169891357422 +2021-02-19 22:06:47,71.09420013427734 +2021-02-19 22:16:35,70.88150024414062 +2021-02-19 22:26:23,76.11519622802734 +2021-02-19 22:36:11,59.70560073852539 +2021-02-19 22:45:59,60.17020034790039 +2021-02-19 22:55:47,58.50279998779297 +2021-02-19 23:05:34,55.79460144042969 +2021-02-19 23:15:22,53.9380989074707 +2021-02-19 23:25:10,57.4807014465332 +2021-02-19 23:34:58,53.30039978027344 +2021-02-19 23:44:46,60.79990005493164 +2021-02-19 23:54:34,67.06169891357422 +2021-02-20 00:04:21,56.06869888305664 +2021-02-20 00:14:09,152.8968963623047 +2021-02-20 00:23:57,64.31890106201172 +2021-02-20 00:33:45,151.72779846191406 +2021-02-20 00:43:33,56.76449966430664 +2021-02-20 00:53:21,152.8968963623047 +2021-02-20 01:03:08,47.34130096435547 +2021-02-20 01:12:56,151.71409606933594 +2021-02-20 01:12:57,151.71409606933594 +2021-02-20 01:22:50,48.18629837036133 +2021-02-20 01:32:38,43.34830093383789 +2021-02-20 01:42:26,41.5801010131836 +2021-02-20 01:52:14,46.00410079956055 +2021-02-20 02:02:02,49.05550003051758 +2021-02-20 02:11:50,154.08900451660156 +2021-02-20 02:21:38,54.990699768066406 +2021-02-20 02:31:26,53.80950164794922 +2021-02-20 02:41:13,54.71070098876953 +2021-02-20 02:51:01,52.79930114746094 +2021-02-20 03:00:49,151.71409606933594 +2021-02-20 03:10:37,62.60049819946289 +2021-02-20 03:20:24,53.3051986694336 +2021-02-20 03:30:12,48.84030151367188 +2021-02-20 03:40:00,152.8968963623047 +2021-02-20 03:49:48,152.91070556640625 +2021-02-20 03:59:36,65.20539855957031 +2021-02-20 04:09:23,151.7003936767578 +2021-02-20 04:19:11,68.02179718017578 +2021-02-20 04:28:59,59.71099853515625 +2021-02-20 04:38:47,54.32690048217773 +2021-02-20 04:48:35,154.08900451660156 +2021-02-20 04:58:23,72.61910247802734 +2021-02-20 05:08:10,96.4011001586914 +2021-02-20 05:17:58,79.97509765625 +2021-02-20 05:27:46,151.71409606933594 +2021-02-20 05:37:34,151.71409606933594 +2021-02-20 05:47:21,156.5738067626953 +2021-02-20 05:57:09,105.76090240478516 +2021-02-20 06:06:57,152.86929321289062 +2021-02-20 06:16:44,86.7197036743164 +2021-02-20 06:26:32,102.46399688720705 +2021-02-20 06:36:20,154.0612030029297 +2021-02-20 06:46:07,157.8258056640625 +2021-02-20 06:55:55,148.4051971435547 +2021-02-20 07:05:43,151.72779846191406 +2021-02-20 07:15:31,151.71409606933594 +2021-02-20 07:25:18,151.71409606933594 +2021-02-20 07:35:06,152.91070556640625 +2021-02-20 07:44:54,150.5946044921875 +2021-02-20 07:54:42,151.71409606933594 +2021-02-20 08:04:29,150.5675048828125 +2021-02-20 08:14:17,151.71409606933594 +2021-02-20 08:24:05,150.55389404296875 +2021-02-20 08:33:53,151.72779846191406 +2021-02-20 08:43:40,151.72779846191406 +2021-02-20 08:53:28,151.71409606933594 +2021-02-20 09:03:16,154.1029052734375 +2021-02-20 09:13:03,151.71409606933594 +2021-02-20 09:22:51,151.71409606933594 +2021-02-20 09:32:39,151.7003936767578 +2021-02-20 09:42:27,151.71409606933594 +2021-02-20 09:52:14,152.86929321289062 +2021-02-20 10:02:02,151.71409606933594 +2021-02-20 10:11:50,151.72779846191406 +2021-02-20 10:21:38,154.1584930419922 +2021-02-20 10:31:26,152.91070556640625 +2021-02-20 10:41:14,161.87399291992188 +2021-02-20 10:51:02,150.5946044921875 +2021-02-20 11:00:49,148.28480529785156 +2021-02-20 11:10:37,111.57050323486328 +2021-02-20 11:20:25,92.52770233154295 +2021-02-20 11:30:13,151.72779846191406 +2021-02-20 11:40:01,152.8831024169922 +2021-02-20 11:49:49,152.91070556640625 +2021-02-20 11:59:36,151.72779846191406 +2021-02-20 12:09:24,127.22000122070312 +2021-02-20 12:19:12,104.80909729003906 +2021-02-20 12:29:00,129.55630493164062 +2021-02-20 12:38:48,151.71409606933594 +2021-02-20 12:48:36,151.71409606933594 +2021-02-20 12:58:23,151.8782958984375 +2021-02-20 13:08:11,148.4051971435547 +2021-02-20 13:17:59,151.72779846191406 +2021-02-20 13:27:47,151.7552032470703 +2021-02-20 13:37:34,152.95199584960938 +2021-02-20 13:47:22,151.72779846191406 +2021-02-20 13:57:10,151.71409606933594 +2021-02-20 14:06:58,151.72779846191406 +2021-02-20 14:16:46,151.72779846191406 +2021-02-20 14:26:33,151.71409606933594 +2021-02-20 14:36:21,151.71409606933594 +2021-02-20 14:46:09,148.28480529785156 +2021-02-20 14:55:57,150.58099365234375 +2021-02-20 15:05:45,156.58790588378906 +2021-02-20 15:15:32,112.69290161132812 +2021-02-20 15:25:20,150.55389404296875 +2021-02-20 15:35:08,151.7003936767578 +2021-02-20 15:44:56,151.7003936767578 +2021-02-20 15:54:44,151.71409606933594 +2021-02-20 16:04:32,149.40199279785156 +2021-02-20 16:14:20,151.71409606933594 +2021-02-20 16:24:07,151.71409606933594 +2021-02-20 16:24:09,151.71409606933594 +2021-02-20 16:34:01,152.9243927001953 +2021-02-20 16:43:49,151.71409606933594 +2021-02-20 16:53:37,150.5675048828125 +2021-02-20 17:03:25,151.72779846191406 +2021-02-20 17:13:13,151.72779846191406 +2021-02-20 17:23:01,151.7415008544922 +2021-02-20 17:32:49,151.71409606933594 +2021-02-20 17:42:36,151.7552032470703 +2021-02-20 17:52:24,151.71409606933594 +2021-02-20 18:02:12,151.7415008544922 +2021-02-20 18:12:00,152.8831024169922 +2021-02-20 18:21:48,151.72779846191406 +2021-02-20 18:31:36,150.5675048828125 +2021-02-20 18:41:23,151.72779846191406 +2021-02-20 18:51:11,149.42889404296875 +2021-02-20 19:01:00,150.5946044921875 +2021-02-20 19:10:53,151.7415008544922 +2021-02-20 19:20:41,150.52670288085938 +2021-02-20 19:30:29,151.72779846191406 +2021-02-20 19:40:17,147.1748046875 +2021-02-20 19:50:04,151.72779846191406 +2021-02-20 19:59:52,151.768798828125 +2021-02-20 20:09:40,150.5675048828125 +2021-02-20 20:19:28,151.72779846191406 +2021-02-20 20:29:16,152.8968963623047 +2021-02-20 20:39:04,150.55389404296875 +2021-02-20 20:48:52,151.71409606933594 +2021-02-20 20:58:40,151.71409606933594 +2021-02-20 21:08:27,151.71409606933594 +2021-02-20 21:18:15,150.58099365234375 +2021-02-20 21:28:03,148.41859436035156 +2021-02-20 21:37:51,150.5675048828125 +2021-02-20 21:47:39,150.55389404296875 +2021-02-20 21:57:27,152.8968963623047 +2021-02-20 22:07:15,150.55389404296875 +2021-02-20 22:17:03,150.55389404296875 +2021-02-20 22:26:51,150.58099365234375 +2021-02-20 22:36:39,150.62179565429688 +2021-02-20 22:46:27,150.6352996826172 +2021-02-20 22:56:15,151.7415008544922 +2021-02-20 23:06:03,151.768798828125 +2021-02-20 23:15:51,152.8831024169922 +2021-02-20 23:25:38,150.58099365234375 +2021-02-20 23:35:26,150.55389404296875 +2021-02-20 23:45:14,151.768798828125 +2021-02-20 23:55:02,150.55389404296875 +2021-02-21 00:04:50,150.5675048828125 +2021-02-21 00:14:38,150.55389404296875 +2021-02-21 00:24:26,150.55389404296875 +2021-02-21 00:34:14,150.55389404296875 +2021-02-21 00:44:02,150.5675048828125 +2021-02-21 00:53:49,151.72779846191406 +2021-02-21 01:03:37,151.71409606933594 +2021-02-21 01:13:25,149.45590209960938 +2021-02-21 01:23:14,148.28480529785156 +2021-02-21 01:33:07,152.97959899902344 +2021-02-21 01:42:55,148.27149963378906 +2021-02-21 01:52:43,150.55389404296875 +2021-02-21 02:02:31,150.55389404296875 +2021-02-21 02:12:19,138.16920471191406 +2021-02-21 02:22:06,103.36710357666016 +2021-02-21 02:31:54,85.16549682617188 +2021-02-21 02:41:42,104.31710052490234 +2021-02-21 02:51:30,78.1146011352539 +2021-02-21 03:01:18,100.66629791259766 +2021-02-21 03:11:06,84.8510971069336 +2021-02-21 03:20:54,111.57050323486328 +2021-02-21 03:30:41,91.47899627685548 +2021-02-21 03:40:29,81.07830047607422 +2021-02-21 03:50:17,113.89330291748048 +2021-02-21 04:00:05,123.6416015625 +2021-02-21 04:09:53,95.61209869384766 +2021-02-21 04:19:41,89.73829650878906 +2021-02-21 04:29:28,91.47899627685548 +2021-02-21 04:39:16,89.74639892578125 +2021-02-21 04:49:04,104.34539794921876 +2021-02-21 04:58:52,126.4977035522461 +2021-02-21 05:08:40,146.1638946533203 +2021-02-21 05:18:28,148.3115997314453 +2021-02-21 05:28:16,66.68250274658203 +2021-02-21 05:38:04,68.84519958496094 +2021-02-21 05:47:52,68.83270263671875 +2021-02-21 05:57:40,148.3383026123047 +2021-02-21 06:07:28,75.89219665527344 +2021-02-21 06:17:16,59.11199951171875 +2021-02-21 06:27:03,62.60049819946289 +2021-02-21 06:36:51,81.64540100097656 +2021-02-21 06:46:39,65.03099822998047 +2021-02-21 06:56:27,70.04280090332031 +2021-02-21 07:06:15,69.84249877929688 +2021-02-21 07:16:03,65.04850006103516 +2021-02-21 07:25:51,69.24189758300781 +2021-02-21 07:35:38,70.46610260009766 +2021-02-21 07:45:26,71.76580047607422 +2021-02-21 07:55:14,74.46959686279297 +2021-02-21 08:05:02,58.95069885253906 +2021-02-21 08:14:50,58.67259979248047 +2021-02-21 08:24:38,58.95600128173828 +2021-02-21 08:34:26,71.1261978149414 +2021-02-21 08:44:13,76.13569641113281 +2021-02-21 08:54:01,59.85979843139648 +2021-02-21 09:03:49,69.84249877929688 +2021-02-21 09:13:37,74.93329620361328 +2021-02-21 09:23:25,73.76830291748047 +2021-02-21 09:33:13,59.25809860229492 +2021-02-21 09:43:00,66.70059967041016 +2021-02-21 09:52:48,73.77490234375 +2021-02-21 10:02:36,58.50279998779297 +2021-02-21 10:12:24,69.86129760742188 +2021-02-21 10:22:11,77.87200164794922 +2021-02-21 10:31:59,60.66329956054688 +2021-02-21 10:41:47,58.8218994140625 +2021-02-21 10:51:35,56.37570190429688 +2021-02-21 11:01:23,55.67340087890625 +2021-02-21 11:11:11,148.3383026123047 +2021-02-21 11:20:58,65.95989990234375 +2021-02-21 11:30:46,83.08059692382812 +2021-02-21 11:40:34,69.43260192871094 +2021-02-21 11:50:22,64.51300048828125 +2021-02-21 12:00:10,89.04750061035156 +2021-02-21 12:09:58,96.0438003540039 +2021-02-21 12:19:46,80.01110076904297 +2021-02-21 12:29:33,96.06109619140624 +2021-02-21 12:39:21,102.0239028930664 +2021-02-21 12:49:09,81.3718032836914 +2021-02-21 12:58:57,66.51840209960938 +2021-02-21 13:08:45,92.21939849853516 +2021-02-21 13:18:33,89.37940216064453 +2021-02-21 13:28:20,87.404296875 +2021-02-21 13:38:08,64.52459716796875 +2021-02-21 13:47:56,77.63800048828125 +2021-02-21 13:57:44,63.4718017578125 +2021-02-21 14:07:32,83.97480010986328 +2021-02-21 14:17:19,62.96009826660156 +2021-02-21 14:27:07,62.61750030517578 +2021-02-21 14:27:08,62.61750030517578 +2021-02-21 14:37:01,98.92919921875 +2021-02-21 14:46:49,64.518798828125 +2021-02-21 14:56:36,86.45549774169922 +2021-02-21 15:06:24,91.12169647216795 +2021-02-21 15:16:12,64.88079833984375 +2021-02-21 15:26:00,83.68460083007812 +2021-02-21 15:35:47,62.45019912719727 +2021-02-21 15:45:35,84.57710266113281 +2021-02-21 15:55:23,62.95439910888672 +2021-02-21 16:05:11,88.06800079345703 +2021-02-21 16:14:58,95.24449920654295 +2021-02-21 16:24:46,76.88300323486328 +2021-02-21 16:34:34,65.96589660644531 +2021-02-21 16:44:22,90.1001968383789 +2021-02-21 16:54:10,91.15460205078124 +2021-02-21 17:03:58,90.09200286865234 +2021-02-21 17:13:46,91.14640045166016 +2021-02-21 17:23:34,71.11979675292969 +2021-02-21 17:33:22,91.14640045166016 +2021-02-21 17:43:09,102.47319793701172 +2021-02-21 17:52:57,78.16390228271484 +2021-02-21 18:02:45,96.8665008544922 +2021-02-21 18:12:33,101.56079864501952 +2021-02-21 18:22:21,85.497802734375 +2021-02-21 18:32:08,81.3718032836914 +2021-02-21 18:41:56,103.8864974975586 +2021-02-21 18:51:44,92.22779846191406 +2021-02-21 19:01:32,92.21939849853516 +2021-02-21 19:11:20,108.38330078125 +2021-02-21 19:21:08,101.56079864501952 +2021-02-21 19:30:55,89.41169738769531 +2021-02-21 19:40:43,112.76399993896484 +2021-02-21 19:50:31,134.6031951904297 +2021-02-21 20:00:19,116.31919860839844 +2021-02-21 20:10:07,112.75379943847656 +2021-02-21 20:19:55,67.0979995727539 +2021-02-21 20:29:43,85.81710052490234 +2021-02-21 20:39:30,89.40360260009766 +2021-02-21 20:49:18,76.88990020751953 +2021-02-21 20:59:06,67.86930084228516 +2021-02-21 21:08:54,86.43209838867188 +2021-02-21 21:18:42,78.68270111083984 +2021-02-21 21:28:29,73.09960174560547 +2021-02-21 21:38:17,55.12910079956055 +2021-02-21 21:48:05,54.09149932861328 +2021-02-21 21:57:53,44.95980072021485 +2021-02-21 22:07:41,53.17910003662109 +2021-02-21 22:17:28,60.64690017700195 +2021-02-21 22:27:16,58.22320175170898 +2021-02-21 22:37:04,49.85020065307617 +2021-02-21 22:46:52,60.19189834594727 +2021-02-21 22:56:39,58.81660079956055 +2021-02-21 23:06:27,147.2677001953125 +2021-02-21 23:16:15,42.20209884643555 +2021-02-21 23:26:03,44.0984001159668 +2021-02-21 23:35:51,45.73130035400391 +2021-02-21 23:45:39,56.78499984741211 +2021-02-21 23:55:26,56.9208984375 +2021-02-22 00:05:14,71.56210327148438 +2021-02-22 00:15:02,73.55280303955078 +2021-02-22 00:24:50,92.9727020263672 +2021-02-22 00:34:38,99.79830169677734 +2021-02-22 00:44:25,97.6781997680664 +2021-02-22 00:54:13,98.09420013427734 +2021-02-22 01:04:01,69.45770263671875 +2021-02-22 01:13:49,59.88679885864258 +2021-02-22 01:23:37,58.37580108642578 +2021-02-22 01:33:24,81.95040130615234 +2021-02-22 01:43:12,88.07589721679688 +2021-02-22 01:53:00,92.23609924316406 +2021-02-22 02:02:48,95.26170349121094 +2021-02-22 02:12:35,74.71080017089844 +2021-02-22 02:22:23,73.31890106201172 +2021-02-22 02:32:11,81.3864974975586 +2021-02-22 02:41:59,89.07160186767578 +2021-02-22 02:51:47,89.75450134277344 +2021-02-22 03:01:34,68.45279693603516 +2021-02-22 03:11:22,86.44770050048828 +2021-02-22 03:21:10,90.1001968383789 +2021-02-22 03:30:58,148.37840270996094 +2021-02-22 03:40:45,148.37840270996094 +2021-02-22 03:50:33,102.48249816894533 +2021-02-22 04:00:21,81.3864974975586 +2021-02-22 04:10:09,79.46710205078125 +2021-02-22 04:19:57,78.93769836425781 +2021-02-22 04:29:44,147.2677001953125 +2021-02-22 04:39:32,147.25450134277344 +2021-02-22 04:49:20,147.281005859375 +2021-02-22 04:59:08,148.35169982910156 +2021-02-22 05:08:56,147.2677001953125 +2021-02-22 05:18:44,146.17709350585938 +2021-02-22 05:28:31,146.1638946533203 +2021-02-22 05:38:19,147.2677001953125 +2021-02-22 05:48:07,147.2677001953125 +2021-02-22 05:57:55,147.25450134277344 +2021-02-22 06:07:42,148.37840270996094 +2021-02-22 06:17:30,149.48280334472656 +2021-02-22 06:27:18,149.48280334472656 +2021-02-22 06:37:06,149.48280334472656 +2021-02-22 06:46:54,148.37840270996094 +2021-02-22 06:56:41,148.36500549316406 +2021-02-22 07:06:29,148.36500549316406 +2021-02-22 07:16:17,148.37840270996094 +2021-02-22 07:26:05,148.36500549316406 +2021-02-22 07:35:53,148.36500549316406 +2021-02-22 07:45:41,148.37840270996094 +2021-02-22 07:55:28,148.36500549316406 +2021-02-22 08:05:16,148.36500549316406 +2021-02-22 08:15:04,147.2677001953125 +2021-02-22 08:24:52,71.77870178222656 +2021-02-22 08:34:40,148.36500549316406 +2021-02-22 08:44:28,148.37840270996094 +2021-02-22 08:54:16,134.62750244140625 +2021-02-22 09:04:03,150.6352996826172 +2021-02-22 09:13:51,148.36500549316406 +2021-02-22 09:23:39,148.36500549316406 +2021-02-22 09:33:27,147.2677001953125 +2021-02-22 09:43:15,148.36500549316406 +2021-02-22 09:53:03,150.62179565429688 +2021-02-22 10:02:51,148.37840270996094 +2021-02-22 10:12:39,148.36500549316406 +2021-02-22 10:22:27,149.48280334472656 +2021-02-22 10:32:14,148.36500549316406 +2021-02-22 10:42:02,148.37840270996094 +2021-02-22 10:51:50,147.2677001953125 +2021-02-22 11:01:38,58.82720184326172 +2021-02-22 11:11:26,60.668701171875 +2021-02-22 11:21:14,77.90010070800781 +2021-02-22 11:31:02,83.98999786376953 +2021-02-22 11:40:50,148.36500549316406 +2021-02-22 11:50:38,148.36500549316406 +2021-02-22 12:00:26,147.2677001953125 +2021-02-22 12:10:13,147.2677001953125 +2021-02-22 12:20:01,148.37840270996094 +2021-02-22 12:29:49,149.48280334472656 +2021-02-22 12:39:37,92.61109924316406 +2021-02-22 12:49:25,57.93569946289063 +2021-02-22 12:59:13,69.05229949951172 +2021-02-22 13:09:01,71.99019622802734 +2021-02-22 13:18:48,59.88679885864258 +2021-02-22 13:28:36,71.56210327148438 +2021-02-22 13:38:24,54.09149932861328 +2021-02-22 13:48:12,75.42330169677734 +2021-02-22 13:48:13,75.42330169677734 +2021-02-22 13:58:06,77.13999938964844 +2021-02-22 14:07:54,78.93769836425781 +2021-02-22 14:17:42,80.00389862060547 +2021-02-22 14:27:30,56.09400177001953 +2021-02-22 14:37:17,55.68339920043945 +2021-02-22 14:47:05,75.90579986572266 +2021-02-22 14:56:53,84.28250122070312 +2021-02-22 15:06:41,72.875 +2021-02-22 15:16:29,69.05229949951172 +2021-02-22 15:26:17,92.9727020263672 +2021-02-22 15:36:05,145.13209533691406 +2021-02-22 15:45:53,146.1903076171875 +2021-02-22 15:55:41,146.1903076171875 +2021-02-22 16:05:29,147.2677001953125 +2021-02-22 16:15:16,147.2677001953125 +2021-02-22 16:25:04,147.2677001953125 +2021-02-22 16:34:52,147.2677001953125 +2021-02-22 16:44:40,147.2677001953125 +2021-02-22 16:54:28,148.36500549316406 +2021-02-22 17:04:15,148.36500549316406 +2021-02-22 17:14:03,148.36500549316406 +2021-02-22 17:23:51,148.36500549316406 +2021-02-22 17:33:39,147.281005859375 +2021-02-22 17:43:27,94.48509979248048 +2021-02-22 17:53:14,56.79010009765625 +2021-02-22 18:03:02,76.88990020751953 +2021-02-22 18:12:50,66.71260070800781 +2021-02-22 18:22:38,59.27410125732422 +2021-02-22 18:32:26,54.482200622558594 +2021-02-22 18:42:14,73.09960174560547 +2021-02-22 18:52:01,80.27510070800781 +2021-02-22 19:01:49,81.37920379638672 +2021-02-22 19:11:37,55.68339920043945 +2021-02-22 19:21:25,50.89400100708008 +2021-02-22 19:31:13,39.68939971923828 +2021-02-22 19:41:00,35.10029983520508 +2021-02-22 19:50:48,36.42910003662109 +2021-02-22 20:00:36,38.05039978027344 +2021-02-22 20:10:24,36.644798278808594 +2021-02-22 20:20:12,34.89619827270508 +2021-02-22 20:30:00,33.76679992675781 +2021-02-22 20:39:48,33.062801361083984 +2021-02-22 20:49:35,34.89929962158203 +2021-02-22 20:59:23,33.63690185546875 +2021-02-22 21:09:11,33.962799072265625 +2021-02-22 21:18:59,34.76089859008789 +2021-02-22 21:28:47,33.443199157714844 +2021-02-22 21:38:35,33.70180130004883 +2021-02-22 21:48:23,33.63690185546875 +2021-02-22 21:58:11,33.05979919433594 +2021-02-22 22:07:58,33.76679992675781 +2021-02-22 22:17:46,34.76089859008789 +2021-02-22 22:27:34,34.4922981262207 +2021-02-22 22:37:22,35.10029983520508 +2021-02-22 22:47:10,33.897300720214844 +2021-02-22 22:56:58,33.76380157470703 +2021-02-22 23:06:46,34.69350051879883 +2021-02-22 23:16:34,34.89619827270508 +2021-02-22 23:26:21,35.10029983520508 +2021-02-22 23:36:09,35.10029983520508 +2021-02-22 23:45:57,35.305999755859375 +2021-02-22 23:55:45,35.652099609375 +2021-02-23 00:05:33,35.652099609375 +2021-02-23 00:15:21,35.652099609375 +2021-02-23 00:25:08,36.42910003662109 +2021-02-23 00:34:56,36.78950119018555 +2021-02-23 00:44:44,36.21500015258789 +2021-02-23 00:54:45,37.45000076293945 +2021-02-23 01:04:40,37.598899841308594 +2021-02-23 01:14:28,40.83290100097656 +2021-02-23 01:24:16,37.45000076293945 +2021-02-23 01:34:04,38.27880096435547 +2021-02-23 01:43:52,144.0926055908203 +2021-02-23 01:53:40,42.64739990234375 +2021-02-23 02:03:28,46.73949813842773 +2021-02-23 02:13:16,40.58689880371094 +2021-02-23 02:23:04,38.975399017333984 +2021-02-23 02:32:52,39.85049819946289 +2021-02-23 02:42:40,39.36989974975586 +2021-02-23 02:52:28,39.85049819946289 +2021-02-23 03:02:16,40.33940124511719 +2021-02-23 03:12:04,36.644798278808594 +2021-02-23 03:21:51,36.21500015258789 +2021-02-23 03:31:39,37.00790023803711 +2021-02-23 03:41:27,36.78950119018555 +2021-02-23 03:51:15,37.08110046386719 +2021-02-23 04:01:03,37.08110046386719 +2021-02-23 04:10:51,38.27880096435547 +2021-02-23 04:20:39,48.74860000610352 +2021-02-23 04:30:27,49.52180099487305 +2021-02-23 04:40:15,45.05619812011719 +2021-02-23 04:50:03,37.30189895629883 +2021-02-23 04:59:51,37.00790023803711 +2021-02-23 05:09:39,37.45000076293945 +2021-02-23 05:19:27,36.35760116577149 +2021-02-23 05:29:15,37.00790023803711 +2021-02-23 05:39:02,34.292598724365234 +2021-02-23 05:48:50,36.42910003662109 +2021-02-23 05:58:38,34.28950119018555 +2021-02-23 06:08:26,33.69879913330078 +2021-02-23 06:18:14,37.22809982299805 +2021-02-23 06:28:02,37.00790023803711 +2021-02-23 06:37:50,37.00460052490234 +2021-02-23 06:47:38,38.05039978027344 +2021-02-23 06:57:26,35.374900817871094 +2021-02-23 07:07:14,33.1870002746582 +2021-02-23 07:17:02,32.30870056152344 +2021-02-23 07:26:50,34.82849884033203 +2021-02-23 07:36:38,34.4922981262207 +2021-02-23 07:46:26,33.897300720214844 +2021-02-23 07:56:14,32.18550109863281 +2021-02-23 08:06:01,32.00170135498047 +2021-02-23 08:15:49,32.062801361083984 +2021-02-23 08:25:38,32.494598388671875 +2021-02-23 08:35:31,33.31480026245117 +2021-02-23 08:45:19,34.292598724365234 +2021-02-23 08:55:07,37.30189895629883 +2021-02-23 09:04:55,35.374900817871094 +2021-02-23 09:14:43,34.4922981262207 +2021-02-23 09:24:31,34.82849884033203 +2021-02-23 09:34:19,37.37580108642578 +2021-02-23 09:44:07,39.05390167236328 +2021-02-23 09:53:55,39.52920150756836 +2021-02-23 10:03:43,38.663700103759766 +2021-02-23 10:13:31,38.20249938964844 +2021-02-23 10:23:19,37.82379913330078 +2021-02-23 10:33:07,38.27539825439453 +2021-02-23 10:42:55,37.82379913330078 +2021-02-23 10:52:43,45.444801330566406 +2021-02-23 11:02:31,48.63970184326172 +2021-02-23 11:12:19,41.00429916381836 +2021-02-23 11:22:07,40.75310134887695 +2021-02-23 11:31:55,36.78950119018555 +2021-02-23 11:41:43,40.50419998168945 +2021-02-23 11:51:31,40.669898986816406 +2021-02-23 12:01:18,41.1692008972168 +2021-02-23 12:11:06,40.75310134887695 +2021-02-23 12:20:54,40.75310134887695 +2021-02-23 12:30:42,38.89720153808594 +2021-02-23 12:40:30,41.51319885253906 +2021-02-23 12:50:18,41.0005989074707 +2021-02-23 13:00:06,40.50419998168945 +2021-02-23 13:09:54,40.50419998168945 +2021-02-23 13:19:41,38.89720153808594 +2021-02-23 13:29:29,38.89720153808594 +2021-02-23 13:39:17,37.37580108642578 +2021-02-23 13:49:05,37.37580108642578 +2021-02-23 13:58:53,38.20249938964844 +2021-02-23 14:08:41,36.57270050048828 +2021-02-23 14:18:28,36.644798278808594 +2021-02-23 14:28:16,35.58259963989258 +2021-02-23 14:38:04,36.14410018920898 +2021-02-23 14:47:52,37.00460052490234 +2021-02-23 14:57:40,37.598899841308594 +2021-02-23 15:07:28,39.12900161743164 +2021-02-23 15:17:16,39.52920150756836 +2021-02-23 15:27:03,41.257598876953125 +2021-02-23 15:36:51,145.13209533691406 +2021-02-23 15:46:39,43.6426010131836 +2021-02-23 15:56:27,41.00429916381836 +2021-02-23 16:06:15,39.769901275634766 +2021-02-23 16:16:03,145.13209533691406 +2021-02-23 16:25:51,42.91550064086914 +2021-02-23 16:35:39,39.21149826049805 +2021-02-23 16:45:26,38.20249938964844 +2021-02-23 16:55:14,39.2869987487793 +2021-02-23 17:05:02,143.0583953857422 +2021-02-23 17:14:50,45.14879989624024 +2021-02-23 17:24:38,38.663700103759766 +2021-02-23 17:34:26,36.71699905395508 +2021-02-23 17:44:13,37.37580108642578 +2021-02-23 17:54:01,35.57939910888672 +2021-02-23 18:03:49,35.57939910888672 +2021-02-23 18:13:37,36.00260162353516 +2021-02-23 18:23:25,36.14080047607422 +2021-02-23 18:33:13,36.71369934082031 +2021-02-23 18:43:01,36.71369934082031 +2021-02-23 18:52:49,36.78620147705078 +2021-02-23 19:02:37,38.19900131225586 +2021-02-23 19:12:25,37.30189895629883 +2021-02-23 19:22:13,36.78620147705078 +2021-02-23 19:32:01,37.00790023803711 +2021-02-23 19:41:49,37.00460052490234 +2021-02-23 19:51:37,37.372501373291016 +2021-02-23 20:01:25,37.59550094604492 +2021-02-23 20:11:13,37.372501373291016 +2021-02-23 20:21:01,36.78950119018555 +2021-02-23 20:30:49,37.22809982299805 +2021-02-23 20:40:37,36.14410018920898 +2021-02-23 20:50:24,36.71369934082031 +2021-02-23 21:00:12,37.00790023803711 +2021-02-23 21:10:00,37.15449905395508 +2021-02-23 21:19:48,37.22480010986328 +2021-02-23 21:29:36,36.71699905395508 +2021-02-23 21:39:25,36.14080047607422 +2021-02-23 21:49:13,35.374900817871094 +2021-02-23 21:59:01,35.58259963989258 +2021-02-23 22:08:49,35.168701171875 +2021-02-23 22:18:37,36.71369934082031 +2021-02-23 22:28:25,37.00790023803711 +2021-02-23 22:38:13,36.71699905395508 +2021-02-23 22:48:01,37.52439880371094 +2021-02-23 22:57:49,37.97460174560547 +2021-02-23 23:07:37,37.37580108642578 +2021-02-23 23:17:25,36.93489837646485 +2021-02-23 23:27:13,38.12630081176758 +2021-02-23 23:37:01,37.30189895629883 +2021-02-23 23:46:49,37.598899841308594 +2021-02-23 23:56:37,37.97460174560547 +2021-02-24 00:06:24,34.76089859008789 +2021-02-24 00:16:12,33.70180130004883 +2021-02-24 00:26:00,36.07329940795898 +2021-02-24 00:35:48,35.58259963989258 +2021-02-24 00:45:36,37.08110046386719 +2021-02-24 00:55:24,37.97460174560547 +2021-02-24 01:05:12,37.37580108642578 +2021-02-24 01:15:00,41.42779922485352 +2021-02-24 01:24:48,37.598899841308594 +2021-02-24 01:34:36,36.93489837646485 +2021-02-24 01:44:24,35.51319885253906 +2021-02-24 01:54:12,32.93320083618164 +2021-02-24 02:04:00,32.059898376464844 +2021-02-24 02:13:48,31.75849914550781 +2021-02-24 02:23:36,32.494598388671875 +2021-02-24 02:33:23,34.42559814453125 +2021-02-24 02:43:11,35.652099609375 +2021-02-24 02:52:59,35.10029983520508 +2021-02-24 03:02:47,35.721900939941406 +2021-02-24 03:12:35,34.9640998840332 +2021-02-24 03:22:23,32.55680084228516 +2021-02-24 03:32:10,33.25090026855469 +2021-02-24 03:41:58,34.22629928588867 +2021-02-24 03:51:46,32.93320083618164 +2021-02-24 04:01:34,32.30870056152344 +2021-02-24 04:11:22,31.10070037841797 +2021-02-24 04:21:10,32.24700164794922 +2021-02-24 04:30:58,31.94070053100586 +2021-02-24 04:40:45,32.432498931884766 +2021-02-24 04:50:33,34.22629928588867 +2021-02-24 05:00:21,32.61920166015625 +2021-02-24 05:10:09,33.63690185546875 +2021-02-24 05:19:57,32.059898376464844 +2021-02-24 05:29:45,29.774599075317383 +2021-02-24 05:39:33,29.162399291992188 +2021-02-24 05:49:20,29.052600860595703 +2021-02-24 05:59:08,30.74570083618164 +2021-02-24 06:08:56,31.219200134277344 +2021-02-24 06:18:44,29.774599075317383 +2021-02-24 06:28:32,30.40080070495605 +2021-02-24 06:38:20,29.494600296020508 +2021-02-24 06:48:08,29.327999114990234 +2021-02-24 06:57:56,29.494600296020508 +2021-02-24 07:07:44,29.217500686645508 +2021-02-24 07:17:32,29.052600860595703 +2021-02-24 07:27:20,29.66220092773437 +2021-02-24 07:37:08,31.69809913635254 +2021-02-24 07:46:55,30.74570083618164 +2021-02-24 07:56:43,28.56380081176757 +2021-02-24 08:06:31,28.56130027770996 +2021-02-24 08:16:19,28.56130027770996 +2021-02-24 08:26:07,28.56380081176757 +2021-02-24 08:35:54,30.40080070495605 +2021-02-24 08:45:42,32.74440002441406 +2021-02-24 08:55:30,31.04170036315918 +2021-02-24 09:05:18,30.11429977416992 +2021-02-24 09:15:06,28.56380081176757 +2021-02-24 09:24:53,28.99790000915528 +2021-02-24 09:34:41,29.327999114990234 +2021-02-24 09:44:29,29.77190017700196 +2021-02-24 09:54:17,29.606199264526367 +2021-02-24 10:04:05,28.56130027770996 +2021-02-24 10:13:53,28.56130027770996 +2021-02-24 10:23:41,28.56380081176757 +2021-02-24 10:33:29,28.56130027770996 +2021-02-24 10:43:17,28.67169952392578 +2021-02-24 10:53:04,30.11429977416992 +2021-02-24 11:02:52,32.36759948730469 +2021-02-24 11:12:40,31.99880027770996 +2021-02-24 11:22:28,32.36759948730469 +2021-02-24 11:32:16,34.690399169921875 +2021-02-24 11:42:04,40.7495002746582 +2021-02-24 11:51:51,35.652099609375 +2021-02-24 12:01:39,36.07329940795898 +2021-02-24 12:11:27,41.0005989074707 +2021-02-24 12:21:15,34.69350051879883 +2021-02-24 12:31:03,35.9994010925293 +2021-02-24 12:40:51,40.17190170288086 +2021-02-24 12:50:39,35.02899932861328 +2021-02-24 13:00:27,45.44070053100586 +2021-02-24 13:10:15,38.19900131225586 +2021-02-24 13:20:02,39.2869987487793 +2021-02-24 13:29:50,35.374900817871094 +2021-02-24 13:39:38,37.6702995300293 +2021-02-24 13:49:26,36.78620147705078 +2021-02-24 13:59:14,36.14410018920898 +2021-02-24 14:09:02,35.99610137939453 +2021-02-24 14:18:50,34.690399169921875 +2021-02-24 14:28:38,35.234100341796875 +2021-02-24 14:38:26,35.9994010925293 +2021-02-24 14:48:14,34.4922981262207 +2021-02-24 14:58:01,34.09120178222656 +2021-02-24 15:07:49,42.73260116577149 +2021-02-24 15:17:37,45.83430099487305 +2021-02-24 15:27:25,35.44070053100586 +2021-02-24 15:37:13,41.42779922485352 +2021-02-24 15:47:02,34.28950119018555 +2021-02-24 15:56:50,44.10240173339844 +2021-02-24 16:06:38,35.5099983215332 +2021-02-24 16:16:26,44.38410186767578 +2021-02-24 16:26:13,45.83430099487305 +2021-02-24 16:36:02,45.83430099487305 +2021-02-24 16:45:49,35.237300872802734 +2021-02-24 16:55:37,36.06679916381836 +2021-02-24 17:05:25,35.85540008544922 +2021-02-24 17:15:13,35.02579879760742 +2021-02-24 17:25:01,37.22480010986328 +2021-02-24 17:34:49,28.400299072265625 +2021-02-24 17:44:37,28.237699508666992 +2021-02-24 17:54:26,40.49689865112305 +2021-02-24 18:04:19,37.44329833984375 +2021-02-24 18:14:07,45.24169921875 +2021-02-24 18:23:55,46.132999420166016 +2021-02-24 18:33:43,49.741798400878906 +2021-02-24 18:43:31,36.42250061035156 +2021-02-24 18:53:19,35.9994010925293 +2021-02-24 19:03:07,35.234100341796875 +2021-02-24 19:12:55,45.24169921875 +2021-02-24 19:22:42,38.65679931640625 +2021-02-24 19:32:30,35.368499755859375 +2021-02-24 19:42:18,36.63819885253906 +2021-02-24 19:52:06,47.15069961547852 +2021-02-24 20:01:54,48.849098205566406 +2021-02-24 20:11:42,53.82889938354492 +2021-02-24 20:21:30,140.09840393066406 +2021-02-24 20:31:17,52.32490158081055 +2021-02-24 20:41:05,45.73130035400391 +2021-02-24 20:50:53,42.99760055541992 +2021-02-24 21:00:41,36.78279876708984 +2021-02-24 21:10:29,35.57939910888672 +2021-02-24 21:20:17,42.20209884643555 +2021-02-24 21:30:05,43.81930160522461 +2021-02-24 21:39:53,42.46609878540039 +2021-02-24 21:49:41,32.67580032348633 +2021-02-24 21:59:29,32.55390167236328 +2021-02-24 22:09:17,30.05470085144043 +2021-02-24 22:19:05,32.36470031738281 +2021-02-24 22:28:53,32.55390167236328 +2021-02-24 22:38:41,30.68470001220703 +2021-02-24 22:48:29,34.09120178222656 +2021-02-24 22:58:17,35.78860092163086 +2021-02-24 23:08:05,36.35430145263672 +2021-02-24 23:17:53,34.489200592041016 +2021-02-24 23:27:41,31.813400268554688 +2021-02-24 23:37:29,33.18109893798828 +2021-02-24 23:47:16,30.97719955444336 +2021-02-24 23:57:04,30.6875 +2021-02-25 00:06:52,29.715700149536133 +2021-02-25 00:16:40,30.80139923095703 +2021-02-25 00:26:28,31.813400268554688 +2021-02-25 00:36:16,31.51180076599121 +2021-02-25 00:46:04,32.36470031738281 +2021-02-25 00:55:52,33.18410110473633 +2021-02-25 01:05:40,32.801300048828125 +2021-02-25 01:15:28,35.371700286865234 +2021-02-25 01:25:16,35.230899810791016 +2021-02-25 01:35:03,35.368499755859375 +2021-02-25 01:44:51,34.822200775146484 +2021-02-25 01:54:39,34.022300720214844 +2021-02-25 02:04:27,33.566200256347656 +2021-02-25 02:14:15,33.89120101928711 +2021-02-25 02:24:03,33.89120101928711 +2021-02-25 02:33:51,34.286399841308594 +2021-02-25 02:43:39,34.022300720214844 +2021-02-25 02:53:27,33.5015983581543 +2021-02-25 03:03:15,33.5015983581543 +2021-02-25 03:13:03,34.62009811401367 +2021-02-25 03:22:51,37.22140121459961 +2021-02-25 03:32:39,35.02579879760742 +2021-02-25 03:42:27,36.13750076293945 +2021-02-25 03:52:15,35.92570114135742 +2021-02-25 04:02:03,36.78279876708984 +2021-02-25 04:11:51,37.14780044555664 +2021-02-25 04:21:39,28.829099655151367 +2021-02-25 04:31:28,28.9379997253418 +2021-02-25 04:41:16,28.39520072937012 +2021-02-25 04:51:04,28.34429931640625 +2021-02-25 05:00:52,28.34429931640625 +2021-02-25 05:10:39,28.992599487304688 +2021-02-25 05:20:27,28.24029922485352 +2021-02-25 05:30:15,28.50749969482422 +2021-02-25 05:40:03,30.340499877929688 +2021-02-25 05:49:51,29.71299934387207 +2021-02-25 05:59:39,30.337799072265625 +2021-02-25 06:09:27,28.9379997253418 +2021-02-25 06:19:15,28.829099655151367 +2021-02-25 06:29:03,31.272899627685547 +2021-02-25 06:38:51,31.99300003051757 +2021-02-25 06:48:39,32.48870086669922 +2021-02-25 06:58:27,32.48870086669922 +2021-02-25 07:08:14,33.30580139160156 +2021-02-25 07:18:03,32.801300048828125 +2021-02-25 07:27:51,33.49860000610352 +2021-02-25 07:37:39,33.5015983581543 +2021-02-25 07:47:27,32.798301696777344 +2021-02-25 07:57:15,32.801300048828125 +2021-02-25 08:07:03,34.022300720214844 +2021-02-25 08:16:51,32.990501403808594 +2021-02-25 08:26:39,32.48870086669922 +2021-02-25 08:36:27,34.62009811401367 +2021-02-25 08:46:15,36.13750076293945 +2021-02-25 08:56:02,32.990501403808594 +2021-02-25 09:05:50,33.308799743652344 +2021-02-25 09:15:38,34.553001403808594 +2021-02-25 09:25:26,35.50360107421875 +2021-02-25 09:35:14,33.819801330566406 +2021-02-25 09:45:02,33.5015983581543 +2021-02-25 09:54:50,34.822200775146484 +2021-02-25 10:04:38,36.49420166015625 +2021-03-03 15:02:35,27.86800003051757 +2021-03-03 15:12:29,27.86549949645996 +2021-03-03 15:22:17,27.813100814819336 +2021-03-03 15:32:05,27.813100814819336 +2021-03-03 15:41:53,27.86800003051757 +2021-03-03 15:51:41,27.813100814819336 +2021-03-03 16:01:29,27.813100814819336 +2021-03-03 16:11:18,27.81559944152832 +2021-03-03 16:21:06,27.813100814819336 +2021-03-03 16:30:54,27.813100814819336 +2021-03-03 16:40:41,27.813100814819336 +2021-03-03 16:50:30,27.813100814819336 +2021-03-03 17:00:18,27.813100814819336 +2021-03-03 17:10:06,27.86800003051757 +2021-03-03 17:19:54,27.86800003051757 +2021-03-03 17:29:42,27.86549949645996 +2021-03-03 17:39:30,27.813100814819336 +2021-03-03 17:49:18,27.813100814819336 +2021-03-03 17:59:06,27.86800003051757 +2021-03-03 18:08:54,27.813100814819336 +2021-03-03 18:18:42,27.81559944152832 +2021-03-03 18:28:30,27.86800003051757 +2021-03-03 18:38:18,27.86549949645996 +2021-03-03 18:48:06,27.813100814819336 +2021-03-03 18:57:55,27.86800003051757 +2021-03-03 19:07:43,27.86800003051757 +2021-03-03 19:17:31,27.81559944152832 +2021-03-03 19:27:19,27.81559944152832 +2021-03-03 19:37:07,27.81559944152832 +2021-03-03 19:46:55,27.86800003051757 +2021-03-03 19:56:43,27.86800003051757 +2021-03-03 20:06:31,27.86800003051757 +2021-03-03 20:16:19,27.86800003051757 +2021-03-03 20:26:07,27.86800003051757 +2021-03-03 20:35:55,27.81559944152832 +2021-03-03 20:45:43,-10.913700103759766 +2021-03-03 20:45:44,27.81559944152832 +2021-03-03 20:55:37,27.81559944152832 +2021-03-03 21:05:25,27.81559944152832 +2021-03-03 21:15:13,27.813100814819336 +2021-03-03 21:25:01,27.81559944152832 +2021-03-03 21:34:49,27.81559944152832 +2021-03-03 21:44:37,27.81559944152832 +2021-03-03 21:54:25,27.81559944152832 +2021-03-03 22:04:14,27.81559944152832 +2021-03-03 22:14:02,27.86800003051757 +2021-03-03 22:23:50,27.81559944152832 +2021-03-03 22:33:38,27.81559944152832 +2021-03-03 22:43:26,27.86800003051757 +2021-03-03 22:53:14,27.86800003051757 +2021-03-03 23:03:02,27.81559944152832 +2021-03-03 23:12:50,27.86800003051757 +2021-03-03 23:22:38,27.81559944152832 +2021-03-03 23:32:26,27.86800003051757 +2021-03-03 23:42:14,27.86800003051757 +2021-03-03 23:52:02,27.86800003051757 +2021-03-04 00:01:50,27.81559944152832 +2021-03-04 00:11:38,27.86800003051757 +2021-03-04 00:21:26,27.81559944152832 +2021-03-04 00:31:14,27.86800003051757 +2021-03-04 00:41:03,27.86800003051757 +2021-03-04 00:50:51,27.86800003051757 +2021-03-04 01:00:39,27.86800003051757 +2021-03-04 01:10:27,27.86800003051757 +2021-03-04 01:20:15,27.86800003051757 +2021-03-04 01:30:03,27.86800003051757 +2021-03-04 01:39:51,27.81559944152832 +2021-03-04 01:49:39,27.86800003051757 +2021-03-04 01:59:27,27.81559944152832 +2021-03-04 02:09:15,27.81559944152832 +2021-03-04 02:19:03,27.86800003051757 +2021-03-04 02:28:51,27.86800003051757 +2021-03-04 02:38:39,27.86800003051757 +2021-03-04 02:48:27,27.86800003051757 +2021-03-04 02:58:14,27.86800003051757 +2021-03-04 03:08:02,27.81559944152832 +2021-03-04 03:17:50,27.86800003051757 +2021-03-04 03:27:38,27.81559944152832 +2021-03-04 03:37:26,27.86800003051757 +2021-03-04 03:47:14,27.81559944152832 +2021-03-04 03:57:02,27.86800003051757 +2021-03-04 04:06:50,27.81559944152832 +2021-03-04 04:16:38,27.86800003051757 +2021-03-04 04:26:26,27.86800003051757 +2021-03-04 04:36:14,27.86800003051757 +2021-03-04 04:46:02,27.813100814819336 +2021-03-04 04:55:50,27.81060028076172 +2021-03-04 05:05:38,27.81060028076172 +2021-03-04 05:15:26,27.813100814819336 +2021-03-04 05:25:13,27.813100814819336 +2021-03-04 05:35:01,27.81559944152832 +2021-03-04 05:44:49,27.86800003051757 +2021-03-04 05:54:37,27.86800003051757 +2021-03-04 06:04:25,27.81060028076172 +2021-03-04 06:14:13,27.86549949645996 +2021-03-04 06:24:01,27.813100814819336 +2021-03-04 06:33:49,27.81559944152832 +2021-03-04 06:43:37,27.86800003051757 +2021-03-04 06:53:25,27.81559944152832 +2021-03-04 07:03:13,27.86800003051757 +2021-03-04 07:13:00,27.86800003051757 +2021-03-04 07:22:48,27.81559944152832 +2021-03-04 07:32:36,27.86800003051757 +2021-03-04 07:42:24,27.86800003051757 +2021-03-04 07:52:12,27.86549949645996 +2021-03-04 08:02:00,27.86800003051757 +2021-03-04 08:11:48,27.86549949645996 +2021-03-04 08:21:36,27.86800003051757 +2021-03-04 08:31:23,27.86800003051757 +2021-03-04 08:41:11,27.86800003051757 +2021-03-04 08:50:59,27.86800003051757 +2021-03-04 09:00:47,27.86800003051757 +2021-03-04 09:10:35,27.81559944152832 +2021-03-04 09:20:23,27.81559944152832 +2021-03-04 09:30:11,27.81559944152832 +2021-03-04 09:39:59,27.813100814819336 +2021-03-04 09:49:47,27.813100814819336 +2021-03-04 09:59:35,27.86549949645996 +2021-03-04 10:09:23,27.86549949645996 +2021-03-04 10:19:11,27.813100814819336 +2021-03-04 10:28:59,27.81559944152832 +2021-03-04 10:38:47,27.86800003051757 +2021-03-04 10:48:34,27.86549949645996 +2021-03-04 10:58:22,27.86549949645996 +2021-03-04 11:08:10,27.86800003051757 +2021-03-04 11:17:58,27.86800003051757 +2021-03-04 11:27:46,27.86800003051757 +2021-03-04 11:37:34,27.81060028076172 +2021-03-04 11:47:22,27.81060028076172 +2021-03-04 11:57:10,27.86549949645996 +2021-03-04 12:06:58,27.81060028076172 +2021-03-04 12:16:46,27.86549949645996 +2021-03-04 12:26:34,27.863000869750977 +2021-03-04 12:36:22,27.86549949645996 +2021-03-04 12:46:10,27.86549949645996 +2021-03-04 12:55:58,27.86549949645996 +2021-03-04 13:05:45,27.81559944152832 +2021-03-04 13:15:33,27.863000869750977 +2021-03-04 13:25:21,27.86549949645996 +2021-03-04 13:35:09,27.86549949645996 +2021-03-04 13:44:57,28.129100799560547 +2021-03-04 13:54:45,27.970600128173828 +2021-03-04 14:04:33,27.813100814819336 +2021-03-04 14:14:21,27.813100814819336 +2021-03-04 14:24:09,27.81060028076172 +2021-03-04 14:33:57,27.86800003051757 +2021-03-04 14:43:45,27.813100814819336 +2021-03-04 14:53:32,27.86800003051757 +2021-03-04 15:03:20,27.86549949645996 +2021-03-04 15:13:08,27.86549949645996 +2021-03-04 15:22:56,27.86549949645996 +2021-03-04 15:32:44,27.86800003051757 +2021-03-04 15:42:33,27.813100814819336 +2021-03-04 15:52:21,27.813100814819336 +2021-03-04 16:02:09,27.813100814819336 +2021-03-04 16:11:57,27.86549949645996 +2021-03-04 16:21:45,27.813100814819336 +2021-03-04 16:31:33,27.813100814819336 +2021-03-04 16:41:21,27.86800003051757 +2021-03-04 16:51:09,27.813100814819336 +2021-03-04 17:00:57,27.86050033569336 +2021-03-04 17:10:45,27.813100814819336 +2021-03-04 17:20:33,27.86549949645996 +2021-03-04 17:30:21,27.81060028076172 +2021-03-04 17:40:09,27.813100814819336 +2021-03-04 17:49:57,27.813100814819336 +2021-03-04 17:59:45,27.81060028076172 +2021-03-04 18:09:33,27.81060028076172 +2021-03-04 18:19:21,27.81060028076172 +2021-03-04 18:29:09,27.86549949645996 +2021-03-04 18:38:57,27.863000869750977 +2021-03-04 18:48:45,27.813100814819336 +2021-03-04 18:58:33,27.813100814819336 +2021-03-04 19:08:21,27.81060028076172 +2021-03-04 19:18:08,27.813100814819336 +2021-03-04 19:27:56,27.81060028076172 +2021-03-04 19:37:44,27.813100814819336 +2021-03-04 19:47:32,27.86800003051757 +2021-03-04 19:57:20,27.81060028076172 +2021-03-04 20:07:08,27.863000869750977 +2021-03-04 20:16:56,27.863000869750977 +2021-03-04 20:26:44,27.81060028076172 +2021-03-04 20:36:32,27.863000869750977 +2021-03-04 20:46:20,27.863000869750977 +2021-03-04 20:56:08,27.86549949645996 +2021-03-04 21:05:56,27.81060028076172 +2021-03-04 21:15:44,27.81060028076172 +2021-03-04 21:25:32,27.81060028076172 +2021-03-04 21:35:20,27.863000869750977 +2021-03-04 21:45:08,27.863000869750977 +2021-03-04 21:54:56,27.863000869750977 +2021-03-04 22:04:44,27.863000869750977 +2021-03-04 22:14:32,27.863000869750977 +2021-03-04 22:24:20,27.81060028076172 +2021-03-04 22:34:08,27.81060028076172 +2021-03-04 22:43:56,27.81060028076172 +2021-03-04 22:53:44,27.813100814819336 +2021-03-04 23:03:32,27.86549949645996 +2021-03-04 23:13:20,27.863000869750977 +2021-03-04 23:23:07,27.863000869750977 +2021-03-04 23:32:55,27.863000869750977 +2021-03-04 23:42:43,27.813100814819336 +2021-03-04 23:52:31,27.86549949645996 +2021-03-05 00:02:19,27.81060028076172 +2021-03-05 00:12:07,27.86549949645996 +2021-03-05 00:21:55,27.81060028076172 +2021-03-05 00:31:43,27.863000869750977 +2021-03-05 00:41:31,27.81060028076172 +2021-03-05 00:51:18,27.863000869750977 +2021-03-05 01:01:06,27.81060028076172 +2021-03-05 01:10:54,27.81060028076172 +2021-03-05 01:20:42,27.81060028076172 +2021-03-05 01:30:30,27.86549949645996 +2021-03-05 01:40:18,27.81060028076172 +2021-03-05 01:50:06,28.129100799560547 +2021-03-05 01:59:54,27.813100814819336 +2021-03-05 02:09:43,27.86800003051757 +2021-03-05 02:19:31,27.81060028076172 +2021-03-05 02:29:19,27.813100814819336 +2021-03-05 02:39:07,27.813100814819336 +2021-03-05 02:48:55,27.813100814819336 +2021-03-05 02:58:43,27.81060028076172 +2021-03-05 03:08:31,27.81060028076172 +2021-03-05 03:18:19,27.81060028076172 +2021-03-05 03:28:07,27.81060028076172 +2021-03-05 03:37:54,27.813100814819336 +2021-03-05 03:47:42,27.813100814819336 +2021-03-05 03:57:30,27.863000869750977 +2021-03-05 04:07:18,27.813100814819336 +2021-03-05 04:17:06,27.813100814819336 +2021-03-05 04:26:54,27.813100814819336 +2021-03-05 04:36:41,27.86549949645996 +2021-03-05 04:46:29,27.81060028076172 +2021-03-05 04:56:17,27.813100814819336 +2021-03-05 05:06:05,27.863000869750977 +2021-03-05 05:15:53,27.81060028076172 +2021-03-05 05:25:41,27.863000869750977 +2021-03-05 05:35:29,27.81060028076172 +2021-03-05 05:45:17,27.86549949645996 +2021-03-05 05:55:05,27.81060028076172 +2021-03-05 06:04:53,27.863000869750977 +2021-03-05 06:14:40,27.863000869750977 +2021-03-05 06:24:28,27.863000869750977 +2021-03-05 06:34:16,27.813100814819336 +2021-03-05 06:44:04,27.86549949645996 +2021-03-05 06:53:52,27.813100814819336 +2021-03-05 07:03:40,27.86549949645996 +2021-03-05 07:13:28,27.81060028076172 +2021-03-05 07:23:16,27.86549949645996 +2021-03-05 07:33:04,27.706100463867188 +2021-03-05 07:42:52,27.706100463867188 +2021-03-05 07:52:40,27.70859909057617 +2021-03-05 08:02:27,27.70859909057617 +2021-03-05 08:12:15,27.70859909057617 +2021-03-05 08:22:03,27.86549949645996 +2021-03-05 08:31:51,27.70859909057617 +2021-03-05 08:41:39,27.70859909057617 +2021-03-05 08:51:27,27.70859909057617 +2021-03-05 09:01:15,27.65660095214844 +2021-03-05 09:11:03,27.71109962463379 +2021-03-05 09:20:51,27.70859909057617 +2021-03-05 09:30:39,27.65410041809082 +2021-03-05 09:40:27,27.70859909057617 +2021-03-05 09:50:14,27.70859909057617 +2021-03-05 10:00:02,27.65660095214844 +2021-03-05 10:09:50,27.706100463867188 +2021-03-05 10:19:38,27.70859909057617 +2021-03-05 10:29:26,27.65660095214844 +2021-03-05 10:39:14,27.65660095214844 +2021-03-05 10:49:02,27.65660095214844 +2021-03-05 10:58:50,27.65660095214844 +2021-03-05 11:08:38,27.70859909057617 +2021-03-05 11:18:26,27.65900039672852 +2021-03-05 11:28:14,27.71109962463379 +2021-03-05 11:38:02,27.65900039672852 +2021-03-05 11:47:50,27.706100463867188 +2021-03-05 11:57:38,27.70859909057617 +2021-03-05 12:07:26,27.70859909057617 +2021-03-05 12:17:14,27.70859909057617 +2021-03-05 12:27:02,27.760799407958984 +2021-03-05 12:36:50,27.70859909057617 +2021-03-05 12:46:37,27.70859909057617 +2021-03-05 12:56:25,27.706100463867188 +2021-03-05 13:06:13,27.706100463867188 +2021-03-05 13:16:01,27.65410041809082 +2021-03-05 13:25:49,27.70859909057617 +2021-03-05 13:35:37,27.70859909057617 +2021-03-05 13:45:25,27.70859909057617 +2021-03-05 13:55:13,27.7632999420166 +2021-03-05 14:05:00,27.706100463867188 +2021-03-05 14:14:48,27.65660095214844 +2021-03-05 14:24:36,27.70859909057617 +2021-03-05 14:34:25,27.65410041809082 +2021-03-05 14:44:18,27.706100463867188 +2021-03-05 14:54:06,27.70859909057617 +2021-03-05 15:03:54,27.70859909057617 +2021-03-05 15:13:42,27.75830078125 +2021-03-05 15:23:30,27.706100463867188 +2021-03-05 15:33:18,27.70859909057617 +2021-03-05 15:43:06,27.70859909057617 +2021-03-05 15:52:54,27.760799407958984 +2021-03-05 16:02:41,27.75830078125 +2021-03-05 16:12:29,27.706100463867188 +2021-03-05 16:22:17,27.7632999420166 +2021-03-05 16:32:05,27.70859909057617 +2021-03-05 16:41:53,27.706100463867188 +2021-03-05 16:51:41,27.70859909057617 +2021-03-05 17:01:29,27.706100463867188 +2021-03-05 17:11:17,27.706100463867188 +2021-03-05 17:21:05,27.65410041809082 +2021-03-05 17:30:53,27.706100463867188 +2021-03-05 17:40:41,27.65410041809082 +2021-03-05 17:50:29,27.706100463867188 +2021-03-05 18:00:17,27.706100463867188 +2021-03-05 18:10:05,27.706100463867188 +2021-03-05 18:19:53,27.65410041809082 +2021-03-05 18:29:41,27.65410041809082 +2021-03-05 18:39:29,27.65410041809082 +2021-03-05 18:49:17,27.651599884033203 +2021-03-05 18:59:05,27.65410041809082 +2021-03-05 19:08:53,27.706100463867188 +2021-03-05 19:18:41,27.65410041809082 +2021-03-05 19:28:29,27.65410041809082 +2021-03-05 19:38:17,27.65410041809082 +2021-03-05 19:48:05,27.706100463867188 +2021-03-05 19:57:53,27.706100463867188 +2021-03-05 20:07:41,27.706100463867188 +2021-03-05 20:17:29,27.65410041809082 +2021-03-05 20:27:17,27.706100463867188 +2021-03-05 20:37:05,27.706100463867188 +2021-03-05 20:46:53,27.65410041809082 +2021-03-05 20:56:41,27.65410041809082 +2021-03-05 21:06:29,27.706100463867188 +2021-03-05 21:16:17,27.706100463867188 +2021-03-05 21:26:05,27.65660095214844 +2021-03-05 21:35:54,27.65410041809082 +2021-03-05 21:45:42,27.65410041809082 +2021-03-05 21:55:29,27.65410041809082 +2021-03-05 22:05:17,27.706100463867188 +2021-03-05 22:15:05,27.706100463867188 +2021-03-05 22:24:53,27.706100463867188 +2021-03-05 22:34:41,27.706100463867188 +2021-03-05 22:44:29,27.706100463867188 +2021-03-05 22:54:17,27.706100463867188 +2021-03-05 23:04:04,27.706100463867188 +2021-03-05 23:13:52,27.706100463867188 +2021-03-05 23:23:40,27.65410041809082 +2021-03-05 23:33:29,27.71109962463379 +2021-03-05 23:43:22,27.706100463867188 +2021-03-05 23:53:10,27.70859909057617 +2021-03-06 00:02:58,27.65410041809082 +2021-03-06 00:12:45,27.706100463867188 +2021-03-06 00:22:33,27.706100463867188 +2021-03-06 00:32:21,27.65410041809082 +2021-03-06 00:42:09,27.71109962463379 +2021-03-06 00:51:57,27.70859909057617 +2021-03-06 01:01:45,27.70859909057617 +2021-03-06 01:11:33,27.70859909057617 +2021-03-06 01:21:21,27.70859909057617 +2021-03-06 01:31:08,27.706100463867188 +2021-03-06 01:40:56,27.706100463867188 +2021-03-06 01:50:44,27.706100463867188 +2021-03-06 02:00:32,27.706100463867188 +2021-03-06 02:10:20,27.70859909057617 +2021-03-06 02:20:08,27.706100463867188 +2021-03-06 02:29:56,27.65660095214844 +2021-03-06 02:39:43,27.70859909057617 +2021-03-06 02:49:31,27.70859909057617 +2021-03-06 02:59:19,27.70859909057617 +2021-03-06 03:09:07,27.706100463867188 +2021-03-06 03:18:55,27.706100463867188 +2021-03-06 03:28:43,27.70859909057617 +2021-03-06 03:38:31,27.706100463867188 +2021-03-06 03:48:19,27.706100463867188 +2021-03-06 03:58:07,27.70859909057617 +2021-03-06 04:07:55,27.706100463867188 +2021-03-06 04:17:43,27.70859909057617 +2021-03-06 04:27:31,27.760799407958984 +2021-03-06 04:37:19,27.75830078125 +2021-03-06 04:47:07,27.706100463867188 +2021-03-06 04:56:55,27.70859909057617 +2021-03-06 05:06:43,27.706100463867188 +2021-03-06 05:16:31,27.70859909057617 +2021-03-06 05:26:19,27.70859909057617 +2021-03-06 05:36:07,27.706100463867188 +2021-03-06 05:45:55,27.706100463867188 +2021-03-06 05:55:44,27.70859909057617 +2021-03-06 06:05:37,27.706100463867188 +2021-03-06 06:15:25,27.706100463867188 +2021-03-06 06:25:13,27.706100463867188 +2021-03-06 06:35:01,27.706100463867188 +2021-03-06 06:44:49,27.706100463867188 +2021-03-06 06:54:37,27.75830078125 +2021-03-06 07:04:25,27.75830078125 +2021-03-06 07:14:12,27.70859909057617 +2021-03-06 07:24:00,27.706100463867188 +2021-03-06 07:33:48,27.706100463867188 +2021-03-06 07:43:36,27.70859909057617 +2021-03-06 07:53:24,27.70859909057617 +2021-03-06 08:03:11,27.706100463867188 +2021-03-06 08:12:59,27.706100463867188 +2021-03-06 08:22:47,27.760799407958984 +2021-03-06 08:32:35,27.75830078125 +2021-03-06 08:42:23,27.706100463867188 +2021-03-06 08:52:11,27.760799407958984 +2021-03-06 09:01:59,27.70859909057617 +2021-03-06 09:11:47,27.706100463867188 +2021-03-06 09:21:34,27.706100463867188 +2021-03-06 09:31:22,27.75830078125 +2021-03-06 09:41:10,27.7632999420166 +2021-03-06 09:50:58,27.75830078125 +2021-03-06 10:00:46,27.65410041809082 +2021-03-06 10:10:34,27.760799407958984 +2021-03-06 10:20:22,27.706100463867188 +2021-03-06 10:30:10,27.760799407958984 +2021-03-06 10:39:58,27.760799407958984 +2021-03-06 10:49:46,27.760799407958984 +2021-03-06 10:59:33,27.760799407958984 +2021-03-06 11:09:21,27.65410041809082 +2021-03-06 11:19:09,27.706100463867188 +2021-03-06 11:28:57,27.706100463867188 +2021-03-06 11:38:45,27.706100463867188 +2021-03-06 11:48:33,27.706100463867188 +2021-03-06 11:58:21,27.706100463867188 +2021-03-06 12:08:09,27.75830078125 +2021-03-06 12:17:57,27.706100463867188 +2021-03-06 12:27:45,27.706100463867188 +2021-03-06 12:37:33,27.706100463867188 +2021-03-06 12:47:20,27.75830078125 +2021-03-06 12:57:08,27.706100463867188 +2021-03-06 13:06:56,27.75830078125 +2021-03-06 13:16:44,27.706100463867188 +2021-03-06 13:26:32,27.70859909057617 +2021-03-06 13:36:20,27.70859909057617 +2021-03-06 13:46:08,27.70859909057617 +2021-03-06 13:55:56,27.70859909057617 +2021-03-06 14:05:44,27.70859909057617 +2021-03-06 14:15:32,27.75830078125 +2021-03-06 14:25:20,27.70859909057617 +2021-03-06 14:35:08,27.706100463867188 +2021-03-06 14:44:56,27.706100463867188 +2021-03-06 14:54:44,27.706100463867188 +2021-03-06 15:04:32,27.706100463867188 +2021-03-06 15:14:20,27.75830078125 +2021-03-06 15:24:07,27.706100463867188 +2021-03-06 15:33:55,27.706100463867188 +2021-03-06 15:43:43,27.760799407958984 +2021-03-06 15:53:31,27.706100463867188 +2021-03-06 16:03:19,27.70859909057617 +2021-03-06 16:13:07,27.706100463867188 +2021-03-06 16:22:55,27.706100463867188 +2021-03-06 16:32:43,27.65410041809082 +2021-03-06 16:42:30,27.70859909057617 +2021-03-06 16:52:18,27.706100463867188 +2021-03-06 17:02:06,27.706100463867188 +2021-03-06 17:11:54,27.706100463867188 +2021-03-06 17:21:42,27.706100463867188 +2021-03-06 17:31:30,27.70859909057617 +2021-03-06 17:41:18,27.706100463867188 +2021-03-06 17:51:05,27.70859909057617 +2021-03-06 18:00:53,27.760799407958984 +2021-03-06 18:10:41,27.65410041809082 +2021-03-06 18:20:29,27.706100463867188 +2021-03-06 18:30:17,27.75830078125 +2021-03-06 18:40:05,27.706100463867188 +2021-03-06 18:49:53,27.706100463867188 +2021-03-06 18:59:41,27.760799407958984 +2021-03-06 19:09:29,27.75830078125 +2021-03-06 19:19:17,27.75830078125 +2021-03-06 19:29:05,27.706100463867188 +2021-03-06 19:38:53,27.706100463867188 +2021-03-06 19:48:41,27.706100463867188 +2021-03-06 19:58:29,27.70859909057617 +2021-03-06 20:08:17,27.706100463867188 +2021-03-06 20:18:05,27.75830078125 +2021-03-06 20:27:53,27.65410041809082 +2021-03-06 20:37:40,27.75830078125 +2021-03-06 20:47:28,27.706100463867188 +2021-03-06 20:57:16,27.706100463867188 +2021-03-06 21:07:04,27.75830078125 +2021-03-06 21:16:52,27.706100463867188 +2021-03-06 21:26:40,27.706100463867188 +2021-03-06 21:36:28,27.706100463867188 +2021-03-06 21:46:16,27.75830078125 +2021-03-06 21:56:03,27.706100463867188 +2021-03-06 22:05:51,27.706100463867188 +2021-03-06 22:15:39,27.706100463867188 +2021-03-06 22:25:27,27.706100463867188 +2021-03-06 22:35:15,27.75830078125 +2021-03-06 22:45:03,27.706100463867188 +2021-03-06 22:54:51,27.706100463867188 +2021-03-06 23:04:39,27.706100463867188 +2021-03-06 23:14:27,27.706100463867188 +2021-03-06 23:24:15,27.706100463867188 +2021-03-06 23:34:03,27.75830078125 +2021-03-06 23:43:51,27.75830078125 +2021-03-06 23:53:39,27.706100463867188 +2021-03-07 00:03:27,27.706100463867188 +2021-03-07 00:13:15,27.706100463867188 +2021-03-07 00:23:03,27.706100463867188 +2021-03-07 00:32:51,27.706100463867188 +2021-03-07 00:42:39,27.706100463867188 +2021-03-07 00:52:27,27.706100463867188 +2021-03-07 01:02:16,27.75830078125 +2021-03-07 01:12:04,27.75830078125 +2021-03-07 01:21:51,27.706100463867188 +2021-03-07 01:31:39,27.706100463867188 +2021-03-07 01:41:27,27.706100463867188 +2021-03-07 01:51:15,27.75830078125 +2021-03-07 02:01:03,27.706100463867188 +2021-03-07 02:10:51,27.75830078125 +2021-03-07 02:20:39,27.75830078125 +2021-03-07 02:30:27,27.706100463867188 +2021-03-07 02:40:15,27.706100463867188 +2021-03-07 02:50:03,27.706100463867188 +2021-03-07 02:59:51,27.75830078125 +2021-03-07 03:09:39,27.706100463867188 +2021-03-07 03:19:27,27.75830078125 +2021-03-07 03:29:15,27.75830078125 +2021-03-07 03:39:03,27.75830078125 +2021-03-07 03:48:51,27.706100463867188 +2021-03-07 03:58:39,27.75830078125 +2021-03-07 04:08:27,27.75830078125 +2021-03-07 04:18:15,27.706100463867188 +2021-03-07 04:28:03,27.75830078125 +2021-03-07 04:37:52,27.75830078125 +2021-03-07 04:47:40,27.70859909057617 +2021-03-07 04:57:28,27.760799407958984 +2021-03-07 05:07:16,27.75830078125 +2021-03-07 05:17:04,27.70859909057617 +2021-03-07 05:26:52,27.75830078125 +2021-03-07 05:36:40,27.7632999420166 +2021-03-07 05:46:28,27.70859909057617 +2021-03-07 05:56:16,27.75830078125 +2021-03-07 06:06:04,27.75830078125 +2021-03-07 06:15:52,27.75830078125 +2021-03-07 06:25:40,27.706100463867188 +2021-03-07 06:35:28,27.75830078125 +2021-03-07 06:45:16,27.75830078125 +2021-03-07 06:55:04,27.760799407958984 +2021-03-07 07:04:52,27.75830078125 +2021-03-07 07:14:40,27.706100463867188 +2021-03-07 07:24:28,27.75830078125 +2021-03-07 07:34:16,27.760799407958984 +2021-03-07 07:44:03,27.760799407958984 +2021-03-07 07:53:51,27.760799407958984 +2021-03-07 08:03:39,27.75830078125 +2021-03-07 08:13:27,27.760799407958984 +2021-03-07 08:23:15,27.760799407958984 +2021-03-07 08:33:03,27.760799407958984 +2021-03-07 08:42:51,27.75830078125 +2021-03-07 08:52:39,27.75830078125 +2021-03-07 09:02:27,27.760799407958984 +2021-03-07 09:12:15,27.75830078125 +2021-03-07 09:22:03,27.75830078125 +2021-03-07 09:31:51,27.75830078125 +2021-03-07 09:41:39,27.75830078125 +2021-03-07 09:51:27,27.75830078125 +2021-03-07 10:01:15,27.75830078125 +2021-03-07 10:11:03,27.70859909057617 +2021-03-07 10:20:51,27.706100463867188 +2021-03-07 10:30:39,27.75830078125 +2021-03-07 10:40:27,27.75830078125 +2021-03-07 10:50:15,27.760799407958984 +2021-03-07 11:00:02,27.760799407958984 +2021-03-07 11:09:50,27.760799407958984 +2021-03-07 11:19:38,27.75830078125 +2021-03-07 11:29:26,27.75830078125 +2021-03-07 11:39:14,27.75830078125 +2021-03-07 11:49:02,27.75830078125 +2021-03-07 11:58:50,27.75830078125 +2021-03-07 12:08:38,27.75830078125 +2021-03-07 12:18:26,27.75830078125 +2021-03-07 12:28:14,27.760799407958984 +2021-03-07 12:38:02,27.706100463867188 +2021-03-07 12:47:49,27.75830078125 +2021-03-07 12:57:37,27.75830078125 +2021-03-07 13:07:25,27.75830078125 +2021-03-07 13:17:13,27.75830078125 +2021-03-07 13:27:01,27.75830078125 +2021-03-07 13:36:49,27.75830078125 +2021-03-07 13:46:37,27.75830078125 +2021-03-07 13:56:25,27.75830078125 +2021-03-07 14:06:13,27.760799407958984 +2021-03-07 14:16:02,27.75830078125 +2021-03-07 14:25:50,27.75830078125 +2021-03-07 14:35:38,27.75830078125 +2021-03-07 14:45:26,27.75830078125 +2021-03-07 14:55:13,27.760799407958984 +2021-03-07 15:05:01,27.75830078125 +2021-03-07 15:14:49,27.75830078125 +2021-03-07 15:24:37,27.755800247192383 +2021-03-07 15:34:25,27.75830078125 +2021-03-07 15:44:13,27.75830078125 +2021-03-07 15:54:01,27.75830078125 +2021-03-07 16:03:49,27.75830078125 +2021-03-07 16:13:37,27.75830078125 +2021-03-07 16:23:25,27.75830078125 +2021-03-07 16:33:13,27.75830078125 +2021-03-07 16:43:01,27.75830078125 +2021-03-07 16:52:48,27.75830078125 +2021-03-07 17:02:36,27.75830078125 +2021-03-07 17:12:24,27.75830078125 +2021-03-07 17:22:12,27.760799407958984 +2021-03-07 17:32:00,27.75830078125 +2021-03-07 17:41:48,27.75830078125 +2021-03-07 17:51:36,27.75830078125 +2021-03-07 18:01:24,27.760799407958984 +2021-03-07 18:11:12,27.75830078125 +2021-03-07 18:20:59,27.75830078125 +2021-03-07 18:30:47,27.75830078125 +2021-03-07 18:40:35,27.760799407958984 +2021-03-07 18:50:23,27.75830078125 +2021-03-07 19:00:11,27.760799407958984 +2021-03-07 19:09:59,27.760799407958984 +2021-03-07 19:19:47,27.75830078125 +2021-03-07 19:29:35,27.75830078125 +2021-03-07 19:39:23,27.75830078125 +2021-03-07 19:49:10,27.760799407958984 +2021-03-07 19:58:58,27.75830078125 +2021-03-07 20:08:46,27.760799407958984 +2021-03-07 20:18:34,27.75830078125 +2021-03-07 20:28:21,27.75830078125 +2021-03-07 20:38:09,27.75830078125 +2021-03-07 20:47:57,27.75830078125 +2021-03-07 20:57:45,27.760799407958984 +2021-03-07 21:07:33,27.75830078125 +2021-03-07 21:17:21,27.75830078125 +2021-03-07 21:27:09,27.75830078125 +2021-03-07 21:36:57,27.75830078125 +2021-03-07 21:46:45,27.760799407958984 +2021-03-07 21:56:33,27.75830078125 +2021-03-07 22:06:21,27.75830078125 +2021-03-07 22:16:09,27.75830078125 +2021-03-07 22:25:56,27.75830078125 +2021-03-07 22:35:44,27.75830078125 +2021-03-07 22:45:32,27.75830078125 +2021-03-07 22:55:20,27.75830078125 +2021-03-07 23:05:08,27.75830078125 +2021-03-07 23:14:57,27.760799407958984 +2021-03-07 23:24:50,27.75830078125 +2021-03-07 23:34:38,27.75830078125 +2021-03-07 23:44:26,27.75830078125 +2021-03-07 23:54:14,27.75830078125 +2021-03-08 00:04:02,27.760799407958984 +2021-03-08 00:13:50,27.75830078125 +2021-03-08 00:23:38,27.75830078125 +2021-03-08 00:33:26,27.75830078125 +2021-03-08 00:43:14,27.75830078125 +2021-03-08 00:53:02,27.760799407958984 +2021-03-08 01:02:50,27.75830078125 +2021-03-08 01:12:38,27.75830078125 +2021-03-08 01:22:26,27.75830078125 +2021-03-08 01:32:14,27.75830078125 +2021-03-08 01:42:02,27.75830078125 +2021-03-08 01:51:50,27.760799407958984 +2021-03-08 02:01:38,27.75830078125 +2021-03-08 02:11:26,27.75830078125 +2021-03-08 02:21:14,27.75830078125 +2021-03-08 02:31:02,27.760799407958984 +2021-03-08 02:40:50,27.755800247192383 +2021-03-08 02:50:38,27.75830078125 +2021-03-08 03:00:26,27.75830078125 +2021-03-08 03:10:14,27.75830078125 +2021-03-08 03:20:02,27.75830078125 +2021-03-08 03:29:50,27.75830078125 +2021-03-08 03:39:38,27.75830078125 +2021-03-08 03:49:26,27.75830078125 +2021-03-08 03:59:14,27.75830078125 +2021-03-08 04:09:02,27.75830078125 +2021-03-08 04:18:50,27.75830078125 +2021-03-08 04:28:38,27.75830078125 +2021-03-08 04:38:26,27.75830078125 +2021-03-08 04:48:14,27.75830078125 +2021-03-08 04:58:01,27.75830078125 +2021-03-08 05:07:49,27.75830078125 +2021-03-08 05:17:37,27.75830078125 +2021-03-08 05:27:25,27.75830078125 +2021-03-08 05:37:13,27.75830078125 +2021-03-08 05:47:01,27.75830078125 +2021-03-08 05:56:49,27.75830078125 +2021-03-08 06:06:37,27.75830078125 +2021-03-08 06:16:25,27.75830078125 +2021-03-08 06:26:12,27.75830078125 +2021-03-08 06:36:00,27.75830078125 +2021-03-08 06:45:48,27.75830078125 +2021-03-08 06:55:36,27.75830078125 +2021-03-08 07:05:24,27.75830078125 +2021-03-08 07:15:12,27.75830078125 +2021-03-08 07:25:00,27.75830078125 +2021-03-08 07:34:48,27.75830078125 +2021-03-08 07:44:36,27.75830078125 +2021-03-08 07:54:24,27.75830078125 +2021-03-08 08:04:12,27.75830078125 +2021-03-08 08:14:00,27.75830078125 +2021-03-08 08:23:48,27.75830078125 +2021-03-08 08:33:36,27.75830078125 +2021-03-08 08:43:25,27.75830078125 +2021-03-08 08:53:18,27.75830078125 +2021-03-08 09:03:06,27.75830078125 +2021-03-08 09:12:54,27.75830078125 +2021-03-08 09:22:42,27.75830078125 +2021-03-08 09:32:30,27.75830078125 +2021-03-08 09:42:18,27.75830078125 +2021-03-08 09:52:06,27.75830078125 +2021-03-08 10:01:54,27.755800247192383 +2021-03-08 10:11:42,27.75830078125 +2021-03-08 10:21:30,27.755800247192383 +2021-03-08 10:31:18,27.75830078125 +2021-03-08 10:41:06,27.75830078125 +2021-03-08 10:50:54,27.75830078125 +2021-03-08 11:00:42,27.75830078125 +2021-03-08 11:10:30,27.75830078125 +2021-03-08 11:20:18,27.75830078125 +2021-03-08 11:30:06,27.760799407958984 +2021-03-08 11:39:54,27.75830078125 +2021-03-08 11:49:43,27.75830078125 +2021-03-08 11:59:31,27.75830078125 +2021-03-08 12:09:19,27.75830078125 +2021-03-08 12:19:06,27.75830078125 +2021-03-08 12:28:54,27.755800247192383 +2021-03-08 12:38:43,27.75830078125 +2021-03-08 12:48:31,27.75830078125 +2021-03-08 12:58:19,27.75830078125 +2021-03-08 13:08:07,27.755800247192383 +2021-03-08 13:17:55,27.755800247192383 +2021-03-08 13:27:43,27.75830078125 +2021-03-08 13:37:31,27.75830078125 +2021-03-08 13:47:19,27.75830078125 +2021-03-08 13:57:07,27.755800247192383 +2021-03-08 14:06:55,27.755800247192383 +2021-03-08 14:16:43,27.755800247192383 +2021-03-08 14:26:31,27.755800247192383 +2021-03-08 14:36:18,27.755800247192383 +2021-03-08 14:46:06,27.75830078125 +2021-03-08 14:55:54,27.755800247192383 +2021-03-08 15:05:42,27.75830078125 +2021-03-08 15:15:30,27.75830078125 +2021-03-08 15:25:18,27.755800247192383 +2021-03-08 15:35:06,27.755800247192383 +2021-03-08 15:44:54,27.755800247192383 +2021-03-08 15:54:42,27.755800247192383 +2021-03-08 16:04:30,27.755800247192383 +2021-03-08 16:14:18,27.70369911193848 +2021-03-08 16:24:06,27.75830078125 +2021-03-08 16:33:54,27.755800247192383 +2021-03-08 16:43:42,27.755800247192383 +2021-03-08 16:53:30,27.755800247192383 +2021-03-08 17:03:18,27.755800247192383 +2021-03-08 17:13:06,27.75830078125 +2021-03-08 17:22:54,27.75830078125 +2021-03-08 17:32:42,27.755800247192383 +2021-03-08 17:42:30,27.75830078125 +2021-03-08 17:52:18,27.755800247192383 +2021-03-08 18:02:06,27.755800247192383 +2021-03-08 18:11:54,27.755800247192383 +2021-03-08 18:21:42,27.70369911193848 +2021-03-08 18:31:30,27.755800247192383 +2021-03-08 18:41:18,27.755800247192383 +2021-03-08 18:51:06,27.755800247192383 +2021-03-08 19:00:54,27.755800247192383 +2021-03-08 19:10:42,27.755800247192383 +2021-03-08 19:20:30,27.755800247192383 +2021-03-08 19:30:18,27.755800247192383 +2021-03-08 19:40:06,27.755800247192383 +2021-03-08 19:49:53,27.755800247192383 +2021-03-08 19:59:41,27.75830078125 +2021-03-08 20:09:29,27.75830078125 +2021-03-08 20:19:17,27.755800247192383 +2021-03-08 20:29:05,27.75830078125 +2021-03-08 20:38:53,27.755800247192383 +2021-03-08 20:48:41,27.75830078125 +2021-03-08 20:58:29,27.755800247192383 +2021-03-08 21:08:17,27.755800247192383 +2021-03-08 21:18:05,27.755800247192383 +2021-03-08 21:27:53,27.75830078125 +2021-03-08 21:37:41,27.755800247192383 +2021-03-08 21:47:29,27.75830078125 +2021-03-08 21:57:17,27.755800247192383 +2021-03-08 22:07:05,27.86800003051757 +2021-03-08 22:16:53,27.755800247192383 +2021-03-08 22:26:41,27.755800247192383 +2021-03-08 22:36:29,27.75830078125 +2021-03-08 22:46:17,27.755800247192383 +2021-03-08 22:56:05,27.75830078125 +2021-03-08 23:05:53,27.755800247192383 +2021-03-08 23:15:41,27.755800247192383 +2021-03-08 23:25:28,27.755800247192383 +2021-03-08 23:35:16,27.755800247192383 +2021-03-08 23:45:04,27.70369911193848 +2021-03-08 23:54:52,27.755800247192383 +2021-03-09 00:04:40,27.70369911193848 +2021-03-09 00:14:28,27.75830078125 +2021-03-09 00:24:16,27.755800247192383 +2021-03-09 00:34:04,27.755800247192383 +2021-03-09 00:43:52,27.755800247192383 +2021-03-09 00:53:40,27.75830078125 +2021-03-09 01:03:28,27.75830078125 +2021-03-09 01:13:16,27.755800247192383 +2021-03-09 01:23:04,27.755800247192383 +2021-03-09 01:32:52,27.755800247192383 +2021-03-09 01:42:41,27.75830078125 +2021-03-09 01:52:29,27.75830078125 +2021-03-09 02:02:17,27.755800247192383 +2021-03-09 02:12:05,27.75830078125 +2021-03-09 02:21:53,27.755800247192383 +2021-03-09 02:31:41,27.755800247192383 +2021-03-09 02:41:29,27.755800247192383 +2021-03-09 02:51:17,27.755800247192383 +2021-03-09 03:01:05,27.755800247192383 +2021-03-09 03:10:53,27.755800247192383 +2021-03-09 03:20:41,27.755800247192383 +2021-03-09 03:30:29,27.70369911193848 +2021-03-09 03:40:17,27.75830078125 +2021-03-09 03:50:05,27.755800247192383 +2021-03-09 03:59:53,27.755800247192383 +2021-03-09 04:09:41,27.755800247192383 +2021-03-09 04:19:29,27.755800247192383 +2021-03-09 04:29:17,27.755800247192383 +2021-03-09 04:39:05,27.755800247192383 +2021-03-09 04:48:53,27.755800247192383 +2021-03-09 04:58:41,27.755800247192383 +2021-03-09 05:08:29,27.755800247192383 +2021-03-09 05:18:17,27.755800247192383 +2021-03-09 05:28:05,27.755800247192383 +2021-03-09 05:37:53,27.755800247192383 +2021-03-09 05:47:41,27.755800247192383 +2021-03-09 05:57:29,27.755800247192383 +2021-03-09 06:07:18,27.755800247192383 +2021-03-09 06:17:06,27.755800247192383 +2021-03-09 06:26:54,27.755800247192383 +2021-03-09 06:36:42,27.70369911193848 +2021-03-09 06:46:30,27.75329971313477 +2021-03-09 06:56:18,27.755800247192383 +2021-03-09 07:06:06,27.755800247192383 +2021-03-09 07:15:54,27.755800247192383 +2021-03-09 07:25:42,27.755800247192383 +2021-03-09 07:35:30,27.755800247192383 +2021-03-09 07:45:18,27.755800247192383 +2021-03-09 07:55:06,27.755800247192383 +2021-03-09 08:04:54,27.755800247192383 +2021-03-09 08:14:43,27.755800247192383 +2021-03-09 08:24:49,27.70369911193848 +2021-03-09 08:34:37,27.755800247192383 +2021-03-09 08:44:25,27.75329971313477 +2021-03-09 08:54:12,27.755800247192383 +2021-03-09 09:04:00,27.755800247192383 +2021-03-09 09:13:48,27.755800247192383 +2021-03-09 09:23:36,27.755800247192383 +2021-03-09 09:33:24,27.755800247192383 +2021-03-09 09:43:12,27.75830078125 +2021-03-09 09:53:00,27.755800247192383 +2021-03-09 10:02:48,27.75329971313477 +2021-03-09 10:12:36,27.70369911193848 +2021-03-09 10:22:24,27.755800247192383 +2021-03-09 10:32:12,27.755800247192383 +2021-03-09 10:42:00,27.755800247192383 +2021-03-09 10:51:48,27.755800247192383 +2021-03-09 11:01:36,27.755800247192383 +2021-03-09 11:11:24,27.755800247192383 +2021-03-09 11:21:12,27.755800247192383 +2021-03-09 11:31:00,27.75830078125 +2021-03-09 11:40:48,27.75329971313477 +2021-03-09 11:50:36,27.70369911193848 +2021-03-09 12:00:24,27.755800247192383 +2021-03-09 12:10:12,27.755800247192383 +2021-03-09 12:20:00,27.755800247192383 +2021-03-09 12:29:48,27.75830078125 +2021-03-09 12:39:36,27.755800247192383 +2021-03-09 12:49:24,27.8080997467041 +2021-03-09 12:59:12,27.755800247192383 +2021-03-09 13:09:00,27.755800247192383 +2021-03-09 13:18:48,27.755800247192383 +2021-03-09 13:28:36,27.755800247192383 +2021-03-09 13:38:23,27.755800247192383 +2021-03-09 13:48:11,27.755800247192383 +2021-03-09 13:57:59,27.755800247192383 +2021-03-09 14:07:47,27.70369911193848 +2021-03-09 14:17:35,27.70120048522949 +2021-03-09 14:27:23,27.755800247192383 +2021-03-09 14:37:11,27.70120048522949 +2021-03-09 14:46:58,27.75329971313477 +2021-03-09 14:56:46,27.75329971313477 +2021-03-09 15:06:34,27.698699951171875 +2021-03-09 15:16:22,27.75079917907715 +2021-03-09 15:26:10,27.698699951171875 +2021-03-09 15:35:58,27.698699951171875 +2021-03-09 15:45:45,27.75079917907715 +2021-03-09 15:55:33,27.75079917907715 +2021-03-09 16:05:21,27.706100463867188 +2021-03-09 16:15:09,27.75079917907715 +2021-03-09 16:24:57,27.698699951171875 +2021-03-09 16:34:45,27.698699951171875 +2021-03-09 16:44:33,27.75329971313477 +2021-03-09 16:54:21,27.75329971313477 +2021-03-09 17:04:09,27.698699951171875 +2021-03-09 17:13:57,27.698699951171875 +2021-03-09 17:23:45,27.75079917907715 +2021-03-09 17:33:33,27.75079917907715 +2021-03-09 17:43:21,27.698699951171875 +2021-03-09 17:53:09,27.698699951171875 +2021-03-09 18:02:57,27.698699951171875 +2021-03-09 18:12:45,27.75079917907715 +2021-03-09 18:22:33,27.75079917907715 +2021-03-09 18:32:21,27.698699951171875 +2021-03-09 18:42:09,27.70120048522949 +2021-03-09 18:51:57,27.698699951171875 +2021-03-09 19:01:45,27.75079917907715 +2021-03-09 19:11:33,27.698699951171875 +2021-03-09 19:21:21,27.75329971313477 +2021-03-09 19:31:09,27.698699951171875 +2021-03-09 19:40:57,27.698699951171875 +2021-03-09 19:50:45,27.698699951171875 +2021-03-09 20:00:33,27.75329971313477 +2021-03-09 20:10:21,27.75079917907715 +2021-03-09 20:20:09,27.75329971313477 +2021-03-09 20:29:57,27.75079917907715 +2021-03-09 20:39:44,27.70120048522949 +2021-03-09 20:49:32,27.70120048522949 +2021-03-09 20:59:20,27.70120048522949 +2021-03-09 21:09:08,27.75329971313477 +2021-03-09 21:18:56,27.75329971313477 +2021-03-09 21:28:44,27.698699951171875 +2021-03-09 21:38:32,27.75329971313477 +2021-03-09 21:48:20,27.698699951171875 +2021-03-09 21:58:08,27.75329971313477 +2021-03-09 22:07:55,27.755800247192383 +2021-03-09 22:17:43,27.75329971313477 +2021-03-09 22:27:31,27.75329971313477 +2021-03-09 22:37:19,27.75079917907715 +2021-03-09 22:47:07,27.698699951171875 +2021-03-09 22:56:54,27.698699951171875 +2021-03-09 23:06:42,27.75079917907715 +2021-03-09 23:16:30,27.70120048522949 +2021-03-09 23:26:18,27.75329971313477 +2021-03-09 23:36:06,27.59709930419922 +2021-03-09 23:45:54,27.75329971313477 +2021-03-09 23:55:42,27.59959983825684 +2021-03-10 00:05:30,27.54520034790039 +2021-03-10 00:15:18,27.75329971313477 +2021-03-10 00:25:06,27.59709930419922 +2021-03-10 00:34:54,27.75329971313477 +2021-03-10 00:44:42,27.59959983825684 +2021-03-10 00:54:30,27.755800247192383 +2021-03-10 01:04:18,27.75329971313477 +2021-03-10 01:14:06,27.75329971313477 +2021-03-10 01:23:54,27.59959983825684 +2021-03-10 01:33:42,27.755800247192383 +2021-03-10 01:43:30,27.59959983825684 +2021-03-10 01:53:18,27.75329971313477 +2021-03-10 02:03:06,27.75329971313477 +2021-03-10 02:12:54,27.755800247192383 +2021-03-10 02:22:42,27.59959983825684 +2021-03-10 02:32:30,27.70120048522949 +2021-03-10 02:42:18,27.59959983825684 +2021-03-10 02:52:06,27.59959983825684 +2021-03-10 03:01:54,27.75329971313477 +2021-03-10 03:11:42,27.75329971313477 +2021-03-10 03:21:30,27.59959983825684 +2021-03-10 03:31:18,27.755800247192383 +2021-03-10 03:41:05,27.59959983825684 +2021-03-10 03:50:53,27.59959983825684 +2021-03-10 04:00:41,27.755800247192383 +2021-03-10 04:10:29,27.59959983825684 +2021-03-10 04:20:17,27.59709930419922 +2021-03-10 04:30:05,27.59959983825684 +2021-03-10 04:39:53,27.59709930419922 +2021-03-10 04:49:41,27.59959983825684 +2021-03-10 04:59:29,27.59959983825684 +2021-03-10 05:09:17,27.755800247192383 +2021-03-10 05:19:05,27.59709930419922 +2021-03-10 05:28:53,27.59709930419922 +2021-03-10 05:38:41,27.59959983825684 +2021-03-10 05:48:29,27.59959983825684 +2021-03-10 05:58:17,27.59959983825684 +2021-03-10 06:08:05,27.59959983825684 +2021-03-10 06:17:53,27.59709930419922 +2021-03-10 06:27:41,27.59959983825684 +2021-03-10 06:37:29,27.59709930419922 +2021-03-10 06:47:17,27.59959983825684 +2021-03-10 06:57:05,27.59959983825684 +2021-03-10 07:06:53,27.59709930419922 +2021-03-10 07:16:41,27.59709930419922 +2021-03-10 07:26:28,27.547700881958008 +2021-03-10 07:36:17,27.54520034790039 +2021-03-10 07:46:05,27.59959983825684 +2021-03-10 07:55:54,27.59709930419922 +2021-03-10 08:05:47,27.59959983825684 +2021-03-10 08:15:35,27.59709930419922 +2021-03-10 08:25:23,27.59959983825684 +2021-03-10 08:35:11,27.59709930419922 +2021-03-10 08:44:59,27.59959983825684 +2021-03-10 08:54:47,27.59709930419922 +2021-03-10 09:04:35,27.59709930419922 +2021-03-10 09:14:23,27.755800247192383 +2021-03-10 09:24:11,27.75329971313477 +2021-03-10 09:33:59,27.547700881958008 +2021-03-10 09:43:47,27.59709930419922 +2021-03-10 09:53:35,27.59709930419922 +2021-03-10 10:03:23,27.59709930419922 +2021-03-10 10:13:12,27.59709930419922 +2021-03-10 10:23:00,27.59709930419922 +2021-03-10 10:32:48,27.59709930419922 +2021-03-10 10:42:36,27.59709930419922 +2021-03-10 10:52:24,27.594600677490234 +2021-03-10 11:02:12,27.59709930419922 +2021-03-10 11:12:00,27.59959983825684 +2021-03-10 11:21:48,27.59709930419922 +2021-03-10 11:31:36,27.59709930419922 +2021-03-10 11:41:24,27.59709930419922 +2021-03-10 11:51:12,27.594600677490234 +2021-03-10 12:01:00,27.594600677490234 +2021-03-10 12:10:49,27.54520034790039 +2021-03-10 12:20:37,27.59709930419922 +2021-03-10 12:30:25,27.54520034790039 +2021-03-10 12:40:13,27.594600677490234 +2021-03-10 12:50:01,27.542699813842773 +2021-03-10 12:59:49,27.542699813842773 +2021-03-10 13:09:37,27.542699813842773 +2021-03-10 13:19:25,27.542699813842773 +2021-03-10 13:29:13,27.698699951171875 +2021-03-10 13:39:01,27.542699813842773 +2021-03-10 13:48:49,27.594600677490234 +2021-03-10 13:58:37,27.542699813842773 +2021-03-10 14:08:25,27.594600677490234 +2021-03-10 14:18:13,27.542699813842773 +2021-03-10 14:28:01,27.542699813842773 +2021-03-10 14:37:49,27.542699813842773 +2021-03-10 14:47:37,27.594600677490234 +2021-03-10 14:57:25,27.542699813842773 +2021-03-10 15:07:13,27.542699813842773 +2021-03-10 15:17:01,27.54019927978516 +2021-03-10 15:26:49,27.542699813842773 +2021-03-10 15:36:37,27.594600677490234 +2021-03-10 15:46:25,27.54019927978516 +2021-03-10 15:56:13,27.542699813842773 +2021-03-10 16:06:01,27.542699813842773 +2021-03-10 16:15:49,27.542699813842773 +2021-03-10 16:25:37,27.54019927978516 +2021-03-10 16:35:25,27.542699813842773 +2021-03-10 16:45:13,27.542699813842773 +2021-03-10 16:55:01,27.542699813842773 +2021-03-10 17:04:49,27.594600677490234 +2021-03-10 17:14:38,27.54520034790039 +2021-03-10 17:24:26,27.542699813842773 +2021-03-10 17:34:14,27.542699813842773 +2021-03-10 17:44:02,27.542699813842773 +2021-03-10 17:53:50,27.59709930419922 +2021-03-10 18:03:38,27.59709930419922 +2021-03-10 18:13:26,27.54520034790039 +2021-03-10 18:23:14,27.542699813842773 +2021-03-10 18:33:02,27.54520034790039 +2021-03-10 18:42:50,27.54520034790039 +2021-03-10 18:52:38,27.542699813842773 +2021-03-10 19:02:26,27.542699813842773 +2021-03-10 19:12:14,27.542699813842773 +2021-03-10 19:22:02,27.59959983825684 +2021-03-10 19:31:50,27.594600677490234 +2021-03-10 19:41:39,27.59709930419922 +2021-03-10 19:51:27,27.59959983825684 +2021-03-10 20:01:15,27.59959983825684 +2021-03-10 20:11:03,27.59709930419922 +2021-03-10 20:20:51,27.59709930419922 +2021-03-10 20:30:39,27.59709930419922 +2021-03-10 20:40:27,27.59959983825684 +2021-03-10 20:50:15,27.59709930419922 +2021-03-10 21:00:03,27.54520034790039 +2021-03-10 21:09:51,27.59709930419922 +2021-03-10 21:19:39,27.59709930419922 +2021-03-10 21:29:27,27.59709930419922 +2021-03-10 21:39:15,27.54520034790039 +2021-03-10 21:49:03,27.54520034790039 +2021-03-10 21:58:51,27.59709930419922 +2021-03-10 22:08:39,27.59959983825684 +2021-03-10 22:18:27,27.54520034790039 +2021-03-10 22:28:15,27.59709930419922 +2021-03-10 22:38:03,27.59709930419922 +2021-03-10 22:47:51,27.59709930419922 +2021-03-10 22:57:39,27.59959983825684 +2021-03-10 23:07:27,27.59709930419922 +2021-03-10 23:17:15,27.54520034790039 +2021-03-10 23:27:03,27.59959983825684 +2021-03-10 23:36:51,27.59709930419922 +2021-03-10 23:46:39,27.59709930419922 +2021-03-10 23:56:27,27.59959983825684 +2021-03-11 00:06:15,27.54520034790039 +2021-03-11 00:16:03,27.54520034790039 +2021-03-11 00:25:51,27.59709930419922 +2021-03-11 00:35:39,27.59709930419922 +2021-03-11 00:45:27,27.547700881958008 +2021-03-11 00:55:15,27.59709930419922 +2021-03-11 01:05:03,27.59709930419922 +2021-03-11 01:14:51,27.59709930419922 +2021-03-11 01:24:39,27.54520034790039 +2021-03-11 01:34:27,27.59959983825684 +2021-03-11 01:44:15,27.59709930419922 +2021-03-11 01:54:03,27.59959983825684 +2021-03-11 02:03:51,27.59959983825684 +2021-03-11 02:13:39,27.59709930419922 +2021-03-11 02:23:27,27.602100372314453 +2021-03-11 02:33:15,27.59959983825684 +2021-03-11 02:43:03,27.59709930419922 +2021-03-11 02:52:51,27.59959983825684 +2021-03-11 03:02:39,27.59959983825684 +2021-03-11 03:12:27,27.59959983825684 +2021-03-11 03:22:15,27.59709930419922 +2021-03-11 03:32:03,27.59959983825684 +2021-03-11 03:41:51,27.59959983825684 +2021-03-11 03:51:40,27.59709930419922 +2021-03-11 04:01:28,27.59709930419922 +2021-03-11 04:11:15,27.59709930419922 +2021-03-11 04:21:04,27.59959983825684 +2021-03-11 04:30:52,27.59959983825684 +2021-03-11 04:40:40,27.59709930419922 +2021-03-11 04:50:28,27.59959983825684 +2021-03-11 05:00:16,27.59709930419922 +2021-03-11 05:10:04,27.59959983825684 +2021-03-11 05:19:52,27.59709930419922 +2021-03-11 05:29:40,27.59709930419922 +2021-03-11 05:39:27,27.59709930419922 +2021-03-11 05:49:15,27.59709930419922 +2021-03-11 05:59:04,27.59709930419922 +2021-03-11 06:08:51,27.54520034790039 +2021-03-11 06:18:40,27.59709930419922 +2021-03-11 06:28:28,27.59709930419922 +2021-03-11 06:38:16,27.59709930419922 +2021-03-11 06:48:03,27.59709930419922 +2021-03-11 06:57:52,27.59709930419922 +2021-03-11 07:07:40,27.59959983825684 +2021-03-11 07:17:27,27.59959983825684 +2021-03-11 07:27:16,27.59709930419922 +2021-03-11 07:37:04,27.59959983825684 +2021-03-11 07:46:52,27.59709930419922 +2021-03-11 07:56:40,27.59709930419922 +2021-03-11 08:06:28,27.59709930419922 +2021-03-11 08:16:16,27.59709930419922 +2021-03-11 08:26:04,27.59709930419922 +2021-03-11 08:35:52,27.59709930419922 +2021-03-11 08:45:40,27.59709930419922 +2021-03-11 08:55:28,27.59709930419922 +2021-03-11 09:05:16,27.59959983825684 +2021-03-11 09:15:04,27.59709930419922 +2021-03-11 09:24:52,27.59959983825684 +2021-03-11 09:34:40,27.59959983825684 +2021-03-11 09:44:28,27.59709930419922 +2021-03-11 09:54:16,27.59709930419922 +2021-03-11 10:04:04,27.59959983825684 +2021-03-11 10:13:52,27.59709930419922 +2021-03-11 10:23:40,27.59709930419922 +2021-03-11 10:33:28,27.59709930419922 +2021-03-11 10:43:16,27.59709930419922 +2021-03-11 10:53:04,27.59709930419922 +2021-03-11 11:02:52,27.59709930419922 +2021-03-11 11:12:40,27.59709930419922 +2021-03-11 11:22:28,27.59709930419922 +2021-03-11 11:32:16,27.59709930419922 +2021-03-11 11:42:04,27.59959983825684 +2021-03-11 11:51:52,27.59709930419922 +2021-03-11 12:01:40,27.59709930419922 +2021-03-11 12:11:28,27.59709930419922 +2021-03-11 12:21:16,27.59709930419922 +2021-03-11 12:31:05,27.59709930419922 +2021-03-11 12:40:52,27.59709930419922 +2021-03-11 12:50:41,27.59959983825684 +2021-03-11 13:00:29,27.59709930419922 +2021-03-11 13:10:17,27.59959983825684 +2021-03-11 13:20:05,27.59959983825684 +2021-03-11 13:29:53,27.59709930419922 +2021-03-11 13:39:41,27.59709930419922 +2021-03-11 13:49:29,27.59709930419922 +2021-03-11 13:59:17,27.59709930419922 +2021-03-11 14:09:05,27.59959983825684 +2021-03-11 14:18:53,27.54520034790039 +2021-03-11 14:28:41,27.59709930419922 +2021-03-11 14:38:29,27.59709930419922 +2021-03-11 14:48:17,27.59709930419922 +2021-03-11 14:58:05,27.547700881958008 +2021-03-11 15:07:53,27.59709930419922 +2021-03-11 15:17:41,27.59709930419922 +2021-03-11 15:27:29,27.54520034790039 +2021-03-11 15:37:17,27.54520034790039 +2021-03-11 15:47:05,27.54520034790039 +2021-03-11 15:56:54,27.54520034790039 +2021-03-11 16:06:42,27.59709930419922 +2021-03-11 16:16:30,27.59709930419922 +2021-03-11 16:26:18,27.54520034790039 +2021-03-11 16:36:06,27.59709930419922 +2021-03-11 16:45:54,27.59709930419922 +2021-03-11 16:55:42,27.54520034790039 +2021-03-11 17:05:30,27.59709930419922 +2021-03-11 17:15:18,27.54520034790039 +2021-03-11 17:25:06,27.54520034790039 +2021-03-11 17:34:54,27.59709930419922 +2021-03-11 17:44:42,27.59959983825684 +2021-03-11 17:54:31,27.59709930419922 +2021-03-11 18:04:18,27.54520034790039 +2021-03-11 18:14:06,27.547700881958008 +2021-03-11 18:23:55,27.59709930419922 +2021-03-11 18:33:43,27.59709930419922 +2021-03-11 18:43:30,27.54520034790039 +2021-03-11 18:53:18,27.59959983825684 +2021-03-11 19:03:07,27.54520034790039 +2021-03-11 19:12:55,27.59709930419922 +2021-03-11 19:22:43,27.54520034790039 +2021-03-11 19:32:31,27.54520034790039 +2021-03-11 19:42:19,27.54520034790039 +2021-03-11 19:52:07,27.54520034790039 +2021-03-11 20:01:55,27.547700881958008 +2021-03-11 20:11:43,27.54520034790039 +2021-03-11 20:21:31,27.547700881958008 +2021-03-11 20:31:19,27.59709930419922 +2021-03-11 20:41:07,27.547700881958008 +2021-03-11 20:50:55,27.59709930419922 +2021-03-11 21:00:43,27.54520034790039 +2021-03-11 21:10:31,27.59709930419922 +2021-03-11 21:20:19,27.54520034790039 +2021-03-11 21:30:07,27.54520034790039 +2021-03-11 21:39:55,27.54520034790039 +2021-03-11 21:49:43,27.59709930419922 +2021-03-11 21:59:31,27.54520034790039 +2021-03-11 22:09:19,27.54520034790039 +2021-03-11 22:19:07,27.54520034790039 +2021-03-11 22:28:55,27.59709930419922 +2021-03-11 22:38:43,27.594600677490234 +2021-03-11 22:48:31,27.54520034790039 +2021-03-11 22:58:19,27.59709930419922 +2021-03-11 23:08:07,27.59959983825684 +2021-03-11 23:17:55,27.54520034790039 +2021-03-11 23:27:43,27.59709930419922 +2021-03-11 23:37:31,27.59709930419922 +2021-03-11 23:47:19,27.54520034790039 +2021-03-11 23:57:07,27.59709930419922 +2021-03-12 00:06:55,27.547700881958008 +2021-03-12 00:16:43,27.59709930419922 +2021-03-12 00:26:31,27.59709930419922 +2021-03-12 00:36:19,27.54520034790039 +2021-03-12 00:46:07,27.59709930419922 +2021-03-12 00:55:55,27.59709930419922 +2021-03-12 01:05:43,27.54520034790039 +2021-03-12 01:15:31,27.54520034790039 +2021-03-12 01:25:19,27.547700881958008 +2021-03-12 01:35:08,27.547700881958008 +2021-03-12 01:44:56,27.547700881958008 +2021-03-12 01:54:44,27.54520034790039 +2021-03-12 02:04:32,27.547700881958008 +2021-03-12 02:14:20,27.59709930419922 +2021-03-12 02:24:09,27.547700881958008 +2021-03-12 02:33:57,27.59709930419922 +2021-03-12 02:43:45,27.547700881958008 +2021-03-12 02:53:33,27.54520034790039 +2021-03-12 03:03:21,27.54520034790039 +2021-03-12 03:13:09,27.54520034790039 +2021-03-12 03:22:57,27.547700881958008 +2021-03-12 03:32:45,27.54520034790039 +2021-03-12 03:42:33,27.547700881958008 +2021-03-12 03:52:21,27.54520034790039 +2021-03-12 04:02:09,27.54520034790039 +2021-03-12 04:11:58,27.54520034790039 +2021-03-12 04:21:45,27.59959983825684 +2021-03-12 04:31:34,27.59709930419922 +2021-03-12 04:41:22,27.54520034790039 +2021-03-12 04:51:10,27.59709930419922 +2021-03-12 05:00:58,27.59709930419922 +2021-03-12 05:10:45,27.59709930419922 +2021-03-12 05:20:33,27.59709930419922 +2021-03-12 05:30:21,27.54520034790039 +2021-03-12 05:40:09,27.54520034790039 +2021-03-12 05:49:57,27.547700881958008 +2021-03-12 05:59:45,27.54520034790039 +2021-03-12 06:09:34,27.59709930419922 +2021-03-12 06:19:21,27.59709930419922 +2021-03-12 06:29:09,27.54520034790039 +2021-03-12 06:38:57,27.54520034790039 +2021-03-12 06:48:45,27.59709930419922 +2021-03-12 06:58:33,27.59709930419922 +2021-03-12 07:08:21,27.54520034790039 +2021-03-12 07:18:09,27.54520034790039 +2021-03-12 07:27:57,27.54520034790039 +2021-03-12 07:37:45,27.54520034790039 +2021-03-12 07:47:33,27.59709930419922 +2021-03-12 07:57:21,27.54520034790039 +2021-03-12 08:07:09,27.59709930419922 +2021-03-12 08:16:57,27.59709930419922 +2021-03-12 08:26:45,27.59709930419922 +2021-03-12 08:36:33,27.59709930419922 +2021-03-12 08:46:21,27.54520034790039 +2021-03-12 08:56:09,27.54520034790039 +2021-03-12 09:05:57,27.59709930419922 +2021-03-12 09:15:45,27.54520034790039 +2021-03-12 09:25:33,27.59709930419922 +2021-03-12 09:35:21,27.59709930419922 +2021-03-12 09:45:09,27.59709930419922 +2021-03-12 09:54:57,27.59709930419922 +2021-03-12 10:04:45,27.59959983825684 +2021-03-12 10:14:33,27.59709930419922 +2021-03-12 10:24:21,27.59709930419922 +2021-03-12 10:34:09,27.59709930419922 +2021-03-12 10:43:57,27.59709930419922 +2021-03-12 10:53:45,27.59709930419922 +2021-03-12 11:03:33,27.54520034790039 +2021-03-12 11:13:21,27.59709930419922 +2021-03-12 11:23:10,27.59959983825684 +2021-03-12 11:32:58,27.59709930419922 +2021-03-12 11:42:46,27.54520034790039 +2021-03-12 11:52:34,27.59709930419922 +2021-03-12 12:02:22,27.54520034790039 +2021-03-12 12:12:10,27.59709930419922 +2021-03-12 12:21:58,27.54520034790039 +2021-03-12 12:31:46,27.54520034790039 +2021-03-12 12:41:34,27.54520034790039 +2021-03-12 12:51:22,27.54520034790039 +2021-03-12 13:01:10,27.59709930419922 +2021-03-12 13:10:58,27.54520034790039 +2021-03-12 13:20:46,27.59709930419922 +2021-03-12 13:30:34,27.54520034790039 +2021-03-12 13:40:22,27.59709930419922 +2021-03-12 13:50:10,27.54520034790039 +2021-03-12 13:59:59,27.59709930419922 +2021-03-12 14:09:47,27.54520034790039 +2021-03-12 14:19:35,27.59709930419922 +2021-03-12 14:29:23,27.59709930419922 +2021-03-12 14:39:11,27.54520034790039 +2021-03-12 14:48:59,27.547700881958008 +2021-03-12 14:58:47,27.59709930419922 +2021-03-12 15:08:35,27.59709930419922 +2021-03-12 15:18:24,27.54520034790039 +2021-03-12 15:28:12,27.59709930419922 +2021-03-12 15:38:00,27.59709930419922 +2021-03-12 15:47:48,27.59709930419922 +2021-03-12 15:57:36,27.59709930419922 +2021-03-12 16:07:24,27.54520034790039 +2021-03-12 16:17:13,27.59709930419922 +2021-03-12 16:27:01,27.59709930419922 +2021-03-12 16:36:49,27.59709930419922 +2021-03-12 16:46:37,27.59709930419922 +2021-03-12 16:56:25,27.54520034790039 +2021-03-12 17:06:13,27.59709930419922 +2021-03-12 17:16:01,27.54520034790039 +2021-03-12 17:25:50,27.59959983825684 +2021-03-12 17:35:38,27.54520034790039 +2021-03-12 17:45:26,27.54520034790039 +2021-03-12 17:55:14,27.59709930419922 +2021-03-12 18:05:02,27.54520034790039 +2021-03-12 18:14:50,27.59709930419922 +2021-03-12 18:24:38,27.54520034790039 +2021-03-12 18:34:26,27.54520034790039 +2021-03-12 18:44:14,27.59709930419922 +2021-03-12 18:54:02,27.59709930419922 +2021-03-12 19:03:50,27.54520034790039 +2021-03-12 19:13:38,27.59709930419922 +2021-03-12 19:23:26,27.54520034790039 +2021-03-12 19:33:15,27.59709930419922 +2021-03-12 19:43:02,27.59959983825684 +2021-03-12 19:52:50,27.54520034790039 +2021-03-12 20:02:38,27.54520034790039 +2021-03-12 20:12:26,27.59709930419922 +2021-03-12 20:22:14,27.59959983825684 +2021-03-12 20:32:02,27.59709930419922 +2021-03-12 20:41:50,27.59709930419922 +2021-03-12 20:51:38,27.59709930419922 +2021-03-12 21:01:26,27.59709930419922 +2021-03-12 21:11:14,27.54520034790039 +2021-03-12 21:21:02,27.59709930419922 +2021-03-12 21:30:49,27.59709930419922 +2021-03-12 21:40:37,27.59709930419922 +2021-03-12 21:50:25,27.54520034790039 +2021-03-12 22:00:13,27.59959983825684 +2021-03-12 22:10:01,27.59959983825684 +2021-03-12 22:19:49,27.59709930419922 +2021-03-12 22:29:37,27.59959983825684 +2021-03-12 22:39:25,27.59709930419922 +2021-03-12 22:49:13,27.59709930419922 +2021-03-12 22:59:01,27.59959983825684 +2021-03-12 23:08:49,27.59959983825684 +2021-03-12 23:18:37,27.59709930419922 +2021-03-12 23:28:25,27.59959983825684 +2021-03-12 23:38:13,27.59709930419922 +2021-03-12 23:48:01,27.59709930419922 +2021-03-12 23:57:49,27.59959983825684 +2021-03-13 00:07:37,27.59959983825684 +2021-03-13 00:17:25,27.547700881958008 +2021-03-13 00:27:13,27.59959983825684 +2021-03-13 00:37:01,27.59959983825684 +2021-03-13 00:46:49,27.59709930419922 +2021-03-13 00:56:37,27.59959983825684 +2021-03-13 01:06:26,27.59959983825684 +2021-03-13 01:16:14,27.59959983825684 +2021-03-13 01:26:02,27.59959983825684 +2021-03-13 01:35:50,27.59709930419922 +2021-03-13 01:45:38,27.59959983825684 +2021-03-13 01:55:26,27.59959983825684 +2021-03-13 02:05:14,27.59709930419922 +2021-03-13 02:15:02,27.547700881958008 +2021-03-13 02:24:49,27.59959983825684 +2021-03-13 02:34:37,27.59959983825684 +2021-03-13 02:44:25,27.59709930419922 +2021-03-13 02:54:13,27.59709930419922 +2021-03-13 03:04:01,27.59959983825684 +2021-03-13 03:13:49,27.59959983825684 +2021-03-13 03:23:37,27.547700881958008 +2021-03-13 03:33:25,27.59709930419922 +2021-03-13 03:43:13,27.59959983825684 +2021-03-13 03:53:01,27.59959983825684 +2021-03-13 04:02:49,27.59709930419922 +2021-03-13 04:12:37,27.59959983825684 +2021-03-13 04:22:25,27.59959983825684 +2021-03-13 04:32:13,27.59959983825684 +2021-03-13 04:42:01,27.59959983825684 +2021-03-13 04:51:49,27.59959983825684 +2021-03-13 05:01:37,27.547700881958008 +2021-03-13 05:11:25,27.59959983825684 +2021-03-13 05:21:13,27.59959983825684 +2021-03-13 05:31:00,27.59959983825684 +2021-03-13 05:40:48,27.59959983825684 +2021-03-13 05:50:36,27.59959983825684 +2021-03-13 06:00:24,27.59959983825684 +2021-03-13 06:10:12,27.59959983825684 +2021-03-13 06:20:00,27.547700881958008 +2021-03-13 06:29:48,27.59959983825684 +2021-03-13 06:39:36,27.59959983825684 +2021-03-13 06:49:24,27.59959983825684 +2021-03-13 06:59:12,27.59959983825684 +2021-03-13 07:08:59,27.59959983825684 +2021-03-13 07:18:47,27.59959983825684 +2021-03-13 07:28:35,27.602100372314453 +2021-03-13 07:38:23,27.59959983825684 +2021-03-13 07:48:11,27.59959983825684 +2021-03-13 07:57:59,27.59959983825684 +2021-03-13 08:07:47,27.59959983825684 +2021-03-13 08:17:34,27.59959983825684 +2021-03-13 08:27:22,27.59959983825684 +2021-03-13 08:37:10,27.547700881958008 +2021-03-13 08:46:58,27.59959983825684 +2021-03-13 08:56:45,27.602100372314453 +2021-03-13 09:06:33,27.602100372314453 +2021-03-13 09:16:21,27.59959983825684 +2021-03-13 09:26:09,27.59959983825684 +2021-03-13 09:35:57,27.59959983825684 +2021-03-13 09:45:44,27.59959983825684 +2021-03-13 09:55:32,27.602100372314453 +2021-03-13 10:05:20,27.602100372314453 +2021-03-13 10:15:08,27.59959983825684 +2021-03-13 10:24:56,27.59709930419922 +2021-03-13 10:34:44,27.59959983825684 +2021-03-13 10:44:31,27.59959983825684 +2021-03-13 10:54:19,27.59959983825684 +2021-03-13 11:04:07,27.59959983825684 +2021-03-13 11:13:55,27.59959983825684 +2021-03-13 11:23:43,27.59959983825684 +2021-03-13 11:33:30,27.59959983825684 +2021-03-13 11:43:18,27.602100372314453 +2021-03-13 11:53:06,27.602100372314453 +2021-03-13 12:02:54,27.59959983825684 +2021-03-13 12:12:42,27.59959983825684 +2021-03-13 12:22:29,27.602100372314453 +2021-03-13 12:32:17,27.547700881958008 +2021-03-13 12:42:05,27.59959983825684 +2021-03-13 12:51:53,27.602100372314453 +2021-03-13 13:01:41,27.602100372314453 +2021-03-13 13:11:29,27.59959983825684 +2021-03-13 13:21:17,27.59959983825684 +2021-03-13 13:31:04,27.59959983825684 +2021-03-13 13:40:52,27.602100372314453 +2021-03-13 13:50:40,27.59959983825684 +2021-03-13 14:00:28,27.602100372314453 +2021-03-13 14:10:15,27.602100372314453 +2021-03-13 14:20:03,27.59959983825684 +2021-03-13 14:29:51,27.602100372314453 +2021-03-13 14:39:39,27.602100372314453 +2021-03-13 14:49:27,27.602100372314453 +2021-03-13 14:59:14,27.602100372314453 +2021-03-13 15:09:02,27.602100372314453 +2021-03-13 15:18:50,27.59959983825684 +2021-03-13 15:28:38,27.602100372314453 +2021-03-13 15:38:25,27.602100372314453 +2021-03-13 15:48:13,27.59959983825684 +2021-03-13 15:58:01,27.59959983825684 +2021-03-13 16:07:49,27.602100372314453 +2021-03-13 16:17:37,27.602100372314453 +2021-03-13 16:27:25,27.602100372314453 +2021-03-13 16:37:13,27.59959983825684 +2021-03-13 16:47:00,27.602100372314453 +2021-03-13 16:56:48,27.602100372314453 +2021-03-13 17:06:36,27.602100372314453 +2021-03-13 17:16:24,27.550199508666992 +2021-03-13 17:26:12,27.602100372314453 +2021-03-13 17:35:59,27.602100372314453 +2021-03-13 17:45:47,27.602100372314453 +2021-03-13 17:55:35,27.602100372314453 +2021-03-13 18:05:23,27.602100372314453 +2021-03-13 18:15:11,27.59959983825684 +2021-03-13 18:24:59,27.602100372314453 +2021-03-13 18:34:46,27.59959983825684 +2021-03-13 18:44:35,27.602100372314453 +2021-03-13 18:54:22,27.602100372314453 +2021-03-13 19:04:10,27.602100372314453 +2021-03-13 19:13:58,27.602100372314453 +2021-03-13 19:23:46,27.602100372314453 +2021-03-13 19:33:34,27.602100372314453 +2021-03-13 19:43:22,27.602100372314453 +2021-03-13 19:53:10,27.59959983825684 +2021-03-13 20:02:58,27.602100372314453 +2021-03-13 20:12:45,27.59959983825684 +2021-03-13 20:22:33,27.602100372314453 +2021-03-13 20:32:21,27.602100372314453 +2021-03-13 20:42:09,27.602100372314453 +2021-03-13 20:51:57,27.550199508666992 +2021-03-13 21:01:44,27.550199508666992 +2021-03-13 21:11:32,27.602100372314453 +2021-03-13 21:21:20,27.602100372314453 +2021-03-13 21:31:08,27.602100372314453 +2021-03-13 21:40:56,27.550199508666992 +2021-03-13 21:50:44,27.602100372314453 +2021-03-13 22:00:32,27.550199508666992 +2021-03-13 22:10:19,27.602100372314453 +2021-03-13 22:20:07,27.602100372314453 +2021-03-13 22:29:55,27.550199508666992 +2021-03-13 22:39:43,27.602100372314453 +2021-03-13 22:49:31,27.651599884033203 +2021-03-13 22:59:18,27.602100372314453 +2021-03-13 23:09:06,27.550199508666992 +2021-03-13 23:18:54,27.602100372314453 +2021-03-13 23:28:41,27.602100372314453 +2021-03-13 23:38:29,27.602100372314453 +2021-03-13 23:48:17,27.550199508666992 +2021-03-13 23:58:05,27.602100372314453 +2021-03-14 00:07:53,27.602100372314453 +2021-03-14 00:17:40,27.602100372314453 +2021-03-14 00:27:28,27.602100372314453 +2021-03-14 00:37:16,27.550199508666992 +2021-03-14 00:47:04,27.602100372314453 +2021-03-14 00:56:52,27.602100372314453 +2021-03-14 01:06:40,27.602100372314453 +2021-03-14 01:16:27,27.602100372314453 +2021-03-14 01:26:15,27.602100372314453 +2021-03-14 01:36:03,27.602100372314453 +2021-03-14 01:45:51,27.602100372314453 +2021-03-14 01:55:39,27.602100372314453 +2021-03-14 02:05:27,27.550199508666992 +2021-03-14 02:15:15,27.602100372314453 +2021-03-14 02:25:03,27.602100372314453 +2021-03-14 02:34:51,27.602100372314453 +2021-03-14 02:44:39,27.602100372314453 +2021-03-14 02:54:27,27.602100372314453 +2021-03-14 03:04:14,27.602100372314453 +2021-03-14 03:14:02,27.602100372314453 +2021-03-14 03:23:50,27.602100372314453 +2021-03-14 03:33:38,27.602100372314453 +2021-03-14 03:43:26,27.602100372314453 +2021-03-14 03:53:14,27.602100372314453 +2021-03-14 04:03:02,27.602100372314453 +2021-03-14 04:12:49,27.602100372314453 +2021-03-14 04:22:37,27.602100372314453 +2021-03-14 04:32:25,27.602100372314453 +2021-03-14 04:42:13,27.602100372314453 +2021-03-14 04:52:01,27.602100372314453 +2021-03-14 05:01:49,27.602100372314453 +2021-03-14 05:11:37,27.602100372314453 +2021-03-14 05:21:25,27.602100372314453 +2021-03-14 05:31:12,27.602100372314453 +2021-03-14 05:41:00,27.60460090637207 +2021-03-14 05:50:48,27.602100372314453 +2021-03-14 06:00:36,27.602100372314453 +2021-03-14 06:10:24,27.602100372314453 +2021-03-14 06:20:12,27.602100372314453 +2021-03-14 06:30:00,27.602100372314453 +2021-03-14 06:39:47,27.602100372314453 +2021-03-14 06:49:35,27.602100372314453 +2021-03-14 06:59:23,27.602100372314453 +2021-03-14 07:09:11,27.602100372314453 +2021-03-14 07:18:59,27.602100372314453 +2021-03-14 07:28:47,27.602100372314453 +2021-03-14 07:38:34,27.60460090637207 +2021-03-14 07:48:22,27.602100372314453 +2021-03-14 07:58:10,27.60460090637207 +2021-03-14 08:07:58,27.60460090637207 +2021-03-14 08:17:46,27.60460090637207 +2021-03-14 08:27:34,27.602100372314453 +2021-03-14 08:37:22,27.602100372314453 +2021-03-14 08:47:10,27.602100372314453 +2021-03-14 08:56:57,27.60460090637207 +2021-03-14 09:06:45,27.602100372314453 +2021-03-14 09:16:33,27.602100372314453 +2021-03-14 09:26:21,27.60460090637207 +2021-03-14 09:36:09,27.602100372314453 +2021-03-14 09:45:57,27.602100372314453 +2021-03-14 09:55:45,27.60460090637207 +2021-03-14 10:05:33,27.602100372314453 +2021-03-14 10:15:21,27.602100372314453 +2021-03-14 10:25:09,27.602100372314453 +2021-03-14 10:34:57,27.602100372314453 +2021-03-14 10:44:44,27.60460090637207 +2021-03-14 10:54:32,27.602100372314453 +2021-03-14 11:04:20,27.602100372314453 +2021-03-14 11:14:08,27.602100372314453 +2021-03-14 11:23:56,27.602100372314453 +2021-03-14 11:33:44,27.602100372314453 +2021-03-14 11:43:32,27.602100372314453 +2021-03-14 11:53:21,27.60460090637207 +2021-03-14 12:03:08,27.602100372314453 +2021-03-14 12:12:56,27.60460090637207 +2021-03-14 12:22:44,27.602100372314453 +2021-03-14 12:32:32,27.60460090637207 +2021-03-14 12:42:20,27.602100372314453 +2021-03-14 12:52:08,27.602100372314453 +2021-03-14 13:01:56,27.81060028076172 +2021-03-14 13:11:44,27.602100372314453 +2021-03-14 13:21:32,27.75830078125 +2021-03-14 13:31:20,27.75830078125 +2021-03-14 13:41:08,27.75830078125 +2021-03-14 13:50:56,27.602100372314453 +2021-03-14 14:00:43,27.75830078125 +2021-03-14 14:10:31,27.760799407958984 +2021-03-14 14:20:19,27.75830078125 +2021-03-14 14:30:07,27.760799407958984 +2021-03-14 14:39:55,27.75830078125 +2021-03-14 14:49:43,27.75830078125 +2021-03-14 14:59:31,27.75830078125 +2021-03-14 15:09:18,27.75830078125 +2021-03-14 15:19:06,27.75830078125 +2021-03-14 15:28:54,27.75830078125 +2021-03-14 15:38:42,27.760799407958984 +2021-03-14 15:48:30,27.75830078125 +2021-03-14 15:58:18,27.760799407958984 +2021-03-14 16:08:06,27.75830078125 +2021-03-14 16:17:54,27.760799407958984 +2021-03-14 16:27:41,27.760799407958984 +2021-03-14 16:37:29,27.75830078125 +2021-03-14 16:47:17,27.75830078125 +2021-03-14 16:57:05,27.75830078125 +2021-03-14 17:06:53,27.760799407958984 +2021-03-14 17:16:41,27.760799407958984 +2021-03-14 17:26:29,27.81060028076172 +2021-03-14 17:36:17,-10.98550033569336 +2021-03-14 17:36:18,27.760799407958984 +2021-03-14 17:46:10,27.81060028076172 +2021-03-14 17:55:58,27.81060028076172 +2021-03-14 18:05:46,27.75830078125 +2021-03-14 18:15:34,27.760799407958984 +2021-03-14 18:25:22,27.75830078125 +2021-03-14 18:35:10,27.760799407958984 +2021-03-14 18:44:58,27.75830078125 +2021-03-14 18:54:46,27.75830078125 +2021-03-14 19:04:34,27.75830078125 +2021-03-14 19:14:22,27.760799407958984 +2021-03-14 19:24:09,27.81060028076172 +2021-03-14 19:33:57,27.760799407958984 +2021-03-14 19:43:45,27.813100814819336 +2021-03-14 19:53:33,27.75830078125 +2021-03-14 20:03:21,27.760799407958984 +2021-03-14 20:13:09,27.75830078125 +2021-03-14 20:22:57,27.760799407958984 +2021-03-14 20:32:44,27.760799407958984 +2021-03-14 20:42:32,27.75830078125 +2021-03-14 20:52:20,27.760799407958984 +2021-03-14 21:02:08,27.75830078125 +2021-03-14 21:11:56,27.813100814819336 +2021-03-14 21:21:44,27.75830078125 +2021-03-14 21:31:32,27.75830078125 +2021-03-14 21:41:19,27.760799407958984 +2021-03-14 21:51:07,27.813100814819336 +2021-03-14 22:00:55,27.81060028076172 +2021-03-14 22:10:43,27.760799407958984 +2021-03-14 22:20:31,27.81060028076172 +2021-03-14 22:30:19,27.75830078125 +2021-03-14 22:40:07,27.75830078125 +2021-03-14 22:49:54,27.75830078125 +2021-03-14 22:59:42,27.760799407958984 +2021-03-14 23:09:30,27.760799407958984 +2021-03-14 23:19:18,27.760799407958984 +2021-03-14 23:29:06,27.760799407958984 +2021-03-14 23:38:54,27.7632999420166 +2021-03-14 23:48:42,27.75830078125 +2021-03-14 23:58:29,27.75830078125 +2021-03-15 00:08:17,27.760799407958984 +2021-03-15 00:18:05,27.760799407958984 +2021-03-15 00:27:53,27.760799407958984 +2021-03-15 00:37:41,27.7632999420166 +2021-03-15 00:47:29,27.760799407958984 +2021-03-15 00:57:17,27.760799407958984 +2021-03-15 01:07:05,27.81060028076172 +2021-03-15 01:16:53,27.760799407958984 +2021-03-15 01:26:40,27.760799407958984 +2021-03-15 01:36:28,27.75830078125 +2021-03-15 01:46:16,27.75830078125 +2021-03-15 01:56:04,27.760799407958984 +2021-03-15 02:05:52,27.760799407958984 +2021-03-15 02:15:40,27.760799407958984 +2021-03-15 02:25:27,27.760799407958984 +2021-03-15 02:35:15,27.760799407958984 +2021-03-15 02:45:03,27.760799407958984 +2021-03-15 02:54:51,27.75830078125 +2021-03-15 03:04:39,27.760799407958984 +2021-03-15 03:14:27,27.760799407958984 +2021-03-15 03:24:15,27.75830078125 +2021-03-15 03:34:03,27.813100814819336 +2021-03-15 03:43:51,27.760799407958984 +2021-03-15 03:53:39,27.760799407958984 +2021-03-15 04:03:27,27.760799407958984 +2021-03-15 04:13:15,27.760799407958984 +2021-03-15 04:23:03,27.75830078125 +2021-03-15 04:32:51,27.75830078125 +2021-03-15 04:42:39,27.760799407958984 +2021-03-15 04:52:26,27.760799407958984 +2021-03-15 05:02:15,27.7632999420166 +2021-03-15 05:12:02,27.760799407958984 +2021-03-15 05:21:50,27.760799407958984 +2021-03-15 05:31:38,27.760799407958984 +2021-03-15 05:41:26,27.7632999420166 +2021-03-15 05:51:15,27.760799407958984 +2021-03-15 06:01:02,27.760799407958984 +2021-03-15 06:10:51,27.760799407958984 +2021-03-15 06:20:39,27.760799407958984 +2021-03-15 06:30:27,27.760799407958984 +2021-03-15 06:40:15,27.7632999420166 +2021-03-15 06:50:03,27.760799407958984 +2021-03-15 06:59:51,27.813100814819336 +2021-03-15 07:09:39,27.760799407958984 +2021-03-15 07:19:27,27.813100814819336 +2021-03-15 07:29:14,27.813100814819336 +2021-03-15 07:39:02,27.760799407958984 +2021-03-15 07:48:50,27.813100814819336 +2021-03-15 07:58:38,27.813100814819336 +2021-03-15 08:08:26,27.813100814819336 +2021-03-15 08:18:14,27.760799407958984 +2021-03-15 08:28:02,27.7632999420166 +2021-03-15 08:37:50,27.760799407958984 +2021-03-15 08:47:38,27.813100814819336 +2021-03-15 08:57:26,27.760799407958984 +2021-03-15 09:07:14,27.760799407958984 +2021-03-15 09:17:02,27.970600128173828 +2021-03-15 09:26:50,27.917999267578125 +2021-03-15 09:36:38,27.917999267578125 +2021-03-15 09:46:25,27.917999267578125 +2021-03-15 09:56:13,27.917999267578125 +2021-03-15 10:06:01,27.91550064086914 +2021-03-15 10:15:49,27.97319984436035 +2021-03-15 10:25:37,27.917999267578125 +2021-03-15 10:35:25,27.970600128173828 +2021-03-15 10:45:13,27.970600128173828 +2021-03-15 10:55:01,27.917999267578125 +2021-03-15 11:04:49,27.970600128173828 +2021-03-15 11:14:37,27.917999267578125 +2021-03-15 11:24:25,27.970600128173828 +2021-03-15 11:34:13,27.970600128173828 +2021-03-15 11:44:01,27.970600128173828 +2021-03-15 11:53:49,27.970600128173828 +2021-03-15 12:03:37,27.970600128173828 +2021-03-15 12:13:24,27.917999267578125 +2021-03-15 12:23:12,27.970600128173828 +2021-03-15 12:33:00,27.917999267578125 +2021-03-15 12:42:48,27.970600128173828 +2021-03-15 12:52:36,27.97319984436035 +2021-03-15 13:02:24,27.97319984436035 +2021-03-15 13:12:12,27.97319984436035 +2021-03-15 13:22:00,27.970600128173828 +2021-03-15 13:31:48,27.97319984436035 +2021-03-15 13:41:36,27.97319984436035 +2021-03-15 13:51:24,27.97319984436035 +2021-03-15 14:01:12,27.920499801635746 +2021-03-15 14:11:00,27.917999267578125 +2021-03-15 14:20:48,27.917999267578125 +2021-03-15 14:30:36,27.970600128173828 +2021-03-15 14:40:24,27.97319984436035 +2021-03-15 14:50:12,27.970600128173828 +2021-03-15 15:00:00,27.970600128173828 +2021-03-15 15:09:48,27.970600128173828 +2021-03-15 15:19:36,27.97319984436035 +2021-03-15 15:29:23,27.917999267578125 +2021-03-15 15:39:11,27.97319984436035 +2021-03-15 15:48:59,27.97319984436035 +2021-03-15 15:58:47,27.920499801635746 +2021-03-15 16:08:35,27.97319984436035 +2021-03-15 16:18:23,28.07609939575196 +2021-03-15 16:28:11,28.07609939575196 +2021-03-15 16:37:59,28.07869911193848 +2021-03-15 16:47:47,28.07609939575196 +2021-03-15 16:57:35,28.07609939575196 +2021-03-15 17:07:23,28.07869911193848 +2021-03-15 17:17:11,28.07869911193848 +2021-03-15 17:26:58,28.07609939575196 +2021-03-15 17:36:46,28.07869911193848 +2021-03-15 17:46:34,28.07869911193848 +2021-03-15 17:56:22,28.07869911193848 +2021-03-15 18:06:10,28.07360076904297 +2021-03-15 18:15:58,28.07869911193848 +2021-03-15 18:25:46,28.07609939575196 +2021-03-15 18:35:34,28.07609939575196 +2021-03-15 18:45:22,28.07869911193848 +2021-03-15 18:55:10,28.13159942626953 +2021-03-15 19:04:58,28.07869911193848 +2021-03-15 19:14:46,28.07609939575196 +2021-03-15 19:24:34,28.07609939575196 +2021-03-15 19:34:21,28.07869911193848 +2021-03-15 19:44:09,28.07609939575196 +2021-03-15 19:53:57,28.07609939575196 +2021-03-15 20:03:45,28.07609939575196 +2021-03-15 20:13:33,28.07869911193848 +2021-03-15 20:23:21,28.07869911193848 +2021-03-15 20:33:09,28.07869911193848 +2021-03-15 20:42:57,28.07869911193848 +2021-03-15 20:52:45,28.07869911193848 +2021-03-15 21:02:32,28.07869911193848 +2021-03-15 21:12:20,28.07609939575196 +2021-03-15 21:22:08,28.07869911193848 +2021-03-15 21:31:56,28.13159942626953 +2021-03-15 21:41:44,28.07609939575196 +2021-03-15 21:51:32,28.07869911193848 +2021-03-15 22:01:20,28.07869911193848 +2021-03-15 22:11:08,28.07869911193848 +2021-03-15 22:20:56,28.07869911193848 +2021-03-15 22:30:44,28.07869911193848 +2021-03-15 22:40:32,28.07869911193848 +2021-03-15 22:50:20,28.07869911193848 +2021-03-15 23:00:08,28.07869911193848 +2021-03-15 23:09:56,28.07869911193848 +2021-03-15 23:19:44,28.07869911193848 +2021-03-15 23:29:31,28.07869911193848 +2021-03-15 23:39:19,28.07609939575196 +2021-03-15 23:49:07,28.07869911193848 +2021-03-15 23:58:55,28.07869911193848 +2021-03-16 00:08:43,28.07869911193848 +2021-03-16 00:18:31,28.07869911193848 +2021-03-16 00:28:19,28.07869911193848 +2021-03-16 00:38:07,28.07869911193848 +2021-03-16 00:47:55,28.07869911193848 +2021-03-16 00:57:43,28.07869911193848 +2021-03-16 01:07:54,28.07869911193848 +2021-03-16 01:17:41,28.07869911193848 +2021-03-16 01:27:28,28.07869911193848 +2021-03-16 01:37:16,28.07869911193848 +2021-03-16 01:47:04,28.07869911193848 +2021-03-16 01:56:52,28.07869911193848 +2021-03-16 02:06:40,28.07869911193848 +2021-03-16 02:16:28,28.237699508666992 +2021-03-16 02:26:16,28.237699508666992 +2021-03-16 02:36:04,28.237699508666992 +2021-03-16 02:45:51,28.237699508666992 +2021-03-16 02:55:39,28.291000366210938 +2021-03-16 03:05:27,28.341699600219727 +2021-03-16 03:15:15,28.237699508666992 +2021-03-16 03:25:03,28.237699508666992 +2021-03-16 03:34:51,28.237699508666992 +2021-03-16 03:44:39,28.237699508666992 +2021-03-16 03:54:26,28.237699508666992 +2021-03-16 04:04:14,28.237699508666992 +2021-03-16 04:14:02,28.293500900268555 +2021-03-16 04:23:50,28.237699508666992 +2021-03-16 04:33:38,28.237699508666992 +2021-03-16 04:43:26,28.237699508666992 +2021-03-16 04:53:14,28.237699508666992 +2021-03-16 05:03:02,28.18720054626465 +2021-03-16 05:12:49,28.237699508666992 +2021-03-16 05:22:37,28.237699508666992 +2021-03-16 05:32:25,28.237699508666992 +2021-03-16 05:42:13,28.237699508666992 +2021-03-16 05:52:01,28.237699508666992 +2021-03-16 06:01:49,28.237699508666992 +2021-03-16 06:11:37,28.237699508666992 +2021-03-16 06:21:25,28.237699508666992 +2021-03-16 06:31:13,28.237699508666992 +2021-03-16 06:41:01,28.237699508666992 +2021-03-16 06:50:49,28.237699508666992 +2021-03-16 07:00:36,28.237699508666992 +2021-03-16 07:10:25,28.237699508666992 +2021-03-16 07:20:12,28.237699508666992 +2021-03-16 07:30:00,28.237699508666992 +2021-03-16 07:39:48,28.237699508666992 +2021-03-16 07:49:36,28.237699508666992 +2021-03-16 07:59:24,28.24029922485352 +2021-03-16 08:09:12,28.237699508666992 +2021-03-16 08:18:59,28.237699508666992 +2021-03-16 08:28:47,28.237699508666992 +2021-03-16 08:38:35,28.237699508666992 +2021-03-16 08:48:22,28.237699508666992 +2021-03-16 08:58:10,28.237699508666992 +2021-03-16 09:07:58,28.237699508666992 +2021-03-16 09:17:46,28.237699508666992 +2021-03-16 09:27:33,28.237699508666992 +2021-03-16 09:37:21,28.237699508666992 +2021-03-16 09:47:09,28.237699508666992 +2021-03-16 09:56:57,28.237699508666992 +2021-03-16 10:06:45,28.237699508666992 +2021-03-16 10:16:33,28.237699508666992 +2021-03-16 10:26:21,28.24029922485352 +2021-03-16 10:36:09,28.237699508666992 +2021-03-16 10:45:57,28.237699508666992 +2021-03-16 10:55:45,28.24029922485352 +2021-03-16 11:05:33,28.237699508666992 +2021-03-16 11:15:21,28.24029922485352 +2021-03-16 11:25:09,28.24029922485352 +2021-03-16 11:34:56,28.237699508666992 +2021-03-16 11:44:44,28.237699508666992 +2021-03-16 11:54:32,28.237699508666992 +2021-03-16 12:04:20,28.18720054626465 +2021-03-16 12:14:08,28.24029922485352 +2021-03-16 12:23:56,28.24029922485352 +2021-03-16 12:33:44,28.24029922485352 +2021-03-16 12:43:32,28.24029922485352 +2021-03-16 12:53:20,28.24029922485352 +2021-03-16 13:03:08,28.24029922485352 +2021-03-16 13:12:56,28.24029922485352 +2021-03-16 13:22:44,28.24029922485352 +2021-03-16 13:32:32,28.24029922485352 +2021-03-16 13:42:20,28.24029922485352 +2021-03-16 13:52:08,28.237699508666992 +2021-03-16 14:01:56,28.237699508666992 +2021-03-16 14:11:43,28.24029922485352 +2021-03-16 14:21:32,28.24029922485352 +2021-03-16 14:31:20,28.237699508666992 +2021-03-16 14:41:08,28.24029922485352 +2021-03-16 14:50:56,28.24029922485352 +2021-03-16 15:00:44,28.237699508666992 +2021-03-16 15:10:32,28.24029922485352 +2021-03-16 15:20:20,28.24029922485352 +2021-03-16 15:30:08,28.237699508666992 +2021-03-16 15:39:56,28.24029922485352 +2021-03-16 15:49:44,28.24029922485352 +2021-03-16 15:59:32,28.237699508666992 +2021-03-16 16:09:20,28.24029922485352 +2021-03-16 16:19:08,28.237699508666992 +2021-03-16 16:28:56,28.237699508666992 +2021-03-16 16:38:44,28.237699508666992 +2021-03-16 16:48:32,28.24029922485352 +2021-03-16 16:58:20,28.24029922485352 +2021-03-16 17:08:08,28.24029922485352 +2021-03-16 17:17:56,28.24029922485352 +2021-03-16 17:27:44,28.24029922485352 +2021-03-16 17:37:32,28.24029922485352 +2021-03-16 17:47:20,28.24029922485352 +2021-03-16 17:57:08,28.24029922485352 +2021-03-16 18:06:56,28.24029922485352 +2021-03-16 18:16:44,28.24029922485352 +2021-03-16 18:26:31,28.24029922485352 +2021-03-16 18:36:19,28.24029922485352 +2021-03-16 18:46:07,28.24029922485352 +2021-03-16 18:55:55,28.24029922485352 +2021-03-16 19:05:43,28.24029922485352 +2021-03-16 19:15:31,28.24029922485352 +2021-03-16 19:25:19,28.24029922485352 +2021-03-16 19:35:07,28.24029922485352 +2021-03-16 19:44:55,28.24029922485352 +2021-03-16 19:54:43,28.24029922485352 +2021-03-16 20:04:31,28.24029922485352 +2021-03-16 20:14:19,28.24029922485352 +2021-03-16 20:24:07,28.24029922485352 +2021-03-16 20:33:55,28.24029922485352 +2021-03-16 20:43:43,28.24029922485352 +2021-03-16 20:53:31,28.24029922485352 +2021-03-16 21:03:18,28.24029922485352 +2021-03-16 21:13:06,28.24029922485352 +2021-03-16 21:22:54,28.24029922485352 +2021-03-16 21:32:42,28.24029922485352 +2021-03-16 21:42:30,28.24029922485352 +2021-03-16 21:52:18,28.24029922485352 +2021-03-16 22:02:06,28.24029922485352 +2021-03-16 22:11:54,28.24029922485352 +2021-03-16 22:21:41,28.24029922485352 +2021-03-16 22:31:29,28.24029922485352 +2021-03-16 22:41:17,28.24029922485352 +2021-03-16 22:51:05,28.24029922485352 +2021-03-16 23:00:53,28.24029922485352 +2021-03-16 23:10:41,28.24029922485352 +2021-03-16 23:20:29,28.24029922485352 +2021-03-16 23:30:16,28.24029922485352 +2021-03-16 23:40:04,28.24029922485352 +2021-03-16 23:49:52,28.24029922485352 +2021-03-16 23:59:40,28.24029922485352 +2021-03-17 00:09:28,28.24029922485352 +2021-03-17 00:19:16,28.24029922485352 +2021-03-17 00:29:04,28.24029922485352 +2021-03-17 00:38:52,28.24029922485352 +2021-03-17 00:48:40,28.24029922485352 +2021-03-17 00:58:27,28.24029922485352 +2021-03-17 01:08:15,28.24029922485352 +2021-03-17 01:18:03,28.24029922485352 +2021-03-17 01:27:51,28.24029922485352 +2021-03-17 01:37:39,28.24029922485352 +2021-03-17 01:47:27,28.24029922485352 +2021-03-17 01:57:15,28.24029922485352 +2021-03-17 02:07:02,28.24029922485352 +2021-03-17 02:16:50,28.24029922485352 +2021-03-17 02:26:38,28.24029922485352 +2021-03-17 02:36:26,28.24029922485352 +2021-03-17 02:46:14,28.24029922485352 +2021-03-17 02:56:02,28.24029922485352 +2021-03-17 03:05:50,28.24029922485352 +2021-03-17 03:15:38,28.24029922485352 +2021-03-17 03:25:26,28.24029922485352 +2021-03-17 03:35:14,28.24029922485352 +2021-03-17 03:45:01,28.24029922485352 +2021-03-17 03:54:49,28.24029922485352 +2021-03-17 04:04:37,28.24029922485352 +2021-03-17 04:14:25,28.24029922485352 +2021-03-17 04:24:13,28.24029922485352 +2021-03-17 04:34:01,28.24029922485352 +2021-03-17 04:43:49,28.242799758911133 +2021-03-17 04:53:37,28.24029922485352 +2021-03-17 05:03:25,28.24029922485352 +2021-03-17 05:13:13,28.24029922485352 +2021-03-17 05:23:01,28.24029922485352 +2021-03-17 05:32:49,28.24029922485352 +2021-03-17 05:42:37,28.24029922485352 +2021-03-17 05:52:25,28.24029922485352 +2021-03-17 06:02:12,28.24029922485352 +2021-03-17 06:12:00,28.24029922485352 +2021-03-17 06:21:48,28.24029922485352 +2021-03-17 06:31:36,28.293500900268555 +2021-03-17 06:41:24,28.293500900268555 +2021-03-17 06:51:12,28.24029922485352 +2021-03-17 07:01:00,28.293500900268555 +2021-03-17 07:10:48,28.24029922485352 +2021-03-17 07:20:37,28.242799758911133 +2021-03-17 07:30:29,28.242799758911133 +2021-03-17 07:40:17,28.242799758911133 +2021-03-17 07:50:05,28.24029922485352 +2021-03-17 07:59:53,28.24029922485352 +2021-03-17 08:09:41,28.24029922485352 +2021-03-17 08:19:29,28.24029922485352 +2021-03-17 08:29:17,28.24029922485352 +2021-03-17 08:39:05,28.24029922485352 +2021-03-17 08:48:54,28.24029922485352 +2021-03-17 08:58:47,28.242799758911133 +2021-03-17 09:08:35,28.24029922485352 +2021-03-17 09:18:23,28.24029922485352 +2021-03-17 09:28:11,28.24029922485352 +2021-03-17 09:37:59,28.24029922485352 +2021-03-17 09:47:47,28.24029922485352 +2021-03-17 09:57:35,28.24029922485352 +2021-03-17 10:07:23,28.242799758911133 +2021-03-17 10:17:11,28.24029922485352 +2021-03-17 10:26:59,28.24029922485352 +2021-03-17 10:36:47,28.242799758911133 +2021-03-17 10:46:36,28.242799758911133 +2021-03-17 10:56:30,28.24029922485352 +2021-03-17 11:06:17,28.24029922485352 +2021-03-17 11:16:05,28.24029922485352 +2021-03-17 11:25:53,28.24029922485352 +2021-03-17 11:35:41,28.24029922485352 +2021-03-17 11:45:29,28.24029922485352 +2021-03-17 11:55:17,28.24029922485352 +2021-03-17 12:05:05,28.242799758911133 +2021-03-17 12:14:53,28.242799758911133 +2021-03-17 12:24:41,28.242799758911133 +2021-03-17 12:34:29,28.24029922485352 +2021-03-17 12:44:17,28.24029922485352 +2021-03-17 12:54:05,28.24029922485352 +2021-03-17 13:03:53,28.242799758911133 +2021-03-17 13:13:41,28.24029922485352 +2021-03-17 13:23:29,28.242799758911133 +2021-03-17 13:33:17,28.24029922485352 +2021-03-17 13:43:05,28.24029922485352 +2021-03-17 13:52:53,28.242799758911133 +2021-03-17 14:02:41,28.242799758911133 +2021-03-17 14:12:29,28.24029922485352 +2021-03-17 14:22:17,28.242799758911133 +2021-03-17 14:32:05,28.24029922485352 +2021-03-17 14:41:53,28.24029922485352 +2021-03-17 14:51:41,28.242799758911133 +2021-03-17 15:01:29,28.24029922485352 +2021-03-17 15:11:17,28.242799758911133 +2021-03-17 15:21:05,28.13409996032715 +2021-03-17 15:30:53,28.242799758911133 +2021-03-17 15:40:41,28.242799758911133 +2021-03-17 15:50:29,28.293500900268555 +2021-03-17 16:00:17,28.29610061645508 +2021-03-17 16:10:05,28.24029922485352 +2021-03-17 16:19:53,28.24029922485352 +2021-03-17 16:29:41,28.242799758911133 +2021-03-17 16:39:29,28.24029922485352 +2021-03-17 16:49:18,28.242799758911133 +2021-03-17 16:59:06,28.24029922485352 +2021-03-17 17:08:54,28.24029922485352 +2021-03-17 17:18:42,28.242799758911133 +2021-03-17 17:28:29,28.242799758911133 +2021-03-17 17:38:17,28.242799758911133 +2021-03-17 17:48:05,28.24029922485352 +2021-03-17 17:57:53,28.242799758911133 +2021-03-17 18:07:41,28.24029922485352 +2021-03-17 18:17:29,28.242799758911133 +2021-03-17 18:27:17,28.24029922485352 +2021-03-17 18:37:05,28.29610061645508 +2021-03-17 18:46:53,28.24029922485352 +2021-03-17 18:56:41,28.24029922485352 +2021-03-17 19:06:29,28.242799758911133 +2021-03-17 19:16:17,28.242799758911133 +2021-03-17 19:26:05,28.242799758911133 +2021-03-17 19:35:53,28.242799758911133 +2021-03-17 19:45:41,28.242799758911133 +2021-03-17 19:55:29,28.242799758911133 +2021-03-17 20:05:17,28.242799758911133 +2021-03-17 20:15:05,28.24029922485352 +2021-03-17 20:24:53,28.242799758911133 +2021-03-17 20:34:41,28.242799758911133 +2021-03-17 20:44:29,28.24029922485352 +2021-03-17 20:54:18,28.24029922485352 +2021-03-17 21:04:06,28.29610061645508 +2021-03-17 21:13:54,28.24029922485352 +2021-03-17 21:23:42,28.24029922485352 +2021-03-17 21:33:30,28.24029922485352 +2021-03-17 21:43:18,28.242799758911133 +2021-03-17 21:53:05,28.242799758911133 +2021-03-17 22:02:53,28.293500900268555 +2021-03-17 22:12:41,28.293500900268555 +2021-03-17 22:22:29,28.29610061645508 +2021-03-17 22:32:17,28.242799758911133 +2021-03-17 22:42:05,28.24029922485352 +2021-03-17 22:51:53,28.242799758911133 +2021-03-17 23:01:41,28.24029922485352 +2021-03-17 23:11:29,28.242799758911133 +2021-03-17 23:21:17,28.24029922485352 +2021-03-17 23:31:04,28.400299072265625 +2021-03-17 23:40:51,28.242799758911133 +2021-03-17 23:50:39,28.242799758911133 +2021-03-18 00:00:26,28.242799758911133 +2021-03-18 00:10:14,28.24029922485352 +2021-03-18 00:20:02,28.29610061645508 +2021-03-18 00:29:50,28.242799758911133 +2021-03-18 00:39:38,28.242799758911133 +2021-03-18 00:49:25,28.242799758911133 +2021-03-18 00:59:13,28.242799758911133 +2021-03-18 01:09:02,28.242799758911133 +2021-03-18 01:18:49,28.237699508666992 +2021-03-18 01:28:37,28.29610061645508 +2021-03-18 01:38:25,28.24029922485352 +2021-03-18 01:48:13,28.291000366210938 +2021-03-18 01:58:01,28.24029922485352 +2021-03-18 02:07:49,28.24029922485352 +2021-03-18 02:17:37,28.242799758911133 +2021-03-18 02:27:25,28.24029922485352 +2021-03-18 02:37:13,28.24029922485352 +2021-03-18 02:47:01,28.081199645996094 +2021-03-18 02:56:49,28.237699508666992 +2021-03-18 03:06:37,28.179500579833984 +2021-03-18 03:16:25,28.24029922485352 +2021-03-18 03:26:13,28.50749969482422 +2021-03-18 03:36:01,28.346900939941406 +2021-03-18 03:45:49,28.293500900268555 +2021-03-18 03:55:37,28.081199645996094 +2021-03-18 04:05:25,28.24029922485352 +2021-03-18 04:15:13,28.34939956665039 +2021-03-18 04:25:01,28.293500900268555 +2021-03-18 04:34:49,28.242799758911133 +2021-03-18 04:44:37,28.293500900268555 +2021-03-18 04:54:25,28.242799758911133 +2021-03-18 05:04:13,28.18720054626465 +2021-03-18 05:14:01,28.24029922485352 +2021-03-18 05:23:49,28.08370018005371 +2021-03-18 05:33:37,28.24029922485352 +2021-03-18 05:43:25,28.24029922485352 +2021-03-18 05:53:13,28.24029922485352 +2021-03-18 06:03:01,28.293500900268555 +2021-03-18 06:12:49,28.24029922485352 +2021-03-18 06:22:37,28.293500900268555 +2021-03-18 06:32:25,28.293500900268555 +2021-03-18 06:42:14,28.24029922485352 +2021-03-18 06:52:02,28.293500900268555 +2021-03-18 07:01:50,28.24029922485352 +2021-03-18 07:11:38,28.293500900268555 +2021-03-18 07:21:26,28.346900939941406 +2021-03-18 07:31:13,28.24029922485352 +2021-03-18 07:41:01,28.24029922485352 +2021-03-18 07:50:48,28.24029922485352 +2021-03-18 08:00:36,28.24029922485352 +2021-03-18 08:10:24,28.24029922485352 +2021-03-18 08:20:12,28.24029922485352 +2021-03-18 08:30:00,28.242799758911133 +2021-03-18 08:39:48,28.24029922485352 +2021-03-18 08:49:36,28.293500900268555 +2021-03-18 08:59:23,28.293500900268555 +2021-03-18 09:09:11,28.24029922485352 +2021-03-18 09:18:59,28.293500900268555 +2021-03-18 09:28:47,28.24029922485352 +2021-03-18 09:38:35,28.24029922485352 +2021-03-18 09:48:23,28.293500900268555 +2021-03-18 09:58:11,28.29610061645508 +2021-03-18 10:07:59,28.293500900268555 +2021-03-18 10:17:47,28.293500900268555 +2021-03-18 10:27:35,28.24029922485352 +2021-03-18 10:37:23,28.24029922485352 +2021-03-18 10:47:11,28.24029922485352 +2021-03-18 10:56:59,28.24029922485352 +2021-03-18 11:06:47,28.29610061645508 +2021-03-18 11:16:35,28.29610061645508 +2021-03-18 11:26:23,28.293500900268555 +2021-03-18 11:36:11,28.293500900268555 +2021-03-18 11:45:59,28.24029922485352 +2021-03-18 11:55:47,28.29610061645508 +2021-03-18 12:05:35,28.29610061645508 +2021-03-18 12:15:23,28.293500900268555 +2021-03-18 12:25:11,28.293500900268555 +2021-03-18 12:34:59,28.24029922485352 +2021-03-18 12:44:48,28.24029922485352 +2021-03-18 12:54:41,28.242799758911133 +2021-03-18 13:04:28,28.24029922485352 +2021-03-18 13:14:16,28.24029922485352 +2021-03-18 13:24:04,28.24029922485352 +2021-03-18 13:33:52,28.24029922485352 +2021-03-18 13:43:40,28.242799758911133 +2021-03-18 13:53:28,28.24029922485352 +2021-03-18 14:03:16,28.242799758911133 +2021-03-18 14:13:04,28.29610061645508 +2021-03-18 14:22:52,28.242799758911133 +2021-03-18 14:32:40,28.24029922485352 +2021-03-18 14:42:28,28.242799758911133 +2021-03-18 14:52:16,28.242799758911133 +2021-03-18 15:02:04,28.242799758911133 +2021-03-18 15:11:52,28.293500900268555 +2021-03-18 15:21:40,28.29610061645508 +2021-03-18 15:31:28,28.24029922485352 +2021-03-18 15:41:16,28.29610061645508 +2021-03-18 15:51:04,28.29610061645508 +2021-03-18 16:00:52,28.242799758911133 +2021-03-18 16:10:40,28.136699676513672 +2021-03-18 16:20:28,28.242799758911133 +2021-03-18 16:30:16,28.29610061645508 +2021-03-18 16:40:04,28.136699676513672 +2021-03-18 16:49:52,28.24029922485352 +2021-03-18 16:59:40,28.13409996032715 +2021-03-18 17:09:28,28.081199645996094 +2021-03-18 17:19:15,28.136699676513672 +2021-03-18 17:29:03,28.24029922485352 +2021-03-18 17:38:51,28.13409996032715 +2021-03-18 17:48:39,28.136699676513672 +2021-03-18 17:58:27,28.136699676513672 +2021-03-18 18:08:15,28.136699676513672 +2021-03-18 18:18:03,28.136699676513672 +2021-03-18 18:27:51,28.13409996032715 +2021-03-18 18:37:39,28.081199645996094 +2021-03-18 18:47:27,28.13409996032715 +2021-03-18 18:57:15,28.08370018005371 +2021-03-18 19:07:02,28.13409996032715 +2021-03-18 19:16:50,28.136699676513672 +2021-03-18 19:26:38,28.136699676513672 +2021-03-18 19:36:25,28.13409996032715 +2021-03-18 19:46:13,28.136699676513672 +2021-03-18 19:56:01,28.13409996032715 +2021-03-18 20:05:49,28.136699676513672 +2021-03-18 20:15:36,28.081199645996094 +2021-03-18 20:25:24,28.136699676513672 +2021-03-18 20:35:12,28.136699676513672 +2021-03-18 20:45:00,28.13409996032715 +2021-03-18 20:54:48,28.13409996032715 +2021-03-18 21:04:36,28.08370018005371 +2021-03-18 21:14:24,28.136699676513672 +2021-03-18 21:24:12,28.136699676513672 +2021-03-18 21:34:00,28.136699676513672 +2021-03-18 21:43:48,28.13409996032715 +2021-03-18 21:53:36,28.13409996032715 +2021-03-18 22:03:24,28.13409996032715 +2021-03-18 22:13:12,28.136699676513672 +2021-03-18 22:23:00,28.13409996032715 +2021-03-18 22:32:48,28.08370018005371 +2021-03-18 22:42:36,28.13409996032715 +2021-03-18 22:52:24,28.136699676513672 +2021-03-18 23:02:13,28.13409996032715 +2021-03-18 23:12:01,28.13409996032715 +2021-03-18 23:21:49,28.13409996032715 +2021-03-18 23:31:37,28.136699676513672 +2021-03-18 23:41:25,28.13409996032715 +2021-03-18 23:51:12,28.081199645996094 +2021-03-19 00:01:00,28.081199645996094 +2021-03-19 00:10:48,28.136699676513672 +2021-03-19 00:20:36,28.136699676513672 +2021-03-19 00:30:24,28.13409996032715 +2021-03-19 00:40:12,28.13409996032715 +2021-03-19 00:50:00,28.13409996032715 +2021-03-19 00:59:48,28.081199645996094 +2021-03-19 01:09:36,28.136699676513672 +2021-03-19 01:19:24,28.13409996032715 +2021-03-19 01:29:12,28.08370018005371 +2021-03-19 01:39:00,28.13409996032715 +2021-03-19 01:48:47,28.13409996032715 +2021-03-19 01:58:35,28.13409996032715 +2021-03-19 02:08:23,28.13409996032715 +2021-03-19 02:18:11,28.13409996032715 +2021-03-19 02:27:59,28.136699676513672 +2021-03-19 02:37:47,28.136699676513672 +2021-03-19 02:47:34,28.136699676513672 +2021-03-19 02:57:22,28.136699676513672 +2021-03-19 03:07:10,28.13409996032715 +2021-03-19 03:16:58,28.13409996032715 +2021-03-19 03:26:46,28.13409996032715 +2021-03-19 03:36:34,28.13409996032715 +2021-03-19 03:46:21,28.13409996032715 +2021-03-19 03:56:09,28.136699676513672 +2021-03-19 04:05:57,28.13409996032715 +2021-03-19 04:15:45,28.136699676513672 +2021-03-19 04:25:32,28.136699676513672 +2021-03-19 04:35:20,28.13409996032715 +2021-03-19 04:45:08,28.13409996032715 +2021-03-19 04:54:56,28.136699676513672 +2021-03-19 05:04:44,28.136699676513672 +2021-03-19 05:14:31,28.136699676513672 +2021-03-19 05:24:19,28.13409996032715 +2021-03-19 05:34:07,28.136699676513672 +2021-03-19 05:43:54,28.13409996032715 +2021-03-19 05:53:42,28.13409996032715 +2021-03-19 06:03:30,28.13409996032715 +2021-03-19 06:13:18,28.136699676513672 +2021-03-19 06:23:06,28.13409996032715 +2021-03-19 06:32:53,28.13409996032715 +2021-03-19 06:42:41,28.13409996032715 +2021-03-19 06:52:29,28.13409996032715 +2021-03-19 07:02:17,28.13409996032715 +2021-03-19 07:12:05,28.13409996032715 +2021-03-19 07:21:52,28.13409996032715 +2021-03-19 07:31:40,28.13409996032715 +2021-03-19 07:41:28,28.13409996032715 +2021-03-19 07:51:16,28.136699676513672 +2021-03-19 08:01:04,28.081199645996094 +2021-03-19 08:10:51,28.136699676513672 +2021-03-19 08:20:39,28.13409996032715 +2021-03-19 08:30:27,28.136699676513672 +2021-03-19 08:40:15,28.136699676513672 +2021-03-19 08:50:03,28.13409996032715 +2021-03-19 08:59:50,28.13409996032715 +2021-03-19 09:09:38,28.13409996032715 +2021-03-19 09:19:26,28.13409996032715 +2021-03-19 09:29:13,28.13409996032715 +2021-03-19 09:39:01,28.13409996032715 +2021-03-19 09:48:49,28.13409996032715 +2021-03-19 09:58:37,28.13409996032715 +2021-03-19 10:08:25,28.13409996032715 +2021-03-19 10:18:13,28.242799758911133 +2021-03-19 10:28:01,28.13409996032715 +2021-03-19 10:37:48,28.13409996032715 +2021-03-19 10:47:36,28.13409996032715 +2021-03-19 10:57:24,28.13409996032715 +2021-03-19 11:07:12,28.13409996032715 +2021-03-19 11:17:00,28.13409996032715 +2021-03-19 11:26:48,28.13409996032715 +2021-03-19 11:36:36,28.13409996032715 +2021-03-19 11:46:24,28.13409996032715 +2021-03-19 11:56:12,28.081199645996094 +2021-03-19 12:06:00,28.13409996032715 +2021-03-19 12:15:48,28.081199645996094 +2021-03-19 12:25:36,28.13409996032715 +2021-03-19 12:35:24,28.18720054626465 +2021-03-19 12:45:12,28.13409996032715 +2021-03-19 12:55:00,28.13409996032715 +2021-03-19 13:04:48,28.13409996032715 +2021-03-19 13:14:36,28.13409996032715 +2021-03-19 13:24:24,28.13409996032715 +2021-03-19 13:34:12,28.13409996032715 +2021-03-19 13:44:00,28.13409996032715 +2021-03-19 13:53:48,28.13409996032715 +2021-03-19 14:03:37,28.13409996032715 +2021-03-19 14:13:30,28.13409996032715 +2021-03-19 14:23:18,28.13409996032715 +2021-03-19 14:33:05,28.13409996032715 +2021-03-19 14:42:53,28.13409996032715 +2021-03-19 14:52:42,28.13409996032715 +2021-03-19 15:02:30,28.081199645996094 +2021-03-19 15:12:18,28.13409996032715 +2021-03-19 15:22:06,28.13409996032715 +2021-03-19 15:31:54,23.39109992980957 +2021-03-19 15:31:55,28.13409996032715 +2021-03-19 15:41:48,28.081199645996094 +2021-03-19 15:51:36,28.13409996032715 +2021-03-19 16:01:24,28.13409996032715 +2021-03-19 16:11:12,28.13409996032715 +2021-03-19 16:21:00,28.13409996032715 +2021-03-19 16:30:48,28.13409996032715 +2021-03-19 16:40:36,28.13409996032715 +2021-03-19 16:50:24,28.13409996032715 +2021-03-19 17:00:12,28.13409996032715 +2021-03-19 17:10:00,28.13409996032715 +2021-03-19 17:19:48,28.13409996032715 +2021-03-19 17:29:36,28.13409996032715 +2021-03-19 17:39:24,28.136699676513672 +2021-03-19 17:49:11,28.13409996032715 +2021-03-19 17:58:59,28.13409996032715 +2021-03-19 18:08:47,28.13409996032715 +2021-03-19 18:18:35,28.08370018005371 +2021-03-19 18:28:23,28.13409996032715 +2021-03-19 18:38:11,28.13409996032715 +2021-03-19 18:47:59,28.136699676513672 +2021-03-19 18:58:01,28.18720054626465 +2021-03-19 19:08:06,28.13159942626953 +2021-03-19 19:18:09,28.18720054626465 +2021-03-19 19:28:12,28.18720054626465 +2021-03-19 19:38:16,28.184600830078125 +2021-03-19 19:48:22,28.13159942626953 +2021-03-19 19:58:34,28.02589988708496 +2021-03-19 20:08:37,28.184600830078125 +2021-03-19 20:18:25,28.13409996032715 +2021-03-19 20:28:26,28.18720054626465 +2021-03-19 20:38:37,28.02589988708496 +2021-03-19 20:48:46,28.02589988708496 +2021-03-19 20:58:56,28.02840042114257 +2021-03-19 21:09:08,27.97570037841797 +2021-03-19 21:19:13,28.081199645996094 +2021-03-19 21:29:16,28.07869911193848 +2021-03-19 21:39:24,28.07869911193848 +2021-03-19 21:49:48,28.02589988708496 +2021-03-19 21:59:57,28.184600830078125 +2021-03-19 22:10:06,28.02589988708496 +2021-03-19 22:20:13,28.07869911193848 +2021-03-19 22:30:22,28.184600830078125 +2021-03-19 22:40:34,27.97570037841797 +2021-03-19 22:50:42,28.02589988708496 +2021-03-19 23:00:47,28.07869911193848 +2021-03-19 23:10:58,28.02589988708496 +2021-03-19 23:21:09,28.02589988708496 +2021-03-19 23:31:44,29.12339973449707 +2021-03-19 23:42:05,27.81559944152832 +2021-03-19 23:52:48,27.500900268554688 +2021-03-20 00:03:38,27.65660095214844 +2021-03-20 00:14:29,27.343599319458008 +2021-03-20 00:25:28,27.24090003967285 +2021-03-20 00:36:15,28.359899520874023 +2021-03-20 00:46:49,27.39509963989257 +2021-03-20 00:57:16,28.63349914550781 +2021-03-20 01:07:53,27.65660095214844 +2021-03-20 01:18:36,27.39509963989257 +2021-03-20 01:29:49,27.24090003967285 +2021-03-20 01:40:47,28.62829971313477 +2021-03-20 01:51:14,28.67970085144043 +2021-03-20 02:01:51,28.52059936523437 +2021-03-20 02:12:25,28.5231990814209 +2021-03-20 02:23:06,28.40830039978028 +2021-03-20 02:34:01,30.876399993896484 +2021-03-20 02:44:56,28.5718002319336 +2021-03-20 02:55:26,28.40570068359375 +2021-03-20 03:06:01,28.40570068359375 +2021-03-20 03:17:06,28.304000854492188 +2021-03-20 03:28:13,31.58289909362793 +2021-03-20 03:39:46,37.68379974365234 +2021-03-20 03:51:02,28.248199462890625 +2021-03-20 04:02:35,28.25079917907715 +2021-03-20 04:14:45,29.39679908752441 +2021-03-20 04:27:44,49.9634017944336 +2021-03-20 04:41:15,179.1136016845703 +2021-03-20 04:54:19,142.04200744628906 +2021-03-20 05:07:02,137.27149963378906 +2021-03-20 05:21:35,138.19410705566406 +2021-03-20 05:41:59,154.11680603027344 +2021-03-20 06:03:09,150.5675048828125 +2021-03-20 06:58:10,145.02749633789062 +2021-03-20 07:13:49,152.8831024169922 +2021-03-20 07:26:16,156.58790588378906 +2021-03-20 07:40:37,166.1461944580078 +2021-03-20 07:54:59,164.6905975341797 +2021-03-20 08:40:41,155.3188934326172 diff --git a/sphinx-doc/ressources/data/hydro_config.csv b/sphinx-doc/ressources/data/hydro_config.csv new file mode 100644 index 0000000000000000000000000000000000000000..3589f46f9ccb2d2d58defb85ed6da900ccd165f1 --- /dev/null +++ b/sphinx-doc/ressources/data/hydro_config.csv @@ -0,0 +1,26 @@ +varname ; test +#---------------;--------------------------------------- +level_raw ; flagRange(min=0) +water_temp_raw ; flagRange(min=-1) +sak254_raw ; flagRange(min=0, max=70) +level_raw ; linear(target='level', freq='15min') +water_temp_raw ; linear(target='water_temp', freq='15min') +sak254_raw ; linear(target='sac254, freq='15min') +sak254 ; correctDrift(target='sak254_corr', maintenance_field='maint', model='exponential') +sak254_corr ; flagManual(mdata='maint') +level ; transform(target='level_norm', func='zNorm', freq='20D') +sac254_corr ; transform(target='sac254_norm', func='zNorm', freq='20D') +water_temp ; transform('water_temp_norm', func='zNorm', freq='20D') +level_norm, sac_corr_norm, water_temp_norm ; scores.assignKNNScore(target='kNN_scores', freq='20D') +kNN_scores ; flagByStray(freq='20D') +level ; genericFlag(func=lambda kNNscores: isFlagged(kNNscores)) +sac25_corr ; genericFlag(func=lambda kNNscores: isFlagged(kNNscores)) +water_temp ; genericFlag(func=lambda kNNscores: isFlagged(kNNscores)) +level ; concatFlags(target='level_raw', 'inverse_interpolation') +sac_corr ; concatFlags(target='sac254_raw', 'inverse_interpolation') +water_temp ; concatFlags(target='water_temp_raw', 'inverse_interpolation') + + + + + diff --git a/sphinx-doc/ressources/data/hydro_data.csv b/sphinx-doc/ressources/data/hydro_data.csv new file mode 100644 index 0000000000000000000000000000000000000000..c27a60f4493e06bcddbe1a10894691bdd1be7968 --- /dev/null +++ b/sphinx-doc/ressources/data/hydro_data.csv @@ -0,0 +1,70164 @@ +Timestamp,sac254_raw,level_raw,water_temp_raw +2016-01-01 00:02:00,18.45,103.29,4.84 +2016-01-01 00:17:00,18.6437,103.285,4.82 +2016-01-01 00:32:00,18.9887,103.253,4.81 +2016-01-01 00:47:00,18.8388,103.21,4.8 +2016-01-01 01:02:00,18.7438,103.167,4.78 +2016-01-01 01:17:00,17.4262,103.12,4.76 +2016-01-01 01:32:00,18.11,103.055,4.72 +2016-01-01 01:47:00,21.2138,103.003,4.71 +2016-01-01 02:02:00,18.4013,102.947,4.68 +2016-01-01 02:17:00,17.6212,102.9,4.66 +2016-01-01 02:32:00,18.1125,102.832,4.66 +2016-01-01 02:47:00,17.6175,102.76,4.62 +2016-01-01 03:02:00,19.5612,102.697,4.59 +2016-01-01 03:17:00,19.9912,102.622,4.58 +2016-01-01 03:32:00,18.5375,102.58,4.57 +2016-01-01 03:47:00,20.405,102.522,4.55 +2016-01-01 04:02:00,18.61,102.462,4.53 +2016-01-01 04:17:00,18.5625,102.427,4.52 +2016-01-01 04:32:00,17.7738,102.375,4.49 +2016-01-01 04:47:00,19.8725,102.315,4.47 +2016-01-01 05:02:00,20.405,102.287,4.46 +2016-01-01 05:17:00,20.295,102.317,4.44 +2016-01-01 05:32:00,15.7825,102.332,4.42 +2016-01-01 05:47:00,19.5187,102.365,4.4 +2016-01-01 06:02:00,18.9887,102.42,4.38 +2016-01-01 06:17:00,20.25,102.435,4.36 +2016-01-01 06:32:00,20.1437,102.438,4.35 +2016-01-01 06:47:00,20.05,102.457,4.34 +2016-01-01 07:02:00,19.2738,102.44,4.33 +2016-01-01 07:17:00,18.2588,102.462,4.3 +2016-01-01 07:32:00,19.7113,102.44,4.28 +2016-01-01 07:47:00,16.1225,102.455,4.26 +2016-01-01 08:02:00,17.1325,102.455,4.24 +2016-01-01 08:17:00,16.5025,102.467,4.23 +2016-01-01 08:32:00,18.74,102.503,4.22 +2016-01-01 08:47:00,18.4463,102.53,4.21 +2016-01-01 09:02:00,20.915,102.59,4.19 +2016-01-01 09:17:00,18.9362,102.652,4.17 +2016-01-01 09:32:00,19.47,102.72,4.16 +2016-01-01 09:47:00,17.0338,102.76,4.16 +2016-01-01 10:02:00,19.5212,102.822,4.15 +2016-01-01 10:17:00,18.3962,102.855,4.16 +2016-01-01 10:32:00,19.9013,102.912,4.17 +2016-01-01 10:47:00,17.0287,102.995,4.16 +2016-01-01 11:02:00,21.0163,103.085,4.16 +2016-01-01 11:17:00,19.2175,103.21,4.17 +2016-01-01 11:32:00,18.5987,103.352,4.17 +2016-01-01 11:47:00,19.2237,103.505,4.15 +2016-01-01 12:02:00,19.515,103.658,4.14 +2016-01-01 12:17:00,20.3913,103.777,4.15 +2016-01-01 12:32:00,19.0837,103.932,4.16 +2016-01-01 12:47:00,19.0312,104.065,4.18 +2016-01-01 13:02:00,19.3662,104.215,4.19 +2016-01-01 13:17:00,16.935,104.347,4.19 +2016-01-01 13:32:00,19.1287,104.467,4.2 +2016-01-01 13:47:00,22.1537,104.592,4.18 +2016-01-01 14:02:00,16.5075,104.71,4.19 +2016-01-01 14:17:00,16.65,104.842,4.18 +2016-01-01 14:32:00,19.1738,104.942,4.16 +2016-01-01 14:47:00,20.0475,105.055,4.15 +2016-01-01 15:02:00,17.8662,105.158,4.14 +2016-01-01 15:17:00,19.2738,105.26,4.16 +2016-01-01 15:32:00,19.2262,105.367,4.17 +2016-01-01 15:47:00,18.21,105.475,4.18 +2016-01-01 16:02:00,16.2138,105.572,4.19 +2016-01-01 16:17:00,18.2637,105.675,4.21 +2016-01-01 16:32:00,20.965,105.755,4.23 +2016-01-01 16:47:00,17.8675,105.845,4.26 +2016-01-01 17:02:00,18.4437,105.93,4.27 +2016-01-01 17:17:00,18.9388,106.06,4.29 +2016-01-01 17:32:00,18.7487,106.18,4.3 +2016-01-01 17:47:00,19.3675,106.315,4.31 +2016-01-01 18:02:00,17.865,106.427,4.33 +2016-01-01 18:17:00,17.0775,106.527,4.33 +2016-01-01 18:32:00,20.6312,106.63,4.34 +2016-01-01 18:47:00,20.7738,106.735,4.35 +2016-01-01 19:02:00,19.9562,106.822,4.36 +2016-01-01 19:17:00,19.3675,106.895,4.37 +2016-01-01 19:32:00,18.31,106.95,4.37 +2016-01-01 19:47:00,18.8388,107.027,4.38 +2016-01-01 20:02:00,19.1712,107.08,4.39 +2016-01-01 20:17:00,17.7188,107.143,4.41 +2016-01-01 20:32:00,18.6937,107.197,4.43 +2016-01-01 20:47:00,19.0362,107.24,4.43 +2016-01-01 21:02:00,17.9212,107.285,4.43 +2016-01-01 21:17:00,18.8425,107.32,4.44 +2016-01-01 21:32:00,19.6625,107.378,4.45 +2016-01-01 21:47:00,19.76,107.405,4.45 +2016-01-01 22:02:00,19.6625,107.45,4.46 +2016-01-01 22:17:00,18.7425,107.492,4.46 +2016-01-01 22:32:00,17.8187,107.527,4.44 +2016-01-01 22:47:00,19.32,107.56,4.42 +2016-01-01 23:02:00,18.7962,107.6,4.4 +2016-01-01 23:17:00,19.565,107.645,4.38 +2016-01-01 23:32:00,19.6125,107.695,4.37 +2016-01-01 23:47:00,18.1588,107.74,4.35 +2016-01-02 00:02:00,18.985,107.79,4.33 +2016-01-02 00:17:00,18.4025,107.832,4.33 +2016-01-02 00:32:00,20.535,107.867,4.32 +2016-01-02 00:47:00,20.7725,107.875,4.31 +2016-01-02 01:02:00,18.4013,107.917,4.3 +2016-01-02 01:17:00,19.66,107.917,4.28 +2016-01-02 01:32:00,20.0963,107.927,4.27 +2016-01-02 01:47:00,18.4013,107.917,4.27 +2016-01-02 02:02:00,17.8662,107.878,4.26 +2016-01-02 02:17:00,20.5362,107.86,4.25 +2016-01-02 02:32:00,17.9737,107.815,4.26 +2016-01-02 02:47:00,19.0863,107.8,4.26 +2016-01-02 03:02:00,16.0187,107.73,4.26 +2016-01-02 03:17:00,17.7675,107.692,4.25 +2016-01-02 03:32:00,19.27,107.632,4.26 +2016-01-02 03:47:00,18.595,107.602,4.25 +2016-01-02 04:02:00,18.9875,107.557,4.25 +2016-01-02 04:17:00,18.0187,107.495,4.24 +2016-01-02 04:32:00,18.12,107.467,4.26 +2016-01-02 04:47:00,18.695,107.402,4.26 +2016-01-02 05:02:00,19.2712,107.352,4.26 +2016-01-02 05:17:00,18.9362,107.325,4.26 +2016-01-02 05:32:00,16.3112,107.33,4.25 +2016-01-02 05:47:00,17.13,107.345,4.25 +2016-01-02 06:02:00,18.9337,107.355,4.24 +2016-01-02 06:17:00,18.45,107.375,4.23 +2016-01-02 06:32:00,19.1287,107.37,4.22 +2016-01-02 06:47:00,18.5912,107.393,4.21 +2016-01-02 07:02:00,19.8562,107.355,4.2 +2016-01-02 07:17:00,19.6612,107.31,4.19 +2016-01-02 07:32:00,19.905,107.23,4.17 +2016-01-02 07:47:00,18.3525,107.137,4.18 +2016-01-02 08:02:00,18.0625,107.097,4.16 +2016-01-02 08:17:00,18.31,107.025,4.16 +2016-01-02 08:32:00,21.3175,106.99,4.15 +2016-01-02 08:47:00,19.6162,106.967,4.12 +2016-01-02 09:02:00,21.0675,106.972,4.11 +2016-01-02 09:17:00,19.4662,106.95,4.09 +2016-01-02 09:32:00,19.8575,106.952,4.08 +2016-01-02 09:47:00,21.115,106.932,4.06 +2016-01-02 10:02:00,20.0025,106.917,4.04 +2016-01-02 10:17:00,19.2225,106.878,4.02 +2016-01-02 10:32:00,20.7237,106.86,4.01 +2016-01-02 10:47:00,19.5163,106.783,4.0 +2016-01-02 11:02:00,18.4463,106.785,4.0 +2016-01-02 11:17:00,16.4112,106.745,3.99 +2016-01-02 11:32:00,19.3637,106.727,4.01 +2016-01-02 11:47:00,17.1275,106.7,4.0 +2016-01-02 12:02:00,20.0013,106.702,4.01 +2016-01-02 12:17:00,19.9062,106.745,3.98 +2016-01-02 12:32:00,20.0462,106.772,3.97 +2016-01-02 12:47:00,19.3187,106.822,3.97 +2016-01-02 13:02:00,19.1712,106.872,3.97 +2016-01-02 13:17:00,18.3512,106.902,3.95 +2016-01-02 13:32:00,19.1712,106.932,3.93 +2016-01-02 13:47:00,19.9037,106.938,3.92 +2016-01-02 14:02:00,21.465,106.95,3.91 +2016-01-02 14:17:00,16.555,106.957,3.93 +2016-01-02 14:32:00,18.2113,106.992,3.94 +2016-01-02 14:47:00,19.27,106.98,3.91 +2016-01-02 15:02:00,20.2425,106.992,3.89 +2016-01-02 15:17:00,19.8587,106.955,3.87 +2016-01-02 15:32:00,19.5163,106.957,3.86 +2016-01-02 15:47:00,18.745,106.925,3.86 +2016-01-02 16:02:00,18.1625,106.905,3.86 +2016-01-02 16:17:00,19.4137,106.878,3.85 +2016-01-02 16:32:00,19.9025,106.837,3.85 +2016-01-02 16:47:00,19.6612,106.787,3.83 +2016-01-02 17:02:00,16.5575,106.742,3.81 +2016-01-02 17:17:00,18.6912,106.682,3.8 +2016-01-02 17:32:00,19.4675,106.625,3.78 +2016-01-02 17:47:00,18.9887,106.57,3.78 +2016-01-02 18:02:00,19.7075,106.53,3.76 +2016-01-02 18:17:00,19.8562,106.462,3.74 +2016-01-02 18:32:00,19.5175,106.47,3.71 +2016-01-02 18:47:00,19.66,106.49,3.69 +2016-01-02 19:02:00,19.4137,106.48,3.67 +2016-01-02 19:17:00,18.69,106.49,3.66 +2016-01-02 19:32:00,19.9512,106.462,3.63 +2016-01-02 19:47:00,19.7637,106.423,3.61 +2016-01-02 20:02:00,21.0638,106.38,3.58 +2016-01-02 20:17:00,17.1787,106.35,3.56 +2016-01-02 20:32:00,20.915,106.275,3.55 +2016-01-02 20:47:00,19.2675,106.195,3.52 +2016-01-02 21:02:00,20.8675,106.12,3.51 +2016-01-02 21:17:00,19.175,105.987,3.5 +2016-01-02 21:32:00,20.2462,105.88,3.49 +2016-01-02 21:47:00,18.305,105.76,3.47 +2016-01-02 22:02:00,18.3962,105.628,3.45 +2016-01-02 22:17:00,21.4562,105.525,3.41 +2016-01-02 22:32:00,16.6012,105.415,3.38 +2016-01-02 22:47:00,22.7237,105.305,3.37 +2016-01-02 23:02:00,19.0825,105.192,3.35 +2016-01-02 23:17:00,18.4025,105.08,3.33 +2016-01-02 23:32:00,19.7625,104.997,3.31 +2016-01-02 23:47:00,20.3887,104.893,3.29 +2016-01-03 00:02:00,18.64,104.807,3.27 +2016-01-03 00:17:00,18.9863,104.7,3.24 +2016-01-03 00:32:00,18.9887,104.692,3.21 +2016-01-03 00:47:00,20.6762,104.685,3.19 +2016-01-03 01:02:00,20.3937,104.712,3.17 +2016-01-03 01:17:00,17.5275,104.702,3.14 +2016-01-03 01:32:00,21.015,104.717,3.11 +2016-01-03 01:47:00,22.5825,104.658,3.09 +2016-01-03 02:02:00,18.7438,104.63,3.06 +2016-01-03 02:17:00,19.5625,104.587,3.04 +2016-01-03 02:32:00,18.445,104.51,3.01 +2016-01-03 02:47:00,17.0263,104.447,2.98 +2016-01-03 03:02:00,21.6575,104.397,2.94 +2016-01-03 03:17:00,19.0825,104.315,2.91 +2016-01-03 03:32:00,21.1125,104.227,2.88 +2016-01-03 03:47:00,19.3175,104.155,2.86 +2016-01-03 04:02:00,19.2188,104.07,2.83 +2016-01-03 04:17:00,19.125,104.003,2.81 +2016-01-03 04:32:00,20.9163,103.938,2.78 +2016-01-03 04:47:00,20.0975,103.852,2.77 +2016-01-03 05:02:00,19.9987,103.825,2.75 +2016-01-03 05:17:00,20.34,103.76,2.73 +2016-01-03 05:32:00,19.4613,103.735,2.72 +2016-01-03 05:47:00,19.9487,103.667,2.7 +2016-01-03 06:02:00,20.63,103.622,2.68 +2016-01-03 06:17:00,20.095,103.56,2.66 +2016-01-03 06:32:00,20.045,103.57,2.63 +2016-01-03 06:47:00,19.27,103.57,2.61 +2016-01-03 07:02:00,20.5387,103.587,2.6 +2016-01-03 07:17:00,20.915,103.615,2.58 +2016-01-03 07:32:00,18.8375,103.637,2.56 +2016-01-03 07:47:00,21.1675,103.665,2.53 +2016-01-03 08:02:00,19.6612,103.71,2.52 +2016-01-03 08:17:00,20.7687,103.75,2.52 +2016-01-03 08:32:00,20.775,103.772,2.54 +2016-01-03 08:47:00,20.6362,103.72,2.51 +2016-01-03 09:02:00,19.7588,103.707,2.49 +2016-01-03 09:17:00,20.585,103.685,2.47 +2016-01-03 09:32:00,20.7725,103.59,2.45 +2016-01-03 09:47:00,21.1625,103.518,2.44 +2016-01-03 10:02:00,22.2425,103.452,2.41 +2016-01-03 10:17:00,20.8162,103.387,2.4 +2016-01-03 10:32:00,19.13,103.302,2.39 +2016-01-03 10:47:00,20.0,103.257,2.37 +2016-01-03 11:02:00,20.7237,103.225,2.35 +2016-01-03 11:17:00,20.7687,103.247,2.34 +2016-01-03 11:32:00,20.34,103.27,2.35 +2016-01-03 11:47:00,19.515,103.36,2.34 +2016-01-03 12:02:00,21.1637,103.402,2.34 +2016-01-03 12:17:00,21.07,103.405,2.33 +2016-01-03 12:32:00,20.1,103.372,2.33 +2016-01-03 12:47:00,20.2937,103.372,2.32 +2016-01-03 13:02:00,19.6113,103.335,2.3 +2016-01-03 13:17:00,20.8213,103.268,2.28 +2016-01-03 13:32:00,20.7213,103.227,2.26 +2016-01-03 13:47:00,20.8688,103.192,2.26 +2016-01-03 14:02:00,21.2663,103.112,2.24 +2016-01-03 14:17:00,21.415,103.055,2.22 +2016-01-03 14:32:00,21.17,103.022,2.2 +2016-01-03 14:47:00,22.2412,102.982,2.18 +2016-01-03 15:02:00,20.5375,102.96,2.18 +2016-01-03 15:17:00,21.1162,102.92,2.17 +2016-01-03 15:32:00,21.4625,102.878,2.16 +2016-01-03 15:47:00,20.8187,102.825,2.13 +2016-01-03 16:02:00,20.1987,102.765,2.13 +2016-01-03 16:17:00,21.2663,102.737,2.11 +2016-01-03 16:32:00,21.2663,102.682,2.11 +2016-01-03 16:47:00,19.1738,102.59,2.08 +2016-01-03 17:02:00,19.9975,102.562,2.07 +2016-01-03 17:17:00,22.485,102.438,2.04 +2016-01-03 17:32:00,19.7087,102.362,2.03 +2016-01-03 17:47:00,20.4863,102.262,2.0 +2016-01-03 18:02:00,21.8625,102.167,1.98 +2016-01-03 18:17:00,21.5125,102.128,1.96 +2016-01-03 18:32:00,21.215,102.072,1.94 +2016-01-03 18:47:00,20.7712,102.065,1.92 +2016-01-03 19:02:00,21.605,102.055,1.92 +2016-01-03 19:17:00,20.2962,102.027,1.91 +2016-01-03 19:32:00,22.8213,101.952,1.88 +2016-01-03 19:47:00,21.0187,101.923,1.89 +2016-01-03 20:02:00,21.755,101.832,1.86 +2016-01-03 20:17:00,20.1975,101.75,1.85 +2016-01-03 20:32:00,21.2625,101.645,1.85 +2016-01-03 20:47:00,20.4837,101.59,1.8 +2016-01-03 21:02:00,20.1987,101.545,1.78 +2016-01-03 21:17:00,22.1963,101.565,1.79 +2016-01-03 21:32:00,23.0137,101.632,1.79 +2016-01-03 21:47:00,21.56,101.7,1.8 +2016-01-03 22:02:00,20.5875,101.7,1.82 +2016-01-03 22:17:00,21.8587,101.735,1.77 +2016-01-03 22:32:00,20.535,101.69,1.72 +2016-01-03 22:47:00,22.335,101.628,1.7 +2016-01-03 23:02:00,20.485,101.557,1.67 +2016-01-03 23:17:00,20.675,101.415,1.62 +2016-01-03 23:32:00,23.015,101.367,1.58 +2016-01-03 23:47:00,21.515,101.312,1.56 +2016-01-04 00:02:00,22.485,101.315,1.55 +2016-01-04 00:17:00,21.6075,101.315,1.52 +2016-01-04 00:32:00,22.4362,101.39,1.5 +2016-01-04 00:47:00,21.8087,101.37,1.48 +2016-01-04 01:02:00,20.1937,101.35,1.44 +2016-01-04 01:17:00,20.965,101.305,1.4 +2016-01-04 01:32:00,21.9037,101.242,1.38 +2016-01-04 01:47:00,20.49,101.173,1.37 +2016-01-04 02:02:00,21.6575,101.112,1.35 +2016-01-04 02:17:00,22.1488,101.033,1.34 +2016-01-04 02:32:00,22.1475,101.007,1.31 +2016-01-04 02:47:00,22.0488,101.005,1.28 +2016-01-04 03:02:00,20.4388,101.025,1.26 +2016-01-04 03:17:00,21.2188,101.037,1.26 +2016-01-04 03:32:00,22.0075,101.04,1.24 +2016-01-04 03:47:00,22.385,100.947,1.21 +2016-01-04 04:02:00,20.8675,100.88,1.18 +2016-01-04 04:17:00,21.4137,100.792,1.17 +2016-01-04 04:32:00,21.855,100.7,1.16 +2016-01-04 04:47:00,22.8213,100.592,1.14 +2016-01-04 05:02:00,22.2012,100.5,1.12 +2016-01-04 05:17:00,22.3875,100.447,1.08 +2016-01-04 05:32:00,22.2937,100.42,1.06 +2016-01-04 05:47:00,21.215,100.365,1.06 +2016-01-04 06:02:00,22.0025,100.307,1.03 +2016-01-04 06:17:00,23.0587,100.177,1.0 +2016-01-04 06:32:00,21.1612,100.035,1.0 +2016-01-04 06:47:00,20.7188,99.9025,0.98 +2016-01-04 07:02:00,22.7325,99.73,0.96 +2016-01-04 07:17:00,22.73,99.61,0.93 +2016-01-04 07:32:00,23.155,99.48,0.92 +2016-01-04 07:47:00,20.7663,99.3875,0.91 +2016-01-04 08:02:00,20.9163,99.33,0.9 +2016-01-04 08:17:00,22.15,99.24,0.89 +2016-01-04 08:32:00,22.8712,99.1725,0.88 +2016-01-04 08:47:00,21.9037,99.1,0.87 +2016-01-04 09:02:00,22.2887,98.995,0.86 +2016-01-04 09:17:00,22.6362,98.8825,0.86 +2016-01-04 09:32:00,21.4125,98.785,0.86 +2016-01-04 09:47:00,22.8712,98.6625,0.85 +2016-01-04 10:02:00,23.9825,98.5075,0.84 +2016-01-04 10:17:00,23.35,98.3425,0.82 +2016-01-04 10:32:00,20.9613,98.085,0.81 +2016-01-04 10:47:00,22.6813,97.9275,0.79 +2016-01-04 11:02:00,22.4325,97.7275,0.79 +2016-01-04 11:17:00,24.2325,97.555,0.79 +2016-01-04 11:32:00,22.1888,97.42,0.77 +2016-01-04 11:47:00,24.3875,97.37,0.77 +2016-01-04 12:02:00,23.015,97.315,0.77 +2016-01-04 12:17:00,21.555,97.2725,0.76 +2016-01-04 12:32:00,22.3375,97.2525,0.76 +2016-01-04 12:47:00,22.6825,97.205,0.74 +2016-01-04 13:02:00,24.6888,97.125,0.71 +2016-01-04 13:17:00,23.0125,97.0825,0.7 +2016-01-04 13:32:00,22.7763,97.0525,0.7 +2016-01-04 13:47:00,22.3325,96.985,0.69 +2016-01-04 14:02:00,23.5013,96.94,0.67 +2016-01-04 14:17:00,23.1537,96.825,0.65 +2016-01-04 14:32:00,21.4137,96.6825,0.63 +2016-01-04 14:47:00,22.73,96.48,0.61 +2016-01-04 15:02:00,24.285,96.21,0.58 +2016-01-04 15:17:00,22.5825,95.92,0.58 +2016-01-04 15:32:00,20.8637,95.5575,0.59 +2016-01-04 15:47:00,23.06,95.1425,0.6 +2016-01-04 16:02:00,22.8237,94.6325,0.61 +2016-01-04 16:17:00,21.6062,94.0725,0.61 +2016-01-04 16:32:00,23.65,93.54,0.62 +2016-01-04 16:47:00,22.4325,92.995,0.61 +2016-01-04 17:02:00,21.9975,92.5325,0.58 +2016-01-04 17:17:00,22.6775,92.1425,0.58 +2016-01-04 17:32:00,22.58,91.865,0.55 +2016-01-04 17:47:00,22.2875,91.6525,0.53 +2016-01-04 18:02:00,20.865,91.52,0.53 +2016-01-04 18:17:00,21.32,91.4725,0.55 +2016-01-04 18:32:00,23.1562,91.465,0.54 +2016-01-04 18:47:00,22.2838,91.545,0.53 +2016-01-04 19:02:00,22.675,91.66,0.54 +2016-01-04 19:17:00,22.53,91.8,0.55 +2016-01-04 19:32:00,20.6738,91.9875,0.55 +2016-01-04 19:47:00,22.9725,92.17,0.55 +2016-01-04 20:02:00,21.5075,92.375,0.56 +2016-01-04 20:17:00,22.7312,92.595,0.54 +2016-01-04 20:32:00,21.6588,92.815,0.52 +2016-01-04 20:47:00,24.135,93.0,0.49 +2016-01-04 21:02:00,23.5912,93.22,0.48 +2016-01-04 21:17:00,21.0137,93.43,0.46 +2016-01-04 21:32:00,22.43,93.645,0.46 +2016-01-04 21:47:00,21.7562,93.8425,0.45 +2016-01-04 22:02:00,23.4012,94.055,0.45 +2016-01-04 22:17:00,22.335,94.2275,0.44 +2016-01-04 22:32:00,20.4375,94.4125,0.43 +2016-01-04 22:47:00,22.8675,94.5625,0.44 +2016-01-04 23:02:00,21.9975,94.725,0.44 +2016-01-04 23:17:00,21.2138,94.865,0.45 +2016-01-04 23:32:00,21.6537,94.9975,0.45 +2016-01-04 23:47:00,22.5287,95.095,0.43 +2016-01-05 00:02:00,20.9662,95.16,0.42 +2016-01-05 00:17:00,23.2975,95.155,0.43 +2016-01-05 00:32:00,22.2363,95.1525,0.43 +2016-01-05 00:47:00,21.7562,95.1675,0.43 +2016-01-05 01:02:00,19.8087,95.215,0.43 +2016-01-05 01:17:00,21.9013,95.2725,0.42 +2016-01-05 01:32:00,22.2387,95.3275,0.41 +2016-01-05 01:47:00,21.5575,95.4025,0.4 +2016-01-05 02:02:00,22.9212,95.495,0.4 +2016-01-05 02:17:00,22.145,95.585,0.4 +2016-01-05 02:32:00,21.755,95.6825,0.4 +2016-01-05 02:47:00,23.3012,95.7725,0.4 +2016-01-05 03:02:00,22.0975,95.87,0.39 +2016-01-05 03:17:00,22.0488,95.94,0.37 +2016-01-05 03:32:00,22.6338,96.055,0.37 +2016-01-05 03:47:00,21.2663,96.1125,0.37 +2016-01-05 04:02:00,22.725,96.2225,0.37 +2016-01-05 04:17:00,21.9037,96.2975,0.36 +2016-01-05 04:32:00,20.1425,96.385,0.37 +2016-01-05 04:47:00,24.1813,96.4625,0.36 +2016-01-05 05:02:00,19.8525,96.555,0.34 +2016-01-05 05:17:00,22.8725,96.625,0.3 +2016-01-05 05:32:00,22.1488,96.7025,0.28 +2016-01-05 05:47:00,22.385,96.8175,0.29 +2016-01-05 06:02:00,22.2887,96.93,0.27 +2016-01-05 06:17:00,21.805,97.0325,0.26 +2016-01-05 06:32:00,22.3312,97.14,0.25 +2016-01-05 06:47:00,22.7262,97.24,0.24 +2016-01-05 07:02:00,24.28,97.315,0.23 +2016-01-05 07:17:00,22.6787,97.4,0.2 +2016-01-05 07:32:00,23.1588,97.5,0.2 +2016-01-05 07:47:00,21.7562,97.58,0.2 +2016-01-05 08:02:00,24.9325,97.6325,0.18 +2016-01-05 08:17:00,21.315,97.66,0.17 +2016-01-05 08:32:00,21.0112,97.675,0.14 +2016-01-05 08:47:00,22.5788,97.6725,0.11 +2016-01-05 09:02:00,21.4088,97.65,0.1 +2016-01-05 09:17:00,22.7288,97.605,0.1 +2016-01-05 09:32:00,24.1338,97.5425,0.07 +2016-01-05 09:47:00,23.25,97.4925,0.07 +2016-01-05 10:02:00,23.1075,97.41,0.11 +2016-01-05 10:17:00,22.1462,97.3425,0.12 +2016-01-05 10:32:00,23.1537,97.2575,0.11 +2016-01-05 10:47:00,23.5488,97.1025,0.12 +2016-01-05 11:02:00,23.1075,96.8525,0.13 +2016-01-05 11:17:00,22.6263,96.5325,0.16 +2016-01-05 11:32:00,22.2862,96.18,0.17 +2016-01-05 11:47:00,23.7887,95.855,0.17 +2016-01-05 12:02:00,23.5475,95.575,0.17 +2016-01-05 12:17:00,22.3325,95.32,0.16 +2016-01-05 12:32:00,22.2363,95.08,0.17 +2016-01-05 12:47:00,22.285,94.8125,0.18 +2016-01-05 13:02:00,23.1588,94.56,0.16 +2016-01-05 13:17:00,22.9212,94.3025,0.19 +2016-01-05 13:32:00,23.2,94.065,0.19 +2016-01-05 13:47:00,24.2838,93.8425,0.18 +2016-01-05 14:02:00,23.79,93.7,0.18 +2016-01-05 14:17:00,22.2375,93.75,0.19 +2016-01-05 14:32:00,23.0612,93.8525,0.21 +2016-01-05 14:47:00,23.3025,93.93,0.2 +2016-01-05 15:02:00,23.0638,93.995,0.18 +2016-01-05 15:17:00,25.5687,94.0725,0.17 +2016-01-05 15:32:00,21.065,94.1225,0.17 +2016-01-05 15:47:00,23.3512,94.15,0.18 +2016-01-05 16:02:00,21.9538,93.9025,0.19 +2016-01-05 16:17:00,22.92,93.2025,0.2 +2016-01-05 16:32:00,22.5762,91.95,0.19 +2016-01-05 16:47:00,23.7925,91.28,0.18 +2016-01-05 17:02:00,21.5587,90.91,0.18 +2016-01-05 17:17:00,22.87,90.8025,0.2 +2016-01-05 17:32:00,23.4,90.9075,0.21 +2016-01-05 17:47:00,23.0525,91.145,0.2 +2016-01-05 18:02:00,23.3012,91.4325,0.17 +2016-01-05 18:17:00,24.0775,91.6575,0.17 +2016-01-05 18:32:00,24.1875,91.86,0.16 +2016-01-05 18:47:00,23.9325,92.07,0.17 +2016-01-05 19:02:00,22.8725,92.265,0.17 +2016-01-05 19:17:00,22.92,92.4475,0.15 +2016-01-05 19:32:00,24.535,92.6425,0.14 +2016-01-05 19:47:00,22.24,92.83,0.14 +2016-01-05 20:02:00,22.2862,93.0025,0.14 +2016-01-05 20:17:00,23.5963,93.175,0.15 +2016-01-05 20:32:00,24.135,93.345,0.15 +2016-01-05 20:47:00,22.2887,93.475,0.14 +2016-01-05 21:02:00,23.4037,93.6375,0.15 +2016-01-05 21:17:00,22.7738,93.755,0.17 +2016-01-05 21:32:00,22.7275,93.855,0.18 +2016-01-05 21:47:00,24.7812,93.94,0.17 +2016-01-05 22:02:00,22.5263,94.0025,0.17 +2016-01-05 22:17:00,24.44,94.0325,0.17 +2016-01-05 22:32:00,23.65,94.0025,0.18 +2016-01-05 22:47:00,22.4788,93.915,0.19 +2016-01-05 23:02:00,23.5975,93.715,0.18 +2016-01-05 23:17:00,23.9837,93.47,0.17 +2016-01-05 23:32:00,24.5413,93.1375,0.16 +2016-01-05 23:47:00,24.285,92.785,0.16 +2016-01-06 00:02:00,22.4788,92.42,0.18 +2016-01-06 00:17:00,23.1075,92.11,0.18 +2016-01-06 00:32:00,25.0325,91.875,0.17 +2016-01-06 00:47:00,24.6312,91.68,0.18 +2016-01-06 01:02:00,23.6963,91.5575,0.17 +2016-01-06 01:17:00,26.2962,91.455,0.18 +2016-01-06 01:32:00,21.9025,91.405,0.18 +2016-01-06 01:47:00,23.9325,91.3675,0.17 +2016-01-06 02:02:00,22.3363,91.36,0.15 +2016-01-06 02:17:00,23.6038,91.3475,0.15 +2016-01-06 02:32:00,21.7562,91.375,0.17 +2016-01-06 02:47:00,24.7787,91.3775,0.16 +2016-01-06 03:02:00,23.06,91.3925,0.15 +2016-01-06 03:17:00,24.0338,91.4275,0.15 +2016-01-06 03:32:00,24.4375,91.445,0.14 +2016-01-06 03:47:00,26.9875,91.4825,0.14 +2016-01-06 04:02:00,24.0338,91.5375,0.15 +2016-01-06 04:17:00,23.1562,91.58,0.15 +2016-01-06 04:32:00,23.2062,91.605,0.14 +2016-01-06 04:47:00,25.1287,91.635,0.13 +2016-01-06 05:02:00,20.8625,91.6475,0.14 +2016-01-06 05:17:00,24.6813,91.64,0.14 +2016-01-06 05:32:00,23.7875,91.6375,0.14 +2016-01-06 05:47:00,26.4975,91.605,0.15 +2016-01-06 06:02:00,25.6175,91.545,0.15 +2016-01-06 06:17:00,24.1825,91.435,0.14 +2016-01-06 06:32:00,23.1612,91.2825,0.14 +2016-01-06 06:47:00,24.8288,91.0975,0.12 +2016-01-06 07:02:00,24.0775,90.9275,0.1 +2016-01-06 07:17:00,22.1462,90.78,0.11 +2016-01-06 07:32:00,22.29,90.66,0.12 +2016-01-06 07:47:00,24.4388,90.67,0.17 +2016-01-06 08:02:00,24.9325,90.7125,0.19 +2016-01-06 08:17:00,23.0125,90.765,0.19 +2016-01-06 08:32:00,23.4025,90.825,0.18 +2016-01-06 08:47:00,24.3363,90.91,0.18 +2016-01-06 09:02:00,25.52,90.995,0.19 +2016-01-06 09:17:00,24.5837,88.4175,0.21 +2016-01-06 09:32:00,23.4037,85.8825,0.22 +2016-01-06 09:47:00,24.735,86.2075,0.21 +2016-01-06 10:02:00,27.64,86.84,0.22 +2016-01-06 10:17:00,25.5675,87.535,0.21 +2016-01-06 10:32:00,24.0312,88.1125,0.22 +2016-01-06 10:47:00,23.4012,88.65,0.22 +2016-01-06 11:02:00,24.29,88.915,0.22 +2016-01-06 11:17:00,24.9863,89.0425,0.22 +2016-01-06 11:32:00,24.7363,89.1725,0.21 +2016-01-06 11:47:00,24.435,89.2925,0.23 +2016-01-06 12:02:00,24.6312,89.3775,0.23 +2016-01-06 12:17:00,25.6663,89.43,0.24 +2016-01-06 12:32:00,25.4725,89.495,0.24 +2016-01-06 12:47:00,25.57,89.535,0.24 +2016-01-06 13:02:00,25.6625,89.5725,0.26 +2016-01-06 13:17:00,23.8375,89.62,0.26 +2016-01-06 13:32:00,25.085,89.665,0.26 +2016-01-06 13:47:00,26.7925,89.8525,0.25 +2016-01-06 14:02:00,24.8787,90.2725,0.22 +2016-01-06 14:17:00,22.435,90.68,0.2 +2016-01-06 14:32:00,24.6813,90.99,0.2 +2016-01-06 14:47:00,25.1325,91.265,0.21 +2016-01-06 15:02:00,24.7325,91.575,0.2 +2016-01-06 15:17:00,24.8375,91.9025,0.19 +2016-01-06 15:32:00,24.0325,92.2675,0.2 +2016-01-06 15:47:00,25.7687,92.7275,0.21 +2016-01-06 16:02:00,25.0338,93.365,0.2 +2016-01-06 16:17:00,23.3487,93.9875,0.18 +2016-01-06 16:32:00,25.3262,94.565,0.18 +2016-01-06 16:47:00,23.935,95.1175,0.19 +2016-01-06 17:02:00,26.1588,95.67,0.19 +2016-01-06 17:17:00,25.135,96.2325,0.17 +2016-01-06 17:32:00,25.5163,96.7925,0.16 +2016-01-06 17:47:00,25.2337,97.2925,0.17 +2016-01-06 18:02:00,22.8712,97.6575,0.18 +2016-01-06 18:17:00,25.1325,97.7075,0.18 +2016-01-06 18:32:00,24.1325,97.5425,0.16 +2016-01-06 18:47:00,22.775,97.4975,0.14 +2016-01-06 19:02:00,24.7862,97.5675,0.14 +2016-01-06 19:17:00,23.6462,97.7925,0.16 +2016-01-06 19:32:00,25.0312,98.1025,0.17 +2016-01-06 19:47:00,24.33,98.4125,0.18 +2016-01-06 20:02:00,24.5825,98.8375,0.17 +2016-01-06 20:17:00,22.9262,99.34,0.16 +2016-01-06 20:32:00,24.8838,99.695,0.16 +2016-01-06 20:47:00,25.035,99.9675,0.18 +2016-01-06 21:02:00,24.2375,100.18,0.17 +2016-01-06 21:17:00,24.335,100.362,0.13 +2016-01-06 21:32:00,24.6813,100.557,0.11 +2016-01-06 21:47:00,24.0325,100.737,0.13 +2016-01-06 22:02:00,25.515,101.0,0.13 +2016-01-06 22:17:00,24.1338,101.292,0.12 +2016-01-06 22:32:00,24.44,101.65,0.11 +2016-01-06 22:47:00,24.7862,101.94,0.15 +2016-01-06 23:02:00,24.935,102.015,0.16 +2016-01-06 23:17:00,24.83,101.522,0.14 +2016-01-06 23:32:00,26.1475,100.637,0.14 +2016-01-06 23:47:00,26.06,99.675,0.15 +2016-01-07 00:02:00,24.9337,98.805,0.17 +2016-01-07 00:17:00,25.815,98.0575,0.18 +2016-01-07 00:32:00,25.2363,97.52,0.17 +2016-01-07 00:47:00,26.6937,97.145,0.15 +2016-01-07 01:02:00,25.0325,97.02,0.16 +2016-01-07 01:17:00,24.1312,97.12,0.17 +2016-01-07 01:32:00,24.4863,97.3025,0.16 +2016-01-07 01:47:00,25.5662,97.6325,0.15 +2016-01-07 02:02:00,24.9337,98.015,0.14 +2016-01-07 02:17:00,23.8387,98.5075,0.14 +2016-01-07 02:32:00,25.085,98.905,0.15 +2016-01-07 02:47:00,25.2812,99.3,0.17 +2016-01-07 03:02:00,23.7438,99.5575,0.16 +2016-01-07 03:17:00,25.6675,99.78,0.15 +2016-01-07 03:32:00,25.1275,99.7775,0.14 +2016-01-07 03:47:00,26.985,99.6725,0.16 +2016-01-07 04:02:00,25.5687,99.5075,0.16 +2016-01-07 04:17:00,25.0875,99.3625,0.15 +2016-01-07 04:32:00,23.7462,99.21,0.14 +2016-01-07 04:47:00,25.4688,99.0475,0.15 +2016-01-07 05:02:00,24.8288,98.75,0.15 +2016-01-07 05:17:00,25.13,98.495,0.14 +2016-01-07 05:32:00,24.3887,98.31,0.14 +2016-01-07 05:47:00,24.535,98.105,0.15 +2016-01-07 06:02:00,24.2387,97.79,0.16 +2016-01-07 06:17:00,25.0863,97.4275,0.16 +2016-01-07 06:32:00,23.0587,97.1025,0.15 +2016-01-07 06:47:00,24.6312,96.93,0.13 +2016-01-07 07:02:00,26.1975,96.795,0.16 +2016-01-07 07:17:00,23.06,96.5,0.18 +2016-01-07 07:32:00,23.8887,96.0275,0.15 +2016-01-07 07:47:00,24.285,95.52,0.14 +2016-01-07 08:02:00,25.67,94.9525,0.12 +2016-01-07 08:17:00,24.735,94.3975,0.13 +2016-01-07 08:32:00,23.55,93.945,0.15 +2016-01-07 08:47:00,23.5975,93.59,0.14 +2016-01-07 09:02:00,23.3025,93.2525,0.15 +2016-01-07 09:17:00,25.33,92.9275,0.16 +2016-01-07 09:32:00,23.8363,92.655,0.19 +2016-01-07 09:47:00,24.9375,92.57,0.19 +2016-01-07 10:02:00,23.985,92.56,0.19 +2016-01-07 10:17:00,23.0575,92.6125,0.2 +2016-01-07 10:32:00,24.83,92.7125,0.23 +2016-01-07 10:47:00,26.1512,92.8575,0.23 +2016-01-07 11:02:00,25.1287,92.9675,0.22 +2016-01-07 11:17:00,23.7438,93.0725,0.23 +2016-01-07 11:32:00,26.4437,93.2025,0.26 +2016-01-07 11:47:00,23.3525,93.3225,0.27 +2016-01-07 12:02:00,23.935,93.4225,0.25 +2016-01-07 12:17:00,25.1775,93.5675,0.26 +2016-01-07 12:32:00,24.58,93.815,0.28 +2016-01-07 12:47:00,23.6963,94.05,0.28 +2016-01-07 13:02:00,23.6975,94.275,0.25 +2016-01-07 13:17:00,25.03,94.5525,0.23 +2016-01-07 13:32:00,24.5863,94.89,0.24 +2016-01-07 13:47:00,25.6675,95.27,0.25 +2016-01-07 14:02:00,25.2775,95.6675,0.23 +2016-01-07 14:17:00,24.185,96.6825,0.21 +2016-01-07 14:32:00,24.335,98.0675,0.21 +2016-01-07 14:47:00,25.1813,99.2875,0.2 +2016-01-07 15:02:00,25.8138,100.315,0.19 +2016-01-07 15:17:00,24.7862,101.225,0.17 +2016-01-07 15:32:00,26.065,102.01,0.16 +2016-01-07 15:47:00,24.2862,102.632,0.15 +2016-01-07 16:02:00,24.285,103.167,0.15 +2016-01-07 16:17:00,24.0837,103.595,0.15 +2016-01-07 16:32:00,24.73,103.935,0.16 +2016-01-07 16:47:00,25.42,104.152,0.16 +2016-01-07 17:02:00,23.9825,104.275,0.16 +2016-01-07 17:17:00,25.9175,104.467,0.16 +2016-01-07 17:32:00,24.385,104.612,0.17 +2016-01-07 17:47:00,26.2012,104.74,0.17 +2016-01-07 18:02:00,24.5362,104.867,0.17 +2016-01-07 18:17:00,23.6975,105.007,0.17 +2016-01-07 18:32:00,26.4437,105.077,0.18 +2016-01-07 18:47:00,25.0338,105.122,0.19 +2016-01-07 19:02:00,25.4212,105.112,0.19 +2016-01-07 19:17:00,23.0638,105.035,0.2 +2016-01-07 19:32:00,24.385,104.955,0.2 +2016-01-07 19:47:00,24.6825,104.88,0.21 +2016-01-07 20:02:00,25.47,104.8,0.23 +2016-01-07 20:17:00,24.3325,104.732,0.23 +2016-01-07 20:32:00,26.3475,104.652,0.22 +2016-01-07 20:47:00,24.9375,104.58,0.22 +2016-01-07 21:02:00,25.2825,104.533,0.22 +2016-01-07 21:17:00,24.44,104.495,0.22 +2016-01-07 21:32:00,25.6175,104.45,0.22 +2016-01-07 21:47:00,25.1825,104.475,0.21 +2016-01-07 22:02:00,26.3475,104.477,0.22 +2016-01-07 22:17:00,24.185,104.417,0.22 +2016-01-07 22:32:00,24.8825,104.298,0.22 +2016-01-07 22:47:00,25.8662,104.19,0.23 +2016-01-07 23:02:00,26.3962,104.137,0.23 +2016-01-07 23:17:00,25.2825,104.177,0.23 +2016-01-07 23:32:00,25.2312,104.347,0.23 +2016-01-07 23:47:00,25.0338,104.56,0.24 +2016-01-08 00:02:00,25.6637,104.832,0.26 +2016-01-08 00:17:00,25.0312,105.125,0.26 +2016-01-08 00:32:00,26.1062,105.487,0.26 +2016-01-08 00:47:00,24.785,105.885,0.27 +2016-01-08 01:02:00,25.6162,106.322,0.27 +2016-01-08 01:17:00,24.6312,106.755,0.29 +2016-01-08 01:32:00,25.865,107.167,0.28 +2016-01-08 01:47:00,23.0112,107.622,0.26 +2016-01-08 02:02:00,23.5987,108.095,0.24 +2016-01-08 02:17:00,23.2513,108.628,0.22 +2016-01-08 02:30:59,23.9863,109.132,0.22 +2016-01-08 02:47:00,23.3012,109.692,0.21 +2016-01-08 03:02:00,23.5537,110.242,0.2 +2016-01-08 03:17:00,23.7887,110.777,0.19 +2016-01-08 03:32:00,22.9675,111.25,0.19 +2016-01-08 03:47:00,19.615,111.685,0.19 +2016-01-08 04:02:00,22.3825,111.935,0.19 +2016-01-08 04:17:00,20.6762,112.17,0.2 +2016-01-08 04:32:00,21.1663,112.423,0.2 +2016-01-08 04:47:00,20.4388,112.715,0.21 +2016-01-08 05:02:00,21.115,113.065,0.21 +2016-01-08 05:17:00,20.2438,113.335,0.21 +2016-01-08 05:32:00,20.045,113.63,0.21 +2016-01-08 05:47:00,21.1612,113.967,0.21 +2016-01-08 06:02:00,20.9175,114.245,0.2 +2016-01-08 06:17:00,21.4137,114.5,0.2 +2016-01-08 06:32:00,21.1125,114.697,0.2 +2016-01-08 06:47:00,21.9987,114.872,0.2 +2016-01-08 07:02:00,20.2475,115.367,0.19 +2016-01-08 07:17:00,21.5537,116.175,0.17 +2016-01-08 07:32:00,21.5575,116.945,0.17 +2016-01-08 07:47:00,22.1513,117.49,0.17 +2016-01-08 08:02:00,21.6087,117.777,0.18 +2016-01-08 08:17:00,20.7237,118.087,0.17 +2016-01-08 08:32:00,21.6075,118.305,0.18 +2016-01-08 08:47:00,21.3175,118.417,0.19 +2016-01-08 09:02:00,21.2113,118.375,0.19 +2016-01-08 09:17:00,21.805,118.212,0.21 +2016-01-08 09:32:00,21.2138,117.875,0.22 +2016-01-08 09:47:00,21.9075,117.4,0.23 +2016-01-08 10:02:00,21.3187,116.802,0.24 +2016-01-08 10:17:00,21.605,116.467,0.25 +2016-01-08 10:32:00,22.6762,116.217,0.26 +2016-01-08 10:47:00,21.4575,116.048,0.28 +2016-01-08 11:02:00,20.8162,115.875,0.3 +2016-01-08 11:17:00,22.4812,115.772,0.31 +2016-01-08 11:32:00,21.8087,115.875,0.33 +2016-01-08 11:47:00,22.1488,115.917,0.36 +2016-01-08 12:02:00,21.3125,115.935,0.37 +2016-01-08 12:17:00,21.6562,116.02,0.38 +2016-01-08 12:32:00,21.9037,116.135,0.38 +2016-01-08 12:47:00,21.7525,116.24,0.38 +2016-01-08 13:02:00,20.9638,116.41,0.38 +2016-01-08 13:17:00,21.9575,116.48,0.38 +2016-01-08 13:32:00,22.055,116.467,0.39 +2016-01-08 13:47:00,21.8587,116.59,0.39 +2016-01-08 14:02:00,20.3412,116.647,0.38 +2016-01-08 14:17:00,21.5062,116.717,0.38 +2016-01-08 14:32:00,21.415,116.915,0.38 +2016-01-08 14:47:00,21.2675,117.207,0.36 +2016-01-08 15:02:00,22.7775,117.64,0.34 +2016-01-08 15:17:00,22.29,118.225,0.33 +2016-01-08 15:32:00,20.0525,118.94,0.32 +2016-01-08 15:47:00,21.1175,119.865,0.32 +2016-01-08 16:02:00,21.6562,120.857,0.31 +2016-01-08 16:17:00,21.8087,122.31,0.3 +2016-01-08 16:32:00,20.4837,123.785,0.27 +2016-01-08 16:47:00,21.6075,125.602,0.26 +2016-01-08 17:02:00,22.435,127.137,0.26 +2016-01-08 17:17:00,22.1987,128.412,0.25 +2016-01-08 17:32:00,21.86,129.465,0.24 +2016-01-08 17:47:00,21.415,130.472,0.24 +2016-01-08 18:02:00,21.9538,131.345,0.23 +2016-01-08 18:17:00,21.7575,132.19,0.22 +2016-01-08 18:32:00,20.8675,132.91,0.23 +2016-01-08 18:47:00,21.2612,133.512,0.22 +2016-01-08 19:02:00,21.56,133.992,0.22 +2016-01-08 19:17:00,21.7075,134.362,0.21 +2016-01-08 19:32:00,21.905,134.667,0.21 +2016-01-08 19:47:00,21.1162,134.89,0.22 +2016-01-08 20:02:00,23.5475,135.03,0.23 +2016-01-08 20:17:00,20.9613,135.107,0.22 +2016-01-08 20:32:00,21.7075,135.012,0.23 +2016-01-08 20:47:00,21.855,134.35,0.23 +2016-01-08 21:02:00,22.0025,133.38,0.23 +2016-01-08 21:17:00,21.4212,132.37,0.22 +2016-01-08 21:32:00,21.6038,131.452,0.22 +2016-01-08 21:47:00,21.505,130.697,0.22 +2016-01-08 22:02:00,22.2862,129.99,0.22 +2016-01-08 22:17:00,23.3,129.272,0.22 +2016-01-08 22:32:00,21.855,128.533,0.21 +2016-01-08 22:47:00,21.9075,127.752,0.2 +2016-01-08 23:02:00,22.0987,126.97,0.2 +2016-01-08 23:17:00,23.0125,126.202,0.2 +2016-01-08 23:32:00,21.855,125.527,0.2 +2016-01-08 23:47:00,21.7038,125.015,0.2 +2016-01-09 00:02:00,22.5275,124.552,0.19 +2016-01-09 00:17:00,21.1663,124.143,0.19 +2016-01-09 00:32:00,21.365,123.79,0.19 +2016-01-09 00:47:00,21.56,123.485,0.18 +2016-01-09 01:02:00,21.9575,123.22,0.18 +2016-01-09 01:17:00,22.1,122.935,0.17 +2016-01-09 01:32:00,22.2387,122.702,0.16 +2016-01-09 01:47:00,21.0137,122.475,0.14 +2016-01-09 02:02:00,21.455,122.24,0.14 +2016-01-09 02:17:00,22.5788,122.005,0.14 +2016-01-09 02:32:00,21.7087,121.67,0.13 +2016-01-09 02:47:00,23.065,121.347,0.13 +2016-01-09 03:02:00,23.0125,121.067,0.13 +2016-01-09 03:17:00,21.9987,120.815,0.13 +2016-01-09 03:32:00,23.015,120.562,0.14 +2016-01-09 03:47:00,22.77,120.442,0.14 +2016-01-09 04:02:00,21.855,120.435,0.14 +2016-01-09 04:17:00,21.7062,120.42,0.14 +2016-01-09 04:32:00,22.6837,120.435,0.13 +2016-01-09 04:47:00,23.21,120.447,0.13 +2016-01-09 05:02:00,22.7738,120.505,0.13 +2016-01-09 05:17:00,21.9512,120.512,0.14 +2016-01-09 05:32:00,21.4575,120.365,0.15 +2016-01-09 05:47:00,20.865,120.092,0.16 +2016-01-09 06:02:00,22.5287,119.842,0.17 +2016-01-09 06:17:00,22.1537,119.53,0.18 +2016-01-09 06:32:00,22.385,119.362,0.18 +2016-01-09 06:47:00,22.0037,119.332,0.19 +2016-01-09 07:02:00,22.0987,119.29,0.19 +2016-01-09 07:17:00,22.1975,119.255,0.19 +2016-01-09 07:32:00,21.6575,119.23,0.19 +2016-01-09 07:47:00,22.1462,119.112,0.18 +2016-01-09 08:02:00,23.7887,118.962,0.19 +2016-01-09 08:17:00,21.1675,118.7,0.19 +2016-01-09 08:32:00,22.97,118.467,0.2 +2016-01-09 08:47:00,22.3363,118.197,0.22 +2016-01-09 09:02:00,20.675,117.938,0.23 +2016-01-09 09:17:00,22.7275,117.737,0.24 +2016-01-09 09:32:00,21.7062,117.565,0.25 +2016-01-09 09:47:00,22.5788,117.635,0.27 +2016-01-09 10:02:00,23.26,117.632,0.3 +2016-01-09 10:17:00,21.8075,117.735,0.32 +2016-01-09 10:32:00,22.4762,117.847,0.34 +2016-01-09 10:47:00,22.2862,117.815,0.35 +2016-01-09 11:02:00,23.9837,117.88,0.36 +2016-01-09 11:17:00,22.3812,117.82,0.38 +2016-01-09 11:32:00,21.9987,117.658,0.39 +2016-01-09 11:47:00,21.6038,117.355,0.39 +2016-01-09 12:02:00,21.955,117.3,0.41 +2016-01-09 12:17:00,22.585,117.18,0.42 +2016-01-09 12:32:00,21.4125,117.173,0.44 +2016-01-09 12:47:00,23.935,117.265,0.46 +2016-01-09 13:02:00,22.43,117.342,0.47 +2016-01-09 13:17:00,23.11,117.467,0.47 +2016-01-09 13:32:00,22.3825,117.615,0.5 +2016-01-09 13:47:00,22.53,117.522,0.51 +2016-01-09 14:02:00,21.4613,117.492,0.52 +2016-01-09 14:17:00,22.0525,117.472,0.53 +2016-01-09 14:32:00,23.3037,117.36,0.54 +2016-01-09 14:47:00,22.1513,117.345,0.55 +2016-01-09 15:02:00,22.4325,117.16,0.56 +2016-01-09 15:17:00,21.0662,117.077,0.58 +2016-01-09 15:32:00,22.5812,117.14,0.59 +2016-01-09 15:47:00,21.7612,117.295,0.61 +2016-01-09 16:02:00,21.9062,117.4,0.64 +2016-01-09 16:17:00,23.3025,117.54,0.66 +2016-01-09 16:32:00,23.405,117.637,0.68 +2016-01-09 16:47:00,22.9713,117.715,0.7 +2016-01-09 17:02:00,22.2887,117.747,0.71 +2016-01-09 17:17:00,22.8225,117.737,0.73 +2016-01-09 17:32:00,20.8688,117.8,0.74 +2016-01-09 17:47:00,22.1975,117.722,0.75 +2016-01-09 18:02:00,23.5975,117.57,0.76 +2016-01-09 18:17:00,22.2412,117.352,0.76 +2016-01-09 18:32:00,24.3862,117.1,0.77 +2016-01-09 18:47:00,21.755,116.862,0.78 +2016-01-09 19:02:00,22.8725,116.707,0.78 +2016-01-09 19:17:00,21.2663,116.622,0.79 +2016-01-09 19:32:00,22.7312,116.58,0.81 +2016-01-09 19:47:00,23.015,116.552,0.83 +2016-01-09 20:02:00,23.3025,116.505,0.85 +2016-01-09 20:17:00,24.1375,116.467,0.85 +2016-01-09 20:32:00,22.3825,116.378,0.86 +2016-01-09 20:47:00,22.15,116.245,0.86 +2016-01-09 21:02:00,23.1087,116.082,0.88 +2016-01-09 21:17:00,23.1113,115.857,0.88 +2016-01-09 21:32:00,22.2925,115.695,0.89 +2016-01-09 21:47:00,22.4825,115.512,0.9 +2016-01-09 22:02:00,23.2537,115.387,0.89 +2016-01-09 22:17:00,24.2312,115.28,0.89 +2016-01-09 22:32:00,22.8275,115.257,0.88 +2016-01-09 22:47:00,24.2312,115.29,0.88 +2016-01-09 23:02:00,23.2525,115.397,0.87 +2016-01-09 23:17:00,22.5338,115.382,0.87 +2016-01-09 23:32:00,22.7763,115.393,0.86 +2016-01-09 23:47:00,23.4525,115.393,0.87 +2016-01-10 00:02:00,23.1062,115.355,0.87 +2016-01-10 00:17:00,23.2025,115.205,0.86 +2016-01-10 00:32:00,24.2325,115.062,0.86 +2016-01-10 00:47:00,24.1338,114.812,0.85 +2016-01-10 01:02:00,24.035,114.572,0.85 +2016-01-10 01:17:00,22.2012,114.41,0.84 +2016-01-10 01:32:00,23.4,114.34,0.84 +2016-01-10 01:47:00,24.2325,114.312,0.83 +2016-01-10 02:02:00,22.4775,114.302,0.83 +2016-01-10 02:17:00,23.5963,114.27,0.83 +2016-01-10 02:32:00,22.9212,114.11,0.84 +2016-01-10 02:47:00,22.8712,113.862,0.85 +2016-01-10 03:02:00,22.1987,113.587,0.86 +2016-01-10 03:17:00,24.4887,113.355,0.87 +2016-01-10 03:32:00,22.63,113.16,0.89 +2016-01-10 03:47:00,24.335,113.01,0.91 +2016-01-10 04:02:00,23.2513,112.88,0.92 +2016-01-10 04:17:00,23.06,112.762,0.93 +2016-01-10 04:32:00,25.23,112.51,0.93 +2016-01-10 04:47:00,23.4037,112.257,0.94 +2016-01-10 05:02:00,25.0812,112.1,0.94 +2016-01-10 05:17:00,23.9313,112.09,0.94 +2016-01-10 05:32:00,23.3012,112.162,0.94 +2016-01-10 05:47:00,24.585,112.255,0.96 +2016-01-10 06:02:00,24.2337,112.325,0.97 +2016-01-10 06:17:00,24.5362,112.405,0.97 +2016-01-10 06:32:00,24.2812,112.375,0.98 +2016-01-10 06:47:00,24.4375,112.237,0.98 +2016-01-10 07:02:00,24.7337,112.332,0.99 +2016-01-10 07:17:00,22.8725,113.665,0.98 +2016-01-10 07:32:00,25.2762,114.47,0.99 +2016-01-10 07:47:00,24.68,114.617,0.99 +2016-01-10 08:02:00,23.5963,114.31,1.01 +2016-01-10 08:17:00,23.1075,113.945,1.03 +2016-01-10 08:32:00,23.1588,113.72,1.05 +2016-01-10 08:47:00,24.1362,113.522,1.07 +2016-01-10 09:02:00,25.2812,113.38,1.09 +2016-01-10 09:17:00,22.6787,113.192,1.11 +2016-01-10 09:32:00,25.375,113.075,1.12 +2016-01-10 09:47:00,24.135,112.915,1.12 +2016-01-10 10:02:00,24.54,112.735,1.14 +2016-01-10 10:17:00,23.745,112.602,1.16 +2016-01-10 10:32:00,24.3375,112.585,1.18 +2016-01-10 10:47:00,25.4238,112.52,1.21 +2016-01-10 11:02:00,23.205,112.518,1.23 +2016-01-10 11:17:00,25.4662,112.503,1.26 +2016-01-10 11:32:00,25.7663,112.417,1.31 +2016-01-10 11:47:00,21.805,112.367,1.35 +2016-01-10 12:02:00,21.1612,112.307,1.39 +2016-01-10 12:17:00,22.8775,112.305,1.4 +2016-01-10 12:32:00,22.1987,112.322,1.41 +2016-01-10 12:47:00,22.63,112.365,1.44 +2016-01-10 13:02:00,21.6062,112.378,1.46 +2016-01-10 13:17:00,22.1,112.385,1.48 +2016-01-10 13:32:00,21.9538,112.397,1.49 +2016-01-10 13:47:00,20.96,112.382,1.51 +2016-01-10 14:02:00,22.3363,112.375,1.53 +2016-01-10 14:17:00,22.4362,112.317,1.55 +2016-01-10 14:32:00,21.4187,112.325,1.58 +2016-01-10 14:47:00,22.2387,112.275,1.61 +2016-01-10 15:02:00,23.5963,112.232,1.6 +2016-01-10 15:17:00,21.605,112.22,1.61 +2016-01-10 15:32:00,22.3337,112.122,1.62 +2016-01-10 15:47:00,21.5062,111.967,1.64 +2016-01-10 16:02:00,22.2862,111.807,1.65 +2016-01-10 16:17:00,23.7487,111.7,1.66 +2016-01-10 16:32:00,23.2062,111.602,1.67 +2016-01-10 16:47:00,21.8562,111.56,1.69 +2016-01-10 17:02:00,21.265,111.515,1.7 +2016-01-10 17:17:00,22.3862,111.555,1.72 +2016-01-10 17:32:00,23.5013,111.515,1.75 +2016-01-10 17:47:00,20.585,111.55,1.77 +2016-01-10 18:02:00,21.76,111.522,1.8 +2016-01-10 18:17:00,22.0525,111.482,1.83 +2016-01-10 18:32:00,20.8175,111.472,1.86 +2016-01-10 18:47:00,21.855,111.477,1.89 +2016-01-10 19:02:00,22.4325,111.472,1.89 +2016-01-10 19:17:00,23.0612,111.485,1.88 +2016-01-10 19:32:00,20.8187,111.465,1.88 +2016-01-10 19:47:00,23.6012,111.425,1.86 +2016-01-10 20:02:00,22.15,111.325,1.86 +2016-01-10 20:17:00,21.855,111.177,1.84 +2016-01-10 20:32:00,21.9538,111.045,1.83 +2016-01-10 20:47:00,22.3363,110.947,1.81 +2016-01-10 21:02:00,20.3412,110.94,1.81 +2016-01-10 21:17:00,21.9538,110.925,1.81 +2016-01-10 21:32:00,22.3838,110.927,1.82 +2016-01-10 21:47:00,22.0025,110.947,1.82 +2016-01-10 22:02:00,21.5137,110.985,1.83 +2016-01-10 22:17:00,21.9037,111.022,1.84 +2016-01-10 22:32:00,23.1562,111.01,1.85 +2016-01-10 22:47:00,23.06,111.033,1.86 +2016-01-10 23:02:00,21.4137,111.015,1.86 +2016-01-10 23:17:00,21.9013,111.04,1.86 +2016-01-10 23:32:00,21.9538,111.033,1.87 +2016-01-10 23:47:00,21.61,111.177,1.87 +2016-01-11 00:02:00,21.0662,111.518,1.87 +2016-01-11 00:17:00,21.8087,111.955,1.92 +2016-01-11 00:32:00,22.625,112.393,1.92 +2016-01-11 00:47:00,21.3637,112.705,1.95 +2016-01-11 01:02:00,23.595,112.925,1.95 +2016-01-11 01:17:00,22.045,113.12,1.89 +2016-01-11 01:32:00,22.775,113.295,1.87 +2016-01-11 01:47:00,23.0163,113.43,1.87 +2016-01-11 02:02:00,21.7087,113.435,1.86 +2016-01-11 02:17:00,23.16,113.477,1.87 +2016-01-11 02:32:00,23.1612,113.307,1.85 +2016-01-11 02:47:00,22.8763,113.327,1.83 +2016-01-11 03:02:00,24.0362,113.347,1.82 +2016-01-11 03:17:00,22.685,113.352,1.83 +2016-01-11 03:32:00,21.27,113.417,1.85 +2016-01-11 03:47:00,21.71,113.455,1.86 +2016-01-11 04:02:00,22.1513,113.595,1.88 +2016-01-11 04:17:00,21.4225,113.632,1.89 +2016-01-11 04:32:00,22.3875,113.71,1.9 +2016-01-11 04:47:00,23.2575,113.825,1.91 +2016-01-11 05:02:00,23.2162,113.89,1.91 +2016-01-11 05:17:00,22.7838,114.018,1.92 +2016-01-11 05:32:00,21.7675,114.052,1.92 +2016-01-11 05:47:00,22.8775,114.085,1.93 +2016-01-11 06:02:00,21.7637,114.077,1.94 +2016-01-11 06:17:00,22.25,113.947,1.95 +2016-01-11 06:32:00,21.9175,113.908,1.96 +2016-01-11 06:47:00,22.2513,113.85,1.98 +2016-01-11 07:02:00,22.6862,113.643,1.99 +2016-01-11 07:17:00,22.345,113.895,1.98 +2016-01-11 07:32:00,23.4112,113.935,1.98 +2016-01-11 07:47:00,22.8812,114.21,1.97 +2016-01-11 08:02:00,22.6875,114.285,1.95 +2016-01-11 08:17:00,22.1562,114.378,1.96 +2016-01-11 08:32:00,22.01,114.522,1.96 +2016-01-11 08:47:00,21.96,114.475,1.96 +2016-01-11 09:02:00,21.3288,114.592,1.97 +2016-01-11 09:17:00,22.9863,114.725,1.99 +2016-01-11 09:32:00,23.71,115.055,2.0 +2016-01-11 09:47:00,22.735,115.355,1.99 +2016-01-11 10:02:00,23.845,115.712,2.0 +2016-01-11 10:17:00,22.2962,116.0,2.0 +2016-01-11 10:32:00,21.4688,116.457,2.01 +2016-01-11 10:47:00,23.415,116.902,2.01 +2016-01-11 11:02:00,22.5938,117.205,2.03 +2016-01-11 11:17:00,23.5638,117.592,2.04 +2016-01-11 11:32:00,22.155,117.917,2.06 +2016-01-11 11:47:00,21.965,118.222,2.08 +2016-01-11 12:02:00,23.3125,118.507,2.09 +2016-01-11 12:17:00,24.0387,118.8,2.1 +2016-01-11 12:32:00,22.3438,119.095,2.11 +2016-01-11 12:47:00,22.1612,119.387,2.11 +2016-01-11 13:02:00,22.6912,119.652,2.12 +2016-01-11 13:17:00,24.1437,119.887,2.14 +2016-01-11 13:32:00,22.635,120.12,2.14 +2016-01-11 13:47:00,23.415,120.332,2.15 +2016-01-11 14:02:00,22.7862,120.562,2.16 +2016-01-11 14:17:00,22.0125,120.762,2.17 +2016-01-11 14:32:00,22.9788,120.925,2.2 +2016-01-11 14:47:00,21.87,121.077,2.2 +2016-01-11 15:02:00,22.2575,121.225,2.21 +2016-01-11 15:17:00,23.5625,121.357,2.23 +2016-01-11 15:32:00,23.8025,121.475,2.24 +2016-01-11 15:47:00,22.4925,121.597,2.26 +2016-01-11 16:02:00,22.2087,121.745,2.29 +2016-01-11 16:17:00,24.4,121.867,2.3 +2016-01-11 16:32:00,20.5537,122.022,2.32 +2016-01-11 16:47:00,21.8763,122.167,2.33 +2016-01-11 17:02:00,22.69,122.352,2.35 +2016-01-11 17:17:00,21.865,122.512,2.37 +2016-01-11 17:32:00,23.0737,122.688,2.38 +2016-01-11 17:47:00,23.61,122.842,2.39 +2016-01-11 18:02:00,22.5437,122.987,2.4 +2016-01-11 18:17:00,22.6925,123.13,2.4 +2016-01-11 18:32:00,24.0987,123.287,2.4 +2016-01-11 18:47:00,21.9238,123.435,2.41 +2016-01-11 19:02:00,22.2537,123.545,2.42 +2016-01-11 19:17:00,23.9,123.705,2.41 +2016-01-11 19:32:00,23.22,123.852,2.42 +2016-01-11 19:47:00,22.545,123.99,2.42 +2016-01-11 20:02:00,23.61,124.145,2.42 +2016-01-11 20:17:00,23.4175,124.26,2.42 +2016-01-11 20:32:00,22.9375,124.382,2.41 +2016-01-11 20:47:00,22.8388,124.502,2.42 +2016-01-11 21:02:00,22.7875,124.622,2.43 +2016-01-11 21:17:00,22.5488,124.745,2.43 +2016-01-11 21:32:00,22.9325,124.835,2.44 +2016-01-11 21:47:00,23.8512,124.912,2.45 +2016-01-11 22:02:00,23.7637,124.995,2.46 +2016-01-11 22:17:00,23.615,125.045,2.47 +2016-01-11 22:32:00,23.1275,125.082,2.48 +2016-01-11 22:47:00,24.1488,125.135,2.48 +2016-01-11 23:02:00,22.7387,125.17,2.49 +2016-01-11 23:17:00,21.7225,125.21,2.5 +2016-01-11 23:32:00,22.6437,125.235,2.52 +2016-01-11 23:47:00,22.2537,125.312,2.53 +2016-01-12 00:02:00,22.0662,125.34,2.53 +2016-01-12 00:17:00,22.4,125.408,2.53 +2016-01-12 00:32:00,23.7188,125.438,2.55 +2016-01-12 00:47:00,22.8375,125.46,2.57 +2016-01-12 01:02:00,21.4762,125.405,2.59 +2016-01-12 01:17:00,22.4938,125.377,2.6 +2016-01-12 01:32:00,22.595,125.352,2.61 +2016-01-12 01:47:00,22.45,125.393,2.62 +2016-01-12 02:02:00,21.0825,125.442,2.63 +2016-01-12 02:17:00,23.2237,125.518,2.65 +2016-01-12 02:32:00,23.6625,125.615,2.65 +2016-01-12 02:47:00,21.43,125.702,2.67 +2016-01-12 03:02:00,23.175,125.83,2.69 +2016-01-12 03:17:00,21.33,125.972,2.7 +2016-01-12 03:32:00,22.165,126.125,2.71 +2016-01-12 03:47:00,22.545,126.277,2.73 +2016-01-12 04:02:00,22.2138,126.447,2.75 +2016-01-12 04:17:00,21.7275,126.62,2.75 +2016-01-12 04:32:00,22.7425,126.772,2.76 +2016-01-12 04:47:00,22.1162,126.945,2.76 +2016-01-12 05:02:00,23.8025,127.1,2.77 +2016-01-12 05:17:00,22.7913,127.24,2.78 +2016-01-12 05:32:00,23.0312,127.387,2.8 +2016-01-12 05:47:00,23.6175,127.53,2.79 +2016-01-12 06:02:00,23.8125,127.677,2.78 +2016-01-12 06:17:00,22.0725,127.82,2.78 +2016-01-12 06:32:00,22.215,127.977,2.79 +2016-01-12 06:47:00,23.0762,128.14,2.8 +2016-01-12 07:02:00,22.3063,128.31,2.79 +2016-01-12 07:17:00,22.1675,128.462,2.79 +2016-01-12 07:32:00,22.2562,128.607,2.8 +2016-01-12 07:47:00,24.0037,128.755,2.8 +2016-01-12 08:02:00,23.7162,128.9,2.8 +2016-01-12 08:17:00,24.1012,129.02,2.81 +2016-01-12 08:32:00,24.4025,129.05,2.83 +2016-01-12 08:47:00,23.9512,122.155,2.85 +2016-01-12 09:02:00,22.5475,122.605,2.87 +2016-01-12 09:17:00,23.7663,123.837,2.9 +2016-01-12 09:32:00,23.5675,124.315,2.91 +2016-01-12 09:47:00,23.425,124.717,2.93 +2016-01-12 10:02:00,24.1,125.867,2.93 +2016-01-12 10:17:00,23.42,127.027,2.94 +2016-01-12 10:32:00,23.8075,128.03,2.96 +2016-01-12 10:47:00,22.9375,128.92,2.98 +2016-01-12 11:02:00,22.6488,129.662,2.99 +2016-01-12 11:17:00,23.3213,130.315,3.03 +2016-01-12 11:32:00,24.5587,130.862,3.06 +2016-01-12 11:47:00,22.8463,131.367,3.08 +2016-01-12 12:02:00,22.2125,131.802,3.11 +2016-01-12 12:17:00,22.0187,132.227,3.14 +2016-01-12 12:32:00,23.1738,132.562,3.16 +2016-01-12 12:47:00,22.4512,132.947,3.16 +2016-01-12 13:02:00,24.4062,133.227,3.17 +2016-01-12 13:17:00,24.5062,133.505,3.19 +2016-01-12 13:32:00,22.4562,133.76,3.21 +2016-01-12 13:47:00,23.18,134.005,3.23 +2016-01-12 14:02:00,22.7975,134.235,3.23 +2016-01-12 14:17:00,24.005,134.455,3.26 +2016-01-12 14:32:00,24.205,134.68,3.28 +2016-01-12 14:47:00,23.4775,134.902,3.28 +2016-01-12 15:02:00,7.85125,135.152,3.29 +2016-01-12 15:16:22,21.4812,135.357,3.31 +2016-01-12 15:32:00,20.29,135.57,3.32 +2016-01-12 15:47:00,20.54,135.772,3.32 +2016-01-12 16:02:00,19.175,136.01,3.33 +2016-01-12 16:17:00,21.2087,136.257,3.34 +2016-01-12 16:32:00,20.58,136.475,3.35 +2016-01-12 16:47:00,19.13,136.68,3.35 +2016-01-12 17:02:00,19.9037,136.89,3.34 +2016-01-12 17:17:00,20.5375,137.095,3.34 +2016-01-12 17:32:00,20.1488,137.292,3.33 +2016-01-12 17:47:00,18.84,137.457,3.32 +2016-01-12 18:02:00,20.4912,137.68,3.31 +2016-01-12 18:17:00,19.9575,137.842,3.3 +2016-01-12 18:32:00,22.1,138.03,3.29 +2016-01-12 18:47:00,19.8613,138.207,3.27 +2016-01-12 19:02:00,21.6038,138.393,3.26 +2016-01-12 19:17:00,20.3463,138.57,3.25 +2016-01-12 19:32:00,21.2675,138.722,3.24 +2016-01-12 19:47:00,20.915,138.877,3.23 +2016-01-12 20:02:00,21.365,139.027,3.22 +2016-01-12 20:17:00,21.4125,139.15,3.21 +2016-01-12 20:32:00,21.06,139.298,3.19 +2016-01-12 20:47:00,19.225,139.43,3.18 +2016-01-12 21:02:00,21.2175,139.567,3.17 +2016-01-12 21:17:00,20.7337,139.72,3.16 +2016-01-12 21:32:00,21.1687,139.867,3.15 +2016-01-12 21:47:00,21.4613,139.965,3.16 +2016-01-12 22:02:00,18.9362,140.127,3.16 +2016-01-12 22:17:00,19.2725,140.242,3.16 +2016-01-12 22:32:00,20.8213,140.347,3.16 +2016-01-12 22:47:00,19.32,140.465,3.16 +2016-01-12 23:02:00,20.5413,140.6,3.14 +2016-01-12 23:17:00,20.4425,140.707,3.13 +2016-01-12 23:32:00,21.855,140.812,3.12 +2016-01-12 23:47:00,21.165,140.945,3.13 +2016-01-13 00:02:00,20.3438,141.05,3.13 +2016-01-13 00:17:00,22.25,141.158,3.13 +2016-01-13 00:32:00,20.585,141.287,3.14 +2016-01-13 00:47:00,20.4425,141.417,3.15 +2016-01-13 01:02:00,20.4425,141.505,3.13 +2016-01-13 01:17:00,21.3675,141.647,3.12 +2016-01-13 01:32:00,22.535,141.76,3.11 +2016-01-13 01:47:00,22.6813,141.88,3.11 +2016-01-13 02:02:00,20.6362,141.997,3.11 +2016-01-13 02:17:00,20.6362,142.092,3.11 +2016-01-13 02:32:00,18.9837,142.212,3.1 +2016-01-13 02:47:00,20.9225,142.31,3.08 +2016-01-13 03:02:00,22.1513,142.38,3.08 +2016-01-13 03:17:00,21.0625,142.492,3.08 +2016-01-13 03:32:00,20.0075,142.56,3.08 +2016-01-13 03:47:00,23.5025,142.65,3.1 +2016-01-13 04:02:00,21.3613,142.75,3.1 +2016-01-13 04:17:00,21.955,142.83,3.1 +2016-01-13 04:32:00,20.775,142.908,3.09 +2016-01-13 04:47:00,21.9062,142.997,3.1 +2016-01-13 05:02:00,22.2988,143.092,3.1 +2016-01-13 05:17:00,20.4912,143.16,3.09 +2016-01-13 05:32:00,20.2487,143.222,3.08 +2016-01-13 05:47:00,22.2475,143.32,3.08 +2016-01-13 06:02:00,22.97,143.4,3.09 +2016-01-13 06:17:00,20.3438,143.487,3.09 +2016-01-13 06:32:00,21.6137,143.572,3.11 +2016-01-13 06:47:00,20.7775,143.647,3.12 +2016-01-13 07:02:00,22.2487,143.717,3.14 +2016-01-13 07:17:00,20.775,143.783,3.15 +2016-01-13 07:32:00,21.8063,143.85,3.15 +2016-01-13 07:47:00,22.1025,143.917,3.14 +2016-01-13 08:02:00,23.1125,143.982,3.14 +2016-01-13 08:17:00,22.2487,144.065,3.14 +2016-01-13 08:32:00,21.3187,144.16,3.16 +2016-01-13 08:47:00,21.32,144.317,3.16 +2016-01-13 09:02:00,20.3925,144.47,3.19 +2016-01-13 09:17:00,20.0512,144.632,3.22 +2016-01-13 09:32:00,22.2,144.737,3.23 +2016-01-13 09:47:00,20.3463,144.9,3.25 +2016-01-13 10:02:00,23.0238,145.042,3.27 +2016-01-13 10:17:00,20.9725,145.13,3.29 +2016-01-13 10:32:00,23.5062,145.285,3.32 +2016-01-13 10:47:00,21.515,145.413,3.34 +2016-01-13 11:02:00,21.1162,145.53,3.37 +2016-01-13 11:17:00,22.8775,145.542,3.4 +2016-01-13 11:32:00,22.1038,145.77,3.43 +2016-01-13 11:47:00,20.69,145.85,3.46 +2016-01-13 12:02:00,23.0775,145.925,3.49 +2016-01-13 12:17:00,21.8587,146.02,3.52 +2016-01-13 12:32:00,21.02,146.107,3.54 +2016-01-13 12:47:00,20.685,146.342,3.56 +2016-01-13 13:02:00,21.3162,146.307,3.58 +2016-01-13 13:17:00,23.3075,146.367,3.59 +2016-01-13 13:32:00,21.115,146.395,3.61 +2016-01-13 13:47:00,21.015,146.562,3.63 +2016-01-13 14:02:00,20.9688,146.598,3.64 +2016-01-13 14:17:00,22.78,146.728,3.66 +2016-01-13 14:32:00,21.1725,146.783,3.66 +2016-01-13 14:47:00,21.8562,146.772,3.66 +2016-01-13 15:02:00,22.7775,146.925,3.67 +2016-01-13 15:17:00,21.66,146.962,3.67 +2016-01-13 15:32:00,22.2,147.025,3.68 +2016-01-13 15:47:00,20.5875,147.092,3.69 +2016-01-13 16:02:00,21.6612,147.175,3.69 +2016-01-13 16:17:00,21.2687,147.28,3.69 +2016-01-13 16:32:00,21.8538,147.375,3.67 +2016-01-13 16:47:00,21.8575,147.485,3.66 +2016-01-13 17:02:00,21.1137,147.562,3.66 +2016-01-13 17:17:00,21.96,147.66,3.67 +2016-01-13 17:32:00,20.7337,147.76,3.67 +2016-01-13 17:47:00,21.4175,147.832,3.67 +2016-01-13 18:02:00,21.76,147.94,3.66 +2016-01-13 18:17:00,20.8725,148.045,3.66 +2016-01-13 18:32:00,21.2687,148.133,3.65 +2016-01-13 18:47:00,22.5338,148.258,3.63 +2016-01-13 19:02:00,23.115,148.365,3.61 +2016-01-13 19:17:00,22.1038,148.478,3.6 +2016-01-13 19:32:00,23.26,148.572,3.61 +2016-01-13 19:47:00,23.85,148.675,3.61 +2016-01-13 20:02:00,21.6137,148.812,3.6 +2016-01-13 20:17:00,20.825,148.91,3.59 +2016-01-13 20:32:00,23.6025,149.01,3.59 +2016-01-13 20:47:00,22.0075,149.128,3.58 +2016-01-13 21:02:00,21.5137,149.225,3.59 +2016-01-13 21:17:00,22.2487,149.342,3.59 +2016-01-13 21:32:00,23.5537,149.443,3.58 +2016-01-13 21:47:00,23.7525,149.552,3.58 +2016-01-13 22:02:00,23.215,149.637,3.58 +2016-01-13 22:17:00,22.1038,149.728,3.58 +2016-01-13 22:32:00,22.3887,149.855,3.58 +2016-01-13 22:47:00,22.9238,149.952,3.59 +2016-01-13 23:02:00,22.4412,150.055,3.59 +2016-01-13 23:17:00,22.63,150.163,3.58 +2016-01-13 23:32:00,23.36,150.272,3.59 +2016-01-13 23:47:00,20.3025,150.375,3.59 +2016-01-14 00:02:00,23.805,150.478,3.6 +2016-01-14 00:17:00,21.8075,150.572,3.59 +2016-01-14 00:32:00,23.3112,150.69,3.6 +2016-01-14 00:47:00,23.61,150.788,3.6 +2016-01-14 01:02:00,21.6588,150.885,3.6 +2016-01-14 01:17:00,23.605,150.995,3.61 +2016-01-14 01:32:00,21.4713,151.087,3.61 +2016-01-14 01:47:00,22.4863,151.202,3.6 +2016-01-14 02:02:00,22.6825,151.315,3.59 +2016-01-14 02:17:00,22.7337,151.408,3.58 +2016-01-14 02:32:00,22.7375,151.53,3.57 +2016-01-14 02:47:00,23.0275,151.625,3.56 +2016-01-14 03:02:00,22.7337,151.735,3.54 +2016-01-14 03:17:00,21.0175,151.85,3.52 +2016-01-14 03:32:00,22.5375,151.96,3.5 +2016-01-14 03:47:00,22.2038,152.065,3.49 +2016-01-14 04:02:00,22.8275,152.197,3.47 +2016-01-14 04:17:00,20.2988,152.325,3.48 +2016-01-14 04:32:00,23.31,152.422,3.48 +2016-01-14 04:47:00,25.475,152.545,3.47 +2016-01-14 05:02:00,23.165,152.682,3.47 +2016-01-14 05:17:00,25.6738,152.8,3.48 +2016-01-14 05:32:00,23.6512,152.91,3.47 +2016-01-14 05:47:00,21.9613,153.045,3.46 +2016-01-14 06:02:00,22.6837,153.17,3.45 +2016-01-14 06:17:00,24.235,153.275,3.44 +2016-01-14 06:32:00,24.2325,153.408,3.42 +2016-01-14 06:47:00,22.5362,153.517,3.41 +2016-01-14 07:02:00,22.3913,153.62,3.4 +2016-01-14 07:17:00,22.5387,153.725,3.38 +2016-01-14 07:32:00,24.04,153.86,3.37 +2016-01-14 07:47:00,23.755,153.982,3.39 +2016-01-14 08:02:00,21.5163,154.08,3.43 +2016-01-14 08:17:00,25.7663,154.182,3.43 +2016-01-14 08:32:00,25.8688,154.342,3.41 +2016-01-14 08:47:00,23.5537,154.49,3.4 +2016-01-14 09:02:00,23.4562,154.622,3.38 +2016-01-14 09:17:00,24.1387,154.715,3.38 +2016-01-14 09:32:00,23.3575,154.875,3.36 +2016-01-14 09:47:00,24.64,155.0,3.34 +2016-01-14 10:02:00,25.7213,155.12,3.35 +2016-01-14 10:17:00,22.3412,155.245,3.35 +2016-01-14 10:32:00,22.975,155.37,3.35 +2016-01-14 10:47:00,24.3337,155.485,3.35 +2016-01-14 11:02:00,22.4375,155.592,3.35 +2016-01-14 11:17:00,23.65,155.72,3.36 +2016-01-14 11:32:00,23.5037,155.83,3.36 +2016-01-14 11:47:00,24.88,155.96,3.36 +2016-01-14 12:02:00,22.535,156.068,3.38 +2016-01-14 12:17:00,24.2862,156.14,3.39 +2016-01-14 12:32:00,22.7812,156.235,3.39 +2016-01-14 12:47:00,23.0713,156.36,3.37 +2016-01-14 13:02:00,21.9137,156.438,3.38 +2016-01-14 13:17:00,23.3613,156.52,3.39 +2016-01-14 13:32:00,23.9362,156.628,3.4 +2016-01-14 13:47:00,24.1312,156.712,3.42 +2016-01-14 14:02:00,22.7787,156.805,3.43 +2016-01-14 14:17:00,24.4388,156.872,3.44 +2016-01-14 14:32:00,22.3925,156.955,3.46 +2016-01-14 14:47:00,24.9375,157.047,3.47 +2016-01-14 15:02:00,23.3587,157.092,3.48 +2016-01-14 15:17:00,24.4875,157.19,3.48 +2016-01-14 15:32:00,23.7038,157.267,3.49 +2016-01-14 15:47:00,22.7325,157.372,3.49 +2016-01-14 16:02:00,23.2175,157.445,3.49 +2016-01-14 16:17:00,25.8763,157.547,3.49 +2016-01-14 16:32:00,23.1175,157.645,3.49 +2016-01-14 16:47:00,22.9812,157.755,3.49 +2016-01-14 17:02:00,23.6562,157.878,3.47 +2016-01-14 17:17:00,25.3337,157.973,3.46 +2016-01-14 17:32:00,23.46,158.095,3.45 +2016-01-14 17:47:00,23.4587,158.197,3.44 +2016-01-14 18:02:00,24.6888,158.292,3.44 +2016-01-14 18:17:00,23.2162,158.422,3.43 +2016-01-14 18:32:00,23.8538,158.525,3.42 +2016-01-14 18:47:00,22.9825,158.645,3.41 +2016-01-14 19:02:00,23.4112,158.747,3.41 +2016-01-14 19:17:00,25.0375,158.865,3.4 +2016-01-14 19:32:00,22.7825,158.975,3.39 +2016-01-14 19:47:00,23.2637,159.087,3.38 +2016-01-14 20:02:00,24.7875,159.182,3.38 +2016-01-14 20:17:00,22.8275,159.297,3.37 +2016-01-14 20:32:00,24.14,159.387,3.35 +2016-01-14 20:47:00,23.9962,159.503,3.34 +2016-01-14 21:02:00,23.2138,159.6,3.33 +2016-01-14 21:17:00,23.7062,159.677,3.33 +2016-01-14 21:32:00,23.5112,159.747,3.31 +2016-01-14 21:47:00,25.1875,159.84,3.3 +2016-01-14 22:02:00,22.44,159.908,3.3 +2016-01-14 22:17:00,21.475,160.0,3.29 +2016-01-14 22:32:00,24.4987,160.045,3.29 +2016-01-14 22:47:00,23.3138,160.142,3.28 +2016-01-14 23:02:00,25.8237,160.217,3.28 +2016-01-14 23:17:00,22.255,160.302,3.28 +2016-01-14 23:32:00,25.1425,160.365,3.28 +2016-01-14 23:47:00,22.2562,160.45,3.27 +2016-01-15 00:02:00,25.435,160.497,3.26 +2016-01-15 00:17:00,22.5425,160.55,3.25 +2016-01-15 00:32:00,23.7087,160.615,3.24 +2016-01-15 00:47:00,25.0887,160.665,3.23 +2016-01-15 01:02:00,26.95,160.725,3.22 +2016-01-15 01:17:00,25.97,160.783,3.21 +2016-01-15 01:32:00,23.8975,160.815,3.2 +2016-01-15 01:47:00,24.395,160.867,3.19 +2016-01-15 02:02:00,25.14,160.913,3.19 +2016-01-15 02:17:00,25.7275,160.957,3.18 +2016-01-15 02:32:00,25.4837,161.027,3.17 +2016-01-15 02:47:00,26.6525,161.052,3.16 +2016-01-15 03:02:00,25.5775,161.09,3.15 +2016-01-15 03:17:00,25.2875,161.117,3.15 +2016-01-15 03:32:00,26.12,161.155,3.15 +2016-01-15 03:47:00,25.725,161.195,3.14 +2016-01-15 04:02:00,25.3412,161.212,3.14 +2016-01-15 04:17:00,26.805,161.262,3.12 +2016-01-15 04:32:00,26.3037,161.307,3.11 +2016-01-15 04:47:00,24.8875,161.31,3.1 +2016-01-15 05:02:00,28.09,161.327,3.09 +2016-01-15 05:17:00,27.09,161.375,3.08 +2016-01-15 05:32:00,26.4512,161.375,3.08 +2016-01-15 05:47:00,25.3387,161.395,3.09 +2016-01-15 06:02:00,26.8525,161.413,3.09 +2016-01-15 06:17:00,26.2625,161.43,3.09 +2016-01-15 06:32:00,30.74,161.443,3.08 +2016-01-15 06:47:00,26.655,161.438,3.08 +2016-01-15 07:02:00,26.5025,161.47,3.07 +2016-01-15 07:17:00,25.2862,161.47,3.07 +2016-01-15 07:32:00,25.6775,161.465,3.08 +2016-01-15 07:47:00,27.7988,161.462,3.08 +2016-01-15 08:02:00,24.1437,161.47,3.09 +2016-01-15 08:17:00,26.4525,161.43,3.1 +2016-01-15 08:32:00,26.8525,161.438,3.1 +2016-01-15 08:47:00,26.2137,161.383,3.09 +2016-01-15 09:02:00,26.2175,161.35,3.09 +2016-01-15 09:17:00,26.4538,161.288,3.08 +2016-01-15 09:32:00,24.5425,161.26,3.07 +2016-01-15 09:47:00,26.4062,161.223,3.08 +2016-01-15 10:02:00,26.265,161.195,3.08 +2016-01-15 10:17:00,28.19,161.19,3.09 +2016-01-15 10:32:00,25.235,161.175,3.1 +2016-01-15 10:47:00,23.9938,161.172,3.1 +2016-01-15 11:02:00,24.6488,161.165,3.11 +2016-01-15 11:17:00,25.14,161.142,3.11 +2016-01-15 11:32:00,24.3438,161.112,3.12 +2016-01-15 11:47:00,25.7738,161.057,3.13 +2016-01-15 12:02:00,23.1237,160.92,3.15 +2016-01-15 12:17:00,24.3425,160.77,3.15 +2016-01-15 12:32:00,24.34,160.585,3.16 +2016-01-15 12:47:00,24.7862,160.45,3.17 +2016-01-15 13:02:00,23.515,160.39,3.16 +2016-01-15 13:17:00,25.3875,160.345,3.17 +2016-01-15 13:32:00,22.7438,160.337,3.18 +2016-01-15 13:47:00,23.08,160.32,3.19 +2016-01-15 14:02:00,24.5437,160.337,3.2 +2016-01-15 14:17:00,24.2387,160.34,3.2 +2016-01-15 14:32:00,22.0638,160.38,3.2 +2016-01-15 14:47:00,23.5125,160.39,3.21 +2016-01-15 15:02:00,22.3012,160.402,3.21 +2016-01-15 15:17:00,22.7387,160.45,3.21 +2016-01-15 15:32:00,25.2425,160.46,3.22 +2016-01-15 15:47:00,26.0238,160.495,3.22 +2016-01-15 16:02:00,24.7887,160.55,3.22 +2016-01-15 16:17:00,22.5462,160.58,3.23 +2016-01-15 16:32:00,24.545,160.633,3.23 +2016-01-15 16:47:00,23.9437,160.68,3.24 +2016-01-15 17:02:00,24.2937,160.75,3.24 +2016-01-15 17:17:00,24.8913,160.812,3.27 +2016-01-15 17:32:00,21.4762,160.87,3.28 +2016-01-15 17:47:00,23.4125,160.917,3.28 +2016-01-15 18:02:00,21.915,160.99,3.28 +2016-01-15 18:17:00,24.9425,161.017,3.27 +2016-01-15 18:32:00,25.6712,161.068,3.26 +2016-01-15 18:47:00,23.56,161.115,3.27 +2016-01-15 19:02:00,23.1212,161.17,3.26 +2016-01-15 19:17:00,22.4013,161.228,3.26 +2016-01-15 19:32:00,23.4613,161.242,3.25 +2016-01-15 19:47:00,22.5912,161.295,3.24 +2016-01-15 20:02:00,24.445,161.345,3.24 +2016-01-15 20:17:00,24.0963,161.383,3.23 +2016-01-15 20:32:00,22.2062,161.408,3.22 +2016-01-15 20:47:00,22.7363,161.462,3.2 +2016-01-15 21:02:00,23.9962,161.465,3.19 +2016-01-15 21:17:00,23.6125,161.503,3.18 +2016-01-15 21:32:00,21.7663,161.535,3.17 +2016-01-15 21:47:00,22.2575,161.552,3.17 +2016-01-15 22:02:00,22.5413,161.562,3.16 +2016-01-15 22:17:00,22.54,161.557,3.16 +2016-01-15 22:32:00,22.5875,161.535,3.15 +2016-01-15 22:47:00,23.4625,161.525,3.13 +2016-01-15 23:02:00,24.8887,161.52,3.13 +2016-01-15 23:17:00,22.8862,161.49,3.13 +2016-01-15 23:32:00,22.6387,161.465,3.12 +2016-01-15 23:47:00,23.1225,161.44,3.11 +2016-01-16 00:02:00,22.835,161.32,3.11 +2016-01-16 00:17:00,24.7913,161.2,3.1 +2016-01-16 00:32:00,23.7562,161.075,3.1 +2016-01-16 00:47:00,22.985,160.95,3.09 +2016-01-16 01:02:00,22.69,160.842,3.09 +2016-01-16 01:17:00,23.8075,160.762,3.09 +2016-01-16 01:32:00,23.9463,160.685,3.08 +2016-01-16 01:47:00,21.72,160.633,3.07 +2016-01-16 02:02:00,21.915,160.57,3.07 +2016-01-16 02:17:00,25.24,160.475,3.06 +2016-01-16 02:32:00,22.2588,160.413,3.05 +2016-01-16 02:47:00,22.26,160.35,3.05 +2016-01-16 03:02:00,22.1137,160.26,3.05 +2016-01-16 03:17:00,23.8025,160.175,3.04 +2016-01-16 03:32:00,23.6087,160.085,3.04 +2016-01-16 03:47:00,22.5863,160.017,3.04 +2016-01-16 04:02:00,24.1837,159.917,3.05 +2016-01-16 04:17:00,23.2637,159.85,3.03 +2016-01-16 04:32:00,23.8087,159.783,3.03 +2016-01-16 04:47:00,23.5625,159.695,3.03 +2016-01-16 05:02:00,22.015,159.617,3.03 +2016-01-16 05:17:00,21.715,159.533,3.03 +2016-01-16 05:32:00,23.3162,159.462,3.03 +2016-01-16 05:47:00,22.5425,159.372,3.03 +2016-01-16 06:02:00,22.1113,159.277,3.03 +2016-01-16 06:17:00,21.5725,159.092,3.03 +2016-01-16 06:32:00,23.6137,158.837,3.02 +2016-01-16 06:47:00,22.2612,158.622,3.01 +2016-01-16 07:02:00,21.6663,158.42,3.01 +2016-01-16 07:17:00,22.4912,158.318,3.0 +2016-01-16 07:32:00,21.1738,158.247,3.0 +2016-01-16 07:47:00,23.0775,158.205,3.01 +2016-01-16 08:02:00,24.1875,158.18,3.01 +2016-01-16 08:17:00,22.88,158.13,3.01 +2016-01-16 08:32:00,22.59,158.06,3.01 +2016-01-16 08:47:00,24.2412,157.965,3.02 +2016-01-16 09:02:00,22.685,157.842,3.03 +2016-01-16 09:17:00,23.2175,157.707,3.03 +2016-01-16 09:32:00,22.3012,157.617,3.02 +2016-01-16 09:47:00,23.3587,157.552,3.02 +2016-01-16 10:02:00,24.3913,157.533,3.03 +2016-01-16 10:17:00,23.9,157.512,3.04 +2016-01-16 10:32:00,22.0662,157.47,3.05 +2016-01-16 10:47:00,22.8337,157.49,3.05 +2016-01-16 11:02:00,21.3737,157.478,3.06 +2016-01-16 11:17:00,22.98,157.452,3.05 +2016-01-16 11:32:00,23.0788,157.455,3.06 +2016-01-16 11:47:00,22.6375,157.422,3.07 +2016-01-16 12:02:00,24.0887,157.4,3.07 +2016-01-16 12:17:00,21.4287,157.383,3.08 +2016-01-16 12:32:00,23.3625,157.37,3.09 +2016-01-16 12:47:00,22.2575,157.353,3.11 +2016-01-16 13:02:00,24.6925,157.31,3.11 +2016-01-16 13:17:00,23.9938,157.318,3.1 +2016-01-16 13:32:00,23.7113,157.29,3.1 +2016-01-16 13:47:00,22.5413,157.25,3.1 +2016-01-16 14:02:00,22.6937,157.18,3.1 +2016-01-16 14:17:00,23.0812,157.087,3.1 +2016-01-16 14:32:00,22.255,156.987,3.08 +2016-01-16 14:47:00,24.49,156.872,3.07 +2016-01-16 15:02:00,21.6188,156.732,3.07 +2016-01-16 15:17:00,22.35,156.663,3.07 +2016-01-16 15:32:00,21.3213,156.61,3.08 +2016-01-16 15:47:00,22.6925,156.585,3.08 +2016-01-16 16:02:00,22.6387,156.562,3.09 +2016-01-16 16:17:00,22.3037,156.575,3.09 +2016-01-16 16:32:00,22.9325,156.557,3.09 +2016-01-16 16:47:00,24.54,156.533,3.08 +2016-01-16 17:02:00,22.3925,156.492,3.08 +2016-01-16 17:17:00,23.2162,156.432,3.08 +2016-01-16 17:32:00,23.6562,156.395,3.08 +2016-01-16 17:47:00,23.71,156.35,3.08 +2016-01-16 18:02:00,23.5125,156.32,3.08 +2016-01-16 18:17:00,23.265,156.32,3.08 +2016-01-16 18:32:00,22.9262,156.302,3.08 +2016-01-16 18:47:00,20.9725,156.247,3.07 +2016-01-16 19:02:00,21.8112,156.247,3.06 +2016-01-16 19:17:00,23.8012,156.228,3.04 +2016-01-16 19:32:00,22.1113,156.202,3.04 +2016-01-16 19:47:00,23.66,156.193,3.04 +2016-01-16 20:02:00,22.06,156.152,3.04 +2016-01-16 20:17:00,22.3487,156.152,3.03 +2016-01-16 20:32:00,23.4587,156.155,3.03 +2016-01-16 20:47:00,23.8037,156.133,3.02 +2016-01-16 21:02:00,22.155,156.128,3.01 +2016-01-16 21:17:00,24.09,156.112,3.01 +2016-01-16 21:32:00,22.2062,156.057,3.0 +2016-01-16 21:47:00,22.98,156.027,2.99 +2016-01-16 22:02:00,21.7162,155.962,2.98 +2016-01-16 22:17:00,23.1663,155.908,2.97 +2016-01-16 22:32:00,22.3,155.862,2.96 +2016-01-16 22:47:00,23.7537,155.812,2.95 +2016-01-16 23:02:00,22.2537,155.802,2.93 +2016-01-16 23:17:00,24.34,155.81,2.93 +2016-01-16 23:32:00,22.35,155.805,2.92 +2016-01-16 23:47:00,22.8825,155.832,2.93 +2016-01-17 00:02:00,22.585,155.855,2.93 +2016-01-17 00:17:00,22.8288,155.875,2.92 +2016-01-17 00:32:00,20.8312,155.875,2.92 +2016-01-17 00:47:00,23.4587,155.875,2.91 +2016-01-17 01:02:00,22.1075,155.87,2.92 +2016-01-17 01:17:00,22.3475,155.792,2.91 +2016-01-17 01:32:00,24.3425,155.693,2.91 +2016-01-17 01:47:00,22.0612,155.68,2.9 +2016-01-17 02:02:00,21.81,155.652,2.89 +2016-01-17 02:17:00,24.0912,155.61,2.87 +2016-01-17 02:32:00,23.7038,155.56,2.86 +2016-01-17 02:47:00,23.6512,155.503,2.85 +2016-01-17 03:02:00,22.39,155.432,2.84 +2016-01-17 03:17:00,23.0275,155.383,2.84 +2016-01-17 03:32:00,21.2738,155.335,2.83 +2016-01-17 03:47:00,22.8787,155.258,2.82 +2016-01-17 04:02:00,22.0575,155.188,2.8 +2016-01-17 04:17:00,23.0713,155.14,2.81 +2016-01-17 04:32:00,21.4713,155.07,2.81 +2016-01-17 04:47:00,22.1537,154.997,2.8 +2016-01-17 05:02:00,21.7637,154.95,2.79 +2016-01-17 05:17:00,25.4837,154.902,2.79 +2016-01-17 05:32:00,22.35,154.83,2.79 +2016-01-17 05:47:00,21.0725,154.767,2.77 +2016-01-17 06:02:00,23.2637,154.655,2.75 +2016-01-17 06:17:00,24.0425,154.452,2.76 +2016-01-17 06:32:00,22.7825,154.228,2.75 +2016-01-17 06:47:00,21.4212,154.04,2.75 +2016-01-17 07:02:00,22.495,153.952,2.74 +2016-01-17 07:17:00,23.1687,153.878,2.73 +2016-01-17 07:32:00,23.4613,153.825,2.72 +2016-01-17 07:47:00,21.6125,153.725,2.71 +2016-01-17 08:02:00,23.7537,152.96,2.7 +2016-01-17 08:17:00,22.7325,152.242,2.69 +2016-01-17 08:32:00,21.7612,151.822,2.69 +2016-01-17 08:47:00,21.22,151.54,2.69 +2016-01-17 09:02:00,22.0575,151.365,2.68 +2016-01-17 09:17:00,21.3213,151.302,2.67 +2016-01-17 09:32:00,21.71,151.29,2.65 +2016-01-17 09:47:00,22.8775,151.288,2.64 +2016-01-17 10:02:00,22.2988,151.327,2.62 +2016-01-17 10:17:00,22.8787,151.34,2.63 +2016-01-17 10:32:00,20.8275,151.387,2.63 +2016-01-17 10:47:00,21.4688,151.422,2.62 +2016-01-17 11:02:00,23.9938,151.432,2.62 +2016-01-17 11:17:00,22.5888,151.462,2.61 +2016-01-17 11:32:00,22.9762,151.508,2.62 +2016-01-17 11:47:00,22.1075,151.527,2.62 +2016-01-17 12:02:00,23.3112,151.512,2.63 +2016-01-17 12:17:00,23.1237,151.508,2.64 +2016-01-17 12:32:00,22.7337,151.49,2.64 +2016-01-17 12:47:00,23.95,151.467,2.64 +2016-01-17 13:02:00,22.935,151.465,2.64 +2016-01-17 13:17:00,23.6062,151.473,2.64 +2016-01-17 13:32:00,22.635,151.46,2.64 +2016-01-17 13:47:00,23.025,151.467,2.62 +2016-01-17 14:02:00,23.1663,151.457,2.61 +2016-01-17 14:17:00,21.7612,151.482,2.61 +2016-01-17 14:32:00,23.2612,151.49,2.62 +2016-01-17 14:47:00,23.3187,151.492,2.62 +2016-01-17 15:02:00,22.1575,151.485,2.62 +2016-01-17 15:17:00,23.1637,151.435,2.63 +2016-01-17 15:32:00,23.165,151.395,2.62 +2016-01-17 15:47:00,22.9762,151.31,2.63 +2016-01-17 16:02:00,23.12,151.22,2.64 +2016-01-17 16:17:00,24.8375,151.182,2.64 +2016-01-17 16:32:00,22.6387,151.133,2.63 +2016-01-17 16:47:00,21.7162,151.095,2.63 +2016-01-17 17:02:00,22.6825,151.095,2.63 +2016-01-17 17:17:00,21.5662,151.105,2.62 +2016-01-17 17:32:00,21.8125,151.09,2.62 +2016-01-17 17:47:00,22.1562,151.115,2.62 +2016-01-17 18:02:00,22.8325,151.135,2.61 +2016-01-17 18:17:00,22.9287,151.112,2.6 +2016-01-17 18:32:00,22.115,151.13,2.59 +2016-01-17 18:47:00,22.0125,151.095,2.58 +2016-01-17 19:02:00,22.735,151.047,2.57 +2016-01-17 19:17:00,20.1987,150.92,2.56 +2016-01-17 19:32:00,22.49,150.783,2.55 +2016-01-17 19:47:00,22.7812,150.663,2.54 +2016-01-17 20:02:00,23.3587,150.572,2.53 +2016-01-17 20:17:00,23.9925,150.492,2.53 +2016-01-17 20:32:00,23.2138,150.445,2.52 +2016-01-17 20:47:00,23.8087,150.395,2.51 +2016-01-17 21:02:00,23.85,150.36,2.51 +2016-01-17 21:17:00,21.7125,150.348,2.5 +2016-01-17 21:32:00,22.3913,150.342,2.5 +2016-01-17 21:47:00,24.0875,150.325,2.49 +2016-01-17 22:02:00,21.615,150.262,2.48 +2016-01-17 22:17:00,22.1087,150.18,2.48 +2016-01-17 22:32:00,23.03,150.082,2.47 +2016-01-17 22:47:00,21.3175,149.962,2.47 +2016-01-17 23:02:00,23.1175,149.862,2.46 +2016-01-17 23:17:00,21.76,149.767,2.46 +2016-01-17 23:32:00,23.9,149.732,2.45 +2016-01-17 23:47:00,23.1188,149.707,2.44 +2016-01-18 00:02:00,21.66,149.707,2.44 +2016-01-18 00:17:00,23.3637,149.717,2.43 +2016-01-18 00:32:00,23.215,149.725,2.42 +2016-01-18 00:47:00,22.1038,149.732,2.41 +2016-01-18 01:02:00,23.9925,149.725,2.4 +2016-01-18 01:17:00,22.6338,149.712,2.39 +2016-01-18 01:32:00,24.09,149.707,2.38 +2016-01-18 01:47:00,22.9262,149.67,2.36 +2016-01-18 02:02:00,22.0612,149.565,2.35 +2016-01-18 02:17:00,22.3487,149.44,2.35 +2016-01-18 02:32:00,22.295,149.29,2.34 +2016-01-18 02:47:00,23.1675,149.18,2.33 +2016-01-18 03:02:00,22.9325,149.103,2.32 +2016-01-18 03:17:00,23.1188,149.03,2.31 +2016-01-18 03:32:00,22.6875,148.973,2.3 +2016-01-18 03:47:00,21.3675,148.943,2.28 +2016-01-18 04:02:00,22.495,148.92,2.26 +2016-01-18 04:17:00,21.6162,148.895,2.24 +2016-01-18 04:32:00,23.4587,148.887,2.22 +2016-01-18 04:47:00,23.075,148.878,2.2 +2016-01-18 05:02:00,22.345,148.878,2.19 +2016-01-18 05:17:00,22.5375,148.865,2.17 +2016-01-18 05:32:00,22.4863,148.865,2.15 +2016-01-18 05:47:00,21.3225,148.835,2.13 +2016-01-18 06:02:00,21.7175,148.825,2.11 +2016-01-18 06:17:00,22.6875,148.81,2.11 +2016-01-18 06:32:00,23.4075,148.777,2.09 +2016-01-18 06:47:00,22.9775,148.737,2.06 +2016-01-18 07:02:00,23.6512,148.655,2.04 +2016-01-18 07:17:00,22.7838,148.562,2.02 +2016-01-18 07:32:00,22.6312,148.45,2.0 +2016-01-18 07:47:00,23.0762,148.345,1.98 +2016-01-18 08:02:00,22.1612,148.288,1.95 +2016-01-18 08:17:00,23.9912,148.258,1.93 +2016-01-18 08:32:00,23.1175,148.24,1.91 +2016-01-18 08:47:00,23.3587,148.247,1.9 +2016-01-18 09:02:00,22.9762,148.242,1.88 +2016-01-18 09:17:00,20.4938,148.228,1.86 +2016-01-18 09:32:00,22.49,148.245,1.88 +2016-01-18 09:47:00,23.4075,148.235,1.92 +2016-01-18 10:02:00,22.4437,148.235,1.94 +2016-01-18 10:17:00,22.7337,148.235,1.93 +2016-01-18 10:32:00,21.7113,148.217,1.93 +2016-01-18 10:47:00,22.1062,148.225,1.92 +2016-01-18 11:02:00,22.1537,148.21,1.91 +2016-01-18 11:17:00,21.9575,148.2,1.91 +2016-01-18 11:32:00,22.3463,148.207,1.91 +2016-01-18 11:47:00,22.3037,148.225,1.91 +2016-01-18 12:02:00,22.925,148.22,1.91 +2016-01-18 12:17:00,23.1637,148.272,1.89 +2016-01-18 12:32:00,21.0662,148.31,1.89 +2016-01-18 12:47:00,22.8787,147.723,1.89 +2016-01-18 13:02:00,20.5437,146.672,1.93 +2016-01-18 13:17:00,24.2363,145.86,1.93 +2016-01-18 13:32:00,22.2075,145.197,1.92 +2016-01-18 13:47:00,21.565,144.525,1.92 +2016-01-18 14:02:00,23.2588,143.757,1.89 +2016-01-18 14:17:00,22.585,142.893,1.87 +2016-01-18 14:32:00,23.1663,141.985,1.82 +2016-01-18 14:47:00,21.8587,141.122,1.79 +2016-01-18 15:02:00,20.8763,140.237,1.78 +2016-01-18 15:17:00,22.8775,139.285,1.79 +2016-01-18 15:32:00,23.3587,138.342,1.81 +2016-01-18 15:47:00,21.3662,137.545,1.8 +2016-01-18 16:02:00,21.0687,136.942,1.8 +2016-01-18 16:17:00,21.27,136.502,1.79 +2016-01-18 16:32:00,22.8812,136.127,1.79 +2016-01-18 16:47:00,23.3063,135.85,1.79 +2016-01-18 17:02:00,21.1212,135.662,1.77 +2016-01-18 17:17:00,20.9775,135.548,1.75 +2016-01-18 17:32:00,21.8613,135.505,1.73 +2016-01-18 17:47:00,23.8025,135.512,1.72 +2016-01-18 18:02:00,23.26,135.52,1.7 +2016-01-18 18:17:00,22.6825,135.57,1.67 +2016-01-18 18:32:00,22.9262,135.645,1.65 +2016-01-18 18:47:00,21.1762,135.742,1.63 +2016-01-18 19:02:00,23.7525,135.822,1.6 +2016-01-18 19:17:00,21.6137,135.927,1.56 +2016-01-18 19:32:00,21.9625,136.01,1.52 +2016-01-18 19:47:00,22.2975,136.1,1.49 +2016-01-18 20:02:00,20.3512,136.202,1.44 +2016-01-18 20:17:00,23.0263,136.298,1.41 +2016-01-18 20:32:00,22.1038,136.42,1.37 +2016-01-18 20:47:00,23.4538,136.55,1.33 +2016-01-18 21:02:00,22.0112,136.707,1.3 +2016-01-18 21:17:00,22.6338,136.842,1.26 +2016-01-18 21:32:00,21.12,136.975,1.22 +2016-01-18 21:47:00,21.3675,137.122,1.18 +2016-01-18 22:02:00,21.0225,137.252,1.14 +2016-01-18 22:17:00,21.8587,137.375,1.11 +2016-01-18 22:32:00,22.73,137.477,1.07 +2016-01-18 22:47:00,22.1025,137.595,1.03 +2016-01-18 23:02:00,23.705,137.677,1.0 +2016-01-18 23:17:00,21.4212,137.825,0.97 +2016-01-18 23:32:00,23.355,137.932,0.95 +2016-01-18 23:47:00,20.7763,138.067,0.91 +2016-01-19 00:02:00,22.0037,138.175,0.89 +2016-01-19 00:17:00,22.15,138.307,0.87 +2016-01-19 00:32:00,21.7087,138.425,0.84 +2016-01-19 00:47:00,22.7363,138.557,0.81 +2016-01-19 01:02:00,20.6912,138.67,0.78 +2016-01-19 01:17:00,22.2462,138.802,0.75 +2016-01-19 01:32:00,22.0037,138.895,0.73 +2016-01-19 01:47:00,22.4337,138.95,0.71 +2016-01-19 02:02:00,22.5812,139.025,0.69 +2016-01-19 02:17:00,22.7787,139.087,0.66 +2016-01-19 02:32:00,21.2125,139.137,0.62 +2016-01-19 02:47:00,22.4863,139.182,0.6 +2016-01-19 03:02:00,21.9125,139.245,0.59 +2016-01-19 03:17:00,22.2525,139.28,0.57 +2016-01-19 03:32:00,21.1212,139.335,0.53 +2016-01-19 03:47:00,23.405,139.382,0.51 +2016-01-19 04:02:00,23.1625,139.415,0.48 +2016-01-19 04:17:00,22.2012,139.442,0.45 +2016-01-19 04:32:00,21.2712,139.5,0.42 +2016-01-19 04:47:00,21.1225,139.54,0.39 +2016-01-19 05:02:00,21.215,139.572,0.36 +2016-01-19 05:17:00,20.87,139.582,0.32 +2016-01-19 05:32:00,22.9713,139.555,0.29 +2016-01-19 05:47:00,22.6325,139.432,0.27 +2016-01-19 06:02:00,21.0687,139.255,0.23 +2016-01-19 06:17:00,21.315,139.052,0.19 +2016-01-19 06:32:00,21.17,138.89,0.16 +2016-01-19 06:47:00,22.3887,138.49,0.14 +2016-01-19 07:02:00,21.1687,137.893,0.11 +2016-01-19 07:17:00,21.5587,136.915,0.08 +2016-01-19 07:32:00,21.6087,135.705,0.05 +2016-01-19 07:47:00,23.1625,134.167,0.04 +2016-01-19 08:02:00,23.0175,132.675,0.04 +2016-01-19 08:17:00,21.96,128.37,0.04 +2016-01-19 08:32:00,22.5375,124.137,0.04 +2016-01-19 08:47:00,22.3438,121.132,0.06 +2016-01-19 09:02:00,21.3162,119.09,0.05 +2016-01-19 09:17:00,21.9112,117.515,0.06 +2016-01-19 09:32:00,22.1525,116.295,0.06 +2016-01-19 09:47:00,22.9212,115.4,0.07 +2016-01-19 10:02:00,20.2462,114.99,0.07 +2016-01-19 10:17:00,22.8787,114.897,0.08 +2016-01-19 10:32:00,20.1987,114.957,0.08 +2016-01-19 10:47:00,22.6825,115.12,0.07 +2016-01-19 11:02:00,22.2,115.38,0.09 +2016-01-19 11:17:00,23.7988,115.715,0.09 +2016-01-19 11:32:00,21.7612,116.112,0.1 +2016-01-19 11:47:00,23.26,116.492,0.1 +2016-01-19 12:02:00,21.5163,116.938,0.1 +2016-01-19 12:17:00,22.4875,117.427,0.09 +2016-01-19 12:32:00,22.785,117.875,0.1 +2016-01-19 12:47:00,21.5137,118.325,0.1 +2016-01-19 13:02:00,22.735,118.735,0.09 +2016-01-19 13:17:00,23.2087,119.137,0.09 +2016-01-19 13:32:00,22.15,119.545,0.08 +2016-01-19 13:47:00,23.6512,119.905,0.08 +2016-01-19 14:02:00,22.4412,120.262,0.08 +2016-01-19 14:17:00,23.2138,120.555,0.08 +2016-01-19 14:32:00,22.585,120.752,0.08 +2016-01-19 14:47:00,20.6862,121.01,0.08 +2016-01-19 15:02:00,23.1137,121.143,0.07 +2016-01-19 15:17:00,21.0662,121.232,0.06 +2016-01-19 15:32:00,22.0062,121.188,0.08 +2016-01-19 15:47:00,22.5837,120.742,0.09 +2016-01-19 16:02:00,23.4587,119.897,0.1 +2016-01-19 16:17:00,21.6637,118.917,0.1 +2016-01-19 16:32:00,21.71,117.947,0.11 +2016-01-19 16:47:00,21.2188,117.027,0.11 +2016-01-19 17:02:00,23.305,116.173,0.12 +2016-01-19 17:17:00,21.565,115.495,0.1 +2016-01-19 17:32:00,21.76,114.885,0.1 +2016-01-19 17:47:00,22.7812,114.36,0.1 +2016-01-19 18:02:00,21.6612,113.88,0.11 +2016-01-19 18:17:00,20.83,113.335,0.13 +2016-01-19 18:32:00,21.2675,112.822,0.14 +2016-01-19 18:47:00,20.6375,112.175,0.16 +2016-01-19 19:02:00,21.4688,111.342,0.17 +2016-01-19 19:17:00,22.0062,110.36,0.17 +2016-01-19 19:32:00,21.5187,109.287,0.18 +2016-01-19 19:47:00,20.4912,108.1,0.18 +2016-01-19 20:02:00,21.4713,106.902,0.19 +2016-01-19 20:17:00,19.3725,105.67,0.2 +2016-01-19 20:32:00,22.44,104.503,0.21 +2016-01-19 20:47:00,21.6575,103.397,0.18 +2016-01-19 21:02:00,21.81,102.68,0.19 +2016-01-19 21:17:00,21.27,102.2,0.2 +2016-01-19 21:32:00,21.27,101.982,0.2 +2016-01-19 21:47:00,20.7862,101.938,0.21 +2016-01-19 22:02:00,22.98,102.04,0.2 +2016-01-19 22:17:00,22.6325,102.255,0.2 +2016-01-19 22:32:00,22.4837,102.55,0.19 +2016-01-19 22:47:00,21.91,102.857,0.19 +2016-01-19 23:02:00,21.7087,103.305,0.19 +2016-01-19 23:17:00,21.12,103.73,0.17 +2016-01-19 23:32:00,21.2225,104.177,0.16 +2016-01-19 23:47:00,19.7675,104.527,0.17 +2016-01-20 00:02:00,20.5375,104.805,0.17 +2016-01-20 00:17:00,20.8262,105.03,0.18 +2016-01-20 00:32:00,20.7787,105.312,0.17 +2016-01-20 00:47:00,22.7787,105.59,0.18 +2016-01-20 01:02:00,22.6325,105.857,0.17 +2016-01-20 01:17:00,20.2475,106.19,0.16 +2016-01-20 01:32:00,20.3475,106.5,0.16 +2016-01-20 01:47:00,22.055,106.897,0.17 +2016-01-20 02:02:00,19.1387,107.28,0.17 +2016-01-20 02:17:00,21.9575,107.66,0.18 +2016-01-20 02:32:00,20.5912,108.052,0.19 +2016-01-20 02:47:00,21.71,108.425,0.19 +2016-01-20 03:02:00,21.6075,108.785,0.19 +2016-01-20 03:17:00,21.07,109.155,0.2 +2016-01-20 03:32:00,22.4887,109.515,0.2 +2016-01-20 03:47:00,21.71,109.85,0.2 +2016-01-20 04:02:00,21.5137,110.265,0.19 +2016-01-20 04:17:00,22.6837,110.658,0.21 +2016-01-20 04:32:00,22.3887,110.987,0.21 +2016-01-20 04:47:00,21.3175,111.32,0.2 +2016-01-20 05:02:00,21.565,111.655,0.2 +2016-01-20 05:17:00,19.6212,112.055,0.21 +2016-01-20 05:32:00,22.2075,112.382,0.22 +2016-01-20 05:47:00,21.3213,112.722,0.23 +2016-01-20 06:02:00,20.97,113.065,0.22 +2016-01-20 06:17:00,22.7312,113.367,0.22 +2016-01-20 06:32:00,20.4925,113.658,0.22 +2016-01-20 06:47:00,21.6125,114.007,0.23 +2016-01-20 07:02:00,21.17,114.265,0.23 +2016-01-20 07:17:00,21.8613,114.567,0.22 +2016-01-20 07:32:00,21.765,114.867,0.22 +2016-01-20 07:47:00,21.2213,115.217,0.22 +2016-01-20 08:02:00,19.3725,115.475,0.23 +2016-01-20 08:17:00,22.06,115.783,0.24 +2016-01-20 08:32:00,21.6612,116.092,0.24 +2016-01-20 08:47:00,21.5625,116.405,0.26 +2016-01-20 09:02:00,20.7825,116.67,0.26 +2016-01-20 09:17:00,20.735,117.02,0.27 +2016-01-20 09:32:00,20.69,117.393,0.27 +2016-01-20 09:47:00,21.0638,117.745,0.28 +2016-01-20 10:02:00,19.9125,118.057,0.29 +2016-01-20 10:17:00,21.5662,118.4,0.3 +2016-01-20 10:32:00,20.445,118.75,0.31 +2016-01-20 10:47:00,21.8075,119.085,0.33 +2016-01-20 11:02:00,19.82,119.452,0.35 +2016-01-20 11:17:00,22.1075,119.705,0.37 +2016-01-20 11:32:00,21.66,119.987,0.38 +2016-01-20 11:47:00,19.9125,120.33,0.37 +2016-01-20 12:02:00,19.0387,120.57,0.38 +2016-01-20 12:17:00,22.4388,120.817,0.39 +2016-01-20 12:32:00,21.2175,121.092,0.4 +2016-01-20 12:47:00,22.7375,121.415,0.4 +2016-01-20 13:02:00,21.2738,121.635,0.4 +2016-01-20 13:17:00,21.3175,121.89,0.42 +2016-01-20 13:32:00,21.32,122.188,0.43 +2016-01-20 13:47:00,22.1525,122.46,0.44 +2016-01-20 14:02:00,21.3675,122.69,0.46 +2016-01-20 14:17:00,20.25,122.938,0.48 +2016-01-20 14:32:00,23.6025,123.212,0.49 +2016-01-20 14:47:00,23.8,123.46,0.51 +2016-01-20 15:02:00,22.54,123.702,0.53 +2016-01-20 15:17:00,22.055,123.95,0.55 +2016-01-20 15:32:00,21.8613,124.197,0.56 +2016-01-20 15:47:00,22.4412,124.46,0.59 +2016-01-20 16:02:00,23.7038,124.688,0.61 +2016-01-20 16:17:00,22.06,124.932,0.64 +2016-01-20 16:32:00,20.8312,125.19,0.65 +2016-01-20 16:47:00,21.2225,125.487,0.66 +2016-01-20 17:02:00,21.4713,125.682,0.68 +2016-01-20 17:17:00,21.8613,125.952,0.69 +2016-01-20 17:32:00,21.0662,126.195,0.68 +2016-01-20 17:47:00,22.0062,126.475,0.67 +2016-01-20 18:02:00,20.8775,126.695,0.66 +2016-01-20 18:17:00,22.2513,126.952,0.67 +2016-01-20 18:32:00,19.7675,127.262,0.67 +2016-01-20 18:47:00,20.4512,127.442,0.67 +2016-01-20 19:02:00,21.3175,127.68,0.67 +2016-01-20 19:17:00,21.1738,127.923,0.66 +2016-01-20 19:32:00,22.205,128.207,0.67 +2016-01-20 19:47:00,21.52,128.38,0.66 +2016-01-20 20:02:00,20.975,128.592,0.66 +2016-01-20 20:17:00,20.4,128.81,0.65 +2016-01-20 20:32:00,22.0625,129.037,0.64 +2016-01-20 20:47:00,20.785,129.262,0.61 +2016-01-20 21:02:00,21.3225,129.477,0.6 +2016-01-20 21:17:00,22.1012,129.71,0.59 +2016-01-20 21:32:00,22.205,129.93,0.58 +2016-01-20 21:47:00,20.0088,130.197,0.58 +2016-01-20 22:02:00,22.835,130.322,0.56 +2016-01-20 22:17:00,23.0737,130.6,0.55 +2016-01-20 22:32:00,22.305,130.795,0.54 +2016-01-20 22:47:00,23.5537,131.03,0.53 +2016-01-20 23:02:00,19.7125,131.252,0.53 +2016-01-20 23:17:00,20.8288,131.522,0.51 +2016-01-20 23:32:00,23.9912,131.76,0.51 +2016-01-20 23:47:00,21.7125,131.897,0.51 +2016-01-21 00:02:00,22.3012,132.102,0.52 +2016-01-21 00:17:00,22.5413,132.302,0.51 +2016-01-21 00:32:00,21.3725,132.495,0.5 +2016-01-21 00:47:00,21.1725,132.717,0.51 +2016-01-21 01:02:00,23.4075,132.908,0.51 +2016-01-21 01:17:00,22.8312,133.112,0.5 +2016-01-21 01:32:00,22.0575,133.3,0.49 +2016-01-21 01:47:00,21.8112,133.58,0.49 +2016-01-21 02:02:00,22.5387,133.725,0.5 +2016-01-21 02:17:00,20.9737,133.977,0.5 +2016-01-21 02:32:00,22.1562,134.167,0.5 +2016-01-21 02:47:00,23.1162,134.307,0.5 +2016-01-21 03:02:00,22.5375,134.495,0.49 +2016-01-21 03:17:00,21.4225,134.682,0.47 +2016-01-21 03:32:00,22.3012,134.867,0.46 +2016-01-21 03:47:00,21.22,135.045,0.46 +2016-01-21 04:02:00,20.9775,135.265,0.46 +2016-01-21 04:17:00,21.5212,135.397,0.45 +2016-01-21 04:32:00,20.5425,135.542,0.43 +2016-01-21 04:47:00,21.0687,135.717,0.43 +2016-01-21 05:02:00,21.7113,135.88,0.42 +2016-01-21 05:17:00,22.685,136.067,0.41 +2016-01-21 05:32:00,21.6612,136.167,0.4 +2016-01-21 05:47:00,20.7412,136.327,0.38 +2016-01-21 06:02:00,22.2062,136.412,0.37 +2016-01-21 06:17:00,21.4225,136.555,0.35 +2016-01-21 06:32:00,22.6862,136.685,0.34 +2016-01-21 06:47:00,21.4675,136.807,0.33 +2016-01-21 07:02:00,22.8312,136.99,0.31 +2016-01-21 07:17:00,20.9238,137.05,0.29 +2016-01-21 07:32:00,22.2513,137.232,0.27 +2016-01-21 07:47:00,20.8787,137.275,0.25 +2016-01-21 08:02:00,21.4225,137.362,0.26 +2016-01-21 08:17:00,22.345,137.452,0.24 +2016-01-21 08:32:00,22.5875,137.555,0.23 +2016-01-21 08:47:00,21.4175,137.6,0.22 +2016-01-21 09:02:00,23.2087,137.685,0.23 +2016-01-21 09:17:00,22.1562,137.74,0.23 +2016-01-21 09:32:00,22.4887,137.71,0.22 +2016-01-21 09:47:00,23.0775,137.76,0.22 +2016-01-21 10:02:00,21.7113,137.83,0.23 +2016-01-21 10:17:00,21.0675,137.897,0.23 +2016-01-21 10:32:00,22.7812,137.87,0.24 +2016-01-21 10:47:00,22.4825,137.94,0.23 +2016-01-21 11:02:00,22.0575,137.985,0.22 +2016-01-21 11:17:00,21.5662,138.048,0.22 +2016-01-21 11:32:00,20.3525,138.125,0.24 +2016-01-21 11:47:00,21.965,138.25,0.25 +2016-01-21 12:02:00,22.0587,138.272,0.25 +2016-01-21 12:17:00,21.27,138.337,0.24 +2016-01-21 12:32:00,20.9688,138.393,0.24 +2016-01-21 12:47:00,20.7438,138.485,0.26 +2016-01-21 13:02:00,21.0212,138.542,0.27 +2016-01-21 13:17:00,21.5638,138.645,0.28 +2016-01-21 13:32:00,23.4088,138.65,0.28 +2016-01-21 13:47:00,23.1237,138.737,0.28 +2016-01-21 14:02:00,21.8125,138.8,0.29 +2016-01-21 14:17:00,22.39,138.88,0.29 +2016-01-21 14:32:00,23.215,138.982,0.3 +2016-01-21 14:47:00,22.345,139.105,0.3 +2016-01-21 15:02:00,21.3162,139.215,0.31 +2016-01-21 15:17:00,23.4625,139.355,0.32 +2016-01-21 15:32:00,20.925,139.492,0.34 +2016-01-21 15:47:00,22.0625,139.64,0.35 +2016-01-21 16:02:00,22.1075,139.805,0.36 +2016-01-21 16:17:00,22.3937,139.972,0.36 +2016-01-21 16:32:00,21.8138,140.205,0.36 +2016-01-21 16:47:00,23.0737,140.312,0.36 +2016-01-21 17:02:00,20.9238,140.507,0.36 +2016-01-21 17:17:00,21.7625,140.673,0.35 +2016-01-21 17:32:00,21.4238,140.855,0.34 +2016-01-21 17:47:00,20.7812,141.042,0.34 +2016-01-21 18:02:00,21.22,141.173,0.33 +2016-01-21 18:17:00,21.3213,141.33,0.3 +2016-01-21 18:32:00,21.1212,141.482,0.29 +2016-01-21 18:47:00,21.9112,141.61,0.27 +2016-01-21 19:02:00,20.5425,141.747,0.25 +2016-01-21 19:17:00,22.5375,141.885,0.23 +2016-01-21 19:32:00,22.0088,141.992,0.21 +2016-01-21 19:47:00,22.5888,142.102,0.19 +2016-01-21 20:02:00,20.4463,142.185,0.17 +2016-01-21 20:17:00,20.2475,142.265,0.16 +2016-01-21 20:32:00,22.9762,142.31,0.14 +2016-01-21 20:47:00,21.3175,142.365,0.12 +2016-01-21 21:02:00,20.9275,142.412,0.11 +2016-01-21 21:17:00,21.865,142.447,0.09 +2016-01-21 21:32:00,21.9587,142.54,0.07 +2016-01-21 21:47:00,22.7775,142.46,0.06 +2016-01-21 22:02:00,21.71,142.035,0.05 +2016-01-21 22:17:00,21.315,141.122,0.04 +2016-01-21 22:32:00,21.8087,139.925,0.05 +2016-01-21 22:47:00,22.2475,138.425,0.04 +2016-01-21 23:02:00,22.1075,136.647,0.05 +2016-01-21 23:17:00,20.7812,134.712,0.03 +2016-01-21 23:32:00,21.1687,132.975,0.03 +2016-01-21 23:47:00,20.8725,131.395,0.03 +2016-01-22 00:02:00,20.9225,129.91,0.04 +2016-01-22 00:17:00,22.735,128.465,0.03 +2016-01-22 00:32:00,20.925,127.283,0.03 +2016-01-22 00:47:00,19.8662,126.387,0.02 +2016-01-22 01:02:00,20.5475,125.7,0.03 +2016-01-22 01:17:00,21.9112,125.215,0.03 +2016-01-22 01:32:00,21.5612,124.79,0.02 +2016-01-22 01:47:00,21.2213,124.202,0.02 +2016-01-22 02:02:00,21.9088,123.497,0.02 +2016-01-22 02:17:00,21.3662,122.877,0.01 +2016-01-22 02:32:00,21.9638,122.252,0.02 +2016-01-22 02:47:00,20.735,121.697,0.02 +2016-01-22 03:02:00,22.44,121.285,0.02 +2016-01-22 03:17:00,21.4675,120.96,0.02 +2016-01-22 03:32:00,21.8087,120.662,0.03 +2016-01-22 03:47:00,20.83,120.405,0.02 +2016-01-22 04:02:00,20.7363,120.195,0.01 +2016-01-22 04:17:00,21.7612,120.09,0.01 +2016-01-22 04:32:00,21.6162,120.05,0.0 +2016-01-22 04:47:00,20.7375,120.03,0.0 +2016-01-22 05:02:00,20.3512,120.035,0.0 +2016-01-22 05:17:00,22.1525,120.027,0.0 +2016-01-22 05:32:00,21.1175,120.087,0.0 +2016-01-22 05:47:00,22.0062,120.135,0.0 +2016-01-22 06:02:00,21.7588,120.185,0.0 +2016-01-22 06:17:00,21.0187,120.24,0.0 +2016-01-22 06:32:00,21.7612,120.275,-0.01 +2016-01-22 06:47:00,21.12,120.3,-0.01 +2016-01-22 07:02:00,22.2025,120.29,-0.01 +2016-01-22 07:17:00,22.83,120.3,-0.01 +2016-01-22 07:32:00,21.065,120.312,-0.01 +2016-01-22 07:47:00,22.3412,120.298,-0.02 +2016-01-22 08:02:00,22.8763,120.04,-0.01 +2016-01-22 08:17:00,21.9587,119.382,-0.01 +2016-01-22 08:32:00,20.83,118.655,-0.01 +2016-01-22 08:47:00,22.5863,118.155,0.0 +2016-01-22 09:02:00,21.17,118.055,0.02 +2016-01-22 09:17:00,19.9613,118.125,0.04 +2016-01-22 09:32:00,21.8625,118.177,0.07 +2016-01-22 09:47:00,21.86,118.182,0.08 +2016-01-22 10:02:00,22.1012,118.135,0.09 +2016-01-22 10:17:00,21.5625,117.923,0.1 +2016-01-22 10:32:00,20.875,117.59,0.12 +2016-01-22 10:47:00,20.2937,117.115,0.13 +2016-01-22 11:02:00,20.7775,116.692,0.15 +2016-01-22 11:17:00,21.4662,116.408,0.16 +2016-01-22 11:32:00,21.2663,116.26,0.18 +2016-01-22 11:47:00,22.25,116.177,0.19 +2016-01-22 12:02:00,21.2663,116.072,0.19 +2016-01-22 12:17:00,22.925,116.045,0.19 +2016-01-22 12:32:00,22.35,116.112,0.19 +2016-01-22 12:47:00,22.6825,116.13,0.19 +2016-01-22 13:02:00,21.7075,115.972,0.18 +2016-01-22 13:17:00,22.105,115.71,0.18 +2016-01-22 13:32:00,20.495,115.68,0.19 +2016-01-22 13:47:00,21.065,115.745,0.19 +2016-01-22 14:02:00,21.9675,115.805,0.17 +2016-01-22 14:17:00,21.1212,115.885,0.17 +2016-01-22 14:32:00,20.975,116.003,0.17 +2016-01-22 14:47:00,20.2012,116.097,0.17 +2016-01-22 15:02:00,21.1175,116.23,0.15 +2016-01-22 15:17:00,21.8562,116.37,0.14 +2016-01-22 15:32:00,21.61,116.515,0.14 +2016-01-22 15:47:00,21.47,116.667,0.11 +2016-01-22 16:02:00,21.9112,116.825,0.11 +2016-01-22 16:17:00,20.7387,117.007,0.1 +2016-01-22 16:32:00,21.365,117.19,0.1 +2016-01-22 16:47:00,21.12,117.362,0.11 +2016-01-22 17:02:00,20.1488,117.533,0.11 +2016-01-22 17:17:00,19.9587,117.615,0.1 +2016-01-22 17:32:00,22.05,117.75,0.09 +2016-01-22 17:47:00,21.8613,117.822,0.09 +2016-01-22 18:02:00,20.9225,117.893,0.09 +2016-01-22 18:17:00,20.5863,117.945,0.1 +2016-01-22 18:32:00,20.2,117.897,0.1 +2016-01-22 18:47:00,21.71,117.732,0.11 +2016-01-22 19:02:00,20.005,117.367,0.11 +2016-01-22 19:17:00,19.275,116.47,0.1 +2016-01-22 19:32:00,20.1038,115.28,0.11 +2016-01-22 19:47:00,20.8775,114.143,0.1 +2016-01-22 20:02:00,20.2537,113.077,0.11 +2016-01-22 20:17:00,19.4225,112.025,0.12 +2016-01-22 20:32:00,20.3988,111.025,0.11 +2016-01-22 20:47:00,21.8625,110.077,0.11 +2016-01-22 21:02:00,21.2687,109.147,0.1 +2016-01-22 21:17:00,21.17,108.335,0.1 +2016-01-22 21:32:00,20.4425,107.527,0.1 +2016-01-22 21:47:00,21.2225,106.707,0.12 +2016-01-22 22:02:00,20.1062,105.643,0.13 +2016-01-22 22:17:00,19.3725,104.665,0.13 +2016-01-22 22:32:00,21.3138,103.812,0.13 +2016-01-22 22:47:00,20.5863,102.98,0.13 +2016-01-22 23:02:00,21.8063,102.037,0.14 +2016-01-22 23:17:00,21.5638,100.972,0.14 +2016-01-22 23:32:00,21.5675,100.027,0.14 +2016-01-22 23:47:00,19.9125,99.385,0.15 +2016-01-23 00:02:00,19.5163,98.895,0.15 +2016-01-23 00:17:00,21.7075,98.355,0.16 +2016-01-23 00:32:00,23.02,97.8,0.18 +2016-01-23 00:47:00,21.1712,97.305,0.19 +2016-01-23 01:02:00,20.8763,96.925,0.19 +2016-01-23 01:17:00,22.3425,96.5225,0.19 +2016-01-23 01:32:00,19.7663,96.1875,0.2 +2016-01-23 01:47:00,20.6437,95.8625,0.2 +2016-01-23 02:02:00,20.9725,95.6475,0.21 +2016-01-23 02:17:00,22.2025,95.465,0.22 +2016-01-23 02:32:00,21.22,95.43,0.22 +2016-01-23 02:47:00,22.0575,95.4625,0.23 +2016-01-23 03:02:00,20.0062,95.52,0.23 +2016-01-23 03:17:00,21.66,95.6025,0.16 +2016-01-23 03:32:00,21.32,95.66,0.13 +2016-01-23 03:47:00,21.7612,95.7175,0.13 +2016-01-23 04:02:00,20.5425,95.74,0.15 +2016-01-23 04:17:00,21.8575,95.7925,0.17 +2016-01-23 04:32:00,21.4187,95.87,0.16 +2016-01-23 04:47:00,20.6375,95.975,0.17 +2016-01-23 05:02:00,19.135,96.1075,0.14 +2016-01-23 05:17:00,21.0212,96.2525,0.14 +2016-01-23 05:32:00,21.07,96.4225,0.17 +2016-01-23 05:47:00,19.8112,96.55,0.19 +2016-01-23 06:02:00,21.2237,96.7025,0.22 +2016-01-23 06:17:00,21.5638,96.8325,0.24 +2016-01-23 06:32:00,21.3175,96.925,0.26 +2016-01-23 06:47:00,19.225,97.0375,0.27 +2016-01-23 07:02:00,21.76,97.15,0.28 +2016-01-23 07:17:00,20.105,97.2425,0.3 +2016-01-23 07:32:00,20.1038,97.3525,0.29 +2016-01-23 07:47:00,19.2775,97.4325,0.29 +2016-01-23 08:02:00,21.6162,97.4825,0.3 +2016-01-23 08:17:00,21.12,97.505,0.33 +2016-01-23 08:32:00,22.6837,97.525,0.35 +2016-01-23 08:47:00,21.9575,97.545,0.35 +2016-01-23 09:02:00,21.3187,97.575,0.36 +2016-01-23 09:17:00,21.0713,97.72,0.39 +2016-01-23 09:32:00,20.9713,97.87,0.41 +2016-01-23 09:47:00,22.2537,98.0875,0.43 +2016-01-23 10:02:00,19.865,98.335,0.45 +2016-01-23 10:17:00,20.825,98.665,0.47 +2016-01-23 10:32:00,20.545,99.1075,0.48 +2016-01-23 10:47:00,23.26,99.54,0.49 +2016-01-23 11:02:00,21.1725,100.027,0.51 +2016-01-23 11:17:00,20.9725,100.595,0.53 +2016-01-23 11:32:00,19.5662,101.132,0.54 +2016-01-23 11:47:00,21.1162,101.775,0.54 +2016-01-23 12:02:00,20.2962,102.408,0.56 +2016-01-23 12:17:00,20.4925,103.03,0.55 +2016-01-23 12:32:00,20.5875,103.665,0.53 +2016-01-23 12:47:00,20.8737,104.283,0.51 +2016-01-23 13:02:00,21.32,104.93,0.5 +2016-01-23 13:17:00,20.6437,105.555,0.49 +2016-01-23 13:32:00,20.5462,106.145,0.49 +2016-01-23 13:47:00,21.1212,106.737,0.49 +2016-01-23 14:02:00,20.445,107.302,0.49 +2016-01-23 14:17:00,21.9625,107.878,0.48 +2016-01-23 14:32:00,22.1038,108.423,0.48 +2016-01-23 14:47:00,22.3937,108.935,0.46 +2016-01-23 15:02:00,21.2225,109.435,0.45 +2016-01-23 15:17:00,20.5925,109.957,0.46 +2016-01-23 15:32:00,20.5437,110.47,0.47 +2016-01-23 15:47:00,21.27,110.947,0.46 +2016-01-23 16:02:00,21.8112,111.435,0.46 +2016-01-23 16:17:00,20.9737,111.865,0.5 +2016-01-23 16:32:00,21.3712,112.367,0.49 +2016-01-23 16:47:00,20.4975,112.742,0.5 +2016-01-23 17:02:00,19.4725,113.197,0.5 +2016-01-23 17:17:00,21.9613,113.643,0.49 +2016-01-23 17:32:00,20.6475,114.075,0.49 +2016-01-23 17:47:00,20.78,114.507,0.47 +2016-01-23 18:02:00,19.5737,114.995,0.45 +2016-01-23 18:17:00,20.8288,115.417,0.43 +2016-01-23 18:32:00,20.6462,115.885,0.42 +2016-01-23 18:47:00,20.74,116.337,0.4 +2016-01-23 19:02:00,21.8125,116.755,0.39 +2016-01-23 19:17:00,19.6687,117.217,0.38 +2016-01-23 19:32:00,21.9137,117.685,0.36 +2016-01-23 19:47:00,20.5512,118.165,0.35 +2016-01-23 20:02:00,21.37,118.685,0.35 +2016-01-23 20:17:00,21.3725,119.212,0.34 +2016-01-23 20:32:00,21.5225,119.755,0.33 +2016-01-23 20:47:00,21.175,120.29,0.33 +2016-01-23 21:02:00,20.4975,120.852,0.33 +2016-01-23 21:17:00,20.8312,121.37,0.33 +2016-01-23 21:32:00,21.7663,121.9,0.33 +2016-01-23 21:47:00,21.3688,122.395,0.31 +2016-01-23 22:02:00,20.83,122.912,0.31 +2016-01-23 22:17:00,22.8838,123.43,0.3 +2016-01-23 22:32:00,21.2738,123.945,0.31 +2016-01-23 22:47:00,22.3475,124.425,0.3 +2016-01-23 23:02:00,20.0075,124.932,0.31 +2016-01-23 23:17:00,20.5,125.405,0.3 +2016-01-23 23:32:00,21.3712,125.88,0.3 +2016-01-23 23:47:00,21.7663,126.352,0.29 +2016-01-24 00:02:00,21.2712,126.792,0.29 +2016-01-24 00:17:00,20.5987,127.25,0.29 +2016-01-24 00:32:00,22.4487,127.692,0.29 +2016-01-24 00:47:00,20.4512,128.143,0.28 +2016-01-24 01:02:00,21.5638,128.6,0.27 +2016-01-24 01:17:00,21.025,129.007,0.27 +2016-01-24 01:32:00,20.155,129.445,0.26 +2016-01-24 01:47:00,21.52,129.862,0.26 +2016-01-24 02:02:00,20.925,130.292,0.25 +2016-01-24 02:17:00,21.5263,130.68,0.25 +2016-01-24 02:32:00,22.2062,131.095,0.25 +2016-01-24 02:47:00,21.715,131.502,0.25 +2016-01-24 03:02:00,21.4225,131.925,0.25 +2016-01-24 03:17:00,21.9625,132.312,0.25 +2016-01-24 03:32:00,21.8625,132.707,0.25 +2016-01-24 03:47:00,20.35,133.102,0.25 +2016-01-24 04:02:00,21.865,133.49,0.26 +2016-01-24 04:17:00,22.0612,133.837,0.26 +2016-01-24 04:32:00,22.8825,134.21,0.26 +2016-01-24 04:47:00,22.1575,134.57,0.27 +2016-01-24 05:02:00,20.2525,134.95,0.27 +2016-01-24 05:17:00,20.7387,135.298,0.28 +2016-01-24 05:32:00,21.6625,135.64,0.3 +2016-01-24 05:47:00,20.4487,135.985,0.3 +2016-01-24 06:02:00,20.745,136.32,0.32 +2016-01-24 06:17:00,20.21,136.647,0.35 +2016-01-24 06:32:00,20.7838,136.965,0.37 +2016-01-24 06:47:00,21.8625,137.275,0.39 +2016-01-24 07:02:00,21.5238,137.582,0.43 +2016-01-24 07:17:00,22.7375,137.915,0.47 +2016-01-24 07:32:00,20.8825,138.247,0.5 +2016-01-24 07:47:00,22.2087,138.587,0.55 +2016-01-24 08:02:00,20.5512,138.938,0.59 +2016-01-24 08:17:00,21.1237,139.252,0.63 +2016-01-24 08:32:00,22.7325,139.56,0.65 +2016-01-24 08:47:00,22.2075,139.872,0.67 +2016-01-24 09:02:00,22.6387,140.158,0.7 +2016-01-24 09:17:00,20.0125,140.395,0.73 +2016-01-24 09:32:00,22.0587,140.675,0.75 +2016-01-24 09:47:00,21.4762,140.917,0.75 +2016-01-24 10:02:00,22.59,141.158,0.79 +2016-01-24 10:17:00,21.2738,141.35,0.85 +2016-01-24 10:32:00,21.3763,141.572,0.87 +2016-01-24 10:47:00,20.3538,141.768,0.9 +2016-01-24 11:02:00,22.8375,141.94,0.9 +2016-01-24 11:17:00,22.3487,142.132,0.93 +2016-01-24 11:32:00,20.74,142.29,0.95 +2016-01-24 11:47:00,21.5737,142.455,0.98 +2016-01-24 12:02:00,21.5225,142.612,1.01 +2016-01-24 12:17:00,22.16,142.752,1.05 +2016-01-24 12:32:00,21.3237,142.882,1.07 +2016-01-24 12:47:00,21.4238,143.037,1.08 +2016-01-24 13:02:00,21.1787,143.15,1.1 +2016-01-24 13:17:00,20.74,143.283,1.14 +2016-01-24 13:32:00,21.3275,143.397,1.18 +2016-01-24 13:47:00,21.0762,143.497,1.2 +2016-01-24 14:02:00,21.0737,143.615,1.23 +2016-01-24 14:17:00,22.1588,143.705,1.28 +2016-01-24 14:32:00,22.3075,143.8,1.31 +2016-01-24 14:47:00,20.4037,143.91,1.33 +2016-01-24 15:02:00,20.7887,144.007,1.37 +2016-01-24 15:17:00,21.6175,144.095,1.41 +2016-01-24 15:32:00,20.6475,144.167,1.44 +2016-01-24 15:47:00,20.9825,144.22,1.48 +2016-01-24 16:02:00,21.1787,144.295,1.5 +2016-01-24 16:17:00,20.8812,144.37,1.53 +2016-01-24 16:32:00,21.4275,144.44,1.55 +2016-01-24 16:47:00,21.7663,144.497,1.58 +2016-01-24 17:02:00,20.4562,144.59,1.6 +2016-01-24 17:17:00,21.92,144.65,1.62 +2016-01-24 17:32:00,19.6325,144.705,1.63 +2016-01-24 17:47:00,21.6712,144.775,1.65 +2016-01-24 18:02:00,22.3525,144.825,1.67 +2016-01-24 18:17:00,21.4287,144.902,1.69 +2016-01-24 18:32:00,20.885,144.945,1.72 +2016-01-24 18:47:00,20.7412,145.015,1.73 +2016-01-24 19:02:00,22.2575,145.045,1.75 +2016-01-24 19:17:00,21.67,145.103,1.77 +2016-01-24 19:32:00,20.1125,145.167,1.79 +2016-01-24 19:47:00,21.7675,145.215,1.81 +2016-01-24 20:02:00,21.92,145.262,1.83 +2016-01-24 20:17:00,22.8375,145.32,1.84 +2016-01-24 20:32:00,21.8175,145.353,1.86 +2016-01-24 20:47:00,21.7175,145.395,1.88 +2016-01-24 21:02:00,21.97,145.42,1.89 +2016-01-24 21:17:00,21.33,145.482,1.91 +2016-01-24 21:32:00,21.9225,145.505,1.93 +2016-01-24 21:47:00,21.3275,145.53,1.94 +2016-01-24 22:02:00,19.725,145.607,1.95 +2016-01-24 22:17:00,21.3275,145.635,1.97 +2016-01-24 22:32:00,20.3587,145.697,1.98 +2016-01-24 22:47:00,20.11,145.745,1.99 +2016-01-24 23:02:00,21.1813,145.772,2.01 +2016-01-24 23:17:00,20.4587,145.807,2.02 +2016-01-24 23:32:00,20.26,145.842,2.02 +2016-01-24 23:47:00,20.4525,145.9,2.04 +2016-01-25 00:02:00,21.77,145.938,2.05 +2016-01-25 00:17:00,21.5275,145.982,2.05 +2016-01-25 00:32:00,20.2125,146.015,2.06 +2016-01-25 00:47:00,20.5563,146.057,2.08 +2016-01-25 01:02:00,19.6362,146.105,2.08 +2016-01-25 01:17:00,21.18,146.145,2.1 +2016-01-25 01:32:00,20.0163,146.188,2.11 +2016-01-25 01:47:00,20.16,146.228,2.13 +2016-01-25 02:02:00,20.6488,146.272,2.14 +2016-01-25 02:17:00,19.6775,146.332,2.16 +2016-01-25 02:32:00,21.325,146.367,2.17 +2016-01-25 02:47:00,21.2812,146.435,2.2 +2016-01-25 03:02:00,21.18,146.485,2.22 +2016-01-25 03:17:00,21.3312,146.54,2.24 +2016-01-25 03:32:00,19.9262,146.562,2.26 +2016-01-25 03:47:00,19.8712,146.61,2.28 +2016-01-25 04:02:00,22.6925,146.672,2.29 +2016-01-25 04:17:00,21.5737,146.73,2.32 +2016-01-25 04:32:00,19.9688,146.772,2.34 +2016-01-25 04:47:00,21.9212,146.835,2.37 +2016-01-25 05:02:00,19.9713,146.878,2.4 +2016-01-25 05:17:00,22.3538,146.93,2.41 +2016-01-25 05:32:00,22.0662,146.98,2.43 +2016-01-25 05:47:00,22.1612,147.042,2.45 +2016-01-25 06:02:00,22.9875,147.09,2.46 +2016-01-25 06:17:00,22.115,147.142,2.48 +2016-01-25 06:32:00,22.795,147.202,2.49 +2016-01-25 06:47:00,21.8725,147.277,2.5 +2016-01-25 07:02:00,21.87,147.33,2.51 +2016-01-25 07:17:00,22.0675,147.395,2.53 +2016-01-25 07:32:00,21.4837,147.455,2.54 +2016-01-25 07:47:00,20.3063,147.54,2.54 +2016-01-25 08:02:00,20.0625,147.595,2.56 +2016-01-25 08:17:00,21.3775,147.68,2.58 +2016-01-25 08:32:00,22.595,147.737,2.59 +2016-01-25 08:47:00,21.7725,147.797,2.6 +2016-01-25 09:02:00,21.2275,147.855,2.62 +2016-01-25 09:17:00,22.26,147.938,2.63 +2016-01-25 09:32:00,22.4013,147.992,2.65 +2016-01-25 09:47:00,23.1263,148.08,2.67 +2016-01-25 10:02:00,21.1825,148.14,2.69 +2016-01-25 10:17:00,21.33,148.217,2.7 +2016-01-25 10:32:00,20.84,148.297,2.71 +2016-01-25 10:47:00,21.62,148.378,2.74 +2016-01-25 11:02:00,23.2175,148.465,2.77 +2016-01-25 11:17:00,23.4637,148.517,2.79 +2016-01-25 11:32:00,21.3763,148.585,2.82 +2016-01-25 11:47:00,23.175,148.67,2.84 +2016-01-25 12:02:00,21.6738,148.75,2.86 +2016-01-25 12:17:00,21.725,148.807,2.89 +2016-01-25 12:32:00,22.9412,148.927,2.91 +2016-01-25 12:47:00,20.31,149.033,2.93 +2016-01-25 13:02:00,22.165,149.145,2.95 +2016-01-25 13:17:00,20.5025,149.247,2.99 +2016-01-25 13:32:00,20.7925,149.387,3.02 +2016-01-25 13:47:00,22.3538,149.527,3.05 +2016-01-25 14:02:00,22.55,149.677,3.07 +2016-01-25 14:17:00,23.1837,149.832,3.1 +2016-01-25 14:32:00,23.1775,149.962,3.12 +2016-01-25 14:47:00,21.9737,150.117,3.16 +2016-01-25 15:02:00,23.0425,150.25,3.19 +2016-01-25 15:17:00,21.1375,150.413,3.23 +2016-01-25 15:32:00,20.3613,150.542,3.28 +2016-01-25 15:47:00,22.315,150.682,3.32 +2016-01-25 16:02:00,22.1212,150.837,3.37 +2016-01-25 16:17:00,23.5737,150.978,3.42 +2016-01-25 16:32:00,22.2162,151.098,3.47 +2016-01-25 16:47:00,24.0525,151.247,3.52 +2016-01-25 17:02:00,21.8725,151.362,3.56 +2016-01-25 17:17:00,21.5788,151.515,3.58 +2016-01-25 17:32:00,21.9262,151.603,3.62 +2016-01-25 17:47:00,22.4112,151.78,3.65 +2016-01-25 18:02:00,23.3725,151.85,3.68 +2016-01-25 18:17:00,21.675,151.982,3.71 +2016-01-25 18:32:00,23.7663,152.1,3.72 +2016-01-25 18:47:00,23.1338,152.202,3.74 +2016-01-25 19:02:00,23.0863,152.335,3.75 +2016-01-25 19:17:00,21.2812,152.45,3.76 +2016-01-25 19:32:00,23.37,152.572,3.78 +2016-01-25 19:47:00,23.0413,152.672,3.8 +2016-01-25 20:02:00,21.8275,152.812,3.82 +2016-01-25 20:17:00,23.2237,152.938,3.85 +2016-01-25 20:32:00,24.9037,153.035,3.86 +2016-01-25 20:47:00,21.6263,153.152,3.87 +2016-01-25 21:02:00,22.9962,153.245,3.87 +2016-01-25 21:17:00,23.8175,153.335,3.86 +2016-01-25 21:32:00,24.155,153.455,3.87 +2016-01-25 21:47:00,23.6712,153.565,3.89 +2016-01-25 22:02:00,23.57,153.67,3.9 +2016-01-25 22:17:00,24.7988,153.775,3.91 +2016-01-25 22:32:00,23.0375,153.855,3.91 +2016-01-25 22:47:00,23.8625,154.01,3.92 +2016-01-25 23:02:00,22.5975,154.105,3.95 +2016-01-25 23:17:00,22.6475,154.197,3.96 +2016-01-25 23:32:00,21.2375,154.292,3.97 +2016-01-25 23:47:00,21.0863,154.413,3.99 +2016-01-26 00:02:00,23.9062,154.497,4.01 +2016-01-26 00:17:00,23.1787,154.612,4.03 +2016-01-26 00:32:00,22.8438,154.695,4.05 +2016-01-26 00:47:00,22.1687,154.815,4.07 +2016-01-26 01:02:00,22.75,154.925,4.1 +2016-01-26 01:17:00,24.4562,155.022,4.12 +2016-01-26 01:32:00,25.4475,155.13,4.14 +2016-01-26 01:47:00,23.4713,155.228,4.15 +2016-01-26 02:02:00,23.3237,155.332,4.17 +2016-01-26 02:17:00,20.75,155.462,4.18 +2016-01-26 02:32:00,22.9912,155.575,4.19 +2016-01-26 02:47:00,22.3613,155.697,4.19 +2016-01-26 03:02:00,23.275,155.81,4.2 +2016-01-26 03:17:00,24.4587,155.908,4.21 +2016-01-26 03:32:00,23.8175,155.995,4.21 +2016-01-26 03:47:00,24.8475,156.095,4.22 +2016-01-26 04:02:00,23.7175,156.205,4.23 +2016-01-26 04:17:00,23.5225,156.35,4.23 +2016-01-26 04:32:00,24.055,156.445,4.24 +2016-01-26 04:47:00,23.6675,156.565,4.25 +2016-01-26 05:02:00,23.1825,156.677,4.27 +2016-01-26 05:17:00,24.6588,156.825,4.29 +2016-01-26 05:32:00,23.615,156.887,4.32 +2016-01-26 05:47:00,24.5587,157.085,4.33 +2016-01-26 06:02:00,24.3037,157.163,4.33 +2016-01-26 06:17:00,24.2525,157.267,4.35 +2016-01-26 06:32:00,24.4025,157.405,4.38 +2016-01-26 06:47:00,25.4887,157.538,4.4 +2016-01-26 07:02:00,24.0563,157.67,4.42 +2016-01-26 07:17:00,24.005,157.807,4.43 +2016-01-26 07:32:00,25.4412,157.943,4.46 +2016-01-26 07:47:00,25.535,158.07,4.49 +2016-01-26 08:02:00,24.75,158.202,4.51 +2016-01-26 08:17:00,27.105,158.337,4.54 +2016-01-26 08:32:00,24.1987,158.473,4.57 +2016-01-26 08:47:00,25.2513,158.667,4.59 +2016-01-26 09:02:00,23.1375,158.84,4.62 +2016-01-26 09:17:00,25.3012,159.062,4.65 +2016-01-26 09:32:00,24.4525,159.25,4.7 +2016-01-26 09:47:00,25.735,159.48,4.73 +2016-01-26 10:02:00,25.0525,159.65,4.74 +2016-01-26 10:17:00,24.6525,159.855,4.77 +2016-01-26 10:32:00,26.3662,160.052,4.8 +2016-01-26 10:47:00,26.6162,160.228,4.84 +2016-01-26 11:02:00,26.0812,160.397,4.88 +2016-01-26 11:17:00,25.1525,160.582,4.9 +2016-01-26 11:32:00,28.2038,160.767,4.93 +2016-01-26 11:47:00,25.055,160.935,4.97 +2016-01-26 12:02:00,25.2038,161.142,5.0 +2016-01-26 12:17:00,25.6888,161.337,5.04 +2016-01-26 12:32:00,26.2237,161.542,5.06 +2016-01-26 12:47:00,24.56,161.772,5.09 +2016-01-26 13:02:00,24.1062,161.982,5.13 +2016-01-26 13:17:00,25.935,162.24,5.16 +2016-01-26 13:32:00,25.7363,162.5,5.17 +2016-01-26 13:47:00,23.6225,162.747,5.2 +2016-01-26 14:02:00,24.3025,163.045,5.23 +2016-01-26 14:17:00,25.45,163.288,5.26 +2016-01-26 14:32:00,23.8237,163.535,5.28 +2016-01-26 14:47:00,24.1562,163.795,5.3 +2016-01-26 15:02:00,23.9088,164.035,5.31 +2016-01-26 15:17:00,22.2712,164.272,5.33 +2016-01-26 15:32:00,23.72,164.503,5.35 +2016-01-26 15:47:00,26.035,164.74,5.37 +2016-01-26 16:02:00,24.355,164.978,5.38 +2016-01-26 16:17:00,22.51,165.202,5.38 +2016-01-26 16:32:00,26.4662,165.41,5.39 +2016-01-26 16:47:00,25.2062,165.64,5.41 +2016-01-26 17:02:00,24.405,165.82,5.41 +2016-01-26 17:17:00,25.0537,166.055,5.42 +2016-01-26 17:32:00,24.1537,166.285,5.43 +2016-01-26 17:47:00,24.7562,166.482,5.43 +2016-01-26 18:02:00,26.3662,166.672,5.43 +2016-01-26 18:17:00,24.9562,166.832,5.44 +2016-01-26 18:32:00,25.2038,167.05,5.44 +2016-01-26 18:47:00,25.5425,167.253,5.45 +2016-01-26 19:02:00,24.855,167.427,5.44 +2016-01-26 19:17:00,24.2537,167.607,5.45 +2016-01-26 19:32:00,25.4912,167.777,5.45 +2016-01-26 19:47:00,25.7862,168.015,5.46 +2016-01-26 20:02:00,25.1038,168.105,5.46 +2016-01-26 20:17:00,25.055,168.3,5.47 +2016-01-26 20:32:00,25.5413,168.462,5.47 +2016-01-26 20:47:00,24.4525,168.575,5.48 +2016-01-26 21:02:00,24.6525,168.73,5.49 +2016-01-26 21:17:00,23.8613,168.883,5.49 +2016-01-26 21:32:00,24.25,169.033,5.5 +2016-01-26 21:47:00,26.03,169.197,5.51 +2016-01-26 22:02:00,26.7162,169.31,5.52 +2016-01-26 22:17:00,25.4938,169.445,5.52 +2016-01-26 22:32:00,25.7337,169.572,5.52 +2016-01-26 22:47:00,22.7487,169.723,5.53 +2016-01-26 23:02:00,23.5713,169.902,5.53 +2016-01-26 23:17:00,25.5875,169.978,5.53 +2016-01-26 23:32:00,24.305,170.06,5.53 +2016-01-26 23:47:00,26.5675,170.182,5.53 +2016-01-27 00:02:00,24.1087,170.27,5.54 +2016-01-27 00:17:00,24.1537,170.392,5.55 +2016-01-27 00:32:00,24.405,170.478,5.55 +2016-01-27 00:47:00,25.1525,170.603,5.56 +2016-01-27 01:02:00,24.8012,170.723,5.56 +2016-01-27 01:17:00,25.7875,170.86,5.56 +2016-01-27 01:32:00,25.935,170.927,5.56 +2016-01-27 01:47:00,25.3037,171.042,5.56 +2016-01-27 02:02:00,24.61,171.172,5.58 +2016-01-27 02:17:00,26.32,171.258,5.58 +2016-01-27 02:32:00,26.2288,171.355,5.58 +2016-01-27 02:47:00,25.1525,171.443,5.59 +2016-01-27 03:02:00,25.8363,171.533,5.6 +2016-01-27 03:17:00,24.2038,171.633,5.6 +2016-01-27 03:32:00,25.9337,171.705,5.61 +2016-01-27 03:47:00,23.525,171.792,5.62 +2016-01-27 04:02:00,24.805,171.925,5.63 +2016-01-27 04:17:00,24.6537,171.952,5.64 +2016-01-27 04:32:00,26.7137,172.047,5.64 +2016-01-27 04:47:00,26.3187,172.15,5.65 +2016-01-27 05:02:00,26.0325,172.21,5.66 +2016-01-27 05:17:00,25.2513,172.307,5.67 +2016-01-27 05:32:00,24.8525,172.387,5.68 +2016-01-27 05:47:00,23.2337,172.47,5.68 +2016-01-27 06:02:00,25.5912,172.552,5.68 +2016-01-27 06:17:00,24.8,172.635,5.68 +2016-01-27 06:32:00,24.0537,172.693,5.68 +2016-01-27 06:47:00,25.0537,172.717,5.68 +2016-01-27 07:02:00,25.8337,172.862,5.68 +2016-01-27 07:17:00,26.2262,172.9,5.69 +2016-01-27 07:32:00,25.9812,172.975,5.7 +2016-01-27 07:47:00,25.5912,173.05,5.71 +2016-01-27 08:02:00,25.3487,173.137,5.72 +2016-01-27 08:17:00,24.685,173.232,5.74 +2016-01-27 08:47:00,24.4412,173.332,5.76 +2016-01-27 09:02:00,25.5037,173.43,5.77 +2016-01-27 09:17:01,25.0975,173.467,5.78 +2016-01-27 09:32:00,24.85,173.58,5.79 +2016-01-27 09:47:00,25.4463,173.61,5.81 +2016-01-27 10:02:00,24.9012,173.658,5.83 +2016-01-27 10:17:00,24.3538,173.71,5.86 +2016-01-27 10:32:00,25.9812,173.78,5.87 +2016-01-27 10:47:00,27.1062,173.87,5.9 +2016-01-27 11:02:00,23.6687,173.862,5.91 +2016-01-27 11:17:00,24.4575,173.99,5.93 +2016-01-27 11:32:00,24.8063,174.077,5.95 +2016-01-27 11:47:00,25.2975,174.082,5.96 +2016-01-27 12:02:00,22.8988,174.185,5.98 +2016-01-27 12:17:00,23.9112,174.265,5.99 +2016-01-27 12:32:00,24.6575,174.292,5.98 +2016-01-27 12:47:00,25.5387,174.36,5.98 +2016-01-27 13:02:00,24.8538,174.438,5.99 +2016-01-27 13:17:00,25.8363,174.478,6.01 +2016-01-27 13:32:00,23.4225,174.57,6.02 +2016-01-27 13:47:00,25.4925,174.612,6.04 +2016-01-27 14:02:00,25.785,174.707,6.07 +2016-01-27 14:17:00,23.6663,174.783,6.1 +2016-01-27 14:32:00,24.8988,174.85,6.13 +2016-01-27 14:47:00,25.0512,174.86,6.14 +2016-01-27 15:02:00,25.5425,174.975,6.16 +2016-01-27 15:17:00,26.3662,174.978,6.17 +2016-01-27 15:32:00,25.0963,175.017,6.19 +2016-01-27 15:47:00,25.53,175.103,6.2 +2016-01-27 16:02:00,23.3662,175.16,6.2 +2016-01-27 16:17:00,25.24,175.172,6.21 +2016-01-27 16:32:00,25.2913,175.242,6.21 +2016-01-27 16:47:00,23.32,175.285,6.22 +2016-01-27 17:02:00,26.5062,175.32,6.23 +2016-01-27 17:17:00,25.4863,175.357,6.26 +2016-01-27 17:32:00,26.46,175.397,6.26 +2016-01-27 17:47:00,24.5462,175.44,6.25 +2016-01-27 18:02:00,25.3913,175.478,6.26 +2016-01-27 18:17:00,24.7375,175.545,6.26 +2016-01-27 18:32:00,26.0687,175.59,6.27 +2016-01-27 18:47:00,25.5837,175.635,6.27 +2016-01-27 19:02:00,23.5163,175.7,6.26 +2016-01-27 19:17:00,23.7588,175.715,6.24 +2016-01-27 19:32:00,24.89,175.77,6.2 +2016-01-27 19:47:00,25.6287,175.81,6.22 +2016-01-27 20:02:00,24.4412,175.825,6.2 +2016-01-27 20:17:00,25.435,175.85,6.19 +2016-01-27 20:32:00,23.9475,175.887,6.2 +2016-01-27 20:47:00,24.8913,175.925,6.2 +2016-01-27 21:02:00,24.0413,175.967,6.21 +2016-01-27 21:17:00,24.2937,176.0,6.22 +2016-01-27 21:32:00,25.5262,176.03,6.23 +2016-01-27 21:47:00,24.1912,176.075,6.23 +2016-01-27 22:02:00,25.72,176.1,6.23 +2016-01-27 22:17:00,27.1375,176.075,6.22 +2016-01-27 22:32:00,24.7925,176.122,6.22 +2016-01-27 22:47:00,25.8787,176.182,6.23 +2016-01-27 23:02:00,24.9887,176.205,6.24 +2016-01-27 23:17:00,25.3862,176.255,6.25 +2016-01-27 23:32:00,26.02,176.285,6.26 +2016-01-27 23:47:00,24.6437,176.29,6.27 +2016-01-28 00:02:00,25.7237,176.277,6.28 +2016-01-28 00:17:00,26.2588,176.292,6.29 +2016-01-28 00:32:00,24.7425,176.322,6.31 +2016-01-28 00:47:00,26.2625,176.348,6.32 +2016-01-28 01:02:00,26.3538,176.292,6.33 +2016-01-28 01:17:00,24.2925,176.345,6.34 +2016-01-28 01:32:00,26.65,176.402,6.35 +2016-01-28 01:47:00,26.0638,176.405,6.36 +2016-01-28 02:02:00,23.7062,176.43,6.37 +2016-01-28 02:17:00,23.7087,176.44,6.38 +2016-01-28 02:32:00,25.1937,176.455,6.4 +2016-01-28 02:47:00,23.61,176.522,6.42 +2016-01-28 03:02:00,22.635,176.462,6.44 +2016-01-28 03:17:00,26.4512,176.49,6.44 +2016-01-28 03:32:00,22.8325,176.482,6.45 +2016-01-28 03:47:00,23.995,176.503,6.47 +2016-01-28 04:02:00,26.4525,176.505,6.48 +2016-01-28 04:17:00,24.245,176.51,6.5 +2016-01-28 04:32:00,24.7913,176.497,6.5 +2016-01-28 04:47:00,24.2412,176.452,6.51 +2016-01-28 05:02:00,24.09,176.49,6.51 +2016-01-28 05:17:00,22.98,176.447,6.51 +2016-01-28 05:32:00,23.4613,176.408,6.52 +2016-01-28 05:47:00,25.77,176.46,6.53 +2016-01-28 06:02:00,23.5088,176.387,6.52 +2016-01-28 06:17:00,22.6862,176.345,6.54 +2016-01-28 06:32:00,24.5425,176.322,6.56 +2016-01-28 06:47:00,23.9425,176.272,6.57 +2016-01-28 07:02:00,26.115,176.277,6.56 +2016-01-28 07:17:00,24.5375,176.133,6.54 +2016-01-28 07:32:00,25.235,176.228,6.54 +2016-01-28 07:47:00,23.1663,176.19,6.54 +2016-01-28 08:02:00,24.6888,174.452,6.55 +2016-01-28 08:17:00,23.3538,172.667,6.55 +2016-01-28 08:32:00,24.2875,171.85,6.54 +2016-01-28 08:47:00,26.0125,171.43,6.53 +2016-01-28 09:02:00,23.7525,171.19,6.53 +2016-01-28 09:17:00,23.7525,171.133,6.52 +2016-01-28 09:32:00,25.4287,171.115,6.52 +2016-01-28 09:47:00,24.5875,171.122,6.53 +2016-01-28 10:02:00,26.1125,171.01,6.53 +2016-01-28 10:17:00,24.2875,171.155,6.52 +2016-01-28 10:32:00,25.0837,171.145,6.5 +2016-01-28 10:47:00,26.1087,171.112,6.51 +2016-01-28 11:02:00,25.2825,171.23,6.52 +2016-01-28 11:17:00,23.02,171.318,6.53 +2016-01-28 11:32:00,25.3763,171.307,6.56 +2016-01-28 11:47:00,23.7988,171.392,6.59 +2016-01-28 12:02:00,24.2862,171.385,6.62 +2016-01-28 12:17:00,25.5238,171.438,6.63 +2016-01-28 12:32:00,24.0825,171.462,6.64 +2016-01-28 12:47:00,24.385,171.43,6.66 +2016-01-28 13:02:00,23.305,171.512,6.67 +2016-01-28 13:17:00,23.4538,171.607,6.68 +2016-01-28 13:32:00,25.47,171.527,6.69 +2016-01-28 13:47:00,23.7988,171.61,6.7 +2016-01-28 14:02:00,23.0713,171.562,6.71 +2016-01-28 14:17:00,22.68,171.655,6.71 +2016-01-28 14:32:00,24.3838,171.587,6.69 +2016-01-28 14:47:00,25.1813,171.607,6.69 +2016-01-28 15:02:00,26.6475,171.688,6.68 +2016-01-28 15:17:00,25.8662,171.62,6.67 +2016-01-28 15:32:00,23.8438,171.628,6.66 +2016-01-28 15:47:00,23.0263,171.64,6.66 +2016-01-28 16:02:00,24.735,171.672,6.65 +2016-01-28 16:17:00,23.2038,171.66,6.64 +2016-01-28 16:32:00,24.54,171.76,6.64 +2016-01-28 16:47:00,23.9375,171.717,6.63 +2016-01-28 17:02:00,23.6462,171.728,6.63 +2016-01-28 17:17:00,22.7787,171.742,6.62 +2016-01-28 17:32:00,23.8,171.747,6.62 +2016-01-28 17:47:00,24.5362,171.825,6.62 +2016-01-28 18:02:00,23.6475,171.792,6.61 +2016-01-28 18:17:00,24.5875,171.78,6.6 +2016-01-28 18:32:00,23.305,171.747,6.59 +2016-01-28 18:47:00,24.6825,171.767,6.58 +2016-01-28 19:02:00,23.5025,171.712,6.56 +2016-01-28 19:17:00,23.16,171.725,6.54 +2016-01-28 19:32:00,23.9375,171.72,6.53 +2016-01-28 19:47:00,23.3512,171.67,6.51 +2016-01-28 20:02:00,23.4012,171.62,6.49 +2016-01-28 20:17:00,23.9825,171.56,6.48 +2016-01-28 20:32:00,23.5488,171.44,6.46 +2016-01-28 20:47:00,23.7438,171.45,6.44 +2016-01-28 21:02:00,25.135,171.318,6.4 +2016-01-28 21:17:00,23.5013,171.275,6.36 +2016-01-28 21:32:00,23.7962,171.26,6.32 +2016-01-28 21:47:00,24.3825,171.13,6.28 +2016-01-28 22:02:00,24.9275,171.082,6.24 +2016-01-28 22:17:00,23.795,171.003,6.2 +2016-01-28 22:32:00,24.2288,170.96,6.17 +2016-01-28 22:47:00,22.0987,170.935,6.13 +2016-01-28 23:02:00,23.11,170.927,6.1 +2016-01-28 23:17:00,24.1813,170.913,6.07 +2016-01-28 23:32:00,25.6188,170.878,6.03 +2016-01-28 23:47:00,25.0325,170.772,6.0 +2016-01-29 00:02:00,24.3337,170.755,5.98 +2016-01-29 00:17:00,23.3025,170.878,5.95 +2016-01-29 00:32:00,22.92,170.682,5.93 +2016-01-29 00:47:00,24.4812,170.605,5.9 +2016-01-29 01:02:00,24.1762,170.457,5.88 +2016-01-29 01:17:00,25.5212,170.307,5.86 +2016-01-29 01:32:00,24.9812,170.107,5.84 +2016-01-29 01:47:00,25.03,170.057,5.81 +2016-01-29 02:02:00,22.5312,169.897,5.79 +2016-01-29 02:17:00,22.6263,169.96,5.77 +2016-01-29 02:32:00,24.4775,169.785,5.75 +2016-01-29 02:47:00,24.3825,169.728,5.73 +2016-01-29 03:02:00,24.7787,169.658,5.72 +2016-01-29 03:17:00,22.7288,169.675,5.7 +2016-01-29 03:32:00,23.11,169.582,5.68 +2016-01-29 03:47:00,23.4487,169.642,5.66 +2016-01-29 04:02:00,24.7787,169.492,5.64 +2016-01-29 04:17:00,24.8763,169.425,5.63 +2016-01-29 04:32:00,22.8712,169.355,5.61 +2016-01-29 04:47:00,24.4275,169.335,5.59 +2016-01-29 05:02:00,22.7763,169.26,5.57 +2016-01-29 05:17:00,23.8438,169.072,5.55 +2016-01-29 05:32:00,24.33,169.04,5.53 +2016-01-29 05:47:00,24.125,168.878,5.52 +2016-01-29 06:02:00,23.9788,168.815,5.5 +2016-01-29 06:17:00,23.0163,168.72,5.49 +2016-01-29 06:32:00,24.9275,168.595,5.48 +2016-01-29 06:47:00,24.2312,168.27,5.47 +2016-01-29 07:02:00,21.9525,168.405,5.46 +2016-01-29 07:17:00,24.0312,168.255,5.45 +2016-01-29 07:32:00,23.98,168.11,5.44 +2016-01-29 07:47:00,24.0788,168.107,5.44 +2016-01-29 08:02:00,24.9262,167.922,5.44 +2016-01-29 08:17:00,24.635,167.755,5.43 +2016-01-29 08:32:00,23.25,167.775,5.42 +2016-01-29 08:47:00,23.11,167.087,5.41 +2016-01-29 09:02:00,23.5987,165.938,5.4 +2016-01-29 09:17:00,26.1075,165.335,5.4 +2016-01-29 09:32:00,24.58,165.027,5.39 +2016-01-29 09:47:00,23.1525,164.885,5.39 +2016-01-29 10:02:00,23.69,164.717,5.39 +2016-01-29 10:17:00,22.8187,164.68,5.37 +2016-01-29 10:32:00,24.0275,164.555,5.36 +2016-01-29 10:47:00,22.4825,164.467,5.36 +2016-01-29 11:02:00,23.695,164.387,5.35 +2016-01-29 11:17:00,23.6437,164.335,5.35 +2016-01-29 11:32:00,23.8875,164.337,5.37 +2016-01-29 11:47:00,24.275,164.255,5.4 +2016-01-29 12:02:00,24.2787,164.245,5.47 +2016-01-29 12:17:00,23.84,164.26,5.51 +2016-01-29 12:32:00,23.5488,164.3,5.53 +2016-01-29 12:47:00,23.2525,164.13,5.56 +2016-01-29 13:02:00,23.545,163.82,5.58 +2016-01-29 13:17:00,22.3337,163.057,5.61 +2016-01-29 13:32:00,23.1537,162.265,5.61 +2016-01-29 13:47:00,23.3475,161.685,5.56 +2016-01-29 14:02:00,21.7988,161.133,5.55 +2016-01-29 14:17:00,20.9125,160.527,5.56 +2016-01-29 14:32:00,24.8812,158.682,5.58 +2016-01-29 14:47:00,25.665,154.155,5.59 +2016-01-29 15:02:00,22.24,151.425,5.61 +2016-01-29 15:17:00,23.3975,149.525,5.63 +2016-01-29 15:32:00,22.2913,148.568,5.65 +2016-01-29 15:47:00,22.9675,147.883,5.66 +2016-01-29 16:02:00,23.06,147.637,5.65 +2016-01-29 16:17:00,25.03,147.42,5.64 +2016-01-29 16:32:00,23.98,147.272,5.64 +2016-01-29 16:47:00,22.9187,147.262,5.63 +2016-01-29 17:02:00,23.155,147.19,5.62 +2016-01-29 17:17:00,23.395,147.228,5.62 +2016-01-29 17:32:00,23.25,147.193,5.61 +2016-01-29 17:47:00,22.8237,147.395,5.61 +2016-01-29 18:02:00,23.9325,147.512,5.6 +2016-01-29 18:17:00,24.03,147.63,5.6 +2016-01-29 18:32:00,25.035,147.8,5.6 +2016-01-29 18:47:00,23.7913,147.957,5.59 +2016-01-29 19:02:00,24.7262,148.16,5.58 +2016-01-29 19:17:00,23.3487,148.337,5.58 +2016-01-29 19:32:00,24.2787,148.582,5.59 +2016-01-29 19:47:00,24.9275,148.853,5.59 +2016-01-29 20:02:00,22.8725,148.93,5.59 +2016-01-29 20:17:00,23.645,149.17,5.59 +2016-01-29 20:32:00,22.8225,149.23,5.59 +2016-01-29 20:47:00,21.9,149.492,5.59 +2016-01-29 21:02:00,23.5437,149.637,5.58 +2016-01-29 21:17:00,24.38,149.795,5.56 +2016-01-29 21:32:00,22.7712,149.995,5.56 +2016-01-29 21:47:00,22.4737,150.165,5.54 +2016-01-29 22:02:00,23.9337,150.332,5.53 +2016-01-29 22:17:00,22.4313,150.517,5.52 +2016-01-29 22:32:00,22.4762,150.688,5.52 +2016-01-29 22:47:00,23.2988,150.81,5.52 +2016-01-29 23:02:00,24.1275,151.04,5.51 +2016-01-29 23:17:00,24.0788,151.163,5.51 +2016-01-29 23:32:00,24.48,151.318,5.51 +2016-01-29 23:47:00,24.3763,151.508,5.51 +2016-01-30 00:02:00,23.6963,151.702,5.51 +2016-01-30 00:17:00,22.675,151.827,5.52 +2016-01-30 00:32:00,24.4275,151.98,5.52 +2016-01-30 00:47:00,23.3512,152.065,5.52 +2016-01-30 01:02:00,23.8825,152.27,5.51 +2016-01-30 01:17:00,24.6787,152.337,5.51 +2016-01-30 01:32:00,22.5737,152.487,5.52 +2016-01-30 01:47:00,23.0625,152.633,5.52 +2016-01-30 02:02:00,22.5312,152.74,5.51 +2016-01-30 02:17:00,24.1275,152.935,5.52 +2016-01-30 02:32:00,22.7675,153.09,5.51 +2016-01-30 02:47:00,22.1437,153.22,5.49 +2016-01-30 03:02:00,22.4762,153.392,5.48 +2016-01-30 03:17:00,23.1062,153.527,5.47 +2016-01-30 03:32:00,24.4788,153.658,5.45 +2016-01-30 03:47:00,24.125,153.848,5.43 +2016-01-30 04:02:00,24.0825,153.887,5.42 +2016-01-30 04:17:00,25.325,153.997,5.41 +2016-01-30 04:32:00,24.635,154.182,5.41 +2016-01-30 04:47:00,24.275,154.2,5.41 +2016-01-30 05:02:00,23.8862,154.392,5.4 +2016-01-30 05:17:00,23.55,154.497,5.4 +2016-01-30 05:32:00,24.0312,154.637,5.41 +2016-01-30 05:47:00,23.5475,154.85,5.41 +2016-01-30 06:02:00,23.985,154.84,5.4 +2016-01-30 06:17:00,23.25,154.855,5.4 +2016-01-30 06:32:00,24.1287,154.978,5.4 +2016-01-30 06:47:00,23.1113,155.072,5.38 +2016-01-30 07:02:00,24.8275,155.152,5.37 +2016-01-30 07:17:00,23.8825,155.342,5.37 +2016-01-30 07:32:00,23.7475,155.438,5.36 +2016-01-30 07:47:00,23.4,155.385,5.36 +2016-01-30 08:02:00,23.0163,155.582,5.37 +2016-01-30 08:17:00,23.9788,155.592,5.38 +2016-01-30 08:32:00,25.2762,155.652,5.39 +2016-01-30 08:47:00,24.43,155.842,5.39 +2016-01-30 09:02:00,25.6637,155.755,5.4 +2016-01-30 09:17:00,22.5788,155.767,5.41 +2016-01-30 09:32:00,23.5462,155.682,5.42 +2016-01-30 09:47:00,24.8275,156.047,5.43 +2016-01-30 10:02:00,23.0163,156.0,5.43 +2016-01-30 10:17:00,25.1312,155.902,5.43 +2016-01-30 10:32:00,23.8438,156.128,5.45 +2016-01-30 10:47:00,23.8425,156.047,5.46 +2016-01-30 11:02:00,25.4238,155.867,5.46 +2016-01-30 11:17:00,23.3975,155.97,5.47 +2016-01-30 11:32:00,21.2637,155.987,5.48 +2016-01-30 11:47:00,21.7513,156.038,5.5 +2016-01-30 12:02:00,22.3825,155.83,5.52 +2016-01-30 12:17:00,22.8675,156.025,5.54 +2016-01-30 12:32:00,24.8787,156.01,5.55 +2016-01-30 12:47:00,23.3975,155.965,5.55 +2016-01-30 13:02:00,23.0175,156.017,5.56 +2016-01-30 13:17:00,22.8262,156.087,5.57 +2016-01-30 13:32:00,23.16,156.098,5.57 +2016-01-30 13:47:00,21.955,156.16,5.58 +2016-01-30 14:02:00,22.0987,156.265,5.59 +2016-01-30 14:17:00,22.7262,156.37,5.6 +2016-01-30 14:32:00,24.2787,156.292,5.62 +2016-01-30 14:47:00,22.0512,156.4,5.63 +2016-01-30 15:02:00,23.2075,156.635,5.64 +2016-01-30 15:17:00,24.2288,156.525,5.64 +2016-01-30 15:32:00,24.2275,156.63,5.64 +2016-01-30 15:47:00,23.4525,156.73,5.65 +2016-01-30 16:02:00,23.065,156.755,5.65 +2016-01-30 16:17:00,22.1437,156.755,5.65 +2016-01-30 16:32:00,23.3,156.81,5.65 +2016-01-30 16:47:00,23.2487,156.857,5.64 +2016-01-30 17:02:00,23.0187,156.862,5.64 +2016-01-30 17:17:00,23.0163,156.922,5.64 +2016-01-30 17:32:00,24.2325,157.0,5.64 +2016-01-30 17:47:00,23.1062,157.022,5.64 +2016-01-30 18:02:00,24.2275,157.098,5.64 +2016-01-30 18:17:00,24.3288,157.12,5.64 +2016-01-30 18:32:00,22.9688,157.147,5.64 +2016-01-30 18:47:00,22.5287,157.167,5.64 +2016-01-30 19:02:00,24.5338,157.212,5.64 +2016-01-30 19:17:00,23.2012,157.242,5.62 +2016-01-30 19:32:00,23.25,157.247,5.62 +2016-01-30 19:47:00,22.3337,157.215,5.61 +2016-01-30 20:02:00,22.4788,157.215,5.62 +2016-01-30 20:17:00,23.5938,157.177,5.6 +2016-01-30 20:32:00,21.65,157.098,5.59 +2016-01-30 20:47:00,22.92,157.02,5.59 +2016-01-30 21:02:00,22.1963,156.938,5.59 +2016-01-30 21:17:00,23.015,156.872,5.57 +2016-01-30 21:32:00,22.2887,156.86,5.57 +2016-01-30 21:47:00,23.6912,156.737,5.56 +2016-01-30 22:02:00,24.3825,156.688,5.55 +2016-01-30 22:17:00,21.0575,156.51,5.55 +2016-01-30 22:32:00,23.205,156.355,5.54 +2016-01-30 22:47:00,23.3988,156.22,5.52 +2016-01-30 23:02:00,22.5762,156.103,5.5 +2016-01-30 23:17:00,21.0075,155.892,5.49 +2016-01-30 23:32:00,22.525,155.685,5.48 +2016-01-30 23:47:00,22.6762,155.462,5.47 +2016-01-31 00:02:00,21.8012,155.193,5.46 +2016-01-31 00:17:00,22.525,155.077,5.44 +2016-01-31 00:32:00,22.8712,154.97,5.42 +2016-01-31 00:47:00,23.4487,154.887,5.4 +2016-01-31 01:02:00,21.7525,154.777,5.38 +2016-01-31 01:17:00,23.69,154.767,5.36 +2016-01-31 01:32:00,24.175,154.732,5.34 +2016-01-31 01:47:00,22.9675,154.647,5.32 +2016-01-31 02:02:00,23.7438,154.64,5.29 +2016-01-31 02:17:00,23.5,154.625,5.26 +2016-01-31 02:32:00,21.9062,154.495,5.25 +2016-01-31 02:47:00,23.495,154.552,5.22 +2016-01-31 03:02:00,23.595,154.45,5.21 +2016-01-31 03:17:00,24.0775,154.288,5.19 +2016-01-31 03:32:00,21.9512,154.1,5.17 +2016-01-31 03:47:00,21.2588,153.997,5.15 +2016-01-31 04:02:00,22.0925,153.853,5.13 +2016-01-31 04:17:00,23.4538,153.74,5.1 +2016-01-31 04:32:00,21.9538,153.622,5.07 +2016-01-31 04:47:00,23.1987,153.568,5.04 +2016-01-31 05:02:00,24.1738,153.478,5.02 +2016-01-31 05:17:00,23.1038,153.415,5.0 +2016-01-31 05:32:00,21.5062,153.402,4.99 +2016-01-31 05:47:00,21.3587,153.4,4.96 +2016-01-31 06:02:00,22.045,153.422,4.94 +2016-01-31 06:17:00,21.5125,153.45,4.93 +2016-01-31 06:32:00,20.0437,153.438,4.92 +2016-01-31 06:47:00,22.7237,153.452,4.9 +2016-01-31 07:02:00,22.0475,153.443,4.88 +2016-01-31 07:17:00,22.7225,153.443,4.88 +2016-01-31 07:32:00,22.5263,153.408,4.87 +2016-01-31 07:47:00,21.2575,153.375,4.88 +2016-01-31 08:02:00,23.0175,153.367,4.86 +2016-01-31 08:17:00,23.1575,153.337,4.84 +2016-01-31 08:32:00,22.915,153.345,4.82 +2016-01-31 08:47:00,22.9187,153.39,4.81 +2016-01-31 09:02:00,23.5437,153.27,4.8 +2016-01-31 09:17:00,21.96,153.35,4.81 +2016-01-31 09:32:00,22.98,153.255,4.79 +2016-01-31 09:47:00,24.5312,153.235,4.8 +2016-01-31 10:02:00,22.4788,153.327,4.8 +2016-01-31 10:17:00,21.8525,153.285,4.81 +2016-01-31 10:32:00,23.5963,153.318,4.81 +2016-01-31 10:47:00,20.5263,153.345,4.83 +2016-01-31 11:02:00,22.14,153.37,4.84 +2016-01-31 11:17:00,23.64,153.35,4.85 +2016-01-31 11:32:00,22.7712,153.385,4.88 +2016-01-31 11:47:00,22.6775,153.432,4.91 +2016-01-31 12:02:00,22.3862,153.462,4.94 +2016-01-31 12:17:00,22.1462,153.505,4.96 +2016-01-31 12:32:00,20.335,153.53,4.98 +2016-01-31 12:47:00,22.4262,153.595,5.0 +2016-01-31 13:02:00,23.1087,153.688,5.02 +2016-01-31 13:17:00,21.5075,153.737,5.03 +2016-01-31 13:32:00,23.0638,153.86,5.04 +2016-01-31 13:47:00,23.2513,153.93,5.06 +2016-01-31 14:02:00,22.145,154.05,5.08 +2016-01-31 14:17:00,21.7988,154.14,5.1 +2016-01-31 14:32:00,22.8175,154.277,5.11 +2016-01-31 14:47:00,20.9613,154.395,5.12 +2016-01-31 15:02:00,23.1075,154.51,5.13 +2016-01-31 15:17:00,22.625,154.6,5.14 +2016-01-31 15:32:00,21.7038,154.712,5.16 +2016-01-31 15:47:00,22.5338,154.875,5.17 +2016-01-31 16:02:00,23.155,155.012,5.17 +2016-01-31 16:17:00,22.77,155.133,5.18 +2016-01-31 16:32:00,20.8125,155.3,5.18 +2016-01-31 16:47:00,21.75,155.432,5.18 +2016-01-31 17:02:00,21.9512,155.59,5.18 +2016-01-31 17:17:00,23.3438,155.75,5.16 +2016-01-31 17:32:00,22.4275,155.917,5.17 +2016-01-31 17:47:00,23.25,156.1,5.16 +2016-01-31 18:02:00,21.11,156.255,5.16 +2016-01-31 18:17:00,22.2375,156.45,5.15 +2016-01-31 18:32:00,23.0662,156.64,5.14 +2016-01-31 18:47:00,23.35,156.848,5.14 +2016-01-31 19:02:00,22.0462,157.052,5.13 +2016-01-31 19:17:00,23.5963,157.223,5.11 +2016-01-31 19:32:00,21.46,157.417,5.11 +2016-01-31 19:47:00,22.5713,157.6,5.09 +2016-01-31 20:02:00,22.4262,157.777,5.08 +2016-01-31 20:17:00,23.0163,157.99,5.08 +2016-01-31 20:32:00,23.15,158.175,5.07 +2016-01-31 20:47:00,22.245,158.348,5.06 +2016-01-31 21:02:00,22.335,158.512,5.06 +2016-01-31 21:17:00,22.0475,158.688,5.06 +2016-01-31 21:32:00,22.5287,158.865,5.06 +2016-01-31 21:47:00,23.8825,159.042,5.06 +2016-01-31 22:02:00,20.3388,159.23,5.06 +2016-01-31 22:17:00,21.5088,159.425,5.06 +2016-01-31 22:32:00,22.0475,159.647,5.07 +2016-01-31 22:47:00,22.7687,159.805,5.08 +2016-01-31 23:02:00,22.2438,159.978,5.08 +2016-01-31 23:17:00,21.5525,160.152,5.08 +2016-01-31 23:32:00,21.5563,160.322,5.08 +2016-01-31 23:47:00,21.26,160.503,5.07 +2016-02-01 00:02:00,21.9013,160.658,5.07 +2016-02-01 00:17:00,22.7225,160.79,5.07 +2016-02-01 00:32:00,23.25,160.947,5.07 +2016-02-01 00:47:00,22.0938,161.092,5.06 +2016-02-01 01:02:00,23.2012,161.275,5.06 +2016-02-01 01:17:00,22.245,161.45,5.06 +2016-02-01 01:32:00,22.0938,161.605,5.07 +2016-02-01 01:47:00,21.3075,161.758,5.07 +2016-02-01 02:02:00,22.6725,161.892,5.07 +2016-02-01 02:17:00,21.4575,162.06,5.06 +2016-02-01 02:32:00,21.4075,162.215,5.06 +2016-02-01 02:47:00,22.6738,162.378,5.06 +2016-02-01 03:02:00,21.5088,162.515,5.07 +2016-02-01 03:17:00,20.96,162.707,5.07 +2016-02-01 03:32:00,21.85,162.775,5.07 +2016-02-01 03:47:00,22.6725,162.885,5.08 +2016-02-01 04:02:00,22.3775,163.015,5.09 +2016-02-01 04:17:00,23.0638,163.122,5.09 +2016-02-01 04:32:00,21.9,163.177,5.08 +2016-02-01 04:47:00,22.5275,163.32,5.08 +2016-02-01 05:02:00,22.145,163.427,5.09 +2016-02-01 05:17:00,20.91,163.522,5.08 +2016-02-01 05:32:00,23.3487,163.63,5.08 +2016-02-01 05:47:00,22.9187,163.723,5.08 +2016-02-01 06:02:00,23.7925,163.855,5.07 +2016-02-01 06:17:00,23.3,163.955,5.08 +2016-02-01 06:32:00,22.475,164.035,5.06 +2016-02-01 06:47:00,22.3838,164.14,5.05 +2016-02-01 07:02:00,23.3463,164.217,5.05 +2016-02-01 07:17:00,23.2012,164.28,5.04 +2016-02-01 07:32:00,22.1975,164.327,5.02 +2016-02-01 07:47:00,23.7925,164.397,5.01 +2016-02-01 08:02:00,22.8187,164.462,5.02 +2016-02-01 08:17:00,23.3937,164.557,5.05 +2016-02-01 08:32:00,23.2025,164.688,5.06 +2016-02-01 08:47:00,21.9987,164.788,5.06 +2016-02-01 09:02:00,23.9325,164.905,5.07 +2016-02-01 09:17:00,22.775,165.005,5.07 +2016-02-01 09:32:00,23.2012,165.117,5.07 +2016-02-01 09:47:00,24.2738,165.212,5.08 +2016-02-01 10:02:00,23.6413,165.265,5.09 +2016-02-01 10:17:00,23.3975,165.342,5.1 +2016-02-01 10:32:00,22.7725,165.413,5.11 +2016-02-01 10:47:00,23.7412,165.45,5.13 +2016-02-01 11:02:00,24.1725,165.508,5.15 +2016-02-01 11:17:00,24.0812,165.53,5.17 +2016-02-01 11:32:00,24.0312,165.56,5.18 +2016-02-01 11:47:00,23.835,165.575,5.19 +2016-02-01 12:02:00,23.15,165.615,5.21 +2016-02-01 12:17:00,24.4313,165.625,5.24 +2016-02-01 12:32:00,22.0963,165.63,5.26 +2016-02-01 12:47:00,23.495,165.645,5.28 +2016-02-01 13:02:00,22.4775,165.792,5.32 +2016-02-01 13:17:00,23.015,165.695,5.35 +2016-02-01 13:32:00,24.1225,165.74,5.37 +2016-02-01 13:47:00,23.1038,165.818,5.38 +2016-02-01 14:02:00,21.995,165.795,5.4 +2016-02-01 14:17:00,22.245,165.86,5.44 +2016-02-01 14:32:00,23.745,165.922,5.47 +2016-02-01 14:47:00,23.6425,165.987,5.49 +2016-02-01 15:02:00,22.14,165.985,5.51 +2016-02-01 15:17:00,23.2487,166.035,5.52 +2016-02-01 15:32:00,22.9662,166.068,5.53 +2016-02-01 15:47:00,23.2487,166.077,5.53 +2016-02-01 16:02:00,23.2012,166.137,5.53 +2016-02-01 16:17:00,22.9725,166.15,5.55 +2016-02-01 16:32:00,23.0137,166.13,5.55 +2016-02-01 16:47:00,23.4,166.107,5.56 +2016-02-01 17:02:00,22.1888,166.082,5.57 +2016-02-01 17:17:00,22.9163,166.085,5.58 +2016-02-01 17:32:00,22.725,166.04,5.59 +2016-02-01 17:47:00,23.7937,165.952,5.58 +2016-02-01 18:02:00,23.5975,165.867,5.59 +2016-02-01 18:17:00,24.1775,165.9,5.6 +2016-02-01 18:32:00,22.2425,165.8,5.61 +2016-02-01 18:47:00,23.8363,165.66,5.63 +2016-02-01 19:02:00,22.43,165.545,5.64 +2016-02-01 19:17:00,23.06,165.362,5.65 +2016-02-01 19:32:00,23.5475,165.172,5.67 +2016-02-01 19:47:00,22.97,164.908,5.69 +2016-02-01 20:02:00,23.8838,164.753,5.72 +2016-02-01 20:17:00,23.7425,164.57,5.72 +2016-02-01 20:32:00,24.2275,164.357,5.74 +2016-02-01 20:47:00,22.5238,164.217,5.75 +2016-02-01 21:02:00,22.1925,164.147,5.76 +2016-02-01 21:17:00,24.3787,164.08,5.77 +2016-02-01 21:32:00,22.9137,164.068,5.79 +2016-02-01 21:47:00,24.175,164.03,5.8 +2016-02-01 22:02:00,24.1787,163.98,5.81 +2016-02-01 22:17:00,23.3,163.96,5.82 +2016-02-01 22:32:00,24.075,163.883,5.83 +2016-02-01 22:47:00,23.5938,163.855,5.84 +2016-02-01 23:02:00,24.0762,163.802,5.85 +2016-02-01 23:17:00,23.2975,163.772,5.87 +2016-02-01 23:32:00,22.4762,163.742,5.88 +2016-02-01 23:47:00,24.3812,163.712,5.9 +2016-02-02 00:02:00,24.1762,163.755,5.92 +2016-02-02 00:17:00,24.6263,163.622,5.93 +2016-02-02 00:32:00,23.885,163.607,5.94 +2016-02-02 00:47:00,23.9812,163.545,5.95 +2016-02-02 01:02:00,23.345,163.562,5.96 +2016-02-02 01:17:00,23.84,163.61,5.95 +2016-02-02 01:32:00,25.1775,163.605,5.97 +2016-02-02 01:47:00,25.03,163.6,5.98 +2016-02-02 02:02:00,24.4788,163.655,5.99 +2016-02-02 02:17:00,24.6338,163.677,5.99 +2016-02-02 02:32:00,24.2237,163.735,6.0 +2016-02-02 02:47:00,23.5912,163.697,6.02 +2016-02-02 03:02:00,23.445,163.76,6.03 +2016-02-02 03:17:00,22.6225,163.767,6.06 +2016-02-02 03:32:00,22.7712,163.825,6.08 +2016-02-02 03:47:00,22.725,163.753,6.11 +2016-02-02 04:02:00,23.7925,163.76,6.12 +2016-02-02 04:17:00,24.2775,163.952,6.13 +2016-02-02 04:32:00,24.125,163.865,6.14 +2016-02-02 04:47:00,23.15,163.887,6.15 +2016-02-02 05:02:00,22.4762,163.932,6.15 +2016-02-02 05:17:00,22.5275,164.057,6.16 +2016-02-02 05:32:00,23.4012,164.077,6.18 +2016-02-02 05:47:00,22.5275,164.14,6.19 +2016-02-02 06:02:00,22.7225,164.125,6.19 +2016-02-02 06:17:00,24.325,164.16,6.22 +2016-02-02 06:32:00,23.9737,164.202,6.22 +2016-02-02 06:47:00,22.7687,164.217,6.21 +2016-02-02 07:02:00,26.7887,164.325,6.21 +2016-02-02 07:17:00,24.5312,164.32,6.22 +2016-02-02 07:32:00,25.08,164.34,6.23 +2016-02-02 07:47:00,25.515,164.342,6.23 +2016-02-02 08:02:00,23.395,164.375,6.24 +2016-02-02 08:17:00,24.43,164.385,6.25 +2016-02-02 08:32:00,25.4662,164.425,6.27 +2016-02-02 08:47:00,24.8775,164.425,6.28 +2016-02-02 09:02:00,25.4688,164.408,6.29 +2016-02-02 09:17:00,23.0625,164.36,6.28 +2016-02-02 09:32:00,24.3262,164.473,6.3 +2016-02-02 09:47:00,24.7762,164.503,6.3 +2016-02-02 10:02:00,24.5825,164.42,6.31 +2016-02-02 10:17:00,22.7738,164.492,6.33 +2016-02-02 10:32:00,23.545,164.562,6.35 +2016-02-02 10:47:00,24.0262,164.54,6.38 +2016-02-02 11:02:00,24.88,164.59,6.38 +2016-02-02 11:17:00,24.5338,164.57,6.4 +2016-02-02 11:32:00,23.545,164.53,6.45 +2016-02-02 11:47:00,21.8988,164.572,6.5 +2016-02-02 12:02:00,25.5612,164.517,6.53 +2016-02-02 12:17:00,25.42,164.61,6.55 +2016-02-02 12:32:00,24.0762,164.65,6.57 +2016-02-02 12:47:00,23.5462,164.633,6.59 +2016-02-02 13:02:00,25.1762,164.565,6.61 +2016-02-02 13:17:00,22.5737,164.533,6.64 +2016-02-02 13:32:00,24.4313,164.52,6.66 +2016-02-02 13:47:00,23.6437,164.503,6.69 +2016-02-02 14:02:00,25.87,164.512,6.72 +2016-02-02 14:17:00,22.3763,164.51,6.75 +2016-02-02 14:32:00,23.4975,164.542,6.78 +2016-02-02 14:47:00,24.0775,164.575,6.8 +2016-02-02 15:02:00,23.9313,164.545,6.82 +2016-02-02 15:17:00,24.0788,164.57,6.84 +2016-02-02 15:32:00,23.2475,164.595,6.87 +2016-02-02 15:47:00,22.8675,164.617,6.88 +2016-02-02 16:02:00,22.62,164.663,6.9 +2016-02-02 16:17:00,24.53,164.66,6.91 +2016-02-02 16:32:00,24.825,164.705,6.91 +2016-02-02 16:47:00,23.1575,164.728,6.92 +2016-02-02 17:02:00,22.245,164.728,6.92 +2016-02-02 17:17:00,25.515,164.81,6.92 +2016-02-02 17:32:00,24.03,164.802,6.91 +2016-02-02 17:47:00,23.7375,164.867,6.92 +2016-02-02 18:02:00,23.2962,164.952,6.91 +2016-02-02 18:17:00,24.675,164.92,6.9 +2016-02-02 18:32:00,24.3812,165.015,6.88 +2016-02-02 18:47:00,25.03,165.0,6.86 +2016-02-02 19:02:00,23.595,165.015,6.84 +2016-02-02 19:17:00,22.9638,164.97,6.83 +2016-02-02 19:32:00,24.0737,164.995,6.8 +2016-02-02 19:47:00,23.105,165.033,6.79 +2016-02-02 20:02:00,20.865,165.02,6.77 +2016-02-02 20:17:00,24.6738,164.992,6.75 +2016-02-02 20:32:00,23.6925,164.99,6.74 +2016-02-02 20:47:00,25.13,164.982,6.71 +2016-02-02 21:02:00,24.925,164.935,6.71 +2016-02-02 21:17:00,23.9337,164.957,6.7 +2016-02-02 21:32:00,23.395,164.985,6.69 +2016-02-02 21:47:00,24.8737,165.027,6.68 +2016-02-02 22:02:00,23.2525,165.015,6.67 +2016-02-02 22:17:00,23.9788,165.05,6.66 +2016-02-02 22:32:00,22.3787,165.035,6.64 +2016-02-02 22:47:00,24.58,165.082,6.62 +2016-02-02 23:02:00,22.0462,164.997,6.61 +2016-02-02 23:17:00,24.1712,164.92,6.58 +2016-02-02 23:32:00,23.7887,164.9,6.57 +2016-02-02 23:47:00,23.1987,164.8,6.55 +2016-02-03 00:02:00,24.17,164.765,6.53 +2016-02-03 00:17:00,23.8875,164.695,6.51 +2016-02-03 00:32:00,23.6462,164.592,6.49 +2016-02-03 00:47:00,24.1237,164.55,6.47 +2016-02-03 01:02:00,23.8838,164.45,6.46 +2016-02-03 01:17:00,23.4475,164.397,6.45 +2016-02-03 01:32:00,23.395,164.3,6.43 +2016-02-03 01:47:00,23.9262,164.392,6.4 +2016-02-03 02:02:00,22.8688,164.255,6.39 +2016-02-03 02:17:00,23.2537,164.18,6.37 +2016-02-03 02:32:00,22.82,164.087,6.34 +2016-02-03 02:47:00,24.0737,163.987,6.33 +2016-02-03 03:02:00,23.445,163.883,6.31 +2016-02-03 03:17:00,23.245,163.84,6.3 +2016-02-03 03:32:00,24.3787,163.682,6.29 +2016-02-03 03:47:00,24.6312,163.572,6.28 +2016-02-03 04:02:00,22.6738,163.538,6.26 +2016-02-03 04:17:00,24.0312,163.427,6.24 +2016-02-03 04:32:00,22.8675,163.335,6.24 +2016-02-03 04:47:00,22.8175,163.362,6.24 +2016-02-03 05:02:00,24.5775,163.318,6.23 +2016-02-03 05:17:00,25.225,163.27,6.21 +2016-02-03 05:32:00,24.3275,163.365,6.18 +2016-02-03 05:47:00,24.3825,163.35,6.16 +2016-02-03 06:02:00,24.48,163.355,6.14 +2016-02-03 06:17:00,23.9762,163.372,6.13 +2016-02-03 06:32:00,25.2262,163.38,6.12 +2016-02-03 06:47:00,23.5413,163.413,6.09 +2016-02-03 07:02:00,24.1738,163.405,6.07 +2016-02-03 07:17:00,24.7787,163.443,6.05 +2016-02-03 07:32:00,23.2513,163.462,6.04 +2016-02-03 07:47:00,24.3763,163.482,6.03 +2016-02-03 08:02:00,24.23,163.478,6.02 +2016-02-03 08:17:00,23.4962,163.482,6.02 +2016-02-03 08:32:00,25.5638,163.465,6.01 +2016-02-03 08:47:00,23.0612,163.487,6.0 +2016-02-03 09:02:00,23.8363,163.46,6.0 +2016-02-03 09:17:00,26.34,163.485,5.99 +2016-02-03 09:32:00,23.84,163.535,6.0 +2016-02-03 09:47:00,24.3288,163.5,6.02 +2016-02-03 10:02:00,23.695,163.565,6.02 +2016-02-03 10:17:00,24.375,163.53,6.03 +2016-02-03 10:32:00,25.7075,163.652,6.04 +2016-02-03 10:47:00,24.2262,163.635,6.06 +2016-02-03 11:02:00,23.7375,163.767,6.08 +2016-02-03 11:17:00,24.2225,163.835,6.09 +2016-02-03 11:32:00,24.0775,163.87,6.09 +2016-02-03 11:47:00,26.4388,163.95,6.09 +2016-02-03 12:02:00,23.93,164.012,6.09 +2016-02-03 12:17:00,24.9737,164.068,6.11 +2016-02-03 12:32:00,25.6113,164.188,6.13 +2016-02-03 12:47:00,24.8737,164.228,6.15 +2016-02-03 13:02:00,23.6387,164.32,6.14 +2016-02-03 13:17:00,23.5437,164.39,6.14 +2016-02-03 13:32:00,23.3475,164.427,6.14 +2016-02-03 13:47:00,24.3775,164.562,6.14 +2016-02-03 14:02:00,25.1712,164.605,6.15 +2016-02-03 14:17:00,23.9762,164.758,6.16 +2016-02-03 14:32:00,25.4187,164.792,6.17 +2016-02-03 14:47:00,24.3288,164.892,6.18 +2016-02-03 15:02:00,23.06,165.005,6.2 +2016-02-03 15:17:00,24.875,165.142,6.23 +2016-02-03 15:32:00,23.1537,165.215,6.27 +2016-02-03 15:47:00,22.3763,165.315,6.29 +2016-02-03 16:02:00,22.4725,165.432,6.31 +2016-02-03 16:17:00,23.6425,165.525,6.33 +2016-02-03 16:32:00,21.6975,165.6,6.33 +2016-02-03 16:47:00,22.9125,165.647,6.31 +2016-02-03 17:02:00,22.7225,165.732,6.29 +2016-02-03 17:17:00,23.0137,165.815,6.26 +2016-02-03 17:32:00,24.1287,165.883,6.23 +2016-02-03 17:47:00,26.1038,165.92,6.19 +2016-02-03 18:02:00,24.4737,166.003,6.14 +2016-02-03 18:17:00,25.1225,166.057,6.1 +2016-02-03 18:32:00,22.6738,166.12,6.06 +2016-02-03 18:47:00,24.4788,166.217,6.01 +2016-02-03 19:02:00,25.125,166.193,5.97 +2016-02-03 19:17:00,23.6963,166.37,5.94 +2016-02-03 19:32:00,24.425,166.397,5.91 +2016-02-03 19:47:00,23.5912,166.478,5.88 +2016-02-03 20:02:00,22.4275,166.542,5.85 +2016-02-03 20:17:00,23.835,166.667,5.84 +2016-02-03 20:32:00,23.69,166.633,5.82 +2016-02-03 20:47:00,24.7775,166.663,5.8 +2016-02-03 21:02:00,23.5013,166.742,5.79 +2016-02-03 21:17:00,22.5263,166.76,5.78 +2016-02-03 21:32:00,22.72,166.747,5.76 +2016-02-03 21:47:00,25.3688,166.872,5.74 +2016-02-03 22:02:00,22.67,166.872,5.73 +2016-02-03 22:17:00,23.2975,166.93,5.71 +2016-02-03 22:32:00,24.38,166.952,5.68 +2016-02-03 22:47:00,24.8775,166.975,5.67 +2016-02-03 23:02:00,24.4775,167.045,5.65 +2016-02-03 23:17:00,23.5413,167.035,5.64 +2016-02-03 23:32:00,24.2775,167.075,5.62 +2016-02-03 23:47:00,25.2225,167.065,5.6 +2016-02-04 00:02:00,24.4762,167.107,5.59 +2016-02-04 00:17:00,24.1212,167.098,5.56 +2016-02-04 00:32:00,25.5137,167.107,5.54 +2016-02-04 00:47:00,25.0287,167.147,5.52 +2016-02-04 01:02:00,24.2262,167.145,5.51 +2016-02-04 01:17:00,22.67,167.195,5.49 +2016-02-04 01:32:00,25.5088,167.205,5.47 +2016-02-04 01:47:00,23.9238,167.28,5.46 +2016-02-04 02:02:00,24.3775,167.225,5.44 +2016-02-04 02:17:00,23.2487,167.19,5.44 +2016-02-04 02:32:00,24.925,167.237,5.41 +2016-02-04 02:47:00,23.93,167.23,5.39 +2016-02-04 03:02:00,24.3213,167.212,5.38 +2016-02-04 03:17:00,22.6263,167.188,5.36 +2016-02-04 03:32:00,23.6375,167.133,5.35 +2016-02-04 03:47:00,24.8213,167.122,5.34 +2016-02-04 04:02:00,24.6275,167.11,5.32 +2016-02-04 04:17:00,24.07,167.085,5.3 +2016-02-04 04:32:00,23.885,167.068,5.29 +2016-02-04 04:47:00,24.9287,167.052,5.27 +2016-02-04 05:02:00,23.7887,167.03,5.25 +2016-02-04 05:17:00,24.7738,167.003,5.23 +2016-02-04 05:32:00,25.3213,166.938,5.21 +2016-02-04 05:47:00,23.4425,166.837,5.19 +2016-02-04 06:02:00,24.6712,166.67,5.17 +2016-02-04 06:17:00,25.5625,166.482,5.15 +2016-02-04 06:32:00,23.6912,166.312,5.13 +2016-02-04 06:47:00,24.375,166.217,5.12 +2016-02-04 07:02:00,24.58,166.07,5.11 +2016-02-04 07:17:00,23.5887,165.935,5.1 +2016-02-04 07:32:00,24.9238,165.755,5.08 +2016-02-04 07:47:00,24.8725,165.57,5.07 +2016-02-04 08:02:00,24.4788,165.367,5.06 +2016-02-04 08:17:00,24.8725,165.145,5.04 +2016-02-04 08:32:00,23.7913,164.922,5.02 +2016-02-04 08:47:00,23.925,164.805,5.02 +2016-02-04 09:02:00,24.9688,164.682,5.01 +2016-02-04 09:17:00,24.5737,164.64,5.0 +2016-02-04 09:32:00,25.855,164.53,5.01 +2016-02-04 09:47:00,27.17,164.48,5.01 +2016-02-04 10:02:00,25.1775,164.505,5.01 +2016-02-04 10:17:00,26.3387,164.51,5.02 +2016-02-04 10:32:00,24.6312,164.475,5.04 +2016-02-04 10:47:00,23.93,164.443,5.04 +2016-02-04 11:02:00,25.3225,164.383,5.05 +2016-02-04 11:17:00,25.0238,164.348,5.04 +2016-02-04 11:32:00,24.5762,164.207,5.05 +2016-02-04 11:47:00,26.1038,164.14,5.06 +2016-02-04 12:02:00,26.5362,163.978,5.06 +2016-02-04 12:17:00,24.9775,163.845,5.07 +2016-02-04 12:32:00,23.84,163.695,5.07 +2016-02-04 12:47:00,24.4262,163.585,5.06 +2016-02-04 13:02:00,24.375,163.365,5.06 +2016-02-04 13:17:00,25.32,163.255,5.07 +2016-02-04 13:32:00,25.125,163.158,5.07 +2016-02-04 13:47:00,25.56,163.0,5.06 +2016-02-04 14:02:00,22.525,162.97,5.06 +2016-02-04 14:17:00,22.965,162.952,5.07 +2016-02-04 14:32:00,23.4938,162.883,5.06 +2016-02-04 14:47:00,25.4637,162.865,5.06 +2016-02-04 15:02:00,24.1225,162.812,5.07 +2016-02-04 15:17:00,23.5912,162.77,5.07 +2016-02-04 15:32:00,23.5912,162.688,5.08 +2016-02-04 15:47:00,23.93,162.598,5.08 +2016-02-04 16:02:00,24.3775,162.492,5.08 +2016-02-04 16:17:00,24.5262,162.402,5.06 +2016-02-04 16:32:00,24.0212,162.292,5.05 +2016-02-04 16:47:00,23.1513,162.145,5.04 +2016-02-04 17:02:00,25.125,162.003,5.03 +2016-02-04 17:17:00,23.8812,161.905,5.03 +2016-02-04 17:32:00,24.0262,161.837,5.02 +2016-02-04 17:47:00,21.9987,161.81,5.0 +2016-02-04 18:02:00,25.3737,161.785,4.99 +2016-02-04 18:17:00,25.6588,161.777,4.98 +2016-02-04 18:32:00,25.22,161.73,4.98 +2016-02-04 18:47:00,24.075,161.697,4.97 +2016-02-04 19:02:00,23.1513,161.655,4.95 +2016-02-04 19:17:00,24.3237,161.557,4.94 +2016-02-04 19:32:00,25.9525,161.46,4.93 +2016-02-04 19:47:00,24.825,161.345,4.93 +2016-02-04 20:02:00,24.0725,161.258,4.93 +2016-02-04 20:17:00,24.3725,161.147,4.92 +2016-02-04 20:32:00,25.0725,161.03,4.91 +2016-02-04 20:47:00,23.105,160.945,4.89 +2016-02-04 21:02:00,23.5925,160.917,4.88 +2016-02-04 21:17:00,24.63,160.872,4.88 +2016-02-04 21:32:00,22.675,160.855,4.88 +2016-02-04 21:47:00,24.825,160.832,4.88 +2016-02-04 22:02:00,21.895,160.775,4.87 +2016-02-04 22:17:00,23.195,160.72,4.86 +2016-02-04 22:30:59,22.285,160.645,4.85 +2016-02-04 22:47:00,24.425,160.565,4.84 +2016-02-04 23:02:00,23.8387,160.438,4.81 +2016-02-04 23:17:00,25.2225,160.353,4.79 +2016-02-04 23:32:00,26.05,160.245,4.77 +2016-02-04 23:47:00,24.1212,160.11,4.75 +2016-02-05 00:02:00,25.61,160.012,4.72 +2016-02-05 00:17:00,24.725,159.892,4.71 +2016-02-05 00:32:00,26.2438,159.772,4.7 +2016-02-05 00:47:00,24.1263,159.72,4.71 +2016-02-05 01:02:00,24.2812,159.665,4.7 +2016-02-05 01:17:00,23.9788,159.655,4.69 +2016-02-05 01:32:00,22.6725,159.603,4.67 +2016-02-05 01:47:00,24.0238,159.577,4.66 +2016-02-05 02:02:00,23.1525,159.535,4.66 +2016-02-05 02:17:00,24.2237,159.455,4.65 +2016-02-05 02:32:00,23.7387,159.4,4.64 +2016-02-05 02:47:00,25.3262,159.318,4.64 +2016-02-05 03:02:00,23.6,159.24,4.61 +2016-02-05 03:17:00,23.6387,159.152,4.6 +2016-02-05 03:32:00,23.835,159.07,4.59 +2016-02-05 03:47:00,24.9775,158.99,4.57 +2016-02-05 04:02:00,24.425,158.905,4.57 +2016-02-05 04:17:00,23.245,158.807,4.55 +2016-02-05 04:32:00,23.5938,158.75,4.53 +2016-02-05 04:47:00,23.0625,158.725,4.52 +2016-02-05 05:02:00,23.6912,158.697,4.51 +2016-02-05 05:17:00,22.4725,158.667,4.51 +2016-02-05 05:32:00,22.2838,158.633,4.5 +2016-02-05 05:47:00,22.6175,158.568,4.49 +2016-02-05 06:02:00,24.4762,158.475,4.48 +2016-02-05 06:17:00,23.4925,158.362,4.46 +2016-02-05 06:32:00,23.3962,158.232,4.46 +2016-02-05 06:47:00,22.8175,158.098,4.45 +2016-02-05 07:02:00,24.5262,157.917,4.43 +2016-02-05 07:17:00,23.545,157.735,4.42 +2016-02-05 07:32:00,22.865,157.59,4.41 +2016-02-05 07:47:00,24.0275,157.467,4.4 +2016-02-05 08:02:00,23.8375,157.367,4.41 +2016-02-05 08:17:00,24.625,157.292,4.41 +2016-02-05 08:32:00,24.1762,157.23,4.41 +2016-02-05 08:47:00,24.5825,157.137,4.42 +2016-02-05 09:02:00,23.64,157.087,4.44 +2016-02-05 09:17:00,23.8838,157.038,4.45 +2016-02-05 09:32:00,24.7213,156.967,4.45 +2016-02-05 09:47:00,22.0488,156.922,4.45 +2016-02-05 10:02:00,23.64,156.885,4.46 +2016-02-05 10:17:00,23.4987,156.802,4.46 +2016-02-05 10:32:00,24.725,156.76,4.46 +2016-02-05 10:47:00,23.155,156.728,4.47 +2016-02-05 11:02:00,24.1725,156.62,4.47 +2016-02-05 11:17:00,23.88,156.56,4.49 +2016-02-05 11:32:00,24.8737,156.438,4.49 +2016-02-05 11:47:00,23.6387,156.335,4.51 +2016-02-05 12:02:00,23.5912,156.175,4.53 +2016-02-05 12:17:00,23.6888,156.02,4.54 +2016-02-05 12:32:00,24.175,155.86,4.55 +2016-02-05 12:47:00,24.1212,155.67,4.55 +2016-02-05 13:02:00,23.4925,155.492,4.55 +2016-02-05 13:17:00,24.8763,155.283,4.57 +2016-02-05 13:32:00,24.575,155.012,4.58 +2016-02-05 13:47:00,25.4187,154.685,4.58 +2016-02-05 14:02:00,24.4775,154.395,4.6 +2016-02-05 14:17:00,24.4275,154.122,4.61 +2016-02-05 14:32:00,24.0737,153.855,4.63 +2016-02-05 14:47:00,24.375,153.753,4.64 +2016-02-05 15:02:00,23.3937,153.658,4.66 +2016-02-05 15:17:00,23.3438,153.517,4.67 +2016-02-05 15:32:00,24.1212,153.307,4.67 +2016-02-05 15:47:00,23.8363,153.122,4.69 +2016-02-05 16:02:00,24.1712,153.003,4.69 +2016-02-05 16:17:00,22.1925,152.805,4.69 +2016-02-05 16:32:00,22.19,152.667,4.69 +2016-02-05 16:47:00,22.8162,152.565,4.69 +2016-02-05 17:02:00,23.0125,152.48,4.7 +2016-02-05 17:17:00,25.075,152.455,4.7 +2016-02-05 17:32:00,21.65,152.42,4.71 +2016-02-05 17:47:00,23.395,152.42,4.71 +2016-02-05 18:02:00,22.0963,152.425,4.72 +2016-02-05 18:17:00,24.0212,152.473,4.72 +2016-02-05 18:32:00,22.425,152.557,4.73 +2016-02-05 18:47:00,21.4037,152.582,4.73 +2016-02-05 19:02:00,23.3913,152.672,4.74 +2016-02-05 19:17:00,21.9487,152.73,4.74 +2016-02-05 19:32:00,22.14,152.753,4.74 +2016-02-05 19:47:00,23.5475,152.848,4.75 +2016-02-05 20:02:00,23.3962,152.908,4.75 +2016-02-05 20:17:00,23.4925,152.978,4.76 +2016-02-05 20:32:00,23.1062,153.045,4.76 +2016-02-05 20:47:00,22.5713,153.057,4.77 +2016-02-05 21:02:00,24.1712,153.142,4.78 +2016-02-05 21:17:00,21.3037,153.223,4.8 +2016-02-05 21:32:00,22.475,153.292,4.81 +2016-02-05 21:47:00,22.4287,153.34,4.81 +2016-02-05 22:02:00,24.2738,153.357,4.82 +2016-02-05 22:17:00,22.24,153.478,4.83 +2016-02-05 22:32:00,22.0912,153.565,4.84 +2016-02-05 22:47:00,21.9912,153.637,4.85 +2016-02-05 23:02:00,23.2038,153.693,4.85 +2016-02-05 23:17:00,22.0425,153.777,4.86 +2016-02-05 23:32:00,22.675,153.848,4.86 +2016-02-05 23:47:00,24.1738,153.905,4.84 +2016-02-06 00:02:00,22.5713,153.95,4.84 +2016-02-06 00:17:00,22.8175,153.982,4.83 +2016-02-06 00:32:00,23.64,154.008,4.83 +2016-02-06 00:47:00,22.4762,154.042,4.84 +2016-02-06 01:02:00,21.5488,154.077,4.84 +2016-02-06 01:17:00,23.8862,154.128,4.86 +2016-02-06 01:32:00,23.7475,154.13,4.85 +2016-02-06 01:47:00,23.2475,154.16,4.84 +2016-02-06 02:02:00,22.9613,154.18,4.84 +2016-02-06 02:17:00,22.1413,154.253,4.84 +2016-02-06 02:32:00,22.4287,154.297,4.84 +2016-02-06 02:47:00,24.075,154.337,4.84 +2016-02-06 03:02:00,23.1012,154.452,4.84 +2016-02-06 03:17:00,21.0062,154.485,4.85 +2016-02-06 03:32:00,21.3075,154.51,4.87 +2016-02-06 03:47:00,25.3712,154.575,4.88 +2016-02-06 04:02:00,23.4938,154.635,4.89 +2016-02-06 04:17:00,22.6212,154.61,4.89 +2016-02-06 04:32:00,23.64,154.68,4.9 +2016-02-06 04:47:00,22.1375,154.725,4.91 +2016-02-06 05:02:00,23.835,154.762,4.92 +2016-02-06 05:17:00,23.1113,154.777,4.93 +2016-02-06 05:32:00,24.4275,154.792,4.93 +2016-02-06 05:47:00,23.0112,154.822,4.93 +2016-02-06 06:02:00,23.445,154.862,4.92 +2016-02-06 06:17:00,23.8387,154.812,4.91 +2016-02-06 06:32:00,23.2,154.885,4.91 +2016-02-06 06:47:00,21.5488,154.865,4.91 +2016-02-06 07:02:00,22.8688,154.91,4.9 +2016-02-06 07:17:00,23.015,154.895,4.91 +2016-02-06 07:32:00,23.2475,154.97,4.92 +2016-02-06 07:47:00,24.8688,154.995,4.92 +2016-02-06 08:02:00,22.4725,155.008,4.94 +2016-02-06 08:17:00,22.8138,155.068,4.93 +2016-02-06 08:32:00,22.1888,155.062,4.94 +2016-02-06 08:47:00,22.77,155.08,4.96 +2016-02-06 09:02:00,21.9962,155.145,4.97 +2016-02-06 09:17:00,22.725,155.165,4.95 +2016-02-06 09:32:00,23.2487,155.12,4.94 +2016-02-06 09:47:00,24.2262,155.202,4.97 +2016-02-06 10:02:00,23.8387,155.167,4.99 +2016-02-06 10:17:00,22.5713,155.202,5.03 +2016-02-06 10:32:00,22.8187,155.155,5.04 +2016-02-06 10:47:00,24.825,155.17,5.06 +2016-02-06 11:02:00,23.695,155.23,5.08 +2016-02-06 11:17:00,21.2575,155.275,5.11 +2016-02-06 11:32:00,22.6712,155.277,5.14 +2016-02-06 11:47:00,22.67,155.372,5.16 +2016-02-06 12:02:00,23.7387,155.417,5.19 +2016-02-06 12:17:00,22.29,155.425,5.21 +2016-02-06 12:32:00,23.295,155.42,5.22 +2016-02-06 12:47:00,23.8412,155.5,5.24 +2016-02-06 13:02:00,21.3575,155.55,5.26 +2016-02-06 13:17:00,22.5263,155.545,5.28 +2016-02-06 13:32:00,22.8675,155.605,5.29 +2016-02-06 13:47:00,22.5737,155.505,5.31 +2016-02-06 14:02:00,23.3937,155.55,5.34 +2016-02-06 14:17:00,24.2237,155.603,5.38 +2016-02-06 14:32:00,22.5225,155.645,5.4 +2016-02-06 14:47:00,21.16,155.652,5.42 +2016-02-06 15:02:00,22.725,155.667,5.46 +2016-02-06 15:17:00,22.8225,155.742,5.49 +2016-02-06 15:32:00,23.79,155.702,5.53 +2016-02-06 15:47:00,23.4463,155.785,5.56 +2016-02-06 16:02:00,23.2025,155.795,5.58 +2016-02-06 16:17:00,22.8637,155.883,5.6 +2016-02-06 16:32:00,22.58,155.967,5.63 +2016-02-06 16:47:00,23.0625,155.985,5.65 +2016-02-06 17:02:00,22.3288,156.03,5.67 +2016-02-06 17:17:00,23.1062,156.15,5.68 +2016-02-06 17:32:00,22.5737,156.16,5.68 +2016-02-06 17:47:00,21.95,156.17,5.68 +2016-02-06 18:02:00,21.055,156.193,5.67 +2016-02-06 18:17:00,23.25,156.285,5.65 +2016-02-06 18:32:00,22.2887,156.312,5.64 +2016-02-06 18:47:00,21.2575,156.265,5.64 +2016-02-06 19:02:00,22.72,156.332,5.62 +2016-02-06 19:17:00,23.15,156.36,5.62 +2016-02-06 19:32:00,22.5713,156.385,5.6 +2016-02-06 19:47:00,22.7687,156.387,5.61 +2016-02-06 20:02:00,22.8187,156.348,5.6 +2016-02-06 20:17:00,22.575,156.417,5.6 +2016-02-06 20:32:00,22.4313,156.435,5.59 +2016-02-06 20:47:00,22.62,156.462,5.58 +2016-02-06 21:02:00,21.5025,156.43,5.58 +2016-02-06 21:17:00,23.4975,156.512,5.56 +2016-02-06 21:32:00,23.8375,156.505,5.54 +2016-02-06 21:47:00,22.2838,156.56,5.52 +2016-02-06 22:02:00,25.1775,156.552,5.49 +2016-02-06 22:17:00,23.695,156.605,5.47 +2016-02-06 22:32:00,23.3937,156.6,5.45 +2016-02-06 22:47:00,21.5025,156.65,5.43 +2016-02-06 23:02:00,22.5687,156.59,5.42 +2016-02-06 23:17:00,23.105,156.625,5.41 +2016-02-06 23:32:00,23.155,156.587,5.41 +2016-02-06 23:47:00,24.4812,156.595,5.4 +2016-02-07 00:02:00,22.2875,156.58,5.39 +2016-02-07 00:17:00,21.9512,156.595,5.38 +2016-02-07 00:32:00,24.8213,156.645,5.37 +2016-02-07 00:47:00,24.7262,156.6,5.36 +2016-02-07 01:02:00,22.7675,156.595,5.36 +2016-02-07 01:17:00,21.6963,156.62,5.35 +2016-02-07 01:32:00,21.8988,156.707,5.33 +2016-02-07 01:47:00,22.0963,156.728,5.33 +2016-02-07 02:02:00,21.9,156.745,5.32 +2016-02-07 02:17:00,24.125,156.728,5.31 +2016-02-07 02:32:00,21.5987,156.795,5.31 +2016-02-07 02:47:00,22.29,156.75,5.31 +2016-02-07 03:02:00,23.495,156.745,5.3 +2016-02-07 03:17:00,22.67,156.777,5.3 +2016-02-07 03:32:00,23.1975,156.728,5.29 +2016-02-07 03:47:00,23.6937,156.745,5.28 +2016-02-07 04:02:00,24.43,156.753,5.27 +2016-02-07 04:17:00,22.3812,156.737,5.27 +2016-02-07 04:32:00,23.0612,156.732,5.26 +2016-02-07 04:47:00,23.6413,156.735,5.25 +2016-02-07 05:02:00,24.025,156.737,5.25 +2016-02-07 05:17:00,22.9137,156.693,5.25 +2016-02-07 05:32:00,22.0488,156.697,5.25 +2016-02-07 05:47:00,24.4788,156.685,5.24 +2016-02-07 06:02:00,21.2087,156.747,5.23 +2016-02-07 06:17:00,23.06,156.75,5.23 +2016-02-07 06:32:00,23.7913,156.728,5.24 +2016-02-07 06:47:00,22.5725,156.772,5.24 +2016-02-07 07:02:00,24.025,156.715,5.23 +2016-02-07 07:17:00,23.3,156.7,5.23 +2016-02-07 07:32:00,22.97,156.66,5.23 +2016-02-07 07:47:00,22.2913,156.63,5.23 +2016-02-07 08:02:00,23.2525,156.622,5.24 +2016-02-07 08:17:00,22.5225,156.647,5.25 +2016-02-07 08:32:00,23.6937,156.598,5.25 +2016-02-07 08:47:00,23.3913,156.582,5.26 +2016-02-07 09:02:00,21.995,156.577,5.27 +2016-02-07 09:17:00,24.225,156.565,5.28 +2016-02-07 09:32:00,22.6263,156.538,5.28 +2016-02-07 09:47:00,24.5812,156.503,5.29 +2016-02-07 10:02:00,23.5912,156.48,5.31 +2016-02-07 10:17:00,24.2275,156.462,5.32 +2016-02-07 10:32:00,22.5225,156.48,5.35 +2016-02-07 10:47:00,24.3288,156.432,5.36 +2016-02-07 11:02:00,22.8175,156.452,5.37 +2016-02-07 11:17:00,23.2487,156.467,5.39 +2016-02-07 11:32:00,23.155,156.512,5.41 +2016-02-07 11:47:00,23.1562,156.533,5.43 +2016-02-07 12:02:00,23.0612,156.58,5.45 +2016-02-07 12:17:00,23.1513,156.598,5.48 +2016-02-07 12:32:00,22.4262,156.615,5.5 +2016-02-07 12:47:00,23.4987,156.615,5.51 +2016-02-07 13:02:00,24.33,156.598,5.54 +2016-02-07 13:17:00,24.1275,156.587,5.57 +2016-02-07 13:32:00,22.7738,156.617,5.59 +2016-02-07 13:47:00,22.475,156.53,5.6 +2016-02-07 14:02:00,21.9512,156.497,5.62 +2016-02-07 14:17:00,23.7425,156.503,5.65 +2016-02-07 14:32:00,23.06,156.475,5.66 +2016-02-07 14:47:00,22.4275,156.39,5.68 +2016-02-07 15:02:00,22.9163,156.35,5.7 +2016-02-07 15:17:00,22.9175,156.315,5.72 +2016-02-07 15:32:00,22.725,156.353,5.73 +2016-02-07 15:47:00,24.175,156.31,5.75 +2016-02-07 16:02:00,23.3475,156.392,5.76 +2016-02-07 16:17:00,23.3037,156.35,5.77 +2016-02-07 16:32:00,23.1075,156.357,5.78 +2016-02-07 16:47:00,22.9137,156.258,5.79 +2016-02-07 17:02:00,24.68,156.247,5.81 +2016-02-07 17:17:00,24.3825,156.21,5.83 +2016-02-07 17:32:00,21.8512,156.152,5.83 +2016-02-07 17:47:00,23.6425,156.1,5.84 +2016-02-07 18:02:00,22.3812,156.012,5.85 +2016-02-07 18:17:00,22.8225,155.917,5.86 +2016-02-07 18:32:00,22.3375,155.872,5.86 +2016-02-07 18:47:00,22.7725,155.762,5.87 +2016-02-07 19:02:00,24.18,155.665,5.87 +2016-02-07 19:17:00,22.9638,155.582,5.87 +2016-02-07 19:32:00,22.7738,155.5,5.88 +2016-02-07 19:47:00,22.8237,155.435,5.88 +2016-02-07 20:02:00,24.1712,155.41,5.89 +2016-02-07 20:17:00,23.3988,155.367,5.89 +2016-02-07 20:32:00,22.0488,155.378,5.89 +2016-02-07 20:47:00,24.38,155.37,5.9 +2016-02-07 21:02:00,24.28,155.362,5.91 +2016-02-07 21:17:00,22.8225,155.29,5.9 +2016-02-07 21:32:00,23.0125,155.258,5.91 +2016-02-07 21:47:00,24.1263,155.247,5.91 +2016-02-07 22:02:00,23.5925,155.205,5.91 +2016-02-07 22:17:00,23.2975,155.17,5.9 +2016-02-07 22:32:00,23.6462,155.1,5.9 +2016-02-07 22:47:00,21.9025,155.115,5.88 +2016-02-07 23:02:00,21.06,155.045,5.87 +2016-02-07 23:17:00,23.0625,154.987,5.86 +2016-02-07 23:32:00,23.4475,154.957,5.86 +2016-02-07 23:47:00,24.7787,154.788,5.86 +2016-02-08 00:02:00,22.2387,154.77,5.86 +2016-02-08 00:17:00,23.06,154.68,5.84 +2016-02-08 00:32:00,23.065,154.61,5.85 +2016-02-08 00:47:00,23.4987,154.68,5.85 +2016-02-08 01:02:00,22.9163,154.7,5.85 +2016-02-08 01:17:00,24.03,154.645,5.85 +2016-02-08 01:32:00,23.7412,154.65,5.84 +2016-02-08 01:47:00,22.3775,154.565,5.83 +2016-02-08 02:02:00,22.2862,154.527,5.82 +2016-02-08 02:17:00,24.8725,154.457,5.81 +2016-02-08 02:32:00,25.4688,154.445,5.79 +2016-02-08 02:47:00,23.2062,154.405,5.79 +2016-02-08 03:02:00,23.06,154.36,5.77 +2016-02-08 03:17:00,23.495,154.25,5.75 +2016-02-08 03:32:00,21.5088,154.177,5.74 +2016-02-08 03:47:00,23.7425,154.105,5.74 +2016-02-08 04:02:00,22.6738,154.082,5.73 +2016-02-08 04:17:00,24.68,153.982,5.72 +2016-02-08 04:32:00,25.6125,154.04,5.71 +2016-02-08 04:47:00,24.3262,153.957,5.71 +2016-02-08 05:02:00,23.2012,153.92,5.71 +2016-02-08 05:17:00,22.625,153.915,5.71 +2016-02-08 05:32:00,22.335,153.878,5.69 +2016-02-08 05:47:00,23.3487,154.112,5.68 +2016-02-08 06:02:00,22.9675,153.785,5.67 +2016-02-08 06:17:00,23.9863,153.79,5.67 +2016-02-08 06:32:00,24.1762,153.702,5.68 +2016-02-08 06:47:00,24.4775,153.48,5.67 +2016-02-08 07:02:00,22.5275,153.247,5.67 +2016-02-08 07:17:00,24.3787,153.163,5.67 +2016-02-08 07:32:00,22.2925,153.04,5.67 +2016-02-08 07:47:00,24.1725,153.0,5.68 +2016-02-08 08:02:00,23.4,153.107,5.69 +2016-02-08 08:17:00,24.93,153.06,5.69 +2016-02-08 08:32:00,25.175,153.07,5.7 +2016-02-08 08:47:00,24.4287,153.13,5.72 +2016-02-08 09:02:00,20.9613,153.188,5.79 +2016-02-08 09:17:00,24.9262,153.272,5.83 +2016-02-08 09:32:00,23.8825,153.465,5.85 +2016-02-08 09:47:00,23.9775,153.603,5.87 +2016-02-08 10:02:00,25.66,153.452,5.86 +2016-02-08 10:17:00,24.1287,153.355,5.82 +2016-02-08 10:32:00,22.9675,153.432,5.8 +2016-02-08 10:47:00,21.9525,153.51,5.81 +2016-02-08 11:02:00,25.3737,153.342,5.82 +2016-02-08 11:17:00,23.445,153.217,5.86 +2016-02-08 11:32:00,23.495,153.128,5.9 +2016-02-08 11:47:00,23.1575,153.095,5.95 +2016-02-08 12:02:00,23.6912,153.288,6.0 +2016-02-08 12:17:00,21.7012,153.31,6.0 +2016-02-08 12:32:00,22.4762,153.255,6.02 +2016-02-08 12:47:00,22.5775,153.133,6.06 +2016-02-08 13:02:00,24.825,153.207,6.09 +2016-02-08 13:17:00,21.8988,153.275,6.12 +2016-02-08 13:32:00,22.4837,152.883,6.15 +2016-02-08 13:47:00,23.395,153.122,6.17 +2016-02-08 14:02:00,23.4512,152.973,6.2 +2016-02-08 14:17:00,23.4962,153.017,6.23 +2016-02-08 14:32:00,24.1287,152.865,6.24 +2016-02-08 14:47:00,21.7975,152.82,6.25 +2016-02-08 15:02:00,23.065,152.728,6.25 +2016-02-08 15:17:00,21.4562,152.745,6.26 +2016-02-08 15:32:00,24.7288,152.672,6.28 +2016-02-08 15:47:00,22.0963,152.535,6.32 +2016-02-08 16:02:00,22.3812,152.552,6.31 +2016-02-08 16:17:00,24.8237,152.592,6.32 +2016-02-08 16:32:00,22.43,152.41,6.32 +2016-02-08 16:47:00,24.0312,152.408,6.33 +2016-02-08 17:02:00,24.3275,152.318,6.33 +2016-02-08 17:17:00,24.0262,152.28,6.32 +2016-02-08 17:32:00,24.7288,152.202,6.31 +2016-02-08 17:47:00,22.9688,152.17,6.3 +2016-02-08 18:02:00,22.53,152.207,6.28 +2016-02-08 18:17:00,24.53,152.125,6.26 +2016-02-08 18:32:00,23.8862,152.12,6.25 +2016-02-08 18:47:00,23.3463,152.087,6.25 +2016-02-08 19:02:00,24.38,152.075,6.23 +2016-02-08 19:17:00,22.82,152.077,6.21 +2016-02-08 19:32:00,21.5525,152.05,6.19 +2016-02-08 19:47:00,23.5437,152.128,6.17 +2016-02-08 20:02:00,23.3937,151.985,6.14 +2016-02-08 20:17:00,24.7687,151.973,6.13 +2016-02-08 20:32:00,22.5713,151.857,6.12 +2016-02-08 20:47:00,23.2988,151.812,6.1 +2016-02-08 21:02:00,22.9163,151.663,6.08 +2016-02-08 21:17:00,23.4975,151.447,6.07 +2016-02-08 21:32:00,23.0675,151.473,6.04 +2016-02-08 21:47:00,22.9662,151.283,6.03 +2016-02-08 22:02:00,21.6,151.182,6.01 +2016-02-08 22:17:00,24.2225,151.055,5.99 +2016-02-08 22:32:00,23.06,151.03,5.97 +2016-02-08 22:47:00,23.2,151.027,5.96 +2016-02-08 23:02:00,22.2438,151.08,5.95 +2016-02-08 23:17:00,22.3337,151.052,5.94 +2016-02-08 23:32:00,24.1275,150.967,5.92 +2016-02-08 23:47:00,21.9975,150.875,5.9 +2016-02-09 00:02:00,23.245,150.78,5.9 +2016-02-09 00:17:00,22.9125,150.735,5.89 +2016-02-09 00:32:00,24.4262,150.702,5.88 +2016-02-09 00:47:00,21.9987,150.64,5.88 +2016-02-09 01:02:00,23.9812,150.555,5.88 +2016-02-09 01:17:00,23.885,150.503,5.87 +2016-02-09 01:32:00,23.1038,150.397,5.88 +2016-02-09 01:47:00,22.3312,150.262,5.87 +2016-02-09 02:02:00,23.7425,150.285,5.87 +2016-02-09 02:17:00,23.3425,150.295,5.87 +2016-02-09 02:32:00,22.2862,150.29,5.86 +2016-02-09 02:47:00,22.4788,150.383,5.85 +2016-02-09 03:02:00,23.6425,150.182,5.85 +2016-02-09 03:17:00,23.1087,150.242,5.84 +2016-02-09 03:32:00,23.15,150.145,5.83 +2016-02-09 03:47:00,22.0425,150.247,5.83 +2016-02-09 04:02:00,23.4938,150.185,5.8 +2016-02-09 04:17:00,21.995,150.015,5.79 +2016-02-09 04:32:00,23.7387,150.27,5.77 +2016-02-09 04:47:00,23.2475,150.385,5.75 +2016-02-09 05:02:00,22.6225,150.38,5.74 +2016-02-09 05:17:00,22.3787,150.542,5.73 +2016-02-09 05:32:00,24.075,150.642,5.73 +2016-02-09 05:47:00,24.58,150.74,5.73 +2016-02-09 06:02:00,23.88,150.85,5.72 +2016-02-09 06:17:00,24.1212,150.987,5.71 +2016-02-09 06:32:00,23.3438,151.075,5.69 +2016-02-09 06:47:00,22.525,151.188,5.67 +2016-02-09 07:02:00,22.48,151.335,5.66 +2016-02-09 07:17:00,23.3937,151.4,5.65 +2016-02-09 07:32:00,23.79,151.538,5.64 +2016-02-09 07:47:00,22.6687,151.612,5.62 +2016-02-09 08:02:00,22.4212,151.685,5.62 +2016-02-09 08:17:00,23.5887,151.792,5.61 +2016-02-09 08:32:00,23.7937,151.845,5.62 +2016-02-09 08:47:00,23.7875,151.955,5.62 +2016-02-09 09:02:00,21.6975,151.992,5.63 +2016-02-09 09:17:00,23.5912,152.205,5.64 +2016-02-09 09:32:00,23.3463,152.372,5.64 +2016-02-09 09:47:00,23.3475,152.435,5.65 +2016-02-09 10:02:00,23.1038,152.572,5.67 +2016-02-09 10:17:00,23.295,152.693,5.69 +2016-02-09 10:32:00,23.4487,152.86,5.7 +2016-02-09 10:47:00,24.1263,153.025,5.71 +2016-02-09 11:02:00,23.9275,153.193,5.73 +2016-02-09 11:17:00,23.2012,153.342,5.75 +2016-02-09 11:32:00,23.7375,153.503,5.75 +2016-02-09 11:47:00,24.8725,153.688,5.76 +2016-02-09 12:02:00,25.4625,153.845,5.76 +2016-02-09 12:17:00,23.2025,154.012,5.77 +2016-02-09 12:32:00,22.3838,154.22,5.79 +2016-02-09 12:47:00,24.2775,154.422,5.8 +2016-02-09 13:02:00,23.5413,154.628,5.81 +2016-02-09 13:17:00,21.7975,154.878,5.82 +2016-02-09 13:32:00,24.1225,155.005,5.83 +2016-02-09 13:47:00,23.4938,155.172,5.85 +2016-02-09 14:02:00,22.6725,155.395,5.86 +2016-02-09 14:17:00,22.915,155.622,5.88 +2016-02-09 14:32:00,23.2962,155.805,5.9 +2016-02-09 14:47:00,22.6725,156.027,5.91 +2016-02-09 15:02:00,23.79,156.202,5.93 +2016-02-09 15:17:00,23.3475,156.378,5.94 +2016-02-09 15:32:00,23.0088,156.538,5.94 +2016-02-09 15:47:00,22.9675,156.663,5.95 +2016-02-09 16:02:00,23.5,156.78,5.96 +2016-02-09 16:17:00,24.0287,156.865,5.97 +2016-02-09 16:32:00,21.6,156.967,5.97 +2016-02-09 16:47:00,23.105,157.1,5.98 +2016-02-09 17:02:00,23.5925,157.172,5.98 +2016-02-09 17:17:00,22.7188,157.3,5.98 +2016-02-09 17:32:00,23.8412,157.443,5.98 +2016-02-09 17:47:00,22.4275,157.598,5.98 +2016-02-09 18:02:00,24.48,157.71,5.97 +2016-02-09 18:17:00,22.385,157.837,5.97 +2016-02-09 18:32:00,22.5775,157.955,5.96 +2016-02-09 18:47:00,23.4987,158.038,5.95 +2016-02-09 19:02:00,21.4562,158.075,5.95 +2016-02-09 19:17:00,22.0462,158.142,5.93 +2016-02-09 19:32:00,22.6738,158.247,5.92 +2016-02-09 19:47:00,23.11,158.217,5.9 +2016-02-09 20:02:00,25.325,158.26,5.9 +2016-02-09 20:17:00,20.8162,158.245,5.9 +2016-02-09 20:32:00,22.965,158.11,5.91 +2016-02-09 20:47:00,23.7887,158.112,5.9 +2016-02-09 21:02:00,22.52,158.045,5.9 +2016-02-09 21:17:00,22.915,157.8,5.9 +2016-02-09 21:32:00,23.545,157.825,5.9 +2016-02-09 21:47:00,23.3937,158.017,5.89 +2016-02-09 22:02:00,23.1075,157.745,5.88 +2016-02-09 22:17:00,24.3787,158.098,5.86 +2016-02-09 22:32:00,22.5737,157.705,5.84 +2016-02-09 22:47:00,22.525,157.767,5.83 +2016-02-09 23:02:00,23.1987,157.538,5.82 +2016-02-09 23:17:00,23.3463,157.615,5.8 +2016-02-09 23:32:00,22.48,157.582,5.78 +2016-02-09 23:47:00,23.0625,157.39,5.77 +2016-02-10 00:02:00,23.0187,157.44,5.75 +2016-02-10 00:17:00,23.1062,157.362,5.72 +2016-02-10 00:32:00,22.8675,157.452,5.71 +2016-02-10 00:47:00,22.915,157.53,5.67 +2016-02-10 01:02:00,20.96,157.562,5.63 +2016-02-10 01:17:00,23.64,157.56,5.61 +2016-02-10 01:32:00,23.4987,157.56,5.58 +2016-02-10 01:47:00,23.8387,157.622,5.55 +2016-02-10 02:02:00,23.93,157.667,5.53 +2016-02-10 02:17:00,21.9962,157.622,5.5 +2016-02-10 02:32:00,23.9287,157.61,5.48 +2016-02-10 02:47:00,23.7412,157.622,5.46 +2016-02-10 03:02:00,22.9163,157.562,5.44 +2016-02-10 03:17:00,23.6413,157.56,5.42 +2016-02-10 03:32:00,22.9163,157.53,5.41 +2016-02-10 03:47:00,23.7425,157.517,5.39 +2016-02-10 04:02:00,24.925,157.503,5.38 +2016-02-10 04:17:00,23.8787,157.47,5.36 +2016-02-10 04:32:00,23.54,157.443,5.35 +2016-02-10 04:47:00,23.93,157.41,5.32 +2016-02-10 05:02:00,22.3838,157.397,5.3 +2016-02-10 05:17:00,23.6925,157.337,5.29 +2016-02-10 05:32:00,21.6513,157.335,5.26 +2016-02-10 05:47:00,21.4062,157.305,5.23 +2016-02-10 06:02:00,23.64,157.275,5.2 +2016-02-10 06:17:00,24.2738,157.247,5.18 +2016-02-10 06:32:00,22.6687,157.232,5.16 +2016-02-10 06:47:00,25.2262,157.217,5.13 +2016-02-10 07:02:00,23.6425,157.2,5.1 +2016-02-10 07:17:00,23.9775,157.182,5.08 +2016-02-10 07:32:00,23.205,157.212,5.07 +2016-02-10 07:47:00,22.6212,157.215,5.08 +2016-02-10 08:02:00,23.74,157.29,5.08 +2016-02-10 08:17:00,24.12,157.267,5.08 +2016-02-10 08:32:00,23.4437,157.322,5.07 +2016-02-10 08:47:00,23.9325,157.492,5.07 +2016-02-10 09:02:00,22.2925,157.438,5.08 +2016-02-10 09:17:00,23.7913,157.512,5.08 +2016-02-10 09:32:00,24.3737,157.592,5.07 +2016-02-10 09:47:00,25.0762,157.66,5.07 +2016-02-10 10:02:00,22.5238,157.665,5.07 +2016-02-10 10:17:00,25.1237,157.747,5.08 +2016-02-10 10:32:00,26.7363,157.74,5.09 +2016-02-10 10:47:00,23.6875,157.8,5.1 +2016-02-10 11:02:00,22.7712,157.818,5.1 +2016-02-10 11:17:00,25.5137,157.767,5.13 +2016-02-10 11:32:00,24.5287,157.775,5.16 +2016-02-10 11:47:00,25.8075,157.707,5.18 +2016-02-10 12:02:00,25.3213,157.835,5.18 +2016-02-10 12:17:00,23.6413,157.735,5.17 +2016-02-10 12:32:00,24.5275,157.765,5.17 +2016-02-10 12:47:00,24.5812,157.695,5.19 +2016-02-10 13:02:00,24.2787,157.59,5.21 +2016-02-10 13:17:00,24.5287,157.603,5.22 +2016-02-10 13:32:00,23.8838,157.497,5.23 +2016-02-10 13:47:00,25.56,157.58,4.92 +2016-02-10 14:02:00,24.9713,157.61,5.26 +2016-02-10 14:15:05,24.5088,157.552,5.29 +2016-02-10 14:32:01,24.6025,157.645,5.32 +2016-02-10 14:47:00,22.7975,157.705,5.34 +2016-02-10 15:02:00,23.0788,157.805,5.34 +2016-02-10 15:17:00,23.6125,157.965,5.33 +2016-02-10 15:32:00,23.8487,158.098,5.32 +2016-02-10 15:47:00,23.3688,158.267,5.3 +2016-02-10 16:02:00,23.8575,158.435,5.28 +2016-02-10 16:17:00,22.5925,158.633,5.27 +2016-02-10 16:32:00,22.6975,158.792,5.25 +2016-02-10 16:47:00,23.5675,158.975,5.25 +2016-02-10 17:02:00,23.8575,159.18,5.24 +2016-02-10 17:17:00,22.84,159.438,5.22 +2016-02-10 17:32:00,21.8737,159.635,5.22 +2016-02-10 17:47:00,22.7412,159.878,5.23 +2016-02-10 18:02:00,23.8063,160.09,5.25 +2016-02-10 18:17:00,22.8425,160.265,5.25 +2016-02-10 18:32:00,24.0025,160.473,5.24 +2016-02-10 18:47:00,23.7663,160.73,5.24 +2016-02-10 19:02:00,22.7412,160.95,5.25 +2016-02-10 19:17:00,22.3512,161.18,5.25 +2016-02-10 19:32:00,25.0,161.38,5.25 +2016-02-10 19:47:00,22.3512,161.587,5.24 +2016-02-10 20:02:00,22.6925,161.765,5.23 +2016-02-10 20:17:00,24.3538,161.97,5.23 +2016-02-10 20:32:00,22.89,162.105,5.23 +2016-02-10 20:47:00,23.8525,162.292,5.23 +2016-02-10 21:02:00,22.2125,162.478,5.22 +2016-02-10 21:17:00,22.0187,162.642,5.22 +2016-02-10 21:32:00,23.1738,162.777,5.23 +2016-02-10 21:47:00,23.4662,162.915,5.22 +2016-02-10 22:02:00,21.8237,163.01,5.21 +2016-02-10 22:17:00,23.855,163.02,5.19 +2016-02-10 22:32:00,24.4012,163.04,5.18 +2016-02-10 22:47:00,24.5037,163.008,5.17 +2016-02-10 23:02:00,24.4538,163.033,5.16 +2016-02-10 23:17:00,24.4525,162.992,5.15 +2016-02-10 23:32:00,24.2487,162.962,5.13 +2016-02-10 23:47:00,23.6125,162.952,5.13 +2016-02-11 00:02:00,23.4688,162.945,5.12 +2016-02-11 00:17:00,23.425,162.917,5.11 +2016-02-11 00:32:00,24.7,162.908,5.11 +2016-02-11 00:47:00,22.9375,162.765,5.1 +2016-02-11 01:02:00,22.3988,162.805,5.1 +2016-02-11 01:17:00,24.0437,162.705,5.09 +2016-02-11 01:32:00,21.87,162.612,5.08 +2016-02-11 01:47:00,23.71,162.562,5.08 +2016-02-11 02:02:00,22.1663,162.425,5.07 +2016-02-11 02:17:00,22.35,162.4,5.07 +2016-02-11 02:32:00,23.515,162.288,5.06 +2016-02-11 02:47:00,23.2687,162.21,5.04 +2016-02-11 03:02:00,23.7625,162.2,5.05 +2016-02-11 03:17:00,22.9362,162.133,5.03 +2016-02-11 03:32:00,24.2975,162.052,5.02 +2016-02-11 03:47:00,23.1738,161.938,5.02 +2016-02-11 04:02:00,24.2012,161.857,5.0 +2016-02-11 04:17:00,22.645,161.725,4.99 +2016-02-11 04:32:00,23.075,161.58,4.98 +2016-02-11 04:47:00,22.2062,161.485,4.96 +2016-02-11 05:02:00,22.5963,161.36,4.95 +2016-02-11 05:17:00,23.2225,161.255,4.94 +2016-02-11 05:32:00,21.4275,161.165,4.93 +2016-02-11 05:47:00,22.495,161.082,4.9 +2016-02-11 06:02:00,22.7913,160.997,4.86 +2016-02-11 06:17:00,22.8363,160.94,4.85 +2016-02-11 06:32:00,23.075,160.865,4.82 +2016-02-11 06:47:00,22.84,160.802,4.81 +2016-02-11 07:02:00,23.1212,160.742,4.79 +2016-02-11 07:17:00,24.0938,160.707,4.78 +2016-02-11 07:32:00,22.6912,160.655,4.76 +2016-02-11 07:47:00,23.855,160.62,4.76 +2016-02-11 08:02:00,24.4,160.63,4.79 +2016-02-11 08:17:00,23.8538,160.52,4.89 +2016-02-11 08:32:00,22.645,160.445,4.9 +2016-02-11 08:47:00,23.0275,160.297,4.91 +2016-02-11 09:02:00,22.1625,160.133,4.91 +2016-02-11 09:17:00,23.22,160.01,4.92 +2016-02-11 09:32:00,23.1263,159.825,4.91 +2016-02-11 09:47:00,23.2225,159.72,4.92 +2016-02-11 10:02:00,23.945,159.67,4.93 +2016-02-11 10:17:00,23.3662,159.378,4.93 +2016-02-11 10:32:00,22.69,159.362,4.94 +2016-02-11 10:47:00,23.71,159.307,4.95 +2016-02-11 11:02:00,23.8025,159.105,4.93 +2016-02-11 11:17:00,22.9362,158.92,4.88 +2016-02-11 11:32:00,22.2138,158.615,4.88 +2016-02-11 11:47:00,23.8538,158.55,4.9 +2016-02-11 12:02:00,24.5488,158.38,4.92 +2016-02-11 12:17:00,24.7462,158.212,4.97 +2016-02-11 12:32:00,23.1712,158.05,5.02 +2016-02-11 12:47:00,23.415,157.98,5.07 +2016-02-11 13:02:00,23.6612,157.825,5.12 +2016-02-11 13:17:00,23.7612,157.72,5.15 +2016-02-11 13:32:00,23.3712,157.612,5.13 +2016-02-11 13:47:00,24.4,157.495,5.13 +2016-02-11 14:02:00,23.0275,157.397,5.13 +2016-02-11 14:17:00,23.0275,157.312,5.16 +2016-02-11 14:32:00,22.79,157.165,5.18 +2016-02-11 14:47:00,21.57,157.022,5.21 +2016-02-11 15:02:00,22.8375,156.86,5.21 +2016-02-11 15:17:00,22.0175,156.755,5.22 +2016-02-11 15:32:00,23.3712,156.642,5.24 +2016-02-11 15:47:00,22.1625,156.538,5.26 +2016-02-11 16:02:00,22.5925,156.395,5.28 +2016-02-11 16:17:00,22.74,156.297,5.31 +2016-02-11 16:32:00,22.6912,156.188,5.32 +2016-02-11 16:47:00,23.4625,156.057,5.32 +2016-02-11 17:02:00,24.2513,155.945,5.31 +2016-02-11 17:17:00,22.3487,155.815,5.29 +2016-02-11 17:32:00,24.4975,155.7,5.27 +2016-02-11 17:47:00,23.6625,155.635,5.24 +2016-02-11 18:02:00,22.3937,155.622,5.2 +2016-02-11 18:17:00,20.925,155.603,5.17 +2016-02-11 18:32:00,23.315,155.577,5.16 +2016-02-11 18:47:00,23.2162,155.517,5.14 +2016-02-11 19:02:00,22.1162,155.452,5.11 +2016-02-11 19:17:00,23.175,155.365,5.08 +2016-02-11 19:32:00,23.4187,155.232,5.03 +2016-02-11 19:47:00,22.21,155.095,4.99 +2016-02-11 20:02:00,22.98,155.03,4.96 +2016-02-11 20:17:00,22.93,154.855,4.94 +2016-02-11 20:32:00,22.8337,154.717,4.91 +2016-02-11 20:47:00,22.5475,154.595,4.89 +2016-02-11 21:02:00,22.4475,154.577,4.86 +2016-02-11 21:17:00,22.6425,154.585,4.84 +2016-02-11 21:32:00,22.6912,154.57,4.83 +2016-02-11 21:47:00,24.0437,154.557,4.82 +2016-02-11 22:02:00,23.7113,154.505,4.79 +2016-02-11 22:17:00,23.9475,154.49,4.76 +2016-02-11 22:32:00,23.995,154.413,4.73 +2016-02-11 22:47:00,23.1787,154.345,4.71 +2016-02-11 23:02:00,22.8412,154.253,4.68 +2016-02-11 23:17:00,23.5125,154.158,4.66 +2016-02-11 23:32:00,22.3988,154.115,4.64 +2016-02-11 23:47:00,23.5163,154.1,4.62 +2016-02-12 00:02:00,22.8887,154.098,4.61 +2016-02-12 00:17:00,24.7513,154.085,4.6 +2016-02-12 00:32:00,24.2513,154.077,4.58 +2016-02-12 00:47:00,22.7438,154.04,4.57 +2016-02-12 01:02:00,23.465,153.94,4.56 +2016-02-12 01:17:00,21.9187,153.832,4.54 +2016-02-12 01:32:00,23.2225,153.735,4.52 +2016-02-12 01:47:00,22.3962,153.66,4.51 +2016-02-12 02:02:00,22.785,153.57,4.49 +2016-02-12 02:17:00,22.54,153.52,4.47 +2016-02-12 02:32:00,23.565,153.497,4.46 +2016-02-12 02:47:00,23.0788,153.533,4.44 +2016-02-12 03:02:00,23.17,153.515,4.43 +2016-02-12 03:17:00,22.5437,153.515,4.41 +2016-02-12 03:32:00,23.515,153.47,4.39 +2016-02-12 03:47:00,24.0963,153.44,4.38 +2016-02-12 04:02:00,22.2075,153.385,4.36 +2016-02-12 04:17:00,23.2712,153.275,4.35 +2016-02-12 04:32:00,22.935,153.207,4.33 +2016-02-12 04:47:00,22.4463,153.08,4.32 +2016-02-12 05:02:00,22.5425,153.027,4.31 +2016-02-12 05:17:00,22.9337,153.033,4.29 +2016-02-12 05:32:00,24.5975,153.045,4.29 +2016-02-12 05:47:00,22.2075,153.012,4.28 +2016-02-12 06:02:00,23.3662,153.005,4.26 +2016-02-12 06:17:00,23.76,152.96,4.23 +2016-02-12 06:32:00,22.7425,152.93,4.22 +2016-02-12 06:47:00,22.7862,152.885,4.22 +2016-02-12 07:02:00,22.7375,152.812,4.2 +2016-02-12 07:17:00,22.445,152.702,4.2 +2016-02-12 07:32:00,23.0263,152.562,4.19 +2016-02-12 07:47:00,23.12,152.395,4.19 +2016-02-12 08:02:00,23.6125,152.197,4.2 +2016-02-12 08:17:00,22.8887,152.085,4.22 +2016-02-12 08:32:00,23.12,152.0,4.2 +2016-02-12 08:47:00,23.365,151.92,4.2 +2016-02-12 09:02:00,22.5912,151.892,4.21 +2016-02-12 09:17:00,22.5912,151.89,4.22 +2016-02-12 09:32:00,22.1125,151.797,4.25 +2016-02-12 09:47:00,23.3162,151.76,4.27 +2016-02-12 10:02:00,23.1738,151.71,4.28 +2016-02-12 10:17:00,22.3962,151.637,4.33 +2016-02-12 10:32:00,22.9337,151.555,4.34 +2016-02-12 10:47:00,21.38,151.46,4.35 +2016-02-12 11:02:00,21.3275,151.438,4.38 +2016-02-12 11:17:00,22.0638,151.372,4.39 +2016-02-12 11:32:00,21.7675,151.32,4.4 +2016-02-12 11:47:00,23.9025,151.247,4.44 +2016-02-12 12:02:00,23.0788,151.055,4.47 +2016-02-12 12:17:00,22.9837,150.88,4.5 +2016-02-12 12:32:00,22.935,150.652,4.56 +2016-02-12 12:47:00,23.8025,150.413,4.59 +2016-02-12 13:02:00,23.71,150.17,4.63 +2016-02-12 13:17:00,22.645,149.925,4.63 +2016-02-12 13:32:00,23.66,149.728,4.67 +2016-02-12 13:47:00,21.28,149.492,4.7 +2016-02-12 14:02:00,22.7937,149.137,4.71 +2016-02-12 14:17:00,22.3463,148.758,4.74 +2016-02-12 14:32:00,22.64,148.455,4.77 +2016-02-12 14:47:00,22.1125,148.212,4.8 +2016-02-12 15:02:00,21.7675,147.945,4.82 +2016-02-12 15:17:00,22.9788,147.64,4.85 +2016-02-12 15:32:00,22.3,147.31,4.88 +2016-02-12 15:47:00,21.7237,146.935,4.92 +2016-02-12 16:02:00,22.1162,146.625,4.94 +2016-02-12 16:17:00,23.6612,146.33,4.95 +2016-02-12 16:32:00,22.11,146.033,4.95 +2016-02-12 16:47:00,21.8225,145.715,4.95 +2016-02-12 17:02:00,23.3162,145.408,4.93 +2016-02-12 17:17:00,22.3962,145.167,4.92 +2016-02-12 17:32:00,21.9713,144.955,4.92 +2016-02-12 17:47:00,22.1162,144.815,4.9 +2016-02-12 18:02:00,20.83,144.712,4.88 +2016-02-12 18:17:00,21.3275,144.62,4.86 +2016-02-12 18:32:00,22.35,144.59,4.85 +2016-02-12 18:47:00,21.9187,144.61,4.85 +2016-02-12 19:02:00,21.6188,144.673,4.85 +2016-02-12 19:17:00,22.1137,144.74,4.84 +2016-02-12 19:32:00,22.015,144.8,4.83 +2016-02-12 19:47:00,22.5437,144.882,4.82 +2016-02-12 20:02:00,22.6912,144.952,4.81 +2016-02-12 20:17:00,20.1612,145.025,4.8 +2016-02-12 20:32:00,22.445,145.09,4.77 +2016-02-12 20:47:00,22.3937,145.152,4.75 +2016-02-12 21:02:00,21.6663,145.215,4.72 +2016-02-12 21:17:00,22.7887,145.267,4.7 +2016-02-12 21:32:00,23.2213,145.355,4.66 +2016-02-12 21:47:00,23.51,145.415,4.64 +2016-02-12 22:02:00,22.01,145.48,4.6 +2016-02-12 22:17:00,22.4925,145.568,4.55 +2016-02-12 22:32:00,20.6837,145.65,4.51 +2016-02-12 22:47:00,22.1612,145.762,4.48 +2016-02-12 23:02:00,21.6175,145.842,4.46 +2016-02-12 23:17:00,22.3,145.97,4.45 +2016-02-12 23:32:00,22.8875,146.065,4.41 +2016-02-12 23:47:00,23.025,146.16,4.4 +2016-02-13 00:02:00,22.4425,146.27,4.39 +2016-02-13 00:17:00,21.47,146.372,4.36 +2016-02-13 00:32:00,21.615,146.475,4.34 +2016-02-13 00:47:00,21.075,146.547,4.31 +2016-02-13 01:02:00,21.8675,146.635,4.28 +2016-02-13 01:17:00,23.1212,146.728,4.25 +2016-02-13 01:32:00,20.9262,146.807,4.23 +2016-02-13 01:47:00,21.3763,146.883,4.2 +2016-02-13 02:02:00,22.2537,146.957,4.18 +2016-02-13 02:17:00,22.6413,147.065,4.15 +2016-02-13 02:32:00,21.815,147.18,4.15 +2016-02-13 02:47:00,22.685,147.295,4.14 +2016-02-13 03:02:00,22.0638,147.415,4.13 +2016-02-13 03:17:00,21.8225,147.497,4.11 +2016-02-13 03:32:00,21.87,147.603,4.1 +2016-02-13 03:47:00,22.8337,147.697,4.1 +2016-02-13 04:02:00,22.1125,147.79,4.09 +2016-02-13 04:17:00,22.7387,147.86,4.09 +2016-02-13 04:32:00,21.075,147.932,4.06 +2016-02-13 04:47:00,21.4275,148.0,4.04 +2016-02-13 05:02:00,21.5212,148.07,4.03 +2016-02-13 05:17:00,22.0612,148.1,4.0 +2016-02-13 05:32:00,21.325,148.16,3.97 +2016-02-13 05:47:00,21.2775,148.22,3.93 +2016-02-13 06:02:00,22.2525,148.265,3.9 +2016-02-13 06:17:00,21.425,148.307,3.88 +2016-02-13 06:32:00,22.2988,148.372,3.86 +2016-02-13 06:47:00,21.4737,148.435,3.84 +2016-02-13 07:02:00,22.3487,148.485,3.83 +2016-02-13 07:17:00,22.9337,148.545,3.81 +2016-02-13 07:32:00,22.7875,148.582,3.81 +2016-02-13 07:47:00,21.8162,148.63,3.78 +2016-02-13 08:02:00,22.5375,148.675,3.79 +2016-02-13 08:17:00,22.11,148.707,3.8 +2016-02-13 08:32:00,22.3475,148.72,3.79 +2016-02-13 08:47:00,21.52,148.7,3.79 +2016-02-13 09:02:00,21.375,148.675,3.79 +2016-02-13 09:17:00,22.4425,148.655,3.78 +2016-02-13 09:32:00,21.08,148.64,3.79 +2016-02-13 09:47:00,22.4388,148.65,3.79 +2016-02-13 10:02:00,22.3487,148.663,3.79 +2016-02-13 10:17:00,21.7663,148.67,3.8 +2016-02-13 10:32:00,22.4912,148.652,3.81 +2016-02-13 10:47:00,22.0125,148.63,3.82 +2016-02-13 11:02:00,22.1588,148.54,3.83 +2016-02-13 11:17:00,21.6687,148.425,3.84 +2016-02-13 11:32:00,22.2513,148.275,3.86 +2016-02-13 11:47:00,22.4887,148.237,3.88 +2016-02-13 12:02:00,22.0625,148.247,3.9 +2016-02-13 12:17:00,21.7675,148.25,3.92 +2016-02-13 12:32:00,22.2988,148.292,3.94 +2016-02-13 12:47:00,23.07,148.29,3.95 +2016-02-13 13:02:00,21.8675,148.267,3.94 +2016-02-13 13:17:00,23.2625,148.197,3.97 +2016-02-13 13:32:00,22.0137,148.14,3.99 +2016-02-13 13:47:00,22.255,148.035,4.01 +2016-02-13 14:02:00,21.8675,148.003,4.03 +2016-02-13 14:17:00,22.6925,147.91,4.06 +2016-02-13 14:32:00,20.7363,147.785,4.08 +2016-02-13 14:47:00,21.3763,147.675,4.1 +2016-02-13 15:02:00,22.0612,147.575,4.13 +2016-02-13 15:17:00,20.9275,147.505,4.15 +2016-02-13 15:32:00,22.4425,147.508,4.16 +2016-02-13 15:47:00,22.5413,147.53,4.18 +2016-02-13 16:02:00,20.9775,147.575,4.19 +2016-02-13 16:17:00,22.2575,147.598,4.21 +2016-02-13 16:32:00,19.7712,147.645,4.22 +2016-02-13 16:47:00,21.8712,147.667,4.22 +2016-02-13 17:02:00,21.6188,147.603,4.22 +2016-02-13 17:17:00,22.015,147.645,4.22 +2016-02-13 17:32:00,20.5975,147.615,4.21 +2016-02-13 17:47:00,22.9788,147.555,4.2 +2016-02-13 18:02:00,22.1637,147.41,4.2 +2016-02-13 18:17:00,22.3975,147.262,4.19 +2016-02-13 18:32:00,20.9238,147.085,4.17 +2016-02-13 18:47:00,20.9737,146.927,4.17 +2016-02-13 19:02:00,20.4437,146.837,4.16 +2016-02-13 19:17:00,22.0125,146.797,4.16 +2016-02-13 19:32:00,21.5662,146.772,4.15 +2016-02-13 19:47:00,21.6675,146.735,4.14 +2016-02-13 20:02:00,21.1287,146.67,4.13 +2016-02-13 20:17:00,23.56,146.585,4.12 +2016-02-13 20:32:00,22.3925,146.55,4.11 +2016-02-13 20:47:00,22.5387,146.478,4.1 +2016-02-13 21:02:00,20.1575,146.402,4.08 +2016-02-13 21:17:00,21.8175,146.315,4.06 +2016-02-13 21:32:00,20.4475,146.22,4.06 +2016-02-13 21:47:00,20.5488,146.202,4.04 +2016-02-13 22:02:00,21.6237,146.15,4.03 +2016-02-13 22:17:00,22.0137,146.1,4.01 +2016-02-13 22:32:00,22.8812,146.107,4.0 +2016-02-13 22:47:00,21.4238,146.11,4.0 +2016-02-13 23:02:00,23.0263,146.095,3.97 +2016-02-13 23:17:00,20.88,146.128,3.95 +2016-02-13 23:32:00,21.18,146.092,3.93 +2016-02-13 23:47:00,22.0163,146.06,3.93 +2016-02-14 00:02:00,22.49,146.017,3.92 +2016-02-14 00:17:00,22.7375,145.967,3.91 +2016-02-14 00:32:00,21.6675,145.913,3.91 +2016-02-14 00:47:00,19.865,145.855,3.9 +2016-02-14 01:02:00,21.4713,145.755,3.89 +2016-02-14 01:17:00,21.3262,145.765,3.88 +2016-02-14 01:32:00,21.5725,145.71,3.88 +2016-02-14 01:47:00,22.4938,145.682,3.87 +2016-02-14 02:02:00,22.11,145.647,3.86 +2016-02-14 02:17:00,21.9137,145.575,3.85 +2016-02-14 02:32:00,21.965,145.603,3.83 +2016-02-14 02:47:00,22.4912,145.622,3.83 +2016-02-14 03:02:00,20.8775,145.655,3.82 +2016-02-14 03:17:00,22.1625,145.64,3.81 +2016-02-14 03:32:00,21.9662,145.647,3.81 +2016-02-14 03:47:00,21.82,145.682,3.81 +2016-02-14 04:02:00,22.5413,145.705,3.81 +2016-02-14 04:17:00,22.0612,145.705,3.79 +2016-02-14 04:32:00,22.7812,145.685,3.78 +2016-02-14 04:47:00,23.1637,145.67,3.78 +2016-02-14 05:02:00,22.8325,145.667,3.77 +2016-02-14 05:17:00,22.2075,145.607,3.77 +2016-02-14 05:32:00,22.165,145.66,3.78 +2016-02-14 05:47:00,21.6188,145.605,3.77 +2016-02-14 06:02:00,22.6387,145.66,3.78 +2016-02-14 06:17:00,23.215,145.772,3.79 +2016-02-14 06:32:00,23.0713,145.855,3.8 +2016-02-14 06:47:00,21.8187,145.927,3.8 +2016-02-14 07:02:00,22.0137,145.997,3.79 +2016-02-14 07:17:00,22.2525,146.042,3.79 +2016-02-14 07:32:00,20.4,146.057,3.79 +2016-02-14 07:47:00,21.915,146.082,3.79 +2016-02-14 08:02:00,21.3275,146.09,3.8 +2016-02-14 08:17:00,21.5175,145.997,3.8 +2016-02-14 08:32:00,23.3138,145.835,3.81 +2016-02-14 08:47:00,22.16,145.67,3.81 +2016-02-14 09:02:00,21.87,145.582,3.82 +2016-02-14 09:17:00,21.6225,145.503,3.82 +2016-02-14 09:32:00,21.5662,145.473,3.82 +2016-02-14 09:47:00,23.3662,145.425,3.83 +2016-02-14 10:02:00,22.9812,145.455,3.83 +2016-02-14 10:17:00,21.7162,145.47,3.83 +2016-02-14 10:32:00,21.0287,145.495,3.84 +2016-02-14 10:47:00,21.3288,145.603,3.84 +2016-02-14 11:02:00,21.7213,145.655,3.85 +2016-02-14 11:17:00,20.4,145.672,3.85 +2016-02-14 11:32:00,22.735,145.807,3.87 +2016-02-14 11:47:00,21.9137,145.825,3.87 +2016-02-14 12:02:00,20.64,145.89,3.87 +2016-02-14 12:17:00,20.255,145.94,3.9 +2016-02-14 12:32:00,23.0725,145.982,3.93 +2016-02-14 12:47:00,21.3775,145.982,3.94 +2016-02-14 13:02:00,21.3275,146.035,3.95 +2016-02-14 13:17:00,21.6637,146.035,3.98 +2016-02-14 13:32:00,21.7162,146.03,4.01 +2016-02-14 13:47:00,21.7188,146.04,4.02 +2016-02-14 14:02:00,20.8763,146.057,4.03 +2016-02-14 14:17:00,21.565,146.055,4.05 +2016-02-14 14:32:00,22.9313,145.975,4.07 +2016-02-14 14:47:00,21.1287,146.005,4.09 +2016-02-14 15:02:00,21.5187,145.975,4.11 +2016-02-14 15:17:00,21.5175,145.975,4.12 +2016-02-14 15:32:00,21.4688,145.99,4.12 +2016-02-14 15:47:00,21.025,145.99,4.12 +2016-02-14 16:02:00,21.4275,146.027,4.13 +2016-02-14 16:17:00,21.2237,145.935,4.14 +2016-02-14 16:32:00,21.4287,145.89,4.14 +2016-02-14 16:47:00,22.1637,145.89,4.15 +2016-02-14 17:02:00,21.0263,145.765,4.15 +2016-02-14 17:17:00,21.1263,145.73,4.15 +2016-02-14 17:32:00,20.4975,145.612,4.15 +2016-02-14 17:47:00,21.665,145.56,4.15 +2016-02-14 18:02:00,21.5175,145.48,4.15 +2016-02-14 18:17:00,21.3812,145.422,4.14 +2016-02-14 18:32:00,22.785,145.432,4.13 +2016-02-14 18:47:00,20.8775,145.385,4.13 +2016-02-14 19:02:00,20.97,145.48,4.14 +2016-02-14 19:17:00,21.7663,145.51,4.14 +2016-02-14 19:32:00,21.8162,145.56,4.13 +2016-02-14 19:47:00,20.9238,145.62,4.12 +2016-02-14 20:02:00,22.1562,145.637,4.12 +2016-02-14 20:17:00,22.345,145.735,4.11 +2016-02-14 20:32:00,21.2275,145.788,4.1 +2016-02-14 20:47:00,21.62,145.792,4.09 +2016-02-14 21:02:00,21.91,145.835,4.09 +2016-02-14 21:17:00,21.8138,145.913,4.09 +2016-02-14 21:32:00,20.7787,145.93,4.1 +2016-02-14 21:47:00,21.6137,145.94,4.09 +2016-02-14 22:02:00,21.3763,145.89,4.09 +2016-02-14 22:17:00,20.1588,145.935,4.08 +2016-02-14 22:32:00,22.49,145.943,4.08 +2016-02-14 22:47:00,20.8775,145.965,4.08 +2016-02-14 23:02:00,21.5187,145.982,4.08 +2016-02-14 23:17:00,21.615,145.947,4.07 +2016-02-14 23:32:00,21.0788,145.947,4.05 +2016-02-14 23:47:00,21.9638,145.905,4.05 +2016-02-15 00:02:00,21.5225,145.89,4.04 +2016-02-15 00:17:00,21.7175,145.885,4.05 +2016-02-15 00:32:00,20.5963,145.88,4.05 +2016-02-15 00:47:00,21.915,145.902,4.04 +2016-02-15 01:02:00,21.3737,145.9,4.03 +2016-02-15 01:17:00,23.2188,145.98,4.04 +2016-02-15 01:32:00,21.82,145.913,4.04 +2016-02-15 01:47:00,20.16,145.913,4.04 +2016-02-15 02:02:00,21.5212,145.952,4.04 +2016-02-15 02:17:00,21.2763,145.997,4.04 +2016-02-15 02:32:00,20.5462,146.095,4.04 +2016-02-15 02:47:00,21.9625,146.092,4.04 +2016-02-15 03:02:00,21.0737,146.137,4.04 +2016-02-15 03:17:00,21.2337,146.193,4.05 +2016-02-15 03:32:00,22.2513,146.22,4.04 +2016-02-15 03:47:00,21.2763,146.255,4.04 +2016-02-15 04:02:00,22.255,146.33,4.03 +2016-02-15 04:17:00,20.9725,146.312,4.03 +2016-02-15 04:32:00,22.06,146.335,4.03 +2016-02-15 04:47:00,22.6875,146.348,4.02 +2016-02-15 05:02:00,22.4912,146.357,4.01 +2016-02-15 05:17:00,21.5163,146.357,4.02 +2016-02-15 05:32:00,21.3275,146.372,4.02 +2016-02-15 05:47:00,22.0612,146.402,4.02 +2016-02-15 06:02:00,20.8812,146.457,4.01 +2016-02-15 06:17:00,21.175,146.525,4.02 +2016-02-15 06:32:00,22.1113,146.522,4.02 +2016-02-15 06:47:00,21.7138,146.505,4.03 +2016-02-15 07:02:00,20.7812,146.562,4.03 +2016-02-15 07:17:00,21.4225,146.545,4.04 +2016-02-15 07:32:00,21.4737,146.612,4.04 +2016-02-15 07:47:00,22.4475,146.66,4.04 +2016-02-15 08:02:00,21.375,146.702,4.04 +2016-02-15 08:17:00,22.54,146.75,4.05 +2016-02-15 08:32:00,21.3737,146.8,4.07 +2016-02-15 08:47:00,21.6175,146.835,4.08 +2016-02-15 09:02:00,22.2025,146.857,4.09 +2016-02-15 09:17:00,22.5938,146.892,4.1 +2016-02-15 09:32:00,22.35,146.982,4.1 +2016-02-15 09:47:00,21.87,146.94,4.12 +2016-02-15 10:02:00,22.6425,146.978,4.13 +2016-02-15 10:17:00,21.6663,146.99,4.16 +2016-02-15 10:32:00,21.2787,147.015,4.15 +2016-02-15 10:47:00,21.0238,147.015,4.16 +2016-02-15 11:02:00,21.0788,147.01,4.18 +2016-02-15 11:17:00,22.74,146.995,4.18 +2016-02-15 11:32:00,22.06,147.012,4.19 +2016-02-15 11:47:00,21.9625,146.978,4.19 +2016-02-15 12:02:00,21.2738,146.98,4.2 +2016-02-15 12:17:00,22.2988,146.935,4.21 +2016-02-15 12:32:00,22.8825,146.905,4.21 +2016-02-15 12:47:00,21.0737,146.865,4.2 +2016-02-15 13:02:00,21.4725,146.815,4.2 +2016-02-15 13:17:00,20.2575,146.76,4.22 +2016-02-15 13:32:00,21.2812,146.655,4.22 +2016-02-15 13:47:00,21.4287,146.628,4.24 +2016-02-15 14:02:00,21.4688,146.59,4.27 +2016-02-15 14:17:00,21.9688,146.547,4.28 +2016-02-15 14:32:00,21.7162,146.495,4.29 +2016-02-15 14:47:00,19.7687,146.447,4.3 +2016-02-15 15:02:00,21.33,146.397,4.32 +2016-02-15 15:17:00,21.1275,146.357,4.34 +2016-02-15 15:32:00,21.2712,146.318,4.33 +2016-02-15 15:47:00,20.1537,146.292,4.35 +2016-02-15 16:02:00,21.2725,146.258,4.35 +2016-02-15 16:17:00,20.0075,146.242,4.35 +2016-02-15 16:32:00,21.0275,146.19,4.36 +2016-02-15 16:47:00,22.2062,146.165,4.36 +2016-02-15 17:02:00,22.5437,146.128,4.36 +2016-02-15 17:17:00,21.2275,146.142,4.36 +2016-02-15 17:32:00,21.8187,146.137,4.35 +2016-02-15 17:47:00,21.67,146.16,4.36 +2016-02-15 18:02:00,20.8262,146.135,4.34 +2016-02-15 18:17:00,21.6663,146.112,4.33 +2016-02-15 18:32:00,20.6875,146.117,4.32 +2016-02-15 18:47:00,20.7375,146.09,4.32 +2016-02-15 19:02:00,21.2787,146.098,4.33 +2016-02-15 19:17:00,21.6675,146.038,4.32 +2016-02-15 19:32:00,22.2075,146.008,4.31 +2016-02-15 19:47:00,21.6663,145.94,4.3 +2016-02-15 20:02:00,21.9163,145.887,4.3 +2016-02-15 20:17:00,20.5437,145.785,4.3 +2016-02-15 20:32:00,21.4262,145.765,4.29 +2016-02-15 20:47:00,21.7687,145.71,4.28 +2016-02-15 21:02:00,21.3262,145.685,4.27 +2016-02-15 21:17:00,20.9238,145.667,4.27 +2016-02-15 21:32:00,20.88,145.64,4.27 +2016-02-15 21:47:00,20.8275,145.57,4.27 +2016-02-15 22:02:00,20.9713,145.535,4.26 +2016-02-15 22:17:00,20.8763,145.435,4.25 +2016-02-15 22:32:00,21.2775,145.362,4.25 +2016-02-15 22:47:00,20.7838,145.288,4.26 +2016-02-15 23:02:00,21.1725,145.225,4.25 +2016-02-15 23:17:00,21.715,145.292,4.26 +2016-02-15 23:32:00,20.8288,145.385,4.24 +2016-02-15 23:47:00,21.5662,145.505,4.24 +2016-02-16 00:02:00,22.2038,145.6,4.23 +2016-02-16 00:17:00,20.73,145.677,4.23 +2016-02-16 00:32:00,20.5975,145.753,4.23 +2016-02-16 00:47:00,20.6888,145.785,4.22 +2016-02-16 01:02:00,20.5925,145.822,4.21 +2016-02-16 01:17:00,19.82,145.832,4.2 +2016-02-16 01:32:00,20.7337,145.835,4.19 +2016-02-16 01:47:00,22.935,145.82,4.18 +2016-02-16 02:02:00,20.8288,145.775,4.17 +2016-02-16 02:17:00,21.5713,145.69,4.16 +2016-02-16 02:32:00,22.645,145.547,4.15 +2016-02-16 02:47:00,21.6675,145.41,4.14 +2016-02-16 03:02:00,20.4962,145.202,4.13 +2016-02-16 03:17:00,20.7312,145.015,4.13 +2016-02-16 03:32:00,21.52,144.795,4.12 +2016-02-16 03:47:00,21.3737,144.602,4.1 +2016-02-16 04:02:00,20.7325,144.44,4.1 +2016-02-16 04:17:00,22.935,144.237,4.09 +2016-02-16 04:32:00,22.0612,144.07,4.09 +2016-02-16 04:47:00,20.6837,143.925,4.07 +2016-02-16 05:02:00,21.0238,143.802,4.06 +2016-02-16 05:17:00,21.9662,143.725,4.04 +2016-02-16 05:32:00,20.8262,143.692,4.03 +2016-02-16 05:47:00,20.2,143.665,4.02 +2016-02-16 06:02:00,21.0263,143.622,4.0 +2016-02-16 06:17:00,22.2087,143.58,3.99 +2016-02-16 06:32:00,20.9238,143.535,3.99 +2016-02-16 06:47:00,21.5187,143.49,3.98 +2016-02-16 07:02:00,22.2038,143.41,3.97 +2016-02-16 07:17:00,21.4225,143.32,3.96 +2016-02-16 07:32:00,20.6375,143.202,3.96 +2016-02-16 07:47:00,21.0725,143.087,3.95 +2016-02-16 08:02:00,21.1775,142.997,3.94 +2016-02-16 08:17:00,20.5975,139.25,3.95 +2016-02-16 08:32:00,21.2738,135.05,3.95 +2016-02-16 08:47:00,21.9625,132.875,3.97 +2016-02-16 09:02:00,20.6837,131.997,3.96 +2016-02-16 09:17:00,21.02,131.89,3.94 +2016-02-16 09:32:00,21.765,132.01,3.96 +2016-02-16 09:47:00,22.06,132.227,3.98 +2016-02-16 10:02:00,21.72,132.49,3.98 +2016-02-16 10:17:00,22.0075,132.812,3.99 +2016-02-16 10:32:00,22.5387,133.145,4.01 +2016-02-16 10:47:00,23.1175,133.512,4.01 +2016-02-16 11:02:00,21.27,133.865,4.01 +2016-02-16 11:17:00,21.86,134.247,3.98 +2016-02-16 11:32:00,21.6612,134.63,3.97 +2016-02-16 11:47:00,21.5137,135.0,3.98 +2016-02-16 12:02:00,22.1513,135.357,3.98 +2016-02-16 12:17:00,21.2138,135.715,3.98 +2016-02-16 12:32:00,22.3025,136.048,4.01 +2016-02-16 12:47:00,22.0662,136.367,4.04 +2016-02-16 13:02:00,21.6787,136.692,4.05 +2016-02-16 13:17:00,21.8787,136.982,4.04 +2016-02-16 13:32:00,21.6325,137.287,4.04 +2016-02-16 13:47:00,21.0888,137.575,4.05 +2016-02-16 14:02:00,21.9262,137.862,4.05 +2016-02-16 14:17:00,21.6762,138.13,4.04 +2016-02-16 14:32:00,20.5975,138.39,4.04 +2016-02-16 14:47:00,21.5238,138.632,4.05 +2016-02-16 15:02:00,20.83,138.87,4.08 +2016-02-16 15:17:00,21.0812,139.087,4.11 +2016-02-16 15:32:00,21.6775,139.247,4.1 +2016-02-16 15:47:00,22.0675,139.427,4.09 +2016-02-16 16:02:00,20.2062,139.585,4.08 +2016-02-16 16:17:00,22.835,139.757,4.06 +2016-02-16 16:32:00,21.4362,139.925,4.04 +2016-02-16 16:47:00,20.6413,140.085,4.02 +2016-02-16 17:02:00,20.8775,140.217,4.01 +2016-02-16 17:17:00,21.38,140.367,4.01 +2016-02-16 17:32:00,22.74,140.472,3.99 +2016-02-16 17:47:00,21.0788,140.565,3.98 +2016-02-16 18:02:00,20.64,140.655,3.96 +2016-02-16 18:17:00,20.0563,140.742,3.95 +2016-02-16 18:32:00,21.4275,140.82,3.94 +2016-02-16 18:47:00,19.475,140.917,3.93 +2016-02-16 19:02:00,20.9737,140.992,3.92 +2016-02-16 19:17:00,21.525,141.062,3.9 +2016-02-16 19:32:00,21.1775,141.137,3.9 +2016-02-16 19:47:00,21.025,141.19,3.89 +2016-02-16 20:02:00,21.0238,141.227,3.86 +2016-02-16 20:17:00,22.1588,141.257,3.85 +2016-02-16 20:32:00,22.11,141.26,3.84 +2016-02-16 20:47:00,21.8162,141.252,3.82 +2016-02-16 21:02:00,22.7887,141.29,3.79 +2016-02-16 21:17:00,22.5437,141.32,3.76 +2016-02-16 21:32:00,20.6375,141.36,3.75 +2016-02-16 21:47:00,21.4212,141.367,3.73 +2016-02-16 22:02:00,22.935,141.355,3.72 +2016-02-16 22:17:00,21.9625,141.33,3.7 +2016-02-16 22:32:00,22.3425,141.247,3.68 +2016-02-16 22:47:00,20.5425,141.075,3.68 +2016-02-16 23:02:00,19.9613,140.985,3.66 +2016-02-16 23:17:00,21.3288,140.945,3.65 +2016-02-16 23:32:00,21.7637,140.957,3.63 +2016-02-16 23:47:00,22.1087,140.95,3.61 +2016-02-17 00:02:00,21.515,140.923,3.6 +2016-02-17 00:17:00,21.3262,140.865,3.58 +2016-02-17 00:32:00,21.4688,140.745,3.57 +2016-02-17 00:47:00,22.4938,140.582,3.56 +2016-02-17 01:02:00,20.0075,140.397,3.54 +2016-02-17 01:17:00,22.0088,140.272,3.53 +2016-02-17 01:32:00,21.025,140.222,3.52 +2016-02-17 01:47:00,22.2537,140.217,3.51 +2016-02-17 02:02:00,20.8237,140.225,3.5 +2016-02-17 02:17:00,21.865,140.215,3.47 +2016-02-17 02:32:00,22.88,140.155,3.46 +2016-02-17 02:47:00,21.9662,140.042,3.45 +2016-02-17 03:02:00,22.8375,139.91,3.44 +2016-02-17 03:17:00,22.64,139.775,3.43 +2016-02-17 03:32:00,22.7825,139.662,3.41 +2016-02-17 03:47:00,21.9112,139.627,3.39 +2016-02-17 04:02:00,20.7763,139.627,3.37 +2016-02-17 04:17:00,23.1175,139.655,3.35 +2016-02-17 04:32:00,22.0112,139.637,3.32 +2016-02-17 04:47:00,22.0638,139.612,3.29 +2016-02-17 05:02:00,22.155,139.537,3.26 +2016-02-17 05:17:00,22.0575,139.41,3.23 +2016-02-17 05:32:00,21.9625,139.292,3.21 +2016-02-17 05:47:00,22.59,139.18,3.19 +2016-02-17 06:02:00,22.1575,139.125,3.18 +2016-02-17 06:17:00,20.9238,139.06,3.16 +2016-02-17 06:32:00,21.8712,139.018,3.14 +2016-02-17 06:47:00,22.0137,139.005,3.12 +2016-02-17 07:02:00,21.5175,138.99,3.09 +2016-02-17 07:17:00,21.7625,138.975,3.07 +2016-02-17 07:32:00,21.6687,138.98,3.06 +2016-02-17 07:47:00,22.4887,138.987,3.03 +2016-02-17 08:02:00,21.7113,139.01,3.01 +2016-02-17 08:17:00,21.3288,139.08,3.0 +2016-02-17 08:32:00,22.54,139.1,3.0 +2016-02-17 08:47:00,20.255,139.222,2.99 +2016-02-17 09:02:00,20.9225,139.305,2.99 +2016-02-17 09:17:00,21.1225,139.39,3.0 +2016-02-17 09:32:00,22.5387,139.542,3.0 +2016-02-17 09:47:00,22.2,139.617,3.0 +2016-02-17 10:02:00,22.3887,139.792,3.02 +2016-02-17 10:17:00,22.2075,139.942,3.03 +2016-02-17 10:32:00,22.06,140.177,3.01 +2016-02-17 10:47:00,22.5387,140.402,3.01 +2016-02-17 11:02:00,22.6425,140.64,3.03 +2016-02-17 11:17:00,21.6137,140.88,3.03 +2016-02-17 11:32:00,22.0075,141.147,3.05 +2016-02-17 11:47:00,21.075,141.37,3.06 +2016-02-17 12:02:00,23.12,141.615,3.06 +2016-02-17 12:17:00,20.3988,141.897,3.09 +2016-02-17 12:32:00,23.02,142.127,3.09 +2016-02-17 12:47:00,21.1738,142.42,3.09 +2016-02-17 13:02:00,22.0575,142.815,3.09 +2016-02-17 13:17:00,23.6075,143.222,3.1 +2016-02-17 13:32:00,21.3237,143.655,3.11 +2016-02-17 13:47:00,22.9775,144.077,3.12 +2016-02-17 14:02:00,22.6912,144.537,3.13 +2016-02-17 14:17:00,21.6175,144.98,3.14 +2016-02-17 14:32:00,21.1263,145.392,3.16 +2016-02-17 14:47:00,21.7162,145.775,3.16 +2016-02-17 15:02:00,23.415,146.152,3.17 +2016-02-17 15:17:00,22.0125,146.503,3.18 +2016-02-17 15:32:00,22.7838,146.82,3.18 +2016-02-17 15:47:00,22.0612,147.142,3.19 +2016-02-17 16:02:00,21.7162,147.465,3.19 +2016-02-17 16:17:00,20.64,147.77,3.19 +2016-02-17 16:32:00,21.4225,148.07,3.18 +2016-02-17 16:47:00,22.39,148.362,3.17 +2016-02-17 17:02:00,21.3237,148.65,3.16 +2016-02-17 17:17:00,20.7787,148.915,3.15 +2016-02-17 17:32:00,21.9088,149.195,3.12 +2016-02-17 17:47:00,22.2075,149.462,3.1 +2016-02-17 18:02:00,21.275,149.712,3.08 +2016-02-17 18:17:00,22.735,149.955,3.07 +2016-02-17 18:32:00,20.7312,150.207,3.06 +2016-02-17 18:47:00,21.2712,150.443,3.05 +2016-02-17 19:02:00,23.4125,150.622,3.05 +2016-02-17 19:17:00,21.9613,150.832,3.03 +2016-02-17 19:32:00,19.8688,151.03,3.02 +2016-02-17 19:47:00,21.7687,151.237,3.01 +2016-02-17 20:02:00,20.5938,151.435,2.99 +2016-02-17 20:17:00,20.9238,151.615,2.97 +2016-02-17 20:32:00,22.49,151.788,2.96 +2016-02-17 20:47:00,20.7337,151.962,2.94 +2016-02-17 21:02:00,22.8325,152.13,2.93 +2016-02-17 21:17:00,20.3988,152.258,2.92 +2016-02-17 21:32:00,21.7687,152.395,2.91 +2016-02-17 21:47:00,22.3012,152.512,2.91 +2016-02-17 22:02:00,21.1725,152.645,2.9 +2016-02-17 22:17:00,23.2138,152.795,2.89 +2016-02-17 22:32:00,22.44,152.895,2.88 +2016-02-17 22:47:00,21.7125,153.027,2.87 +2016-02-17 23:02:00,21.6188,153.155,2.87 +2016-02-17 23:17:00,21.8187,153.275,2.86 +2016-02-17 23:32:00,21.0287,153.383,2.84 +2016-02-17 23:47:00,23.6062,153.503,2.83 +2016-02-18 00:02:00,22.01,153.622,2.82 +2016-02-18 00:17:00,21.7637,153.728,2.81 +2016-02-18 00:32:00,22.4887,153.832,2.8 +2016-02-18 00:47:00,20.9713,153.92,2.79 +2016-02-18 01:02:00,21.6137,154.025,2.76 +2016-02-18 01:17:00,21.47,154.107,2.74 +2016-02-18 01:32:00,22.785,154.188,2.72 +2016-02-18 01:47:00,22.1562,154.295,2.71 +2016-02-18 02:02:00,22.1588,154.367,2.7 +2016-02-18 02:17:00,22.005,154.432,2.68 +2016-02-18 02:32:00,21.6675,154.52,2.66 +2016-02-18 02:47:00,22.2012,154.6,2.65 +2016-02-18 03:02:00,21.9675,154.67,2.63 +2016-02-18 03:17:00,21.9675,154.732,2.61 +2016-02-18 03:32:00,19.475,154.78,2.6 +2016-02-18 03:47:00,21.4688,154.82,2.59 +2016-02-18 04:02:00,21.7663,154.867,2.58 +2016-02-18 04:17:00,21.7625,154.89,2.57 +2016-02-18 04:32:00,22.5912,154.94,2.58 +2016-02-18 04:47:00,21.3725,154.987,2.57 +2016-02-18 05:02:00,21.3763,155.01,2.56 +2016-02-18 05:17:00,22.16,155.08,2.56 +2016-02-18 05:32:00,22.785,155.13,2.56 +2016-02-18 05:47:00,23.1188,155.172,2.55 +2016-02-18 06:02:00,21.0762,155.223,2.54 +2016-02-18 06:17:00,20.7288,155.262,2.53 +2016-02-18 06:32:00,22.44,155.312,2.52 +2016-02-18 06:47:00,22.2075,155.372,2.52 +2016-02-18 07:02:00,21.175,155.408,2.52 +2016-02-18 07:17:00,22.3438,155.457,2.51 +2016-02-18 07:32:00,23.0725,155.512,2.51 +2016-02-18 07:47:00,22.155,155.552,2.51 +2016-02-18 08:02:00,22.1113,155.603,2.52 +2016-02-18 08:17:00,23.2612,155.633,2.53 +2016-02-18 08:32:00,22.105,155.655,2.54 +2016-02-18 08:47:00,22.2525,155.677,2.54 +2016-02-18 09:02:00,22.2062,155.715,2.55 +2016-02-18 09:17:00,22.1575,155.728,2.55 +2016-02-18 09:32:00,22.2062,155.767,2.56 +2016-02-18 09:47:00,21.6637,155.8,2.58 +2016-02-18 10:02:00,22.6375,155.875,2.6 +2016-02-18 10:17:00,21.9125,155.922,2.65 +2016-02-18 10:32:00,22.4437,155.995,2.69 +2016-02-18 10:47:00,22.6387,156.045,2.72 +2016-02-18 11:02:00,22.1062,156.122,2.73 +2016-02-18 11:17:00,21.5638,156.165,2.75 +2016-02-18 11:32:00,22.0563,156.228,2.78 +2016-02-18 11:47:00,23.1137,156.277,2.8 +2016-02-18 12:02:00,23.6075,156.297,2.82 +2016-02-18 12:17:00,22.39,156.322,2.88 +2016-02-18 12:32:00,22.2075,156.355,2.92 +2016-02-18 12:47:00,22.9337,156.383,2.94 +2016-02-18 13:02:00,22.2937,156.397,2.95 +2016-02-18 13:17:00,21.6675,156.425,2.98 +2016-02-18 13:32:00,21.2712,156.457,3.0 +2016-02-18 13:47:00,24.0413,156.508,3.02 +2016-02-18 14:02:00,22.7838,156.522,3.03 +2016-02-18 14:17:00,21.7663,156.562,3.04 +2016-02-18 14:32:00,22.5912,156.603,3.07 +2016-02-18 14:47:00,21.91,156.617,3.1 +2016-02-18 15:02:00,22.4887,156.658,3.13 +2016-02-18 15:17:00,21.7113,156.693,3.16 +2016-02-18 15:32:00,21.2188,156.72,3.17 +2016-02-18 15:47:00,22.2962,156.76,3.18 +2016-02-18 16:02:00,23.7062,156.785,3.18 +2016-02-18 16:17:00,22.4925,156.822,3.18 +2016-02-18 16:32:00,21.6188,156.845,3.19 +2016-02-18 16:47:00,22.5888,156.872,3.19 +2016-02-18 17:02:00,21.8187,156.89,3.18 +2016-02-18 17:17:00,22.11,156.915,3.18 +2016-02-18 17:32:00,21.91,156.962,3.17 +2016-02-18 17:47:00,22.25,156.985,3.17 +2016-02-18 18:02:00,22.4475,157.003,3.16 +2016-02-18 18:17:00,22.7387,157.03,3.16 +2016-02-18 18:32:00,23.26,157.055,3.16 +2016-02-18 18:47:00,21.2738,157.082,3.16 +2016-02-18 19:02:00,21.9112,157.082,3.16 +2016-02-18 19:17:00,21.8625,157.055,3.17 +2016-02-18 19:32:00,22.1075,157.052,3.18 +2016-02-18 19:47:00,21.9125,157.047,3.19 +2016-02-18 20:02:00,21.9638,157.033,3.2 +2016-02-18 20:17:00,21.5163,157.012,3.2 +2016-02-18 20:32:00,21.7637,157.025,3.19 +2016-02-18 20:47:00,22.5863,157.025,3.19 +2016-02-18 21:02:00,22.6387,157.052,3.18 +2016-02-18 21:17:00,21.5112,157.042,3.17 +2016-02-18 21:32:00,22.7325,157.072,3.16 +2016-02-18 21:47:00,20.7337,157.082,3.16 +2016-02-18 22:02:00,22.16,157.105,3.16 +2016-02-18 22:17:00,21.5612,157.128,3.16 +2016-02-18 22:32:00,21.9137,157.145,3.15 +2016-02-18 22:47:00,20.97,157.165,3.14 +2016-02-18 23:02:00,20.685,157.163,3.14 +2016-02-18 23:17:00,21.5163,157.197,3.14 +2016-02-18 23:32:00,21.8637,157.197,3.14 +2016-02-18 23:47:00,22.54,157.23,3.13 +2016-02-19 00:02:00,21.6175,157.242,3.12 +2016-02-19 00:17:00,21.6637,157.255,3.11 +2016-02-19 00:32:00,22.7375,157.262,3.11 +2016-02-19 00:47:00,21.3237,157.28,3.1 +2016-02-19 01:02:00,20.775,157.288,3.11 +2016-02-19 01:17:00,21.6162,157.3,3.1 +2016-02-19 01:32:00,22.59,157.267,3.1 +2016-02-19 01:47:00,21.2763,157.253,3.1 +2016-02-19 02:02:00,21.175,157.21,3.1 +2016-02-19 02:17:00,22.6875,157.152,3.09 +2016-02-19 02:32:00,22.5888,157.1,3.09 +2016-02-19 02:47:00,21.1738,157.112,3.08 +2016-02-19 03:02:00,22.0563,157.092,3.06 +2016-02-19 03:17:00,20.9762,157.098,3.03 +2016-02-19 03:32:00,23.0713,157.09,3.02 +2016-02-19 03:47:00,20.5488,157.098,3.0 +2016-02-19 04:02:00,21.9075,157.09,2.99 +2016-02-19 04:17:00,22.25,157.105,2.97 +2016-02-19 04:32:00,22.0062,157.107,2.96 +2016-02-19 04:47:00,23.4575,157.09,2.95 +2016-02-19 05:02:00,22.7337,157.08,2.94 +2016-02-19 05:17:00,22.205,157.082,2.93 +2016-02-19 05:32:00,21.5675,157.06,2.92 +2016-02-19 05:47:00,21.3213,157.052,2.91 +2016-02-19 06:02:00,22.1075,157.025,2.89 +2016-02-19 06:17:00,20.2975,156.973,2.87 +2016-02-19 06:32:00,21.3213,156.88,2.86 +2016-02-19 06:47:00,21.8625,156.825,2.85 +2016-02-19 07:02:00,21.2712,156.777,2.83 +2016-02-19 07:17:00,21.3262,156.758,2.82 +2016-02-19 07:32:00,23.0687,156.717,2.82 +2016-02-19 07:47:00,21.6625,156.72,2.84 +2016-02-19 08:02:00,21.2725,156.712,2.83 +2016-02-19 08:17:00,22.205,156.655,2.84 +2016-02-19 08:32:00,22.7363,156.6,2.85 +2016-02-19 08:47:00,21.5163,156.535,2.87 +2016-02-19 09:02:00,22.9825,156.467,2.91 +2016-02-19 09:17:00,21.965,156.435,2.96 +2016-02-19 09:32:00,22.2038,156.462,2.99 +2016-02-19 09:47:00,21.6637,156.455,3.0 +2016-02-19 10:02:00,22.7325,156.443,3.03 +2016-02-19 10:17:00,21.7113,156.465,3.03 +2016-02-19 10:32:00,22.06,156.422,3.05 +2016-02-19 10:47:00,22.0088,156.427,3.08 +2016-02-19 11:02:00,20.9275,156.43,3.09 +2016-02-19 11:17:00,21.7188,156.395,3.1 +2016-02-19 11:32:00,21.6712,156.397,3.12 +2016-02-19 11:47:00,22.0525,156.35,3.13 +2016-02-19 12:02:00,22.7337,156.312,3.15 +2016-02-19 12:17:00,21.6663,156.265,3.17 +2016-02-19 12:32:00,21.1212,156.23,3.2 +2016-02-19 12:47:00,22.3925,156.225,3.23 +2016-02-19 13:02:00,22.6912,156.185,3.25 +2016-02-19 13:17:00,21.2225,156.188,3.29 +2016-02-19 13:32:00,21.8175,156.167,3.31 +2016-02-19 13:47:00,22.2038,156.105,3.33 +2016-02-19 14:02:00,20.1038,156.082,3.35 +2016-02-19 14:17:00,20.0525,156.042,3.38 +2016-02-19 14:32:00,21.3737,156.06,3.4 +2016-02-19 14:47:00,21.3288,156.095,3.41 +2016-02-19 15:02:00,21.82,156.115,3.44 +2016-02-19 15:17:00,21.2213,156.15,3.46 +2016-02-19 15:32:00,22.4912,156.193,3.48 +2016-02-19 15:47:00,21.0238,156.23,3.49 +2016-02-19 16:02:00,20.7787,156.27,3.51 +2016-02-19 16:17:00,23.0212,156.335,3.52 +2016-02-19 16:32:00,22.3925,156.362,3.53 +2016-02-19 16:47:00,20.6862,156.41,3.54 +2016-02-19 17:02:00,20.7312,156.45,3.54 +2016-02-19 17:17:00,21.765,156.503,3.53 +2016-02-19 17:32:00,21.6137,156.527,3.53 +2016-02-19 17:47:00,21.3737,156.565,3.53 +2016-02-19 18:02:00,21.5175,156.592,3.53 +2016-02-19 18:17:00,22.345,156.6,3.52 +2016-02-19 18:32:00,22.1125,156.61,3.52 +2016-02-19 18:47:00,21.6687,156.56,3.51 +2016-02-19 19:02:00,21.1188,156.515,3.51 +2016-02-19 19:17:00,21.225,156.447,3.51 +2016-02-19 19:32:00,22.1575,156.397,3.51 +2016-02-19 19:47:00,21.5137,156.327,3.48 +2016-02-19 20:02:00,21.715,156.307,3.46 +2016-02-19 20:17:00,20.88,156.267,3.45 +2016-02-19 20:32:00,22.3962,156.267,3.47 +2016-02-19 20:47:00,21.1237,156.265,3.47 +2016-02-19 21:02:00,21.8662,156.265,3.46 +2016-02-19 21:17:00,21.4212,156.26,3.47 +2016-02-19 21:32:00,23.025,156.292,3.47 +2016-02-19 21:47:00,20.9212,156.292,3.47 +2016-02-19 22:02:00,22.395,156.305,3.48 +2016-02-19 22:17:00,21.2775,156.3,3.47 +2016-02-19 22:32:00,22.2537,156.295,3.46 +2016-02-19 22:47:00,22.2075,156.305,3.45 +2016-02-19 23:02:00,21.5175,156.31,3.44 +2016-02-19 23:17:00,22.205,156.315,3.44 +2016-02-19 23:32:00,21.2213,156.318,3.42 +2016-02-19 23:47:00,21.2738,156.29,3.4 +2016-02-20 00:02:00,21.2787,156.258,3.38 +2016-02-20 00:17:00,21.4713,156.193,3.37 +2016-02-20 00:32:00,20.8275,156.005,3.35 +2016-02-20 00:47:00,21.075,155.837,3.33 +2016-02-20 01:02:00,22.925,155.74,3.3 +2016-02-20 01:17:00,21.7675,155.647,3.28 +2016-02-20 01:32:00,21.9662,155.585,3.26 +2016-02-20 01:47:00,22.205,155.585,3.24 +2016-02-20 02:02:00,20.5488,155.527,3.22 +2016-02-20 02:17:00,21.6175,155.517,3.19 +2016-02-20 02:32:00,20.8237,155.53,3.18 +2016-02-20 02:47:00,23.0687,155.487,3.16 +2016-02-20 03:02:00,21.1237,155.492,3.16 +2016-02-20 03:17:00,20.5963,155.495,3.15 +2016-02-20 03:32:00,20.9238,155.487,3.14 +2016-02-20 03:47:00,21.4262,155.517,3.13 +2016-02-20 04:02:00,21.08,155.517,3.13 +2016-02-20 04:17:00,20.6387,155.512,3.13 +2016-02-20 04:32:00,21.5175,155.525,3.12 +2016-02-20 04:47:00,20.875,155.482,3.11 +2016-02-20 05:02:00,21.225,155.332,3.1 +2016-02-20 05:17:00,20.6387,155.16,3.1 +2016-02-20 05:32:00,20.0575,155.052,3.1 +2016-02-20 05:47:00,20.5475,154.978,3.09 +2016-02-20 06:02:00,20.4487,154.95,3.08 +2016-02-20 06:17:00,22.3438,154.97,3.09 +2016-02-20 06:32:00,22.1087,154.985,3.08 +2016-02-20 06:47:00,22.4437,154.962,3.09 +2016-02-20 07:02:00,22.0575,154.887,3.08 +2016-02-20 07:17:00,21.5625,154.82,3.08 +2016-02-20 07:32:00,22.06,154.75,3.07 +2016-02-20 07:47:00,21.2738,154.665,3.07 +2016-02-20 08:02:00,22.59,154.59,3.08 +2016-02-20 08:17:00,22.205,154.545,3.09 +2016-02-20 08:32:00,21.8662,154.57,3.09 +2016-02-20 08:47:00,21.4225,154.575,3.09 +2016-02-20 09:02:00,22.7838,154.58,3.09 +2016-02-20 09:17:00,21.9163,154.587,3.09 +2016-02-20 09:32:00,21.8175,154.617,3.09 +2016-02-20 09:47:00,21.87,154.66,3.1 +2016-02-20 10:02:00,20.5413,154.672,3.12 +2016-02-20 10:17:00,21.5612,154.685,3.14 +2016-02-20 10:32:00,21.3712,154.658,3.16 +2016-02-20 10:47:00,21.6625,154.622,3.17 +2016-02-20 11:02:00,20.2525,154.482,3.18 +2016-02-20 11:17:00,22.0125,154.378,3.2 +2016-02-20 11:32:00,21.6162,154.375,3.23 +2016-02-20 11:47:00,20.54,154.29,3.25 +2016-02-20 12:02:00,21.3725,154.258,3.26 +2016-02-20 12:17:00,21.9613,154.285,3.27 +2016-02-20 12:32:00,21.8613,154.265,3.29 +2016-02-20 12:47:00,22.0112,154.272,3.3 +2016-02-20 13:02:00,21.1225,154.297,3.32 +2016-02-20 13:17:00,21.82,154.27,3.34 +2016-02-20 13:32:00,21.3262,154.295,3.34 +2016-02-20 13:47:00,22.39,154.253,3.35 +2016-02-20 14:02:00,21.2763,154.29,3.36 +2016-02-20 14:17:00,21.5625,154.235,3.38 +2016-02-20 14:32:00,21.0225,154.305,3.39 +2016-02-20 14:47:00,20.8725,154.095,3.4 +2016-02-20 15:02:00,21.7663,154.042,3.42 +2016-02-20 15:17:00,21.1775,154.045,3.43 +2016-02-20 15:32:00,22.5387,154.045,3.44 +2016-02-20 15:47:00,21.7663,154.077,3.45 +2016-02-20 16:02:00,22.83,154.055,3.46 +2016-02-20 16:17:00,21.5163,154.142,3.47 +2016-02-20 16:32:00,22.1075,154.19,3.48 +2016-02-20 16:47:00,21.665,154.217,3.49 +2016-02-20 17:02:00,21.2262,154.315,3.5 +2016-02-20 17:17:00,21.425,154.33,3.5 +2016-02-20 17:32:00,21.2738,154.405,3.51 +2016-02-20 17:47:00,23.115,154.455,3.53 +2016-02-20 18:02:00,21.2225,154.475,3.53 +2016-02-20 18:17:00,21.865,154.405,3.54 +2016-02-20 18:32:00,21.9613,154.485,3.55 +2016-02-20 18:47:00,22.2513,154.447,3.55 +2016-02-20 19:02:00,22.21,154.452,3.56 +2016-02-20 19:17:00,22.34,154.49,3.56 +2016-02-20 19:32:00,22.0612,154.535,3.58 +2016-02-20 19:47:00,21.8125,154.617,3.59 +2016-02-20 20:02:00,21.075,154.697,3.59 +2016-02-20 20:17:00,20.0037,154.792,3.6 +2016-02-20 20:32:00,20.4412,154.875,3.6 +2016-02-20 20:47:00,21.2275,154.992,3.6 +2016-02-20 21:02:00,22.0175,155.087,3.59 +2016-02-20 21:17:00,21.7712,155.163,3.57 +2016-02-20 21:32:00,21.1787,155.235,3.55 +2016-02-20 21:47:00,21.1263,155.262,3.57 +2016-02-20 22:02:00,21.7637,155.283,3.58 +2016-02-20 22:17:00,21.4662,155.29,3.58 +2016-02-20 22:32:00,20.005,155.32,3.59 +2016-02-20 22:47:00,21.8688,155.337,3.59 +2016-02-20 23:02:00,22.0112,155.375,3.59 +2016-02-20 23:17:00,21.9625,155.42,3.61 +2016-02-20 23:32:00,21.1263,155.443,3.64 +2016-02-20 23:47:00,20.7312,155.51,3.64 +2016-02-21 00:02:00,21.325,155.503,3.65 +2016-02-21 00:17:00,20.2025,155.55,3.67 +2016-02-21 00:32:00,21.1287,155.605,3.67 +2016-02-21 00:47:00,22.345,155.557,3.68 +2016-02-21 01:02:00,20.1588,155.64,3.7 +2016-02-21 01:17:00,21.5163,155.64,3.71 +2016-02-21 01:32:00,22.0612,155.68,3.73 +2016-02-21 01:47:00,21.865,155.642,3.75 +2016-02-21 02:02:00,19.9075,155.59,3.77 +2016-02-21 02:17:00,20.4487,155.617,3.8 +2016-02-21 02:32:00,21.7675,155.628,3.82 +2016-02-21 02:47:00,21.8275,155.625,3.84 +2016-02-21 03:02:00,20.7425,155.665,3.87 +2016-02-21 03:17:00,21.825,155.647,3.91 +2016-02-21 03:32:00,21.2663,155.765,3.95 +2016-02-21 03:47:00,22.7775,155.79,3.97 +2016-02-21 04:02:00,20.725,155.845,3.96 +2016-02-21 04:17:00,22.1075,155.935,3.97 +2016-02-21 04:32:00,20.9225,155.985,3.99 +2016-02-21 04:47:00,21.5638,156.052,4.0 +2016-02-21 05:02:00,21.1725,156.115,4.0 +2016-02-21 05:17:00,22.5362,156.185,4.02 +2016-02-21 05:32:00,21.8637,156.262,4.03 +2016-02-21 05:47:00,20.8712,156.32,4.04 +2016-02-21 06:02:00,20.0575,156.392,4.05 +2016-02-21 06:17:00,22.0612,156.44,4.06 +2016-02-21 06:32:00,21.1237,156.495,4.07 +2016-02-21 06:47:00,21.3213,156.52,4.09 +2016-02-21 07:02:00,20.1025,156.522,4.11 +2016-02-21 07:17:00,20.825,156.562,4.14 +2016-02-21 07:32:00,21.1725,156.552,4.15 +2016-02-21 07:47:00,21.2225,156.568,4.18 +2016-02-21 08:02:00,21.8162,156.765,4.21 +2016-02-21 08:17:00,20.9275,157.172,4.22 +2016-02-21 08:32:00,20.4425,157.88,4.22 +2016-02-21 08:47:00,22.8312,158.617,4.23 +2016-02-21 09:02:00,22.6338,159.13,4.24 +2016-02-21 09:17:00,20.3,159.515,4.25 +2016-02-21 09:32:00,21.325,159.807,4.28 +2016-02-21 09:47:00,21.425,160.128,4.3 +2016-02-21 10:02:00,21.6175,160.375,4.33 +2016-02-21 10:17:00,22.205,160.635,4.36 +2016-02-21 10:32:00,22.73,160.737,4.39 +2016-02-21 10:47:00,21.815,159.805,4.42 +2016-02-21 11:02:00,21.7113,158.392,4.45 +2016-02-21 11:17:00,22.535,157.7,4.47 +2016-02-21 11:32:00,21.3237,157.457,4.51 +2016-02-21 11:47:00,19.7288,157.417,4.54 +2016-02-21 12:02:00,20.5,157.447,4.56 +2016-02-21 12:17:00,20.495,157.545,4.6 +2016-02-21 12:32:00,21.225,157.693,4.62 +2016-02-21 12:47:00,20.9238,157.845,4.63 +2016-02-21 13:02:00,23.215,158.033,4.64 +2016-02-21 13:17:00,21.6675,158.188,4.66 +2016-02-21 13:32:00,21.3825,158.367,4.68 +2016-02-21 13:47:00,21.075,158.51,4.69 +2016-02-21 14:02:00,21.4225,158.667,4.72 +2016-02-21 14:17:00,20.8262,158.822,4.74 +2016-02-21 14:32:00,21.5163,159.055,4.78 +2016-02-21 14:47:00,21.4737,159.402,4.78 +2016-02-21 15:02:00,21.5675,159.76,4.79 +2016-02-21 15:17:00,21.9137,160.047,4.8 +2016-02-21 15:32:00,21.23,160.302,4.81 +2016-02-21 15:47:00,21.2763,160.482,4.83 +2016-02-21 16:02:00,20.5,160.677,4.85 +2016-02-21 16:17:00,21.375,160.855,4.87 +2016-02-21 16:32:00,22.8812,161.02,4.88 +2016-02-21 16:47:00,20.9688,161.152,4.89 +2016-02-21 17:02:00,22.0587,161.342,4.9 +2016-02-21 17:17:00,21.0775,161.487,4.92 +2016-02-21 17:32:00,21.4262,161.595,4.94 +2016-02-21 17:47:00,21.5725,161.82,4.96 +2016-02-21 18:02:00,22.0125,161.965,4.97 +2016-02-21 18:17:00,21.9613,162.12,4.99 +2016-02-21 18:32:00,20.545,162.2,5.01 +2016-02-21 18:47:00,24.0413,162.335,5.04 +2016-02-21 19:02:00,22.5925,162.485,5.06 +2016-02-21 19:17:00,21.5687,162.592,5.08 +2016-02-21 19:32:00,20.7387,162.677,5.1 +2016-02-21 19:47:00,21.1762,162.802,5.12 +2016-02-21 20:02:00,21.715,163.008,5.14 +2016-02-21 20:17:00,21.2213,163.165,5.16 +2016-02-21 20:32:00,19.715,163.265,5.19 +2016-02-21 20:47:00,20.64,163.58,5.22 +2016-02-21 21:02:00,21.4737,163.522,5.25 +2016-02-21 21:17:00,20.8337,163.607,5.29 +2016-02-21 21:32:00,21.2738,163.652,5.31 +2016-02-21 21:47:00,22.4425,163.917,5.34 +2016-02-21 22:02:00,22.1575,164.042,5.36 +2016-02-21 22:17:00,20.4962,164.205,5.38 +2016-02-21 22:32:00,21.7162,164.38,5.41 +2016-02-21 22:47:00,20.3525,164.605,5.43 +2016-02-21 23:02:00,22.6475,164.87,5.46 +2016-02-21 23:17:00,22.0125,165.175,5.49 +2016-02-21 23:32:00,22.205,165.43,5.51 +2016-02-21 23:47:00,20.7812,165.867,5.54 +2016-02-22 00:02:00,22.5375,166.16,5.57 +2016-02-22 00:17:00,21.77,166.49,5.59 +2016-02-22 00:32:00,22.49,166.79,5.63 +2016-02-22 00:47:00,21.7687,167.038,5.65 +2016-02-22 01:02:00,21.9662,167.295,5.68 +2016-02-22 01:17:00,21.8662,167.6,5.7 +2016-02-22 01:32:00,21.5662,167.938,5.73 +2016-02-22 01:47:00,21.4737,168.24,5.76 +2016-02-22 02:02:00,21.025,168.723,5.79 +2016-02-22 02:17:00,21.6188,169.325,5.82 +2016-02-22 02:32:00,20.8763,169.74,5.84 +2016-02-22 02:47:00,21.57,170.182,5.87 +2016-02-22 03:02:00,22.2575,170.667,5.89 +2016-02-22 03:17:00,21.075,171.128,5.92 +2016-02-22 03:32:00,22.83,171.467,5.94 +2016-02-22 03:47:00,22.7337,171.86,5.96 +2016-02-22 04:02:00,20.64,172.207,5.98 +2016-02-22 04:17:00,21.1762,172.612,6.01 +2016-02-22 04:32:00,21.4262,173.022,6.03 +2016-02-22 04:47:00,22.6437,173.18,6.05 +2016-02-22 05:02:00,20.1537,173.512,6.07 +2016-02-22 05:17:00,22.2513,173.717,6.09 +2016-02-22 05:32:00,20.925,174.025,6.11 +2016-02-22 05:47:00,23.0238,174.262,6.13 +2016-02-22 06:02:00,21.2237,174.482,6.15 +2016-02-22 06:17:00,21.7162,174.62,6.16 +2016-02-22 06:32:00,23.8075,174.758,6.18 +2016-02-22 06:47:00,22.4463,174.92,6.21 +2016-02-22 07:02:00,22.885,175.292,6.23 +2016-02-22 07:17:00,22.5912,175.688,6.25 +2016-02-22 07:32:00,22.06,176.547,6.27 +2016-02-22 07:47:00,20.925,177.447,6.3 +2016-02-22 08:02:00,22.395,178.15,6.33 +2016-02-22 08:17:00,22.115,178.73,6.36 +2016-02-22 08:32:00,22.645,179.283,6.39 +2016-02-22 08:47:00,22.2513,179.785,6.43 +2016-02-22 09:02:00,22.3463,180.105,6.46 +2016-02-22 09:17:00,20.825,180.475,6.49 +2016-02-22 09:32:00,23.5587,180.81,6.51 +2016-02-22 09:47:00,22.3962,181.4,6.52 +2016-02-22 10:02:00,22.1087,181.997,6.55 +2016-02-22 10:17:00,22.9375,182.568,6.58 +2016-02-22 10:32:00,20.98,183.545,6.61 +2016-02-22 10:47:00,21.8675,184.35,6.65 +2016-02-22 11:02:00,22.8363,185.022,6.68 +2016-02-22 11:17:00,23.2138,185.51,6.7 +2016-02-22 11:32:00,22.9337,185.925,6.72 +2016-02-22 11:47:00,23.4613,186.475,6.74 +2016-02-22 12:02:00,22.8875,187.315,6.77 +2016-02-22 12:17:00,22.7887,188.325,6.79 +2016-02-22 12:32:00,22.7875,189.207,6.81 +2016-02-22 12:47:00,23.4625,189.94,6.81 +2016-02-22 13:02:00,22.6387,190.602,6.81 +2016-02-22 13:17:00,22.6413,191.098,6.81 +2016-02-22 13:32:00,22.935,191.745,6.81 +2016-02-22 13:47:00,23.4088,191.865,6.81 +2016-02-22 14:02:00,23.8037,192.15,6.82 +2016-02-22 14:17:00,23.4163,192.352,6.84 +2016-02-22 14:32:00,24.8425,192.575,6.84 +2016-02-22 14:47:00,23.5075,192.788,6.84 +2016-02-22 15:02:00,23.165,192.952,6.84 +2016-02-22 15:17:00,22.8825,193.087,6.85 +2016-02-22 15:32:00,22.5912,193.402,6.85 +2016-02-22 15:47:00,24.095,193.732,6.86 +2016-02-22 16:02:00,25.8337,194.158,6.86 +2016-02-22 16:17:00,23.12,194.595,6.87 +2016-02-22 16:32:00,25.19,195.137,6.86 +2016-02-22 16:47:00,23.7513,195.172,6.85 +2016-02-22 17:02:00,25.385,195.345,6.85 +2016-02-22 17:17:00,23.8937,195.462,6.85 +2016-02-22 17:32:00,23.9463,195.55,6.85 +2016-02-22 17:47:00,24.7462,195.78,6.86 +2016-02-22 18:02:00,24.5537,196.047,6.86 +2016-02-22 18:17:00,26.1175,196.34,6.86 +2016-02-22 18:32:00,24.445,196.61,6.86 +2016-02-22 18:47:00,24.8925,196.98,6.86 +2016-02-22 19:02:00,23.5112,197.345,6.86 +2016-02-22 19:17:00,24.5,197.792,6.87 +2016-02-22 19:32:00,26.61,198.587,6.87 +2016-02-22 19:47:00,26.71,198.663,6.87 +2016-02-22 20:02:00,24.6437,199.092,6.87 +2016-02-22 20:17:00,24.6462,199.557,6.88 +2016-02-22 20:32:00,25.1912,200.042,6.88 +2016-02-22 20:47:00,25.8275,200.385,6.88 +2016-02-22 21:02:00,24.4538,200.628,6.87 +2016-02-22 21:17:00,26.51,200.82,6.86 +2016-02-22 21:32:00,26.3587,201.0,6.86 +2016-02-22 21:47:00,26.6113,201.14,6.85 +2016-02-22 22:02:00,25.7812,201.307,6.85 +2016-02-22 22:17:00,27.2425,201.462,6.85 +2016-02-22 22:32:00,25.4375,201.875,6.84 +2016-02-22 22:47:00,25.53,201.805,6.83 +2016-02-22 23:02:00,25.8237,201.97,6.83 +2016-02-22 23:17:00,26.5075,202.145,6.83 +2016-02-22 23:32:00,27.7988,202.277,6.82 +2016-02-22 23:47:00,26.9062,202.362,6.81 +2016-02-23 00:02:00,28.1525,202.47,6.81 +2016-02-23 00:17:00,25.045,202.565,6.81 +2016-02-23 00:32:00,28.9425,202.688,6.81 +2016-02-23 00:47:00,25.335,202.775,6.8 +2016-02-23 01:02:00,24.945,202.913,6.79 +2016-02-23 01:17:00,27.7462,203.015,6.78 +2016-02-23 01:32:00,26.9075,203.417,6.77 +2016-02-23 01:47:00,27.0462,203.31,6.76 +2016-02-23 02:02:00,26.5587,203.452,6.76 +2016-02-23 02:17:00,26.7537,203.605,6.75 +2016-02-23 02:32:00,28.64,203.77,6.73 +2016-02-23 02:47:00,26.8063,203.927,6.72 +2016-02-23 03:02:00,27.7025,204.112,6.73 +2016-02-23 03:17:00,28.1038,204.267,6.72 +2016-02-23 03:32:00,26.6575,204.477,6.7 +2016-02-23 03:47:00,27.9463,204.667,6.7 +2016-02-23 04:02:00,28.4487,204.83,6.69 +2016-02-23 04:17:00,25.97,205.02,6.69 +2016-02-23 04:32:00,28.9412,205.57,6.68 +2016-02-23 04:47:00,27.8962,205.397,6.67 +2016-02-23 05:02:00,26.5112,205.585,6.66 +2016-02-23 05:17:00,28.4512,205.795,6.65 +2016-02-23 05:32:00,27.7462,205.985,6.64 +2016-02-23 05:47:00,27.4475,206.177,6.63 +2016-02-23 06:02:00,26.4512,206.372,6.61 +2016-02-23 06:17:00,28.5938,206.688,6.61 +2016-02-23 06:32:00,27.2438,207.038,6.61 +2016-02-23 06:47:00,28.3463,207.402,6.59 +2016-02-23 07:02:00,28.2525,207.855,6.58 +2016-02-23 07:17:00,26.9512,208.195,6.57 +2016-02-23 07:32:00,27.2462,208.825,6.57 +2016-02-23 07:47:00,27.0938,208.832,6.55 +2016-02-23 08:02:00,26.9962,209.152,6.55 +2016-02-23 08:17:00,27.3487,209.447,6.55 +2016-02-23 08:32:00,25.9737,209.735,6.53 +2016-02-23 08:47:00,26.36,210.022,6.52 +2016-02-23 09:02:00,27.555,210.342,6.51 +2016-02-23 09:17:00,28.64,210.61,6.5 +2016-02-23 09:32:00,26.56,210.883,6.5 +2016-02-23 09:47:00,26.9463,211.155,6.49 +2016-02-23 10:02:00,26.8512,211.405,6.49 +2016-02-23 10:17:00,28.2988,211.725,6.5 +2016-02-23 10:32:00,27.195,212.405,6.49 +2016-02-23 10:47:00,27.7,212.29,6.49 +2016-02-23 11:02:00,27.2988,212.61,6.5 +2016-02-23 11:17:00,29.1338,212.895,6.53 +2016-02-23 11:32:00,27.8463,213.15,6.53 +2016-02-23 11:47:00,27.9475,213.525,6.53 +2016-02-23 12:02:00,28.1025,213.93,6.57 +2016-02-23 12:17:00,29.8138,214.322,6.58 +2016-02-23 12:32:00,28.7438,214.702,6.6 +2016-02-23 12:47:00,28.8425,215.15,6.59 +2016-02-23 13:02:00,28.2462,215.568,6.53 +2016-02-23 13:17:00,28.2475,215.943,6.48 +2016-02-23 13:32:00,28.8925,216.693,6.47 +2016-02-23 13:47:00,29.8613,216.758,6.48 +2016-02-23 14:02:00,29.1325,217.092,6.48 +2016-02-23 14:17:00,28.4975,217.6,6.47 +2016-02-23 14:32:00,29.765,217.973,6.47 +2016-02-23 14:47:00,28.8425,218.383,6.47 +2016-02-23 15:02:00,29.6637,218.765,6.47 +2016-02-23 15:17:00,29.9587,219.2,6.47 +2016-02-23 15:32:00,30.8862,219.58,6.47 +2016-02-23 15:47:00,30.7425,219.967,6.45 +2016-02-23 16:02:00,30.105,220.37,6.43 +2016-02-23 16:17:00,31.235,220.735,6.4 +2016-02-23 16:32:00,30.7975,221.542,6.38 +2016-02-23 16:47:00,30.0587,221.58,6.35 +2016-02-23 17:02:00,30.1062,221.98,6.32 +2016-02-23 17:17:00,30.7425,222.35,6.28 +2016-02-23 17:32:00,30.1512,222.745,6.24 +2016-02-23 17:47:00,30.9375,223.158,6.2 +2016-02-23 18:02:00,31.1325,223.55,6.17 +2016-02-23 18:17:00,30.9388,223.93,6.14 +2016-02-23 18:32:00,30.25,224.285,6.11 +2016-02-23 18:47:00,30.7462,224.747,6.09 +2016-02-23 19:02:00,31.18,225.13,6.08 +2016-02-23 19:17:00,30.8438,225.477,6.06 +2016-02-23 19:32:00,29.5187,226.11,6.02 +2016-02-23 19:47:00,30.8875,226.17,5.97 +2016-02-23 20:02:00,31.8325,226.522,5.92 +2016-02-23 20:17:00,30.3525,226.89,5.88 +2016-02-23 20:32:00,30.6963,227.247,5.83 +2016-02-23 20:47:00,30.6462,227.62,5.79 +2016-02-23 21:02:00,30.8412,227.957,5.76 +2016-02-23 21:17:00,29.865,228.332,5.72 +2016-02-23 21:32:00,31.6825,228.682,5.69 +2016-02-23 21:47:00,31.64,229.052,5.64 +2016-02-23 22:02:00,30.0638,229.4,5.6 +2016-02-23 22:17:00,32.5225,229.76,5.56 +2016-02-23 22:32:00,31.5887,230.497,5.53 +2016-02-23 22:47:00,32.0325,230.465,5.5 +2016-02-23 23:02:00,32.2775,230.822,5.46 +2016-02-23 23:17:00,32.0338,231.2,5.43 +2016-02-23 23:32:00,32.8138,231.607,5.39 +2016-02-23 23:47:00,31.9837,232.008,5.36 +2016-02-24 00:02:00,32.5687,232.383,5.34 +2016-02-24 00:17:00,33.6475,232.665,5.32 +2016-02-24 00:32:00,32.33,233.232,5.29 +2016-02-24 00:47:00,31.0325,233.605,5.27 +2016-02-24 01:02:00,32.03,233.938,5.25 +2016-02-24 01:17:00,30.9362,234.272,5.23 +2016-02-24 01:32:00,32.4725,234.985,5.22 +2016-02-24 01:47:00,30.99,234.947,5.19 +2016-02-24 02:02:00,31.7375,235.26,5.17 +2016-02-24 02:17:00,32.5662,235.575,5.15 +2016-02-24 02:32:00,31.235,235.908,5.13 +2016-02-24 02:47:00,31.6825,236.22,5.1 +2016-02-24 03:02:00,31.7288,236.515,5.08 +2016-02-24 03:17:00,32.4225,236.825,5.05 +2016-02-24 03:32:00,30.985,237.13,5.02 +2016-02-24 03:47:00,33.015,237.413,5.0 +2016-02-24 04:02:00,31.9788,237.75,4.98 +2016-02-24 04:17:00,31.485,238.05,4.96 +2016-02-24 04:32:00,30.3988,238.712,4.95 +2016-02-24 04:47:00,30.9837,238.652,4.93 +2016-02-24 05:02:00,30.645,238.935,4.9 +2016-02-24 05:17:00,30.8438,239.23,4.88 +2016-02-24 05:32:00,30.8425,239.503,4.86 +2016-02-24 05:47:00,31.0375,239.842,4.83 +2016-02-24 06:02:00,30.8387,240.158,4.8 +2016-02-24 06:17:00,31.78,240.42,4.78 +2016-02-24 06:32:00,31.8262,240.677,4.77 +2016-02-24 06:47:00,31.1787,240.992,4.76 +2016-02-24 07:02:00,30.3475,241.272,4.75 +2016-02-24 07:17:00,31.7787,241.522,4.75 +2016-02-24 07:32:00,31.0875,242.175,4.75 +2016-02-24 07:47:00,31.685,242.052,4.75 +2016-02-24 08:02:00,31.88,242.29,4.75 +2016-02-24 08:17:00,30.8862,242.568,4.75 +2016-02-24 08:32:00,29.9613,242.812,4.74 +2016-02-24 08:47:00,30.4987,243.062,4.74 +2016-02-24 09:02:00,30.1038,243.307,4.74 +2016-02-24 09:17:00,30.7975,243.565,4.75 +2016-02-24 09:32:00,32.2275,243.753,4.76 +2016-02-24 09:47:00,30.4512,244.017,4.77 +2016-02-24 10:02:00,30.6912,244.202,4.77 +2016-02-24 10:17:00,31.3825,244.53,4.79 +2016-02-24 10:32:00,30.2012,245.147,4.8 +2016-02-24 10:47:00,31.335,244.995,4.83 +2016-02-24 11:02:00,31.7337,245.212,4.83 +2016-02-24 11:17:00,30.3975,245.482,4.84 +2016-02-24 11:32:00,30.2025,245.632,4.88 +2016-02-24 11:47:00,30.0075,245.915,4.92 +2016-02-24 12:02:00,30.8412,246.117,4.96 +2016-02-24 12:17:00,30.2988,246.362,4.99 +2016-02-24 12:32:00,30.01,246.587,5.02 +2016-02-24 12:47:00,29.085,246.745,5.05 +2016-02-24 13:02:00,29.8662,247.045,5.09 +2016-02-24 13:17:00,29.285,247.275,5.1 +2016-02-24 13:32:00,29.7687,247.882,5.08 +2016-02-24 13:47:00,29.375,247.837,5.06 +2016-02-24 14:02:00,29.3275,248.003,5.03 +2016-02-24 14:17:00,29.2337,248.242,5.02 +2016-02-24 14:32:00,29.5638,248.435,5.07 +2016-02-24 14:47:00,30.0125,248.735,5.12 +2016-02-24 15:02:00,29.2363,248.902,5.17 +2016-02-24 15:17:00,30.3012,249.122,5.21 +2016-02-24 15:32:00,29.0387,249.295,5.24 +2016-02-24 15:47:00,30.0575,249.533,5.24 +2016-02-24 16:02:00,29.5187,249.742,5.21 +2016-02-24 16:17:00,28.9863,249.908,5.18 +2016-02-24 16:32:00,28.9412,250.547,5.13 +2016-02-24 16:47:00,28.6987,250.337,5.08 +2016-02-24 17:01:16,12.8487,250.512,1.34 +2016-02-24 17:17:00,28.54,250.985,4.98 +2016-02-24 17:32:00,28.6612,251.262,4.93 +2016-02-24 17:47:00,28.0238,251.34,4.89 +2016-02-24 18:02:00,27.4737,251.53,4.86 +2016-02-24 18:17:00,27.42,251.725,4.84 +2016-02-24 18:32:00,28.8162,251.795,4.82 +2016-02-24 18:47:00,27.6775,251.95,4.8 +2016-02-24 19:02:00,27.1188,252.142,4.8 +2016-02-24 19:17:00,28.5737,252.207,4.79 +2016-02-24 19:32:00,28.8125,252.392,4.78 +2016-02-24 19:47:00,30.475,252.557,4.77 +2016-02-24 20:02:00,28.6212,252.74,4.74 +2016-02-24 20:17:00,28.8175,252.93,4.73 +2016-02-24 20:32:00,29.1612,253.087,4.72 +2016-02-24 20:47:00,27.9238,253.26,4.7 +2016-02-24 21:02:00,28.375,253.422,4.69 +2016-02-24 21:17:00,27.8737,253.595,4.66 +2016-02-24 21:32:00,27.0275,253.76,4.65 +2016-02-24 21:47:00,28.4788,253.96,4.63 +2016-02-24 22:02:00,28.0737,254.11,4.62 +2016-02-24 22:17:00,27.7325,254.283,4.61 +2016-02-24 22:32:00,28.5775,254.46,4.6 +2016-02-24 22:47:00,29.3562,254.705,4.59 +2016-02-24 23:02:00,28.2325,254.875,4.58 +2016-02-24 23:17:00,28.3737,255.025,4.56 +2016-02-24 23:32:00,28.2288,255.177,4.55 +2016-02-24 23:47:00,28.8675,255.223,4.53 +2016-02-25 00:02:00,26.9812,255.5,4.51 +2016-02-25 00:17:00,28.9163,255.642,4.5 +2016-02-25 00:32:00,28.0775,255.797,4.48 +2016-02-25 00:47:00,27.8237,255.932,4.47 +2016-02-25 01:02:00,27.7812,256.082,4.45 +2016-02-25 01:17:00,29.645,256.24,4.43 +2016-02-25 01:32:00,29.26,256.362,4.41 +2016-02-25 01:47:00,25.3675,256.51,4.39 +2016-02-25 02:02:00,25.27,256.647,4.38 +2016-02-25 02:17:00,25.6075,256.785,4.35 +2016-02-25 02:32:00,29.6,256.935,4.33 +2016-02-25 02:47:00,27.825,257.06,4.31 +2016-02-25 03:02:00,28.87,257.193,4.29 +2016-02-25 03:17:00,28.0762,257.332,4.27 +2016-02-25 03:32:00,28.9163,257.455,4.26 +2016-02-25 03:47:00,28.67,257.56,4.25 +2016-02-25 04:02:00,28.575,257.672,4.24 +2016-02-25 04:17:00,27.8763,257.802,4.23 +2016-02-25 04:32:00,29.745,257.915,4.23 +2016-02-25 04:47:00,27.5275,258.02,4.23 +2016-02-25 05:02:00,29.065,258.17,4.22 +2016-02-25 05:17:00,27.1225,258.27,4.21 +2016-02-25 05:32:00,26.3375,258.392,4.21 +2016-02-25 05:47:00,28.9725,258.48,4.2 +2016-02-25 06:02:00,26.195,258.6,4.2 +2016-02-25 06:17:00,28.0238,258.71,4.19 +2016-02-25 06:32:00,28.9187,258.822,4.18 +2016-02-25 06:47:00,25.56,258.91,4.17 +2016-02-25 07:02:00,27.9225,259.03,4.16 +2016-02-25 07:17:00,26.5863,259.107,4.15 +2016-02-25 07:32:00,29.2637,259.21,4.17 +2016-02-25 07:47:00,27.5737,259.327,4.16 +2016-02-25 08:02:00,27.6263,259.4,4.14 +2016-02-25 08:17:00,27.9212,259.517,4.13 +2016-02-25 08:32:00,26.4825,259.61,4.12 +2016-02-25 08:47:00,26.6375,259.68,4.11 +2016-02-25 09:02:00,28.0262,259.777,4.11 +2016-02-25 09:17:00,27.9262,259.875,4.11 +2016-02-25 09:32:00,27.7275,259.947,4.13 +2016-02-25 09:47:00,27.7288,260.068,4.13 +2016-02-25 10:02:00,28.1212,260.128,4.15 +2016-02-25 10:17:00,27.8737,260.202,4.18 +2016-02-25 10:32:00,26.6338,260.297,4.2 +2016-02-25 10:47:00,27.075,260.41,4.23 +2016-02-25 11:02:00,27.4762,260.595,4.24 +2016-02-25 11:17:00,26.0475,260.598,4.28 +2016-02-25 11:32:00,27.5788,260.652,4.31 +2016-02-25 11:47:00,27.3763,260.772,4.34 +2016-02-25 12:02:00,27.8737,260.84,4.37 +2016-02-25 12:17:00,26.435,260.922,4.39 +2016-02-25 12:32:00,27.9713,261.122,4.38 +2016-02-25 12:47:00,28.58,261.06,4.39 +2016-02-25 13:02:00,27.3763,261.257,4.38 +2016-02-25 13:17:00,27.7312,261.322,4.37 +2016-02-25 13:32:00,28.5275,261.378,4.36 +2016-02-25 13:47:00,28.3262,261.51,4.37 +2016-02-25 14:02:00,28.7188,261.503,4.37 +2016-02-25 14:17:00,27.5775,261.702,4.37 +2016-02-25 14:32:00,27.2712,261.83,4.37 +2016-02-25 14:47:00,27.875,261.98,4.39 +2016-02-25 15:02:00,28.1762,262.185,4.41 +2016-02-25 15:17:00,29.4062,262.15,4.41 +2016-02-25 15:32:00,26.3838,262.267,4.43 +2016-02-25 15:47:00,28.325,262.38,4.41 +2016-02-25 16:02:00,28.8712,262.473,4.42 +2016-02-25 16:17:00,28.3787,262.66,4.43 +2016-02-25 16:32:00,29.115,262.79,4.42 +2016-02-25 16:47:00,28.675,262.747,4.38 +2016-02-25 17:02:00,29.5987,262.982,4.35 +2016-02-25 17:17:00,29.2637,263.07,4.32 +2016-02-25 17:32:00,28.23,263.163,4.3 +2016-02-25 17:47:00,28.5762,263.247,4.27 +2016-02-25 18:02:00,29.07,263.36,4.25 +2016-02-25 18:17:00,28.915,263.467,4.22 +2016-02-25 18:32:00,29.455,263.552,4.18 +2016-02-25 18:47:00,28.33,263.64,4.15 +2016-02-25 19:02:00,29.7475,263.723,4.12 +2016-02-25 19:17:00,28.725,263.812,4.1 +2016-02-25 19:32:00,29.1175,263.905,4.1 +2016-02-25 19:47:00,28.3288,263.997,4.09 +2016-02-25 20:02:00,29.4075,264.09,4.08 +2016-02-25 20:17:00,29.0187,264.195,4.09 +2016-02-25 20:32:00,27.9762,264.253,4.08 +2016-02-25 20:47:00,28.7687,264.392,4.08 +2016-02-25 21:02:00,28.0275,264.66,4.08 +2016-02-25 21:17:00,29.3112,264.762,4.07 +2016-02-25 21:32:00,29.3613,264.922,4.06 +2016-02-25 21:47:00,28.675,265.005,4.04 +2016-02-25 22:02:00,28.9163,265.107,4.02 +2016-02-25 22:17:00,28.4238,265.167,3.99 +2016-02-25 22:32:00,27.9725,265.283,3.97 +2016-02-25 22:47:00,29.2612,265.35,3.94 +2016-02-25 23:02:00,29.0175,265.462,3.92 +2016-02-25 23:17:00,29.1175,265.527,3.88 +2016-02-25 23:32:00,29.2162,265.637,3.85 +2016-02-25 23:47:00,29.405,265.725,3.83 +2016-02-26 00:02:00,29.8438,265.83,3.81 +2016-02-26 00:17:00,29.405,265.935,3.78 +2016-02-26 00:32:00,29.695,265.992,3.76 +2016-02-26 00:47:00,29.0238,266.055,3.75 +2016-02-26 01:02:00,29.1663,266.142,3.74 +2016-02-26 01:17:00,29.6488,266.235,3.73 +2016-02-26 01:32:00,29.36,266.307,3.72 +2016-02-26 01:47:00,27.4737,266.402,3.71 +2016-02-26 02:02:00,28.4275,266.49,3.7 +2016-02-26 02:17:00,29.1663,266.575,3.7 +2016-02-26 02:32:00,29.9425,266.642,3.7 +2016-02-26 02:47:00,28.33,266.717,3.69 +2016-02-26 03:02:00,30.4762,266.812,3.69 +2016-02-26 03:17:00,26.585,266.865,3.69 +2016-02-26 03:32:00,28.3763,266.95,3.68 +2016-02-26 03:47:00,28.9175,267.017,3.68 +2016-02-26 04:02:00,27.9287,267.12,3.66 +2016-02-26 04:17:00,28.2288,267.19,3.65 +2016-02-26 04:32:00,28.425,267.265,3.64 +2016-02-26 04:47:00,28.0262,267.31,3.63 +2016-02-26 05:02:00,30.7725,267.37,3.63 +2016-02-26 05:17:00,30.4775,267.45,3.63 +2016-02-26 05:32:00,29.7487,267.542,3.63 +2016-02-26 05:47:00,29.455,267.61,3.63 +2016-02-26 06:02:00,28.7213,267.677,3.63 +2016-02-26 06:17:00,28.87,267.742,3.63 +2016-02-26 06:32:00,29.3587,267.973,3.63 +2016-02-26 06:47:00,25.905,268.052,3.63 +2016-02-26 07:02:00,29.0662,268.14,3.63 +2016-02-26 07:17:00,29.4512,268.215,3.63 +2016-02-26 07:32:00,27.9275,268.285,3.64 +2016-02-26 07:47:00,27.7775,268.357,3.64 +2016-02-26 08:02:00,28.8725,268.413,3.65 +2016-02-26 08:17:00,29.1188,268.473,3.68 +2016-02-26 08:32:00,27.68,268.602,3.68 +2016-02-26 08:47:00,29.2637,268.717,3.7 +2016-02-26 09:02:00,28.6212,268.785,3.71 +2016-02-26 09:17:00,27.5262,268.857,3.73 +2016-02-26 09:32:00,28.1287,268.902,3.74 +2016-02-26 09:47:00,28.4287,268.947,3.75 +2016-02-26 10:02:00,28.625,269.007,3.77 +2016-02-26 10:17:00,28.9725,269.068,3.79 +2016-02-26 10:32:00,29.2162,269.105,3.81 +2016-02-26 10:47:00,28.0775,269.182,3.83 +2016-02-26 11:02:00,26.7825,269.245,3.85 +2016-02-26 11:17:00,28.8237,269.3,3.87 +2016-02-26 11:32:00,28.7162,269.337,3.9 +2016-02-26 11:47:00,29.3575,269.39,3.89 +2016-02-26 12:02:00,28.28,269.452,3.9 +2016-02-26 12:17:00,28.8187,269.51,3.9 +2016-02-26 12:32:00,28.53,269.552,3.91 +2016-02-26 12:47:00,28.53,269.592,3.92 +2016-02-26 13:02:00,27.2738,270.055,3.96 +2016-02-26 13:17:00,27.7312,273.82,3.97 +2016-02-26 13:32:00,29.1188,273.915,3.98 +2016-02-26 13:47:00,28.1787,273.91,4.0 +2016-02-26 14:02:00,26.9837,273.995,4.01 +2016-02-26 14:17:00,28.6237,273.917,4.02 +2016-02-26 14:32:00,27.825,273.91,4.02 +2016-02-26 14:47:00,28.3775,273.915,4.03 +2016-02-26 15:02:00,27.2213,273.82,4.04 +2016-02-26 15:17:00,28.67,273.688,4.05 +2016-02-26 15:32:00,27.8288,273.672,4.05 +2016-02-26 15:47:00,28.43,273.56,4.06 +2016-02-26 16:02:00,27.5287,273.435,4.07 +2016-02-26 16:17:00,27.9275,273.52,4.08 +2016-02-26 16:32:00,27.325,273.257,4.09 +2016-02-26 16:47:00,27.4275,273.295,4.08 +2016-02-26 17:02:00,27.83,273.48,4.08 +2016-02-26 17:17:00,27.2738,273.277,4.07 +2016-02-26 17:32:00,27.9262,273.26,4.05 +2016-02-26 17:47:00,28.18,273.068,4.04 +2016-02-26 18:02:00,26.3887,273.003,4.02 +2016-02-26 18:17:00,26.8312,273.075,4.01 +2016-02-26 18:32:00,29.4075,272.97,4.0 +2016-02-26 18:47:00,26.485,272.805,4.0 +2016-02-26 19:02:00,27.83,272.875,3.99 +2016-02-26 19:17:00,27.4275,272.735,3.99 +2016-02-26 19:32:00,29.1188,272.598,3.96 +2016-02-26 19:47:00,27.8763,272.667,3.95 +2016-02-26 20:02:00,27.275,272.427,3.93 +2016-02-26 20:17:00,28.2288,272.227,3.92 +2016-02-26 20:32:00,27.1738,272.29,3.9 +2016-02-26 20:47:00,27.925,272.318,3.88 +2016-02-26 21:02:00,25.4637,272.223,3.86 +2016-02-26 21:17:00,28.1825,272.085,3.83 +2016-02-26 21:32:00,28.8187,272.207,3.8 +2016-02-26 21:47:00,28.5287,271.93,3.78 +2016-02-26 22:02:00,26.435,271.818,3.76 +2016-02-26 22:17:00,25.3712,271.938,3.73 +2016-02-26 22:32:00,26.9837,271.783,3.7 +2016-02-26 22:47:00,27.975,271.797,3.69 +2016-02-26 23:02:00,27.4275,271.275,3.68 +2016-02-26 23:17:00,29.1637,271.497,3.66 +2016-02-26 23:32:00,27.0762,271.08,3.64 +2016-02-26 23:47:00,28.2775,271.075,3.62 +2016-02-27 00:02:00,26.4325,270.897,3.6 +2016-02-27 00:17:00,26.7312,270.845,3.59 +2016-02-27 00:32:00,26.8838,270.7,3.57 +2016-02-27 00:47:00,27.6287,270.745,3.55 +2016-02-27 01:02:00,26.8825,270.757,3.53 +2016-02-27 01:17:00,26.7838,270.725,3.5 +2016-02-27 01:32:00,27.4313,270.61,3.48 +2016-02-27 01:47:00,27.4313,270.455,3.46 +2016-02-27 02:02:00,27.1263,270.405,3.43 +2016-02-27 02:17:00,28.38,270.163,3.4 +2016-02-27 02:32:00,26.9375,270.045,3.37 +2016-02-27 02:47:00,27.1762,269.807,3.34 +2016-02-27 03:02:00,27.475,269.562,3.33 +2016-02-27 03:17:00,27.5775,269.41,3.31 +2016-02-27 03:32:00,28.225,269.062,3.29 +2016-02-27 03:47:00,27.225,268.93,3.29 +2016-02-27 04:02:00,28.2775,268.753,3.27 +2016-02-27 04:17:00,26.785,268.925,3.26 +2016-02-27 04:32:00,21.55,268.582,3.25 +2016-02-27 04:47:00,18.0563,268.47,3.24 +2016-02-27 05:02:00,19.6025,268.562,3.22 +2016-02-27 05:17:00,29.4512,268.365,3.21 +2016-02-27 05:32:00,20.5737,268.105,3.2 +2016-02-27 05:47:00,35.275,267.818,3.19 +2016-02-27 06:02:00,33.1437,267.785,3.17 +2016-02-27 06:17:00,18.8763,267.84,3.15 +2016-02-27 06:32:00,23.3937,267.443,3.14 +2016-02-27 06:47:00,21.9925,267.565,3.13 +2016-02-27 07:02:00,27.2738,267.055,3.13 +2016-02-27 07:17:00,27.38,266.947,3.12 +2016-02-27 07:32:00,28.5762,266.688,3.13 +2016-02-27 07:47:00,27.8787,266.352,3.13 +2016-02-27 08:02:00,26.6837,265.462,3.14 +2016-02-27 08:17:00,26.7325,264.727,3.14 +2016-02-27 08:32:00,24.1212,264.58,3.15 +2016-02-27 08:47:00,27.875,264.58,3.16 +2016-02-27 09:02:00,24.9225,264.565,3.17 +2016-02-27 09:17:00,25.6075,264.66,3.18 +2016-02-27 09:32:00,29.6975,264.605,3.2 +2016-02-27 09:47:00,21.7475,264.292,3.23 +2016-02-27 10:02:00,27.4775,264.207,3.25 +2016-02-27 10:17:00,26.2438,263.837,3.27 +2016-02-27 10:32:00,15.9187,263.732,3.3 +2016-02-27 10:47:00,26.385,263.167,3.32 +2016-02-27 11:02:00,26.7825,263.312,3.35 +2016-02-27 11:17:00,26.6338,262.952,3.38 +2016-02-27 11:32:00,28.4788,262.762,3.41 +2016-02-27 11:47:00,27.4775,262.71,3.44 +2016-02-27 12:02:00,28.375,262.547,3.47 +2016-02-27 12:17:00,26.05,262.447,3.5 +2016-02-27 12:32:00,26.3363,261.99,3.54 +2016-02-27 12:47:00,27.4737,262.1,3.57 +2016-02-27 13:02:00,26.2425,261.78,3.61 +2016-02-27 13:17:00,29.9412,261.658,3.64 +2016-02-27 13:32:00,27.2213,261.362,3.67 +2016-02-27 13:47:00,27.0275,260.845,3.71 +2016-02-27 14:02:00,30.7725,260.512,3.75 +2016-02-27 14:17:00,23.0137,260.22,3.78 +2016-02-27 14:32:00,22.8613,259.677,3.81 +2016-02-27 14:47:00,22.7675,259.482,3.84 +2016-02-27 15:02:00,26.385,259.03,3.87 +2016-02-27 15:17:00,26.6837,258.977,3.9 +2016-02-27 15:32:00,26.0,258.732,3.92 +2016-02-27 15:47:00,27.6287,258.56,3.93 +2016-02-27 16:02:00,27.2237,258.438,3.93 +2016-02-27 16:17:00,31.06,258.257,3.93 +2016-02-27 16:32:00,27.735,257.867,3.92 +2016-02-27 16:47:00,26.7337,257.462,3.91 +2016-02-27 17:02:00,26.6362,257.167,3.9 +2016-02-27 17:17:00,27.8775,257.188,3.89 +2016-02-27 17:32:00,27.875,256.797,3.88 +2016-02-27 17:47:00,26.935,256.67,3.87 +2016-02-27 18:02:00,26.1512,256.505,3.85 +2016-02-27 18:17:00,24.425,256.438,3.84 +2016-02-27 18:32:00,26.9325,256.033,3.83 +2016-02-27 18:47:00,25.4175,255.59,3.82 +2016-02-27 19:02:00,26.3862,255.425,3.81 +2016-02-27 19:17:00,27.0287,254.975,3.79 +2016-02-27 19:32:00,27.1762,254.845,3.76 +2016-02-27 19:47:00,26.9825,254.422,3.74 +2016-02-27 20:02:00,26.6375,254.37,3.73 +2016-02-27 20:17:00,25.2225,254.0,3.72 +2016-02-27 20:32:00,27.7325,253.96,3.69 +2016-02-27 20:47:00,23.7387,253.887,3.68 +2016-02-27 21:02:00,27.7812,253.665,3.66 +2016-02-27 21:17:00,27.425,253.48,3.64 +2016-02-27 21:32:00,26.7337,253.188,3.63 +2016-02-27 21:47:00,26.0525,252.905,3.62 +2016-02-27 22:02:00,25.8075,252.413,3.61 +2016-02-27 22:17:00,27.1263,252.35,3.59 +2016-02-27 22:32:00,25.1712,252.165,3.58 +2016-02-27 22:47:00,26.0537,251.677,3.57 +2016-02-27 23:02:00,26.1987,251.3,3.54 +2016-02-27 23:17:00,25.9538,251.46,3.52 +2016-02-27 23:32:00,26.5863,251.47,3.5 +2016-02-27 23:47:00,26.29,251.375,3.5 +2016-02-28 00:02:00,25.5625,251.22,3.48 +2016-02-28 00:17:00,26.6362,251.095,3.47 +2016-02-28 00:32:00,25.075,250.712,3.45 +2016-02-28 00:47:00,26.7838,250.392,3.43 +2016-02-28 01:02:00,24.7237,250.265,3.42 +2016-02-28 01:17:00,25.5587,250.137,3.41 +2016-02-28 01:32:00,25.6062,249.892,3.39 +2016-02-28 01:47:00,25.4613,249.872,3.38 +2016-02-28 02:02:00,26.3862,249.737,3.36 +2016-02-28 02:17:00,26.2425,249.675,3.33 +2016-02-28 02:32:00,26.2887,249.315,3.31 +2016-02-28 02:47:00,25.8562,249.202,3.29 +2016-02-28 03:02:00,26.0488,248.997,3.28 +2016-02-28 03:17:00,26.1975,248.688,3.27 +2016-02-28 03:32:00,24.6212,248.395,3.25 +2016-02-28 03:47:00,24.8688,248.197,3.24 +2016-02-28 04:02:00,25.7537,248.092,3.23 +2016-02-28 04:17:00,25.7525,248.087,3.22 +2016-02-28 04:32:00,26.735,247.917,3.2 +2016-02-28 04:47:00,25.3675,247.917,3.19 +2016-02-28 05:02:00,26.8812,247.802,3.17 +2016-02-28 05:17:00,25.8087,247.647,3.16 +2016-02-28 05:32:00,26.1963,247.55,3.16 +2016-02-28 05:47:00,25.3187,247.295,3.15 +2016-02-28 06:02:00,25.2675,246.783,3.14 +2016-02-28 06:17:00,27.0713,246.465,3.13 +2016-02-28 06:32:00,26.0,246.253,3.13 +2016-02-28 06:47:00,27.1212,246.172,3.13 +2016-02-28 07:02:00,24.8712,245.99,3.13 +2016-02-28 07:17:00,26.3838,246.025,3.13 +2016-02-28 07:32:00,26.8812,245.938,3.13 +2016-02-28 07:47:00,25.365,244.705,3.14 +2016-02-28 08:02:00,27.3187,242.19,3.14 +2016-02-28 08:17:00,25.17,241.288,3.16 +2016-02-28 08:32:00,27.8725,240.862,3.18 +2016-02-28 08:47:00,26.3838,240.72,3.19 +2016-02-28 09:02:00,27.1212,240.977,3.19 +2016-02-28 09:17:00,25.0713,240.932,3.21 +2016-02-28 09:32:00,26.0488,241.052,3.25 +2016-02-28 09:47:00,25.5563,241.36,3.28 +2016-02-28 10:02:00,26.8337,241.538,3.3 +2016-02-28 10:17:00,24.32,241.77,3.33 +2016-02-28 10:32:00,25.9987,242.1,3.35 +2016-02-28 10:47:00,24.42,242.147,3.37 +2016-02-28 11:02:00,26.2887,242.223,3.4 +2016-02-28 11:17:00,27.1212,242.015,3.45 +2016-02-28 11:32:00,26.1937,241.875,3.48 +2016-02-28 11:47:00,24.07,241.617,3.52 +2016-02-28 12:02:00,25.37,241.732,3.56 +2016-02-28 12:17:00,26.0475,241.542,3.6 +2016-02-28 12:32:00,24.9212,241.417,3.63 +2016-02-28 12:47:00,25.0238,241.262,3.68 +2016-02-28 13:02:00,26.1975,241.08,3.72 +2016-02-28 13:17:00,26.2875,240.987,3.76 +2016-02-28 13:32:00,25.0713,240.94,3.79 +2016-02-28 13:47:00,25.4112,240.37,3.82 +2016-02-28 14:02:00,24.8712,240.36,3.85 +2016-02-28 14:17:00,26.0475,240.115,3.88 +2016-02-28 14:32:00,25.805,239.922,3.9 +2016-02-28 14:47:00,24.8187,239.852,3.93 +2016-02-28 15:02:00,25.5575,239.482,3.95 +2016-02-28 15:17:00,24.5262,239.055,3.97 +2016-02-28 15:32:00,25.855,238.98,3.99 +2016-02-28 15:47:00,26.3387,238.717,4.0 +2016-02-28 16:02:00,26.0025,238.607,4.02 +2016-02-28 16:17:00,28.2762,238.128,4.03 +2016-02-28 16:32:00,25.9037,238.175,4.03 +2016-02-28 16:47:00,24.6263,238.042,4.03 +2016-02-28 17:02:00,25.0737,238.112,4.03 +2016-02-28 17:17:00,25.1725,238.082,4.03 +2016-02-28 17:32:00,27.3712,238.302,4.03 +2016-02-28 17:47:00,27.125,238.177,4.02 +2016-02-28 18:02:00,27.875,238.142,4.02 +2016-02-28 18:17:00,25.9037,237.985,4.01 +2016-02-28 18:32:00,25.7038,237.747,4.0 +2016-02-28 18:47:00,25.37,237.758,4.0 +2016-02-28 19:02:00,26.195,237.642,3.99 +2016-02-28 19:17:00,27.0775,237.717,3.97 +2016-02-28 19:32:00,26.1937,237.652,3.95 +2016-02-28 19:47:00,24.2225,237.755,3.94 +2016-02-28 20:02:00,24.87,237.802,3.93 +2016-02-28 20:17:00,24.92,237.825,3.93 +2016-02-28 20:32:00,27.7812,237.84,3.92 +2016-02-28 20:47:00,25.81,237.702,3.91 +2016-02-28 21:02:00,27.1725,237.685,3.89 +2016-02-28 21:17:00,24.9212,237.522,3.89 +2016-02-28 21:32:00,21.9925,237.66,3.87 +2016-02-28 21:47:00,24.4238,237.905,3.85 +2016-02-28 22:02:00,26.2913,237.9,3.83 +2016-02-28 22:17:00,25.5587,237.792,3.81 +2016-02-28 22:32:00,26.4337,237.582,3.8 +2016-02-28 22:47:00,24.9225,237.39,3.78 +2016-02-28 23:02:00,23.7387,237.295,3.77 +2016-02-28 23:17:00,25.4163,237.237,3.76 +2016-02-28 23:32:00,26.0037,237.135,3.75 +2016-02-28 23:47:00,26.1488,237.335,3.73 +2016-02-29 00:02:00,25.7575,237.158,3.71 +2016-02-29 00:17:00,25.075,237.147,3.68 +2016-02-29 00:32:00,24.6237,237.033,3.66 +2016-02-29 00:47:00,25.2213,236.75,3.63 +2016-02-29 01:02:00,25.415,236.628,3.61 +2016-02-29 01:17:00,24.4762,236.462,3.59 +2016-02-29 01:32:00,24.0713,236.427,3.56 +2016-02-29 01:47:00,25.3213,236.223,3.54 +2016-02-29 02:02:00,24.9713,236.115,3.51 +2016-02-29 02:17:00,26.5312,236.105,3.49 +2016-02-29 02:32:00,24.3725,235.97,3.46 +2016-02-29 02:47:00,24.82,235.835,3.44 +2016-02-29 03:02:00,25.075,235.783,3.42 +2016-02-29 03:17:00,23.88,235.688,3.41 +2016-02-29 03:32:00,25.0737,235.42,3.39 +2016-02-29 03:47:00,26.435,235.255,3.38 +2016-02-29 04:02:00,24.7725,235.158,3.36 +2016-02-29 04:17:00,24.5275,234.98,3.34 +2016-02-29 04:32:00,25.5112,234.797,3.33 +2016-02-29 04:47:00,25.46,234.707,3.31 +2016-02-29 05:02:00,24.225,234.712,3.29 +2016-02-29 05:17:00,26.485,234.622,3.28 +2016-02-29 05:32:00,25.5112,234.492,3.26 +2016-02-29 05:47:00,25.855,234.5,3.24 +2016-02-29 06:02:00,25.46,234.285,3.22 +2016-02-29 06:17:00,25.5575,234.312,3.21 +2016-02-29 06:32:00,26.1475,234.072,3.19 +2016-02-29 06:47:00,25.5075,233.822,3.19 +2016-02-29 07:02:00,25.37,233.715,3.18 +2016-02-29 07:17:00,25.4625,233.658,3.18 +2016-02-29 07:32:00,24.8712,233.332,3.17 +2016-02-29 07:47:00,26.635,232.987,3.17 +2016-02-29 08:02:00,25.2687,232.885,3.17 +2016-02-29 08:17:00,24.3725,232.947,3.18 +2016-02-29 08:32:00,24.765,232.68,3.18 +2016-02-29 08:47:00,26.24,232.772,3.19 +2016-02-29 09:02:00,25.4175,232.702,3.19 +2016-02-29 09:17:00,26.0537,227.805,3.2 +2016-02-29 09:32:00,24.5762,226.135,3.2 +2016-02-29 09:47:00,27.0788,225.677,3.22 +2016-02-29 10:02:00,23.5887,225.45,3.24 +2016-02-29 10:17:00,26.9325,225.497,3.25 +2016-02-29 10:32:00,25.6075,227.425,3.25 +2016-02-29 10:47:00,25.3688,228.225,3.27 +2016-02-29 11:02:00,25.0725,228.688,3.28 +2016-02-29 11:17:00,25.4175,228.967,3.29 +2016-02-29 11:32:00,24.1188,229.027,3.31 +2016-02-29 11:47:00,25.3162,229.165,3.32 +2016-02-29 12:02:00,25.37,229.015,3.35 +2016-02-29 12:17:00,25.9538,229.147,3.37 +2016-02-29 12:32:00,25.4637,228.735,3.38 +2016-02-29 12:47:00,25.5587,228.302,3.4 +2016-02-29 13:02:00,25.7038,228.142,3.4 +2016-02-29 13:17:00,25.1725,228.038,3.42 +2016-02-29 13:32:00,25.2188,227.747,3.44 +2016-02-29 13:47:00,25.4163,227.515,3.47 +2016-02-29 14:02:00,24.6712,227.325,3.48 +2016-02-29 14:17:00,27.1237,226.987,3.49 +2016-02-29 14:32:00,23.5375,226.87,3.5 +2016-02-29 14:47:00,24.2738,227.045,3.5 +2016-02-29 15:02:00,24.8213,226.887,3.5 +2016-02-29 15:17:00,25.6562,226.805,3.51 +2016-02-29 15:32:00,24.47,226.848,3.51 +2016-02-29 15:47:00,23.8337,226.73,3.51 +2016-02-29 16:02:00,25.12,226.29,3.5 +2016-02-29 16:17:00,25.1687,226.177,3.5 +2016-02-29 16:32:00,24.7712,225.775,3.51 +2016-02-29 16:47:00,25.755,225.612,3.51 +2016-02-29 17:02:00,24.8187,225.277,3.52 +2016-02-29 17:17:00,24.9187,224.997,3.51 +2016-02-29 17:32:00,25.5575,224.848,3.5 +2016-02-29 17:47:00,25.1225,224.545,3.5 +2016-02-29 18:02:00,24.6712,224.322,3.5 +2016-02-29 18:17:00,25.8037,224.227,3.5 +2016-02-29 18:32:00,23.7337,223.987,3.5 +2016-02-29 18:47:00,24.02,223.557,3.5 +2016-02-29 19:02:00,24.525,223.575,3.51 +2016-02-29 19:17:00,26.5863,223.44,3.51 +2016-02-29 19:32:00,26.05,223.197,3.51 +2016-02-29 19:47:00,24.0687,223.045,3.5 +2016-02-29 20:02:00,24.9225,222.805,3.51 +2016-02-29 20:17:00,25.805,222.59,3.51 +2016-02-29 20:32:00,24.4725,222.325,3.49 +2016-02-29 20:47:00,24.2213,222.457,3.49 +2016-02-29 21:02:00,24.8187,222.342,3.47 +2016-02-29 21:17:00,24.8187,221.88,3.47 +2016-02-29 21:32:00,25.9525,221.705,3.46 +2016-02-29 21:47:00,22.7663,221.577,3.46 +2016-02-29 22:02:00,24.6263,221.362,3.44 +2016-02-29 22:17:00,25.1237,221.295,3.42 +2016-02-29 22:32:00,24.5762,221.332,3.41 +2016-02-29 22:47:00,25.3688,221.25,3.4 +2016-02-29 23:02:00,24.2225,220.9,3.39 +2016-02-29 23:17:00,24.0725,220.852,3.38 +2016-02-29 23:32:00,25.215,220.77,3.37 +2016-02-29 23:47:00,25.5075,220.562,3.35 +2016-03-01 00:02:00,25.5575,220.55,3.33 +2016-03-01 00:17:00,24.675,220.383,3.32 +2016-03-01 00:32:00,26.1475,220.352,3.31 +2016-03-01 00:47:00,25.4137,220.592,3.29 +2016-03-01 01:02:00,25.2213,220.572,3.27 +2016-03-01 01:17:00,24.425,220.552,3.24 +2016-03-01 01:32:00,23.2,220.732,3.23 +2016-03-01 01:47:00,24.1225,220.538,3.21 +2016-03-01 02:02:00,24.3237,220.655,3.2 +2016-03-01 02:17:00,24.925,220.622,3.18 +2016-03-01 02:32:00,24.17,220.688,3.16 +2016-03-01 02:47:00,23.64,220.56,3.13 +2016-03-01 03:02:00,23.7887,220.495,3.12 +2016-03-01 03:17:00,25.1212,220.55,3.1 +2016-03-01 03:32:00,24.0238,220.587,3.09 +2016-03-01 03:47:00,24.3737,220.568,3.07 +2016-03-01 04:02:00,23.8325,220.355,3.05 +2016-03-01 04:17:00,23.585,220.335,3.04 +2016-03-01 04:32:00,23.4388,220.465,3.03 +2016-03-01 04:47:00,26.6775,220.438,3.01 +2016-03-01 05:02:00,25.8525,220.58,2.99 +2016-03-01 05:17:00,23.8325,220.65,2.97 +2016-03-01 05:32:00,26.48,220.682,2.96 +2016-03-01 05:47:00,25.8525,220.77,2.95 +2016-03-01 06:02:00,25.4613,220.767,2.93 +2016-03-01 06:17:00,24.6725,220.98,2.93 +2016-03-01 06:32:00,23.4925,221.035,2.92 +2016-03-01 06:47:00,24.5775,221.087,2.91 +2016-03-01 07:02:00,24.4212,221.105,2.91 +2016-03-01 07:17:00,24.5212,221.202,2.9 +2016-03-01 07:32:00,25.4587,221.052,2.9 +2016-03-01 07:47:00,25.17,221.033,2.88 +2016-03-01 08:02:00,24.4725,220.8,2.88 +2016-03-01 08:17:00,24.5238,220.818,2.89 +2016-03-01 08:32:00,24.4187,220.767,2.89 +2016-03-01 08:47:00,25.8037,220.762,2.89 +2016-03-01 09:02:00,24.9212,220.727,2.9 +2016-03-01 09:17:00,24.9713,220.855,2.91 +2016-03-01 09:32:00,25.5575,220.842,2.93 +2016-03-01 09:47:00,25.3662,220.862,2.95 +2016-03-01 10:02:00,24.0238,220.107,2.96 +2016-03-01 10:17:00,26.24,219.72,2.97 +2016-03-01 10:32:00,24.7687,219.538,2.99 +2016-03-01 10:47:00,24.6263,219.332,3.02 +2016-03-01 11:02:00,24.4212,219.005,3.06 +2016-03-01 11:17:00,23.9737,218.64,3.05 +2016-03-01 11:32:00,23.4412,218.465,3.07 +2016-03-01 11:47:00,26.5325,217.917,3.11 +2016-03-01 12:02:00,25.37,217.902,3.14 +2016-03-01 12:17:00,25.7012,217.715,3.16 +2016-03-01 12:32:00,25.5075,217.427,3.21 +2016-03-01 12:47:00,24.9675,216.892,3.28 +2016-03-01 13:02:00,25.2225,216.54,3.33 +2016-03-01 13:17:00,22.5212,216.235,3.36 +2016-03-01 13:32:00,25.51,215.5,3.39 +2016-03-01 13:47:00,24.2738,214.842,3.41 +2016-03-01 14:02:00,23.445,214.185,3.44 +2016-03-01 14:17:00,25.37,213.59,3.49 +2016-03-01 14:32:00,24.77,212.76,3.54 +2016-03-01 14:47:00,26.5875,212.325,3.59 +2016-03-01 15:02:00,25.3675,211.797,3.63 +2016-03-01 15:17:00,25.5575,209.76,3.66 +2016-03-01 15:32:00,24.9688,205.227,3.69 +2016-03-01 15:47:00,25.5112,202.7,3.71 +2016-03-01 16:02:00,25.7062,200.727,3.73 +2016-03-01 16:17:00,25.6537,199.555,3.75 +2016-03-01 16:32:00,24.3225,198.52,3.76 +2016-03-01 16:47:00,25.4187,197.688,3.75 +2016-03-01 17:02:00,23.9725,197.052,3.74 +2016-03-01 17:17:00,23.3463,195.395,3.74 +2016-03-01 17:32:00,24.475,194.3,3.74 +2016-03-01 17:47:00,25.0713,193.538,3.74 +2016-03-01 18:02:00,23.1025,192.64,3.74 +2016-03-01 18:17:00,24.8712,191.655,3.74 +2016-03-01 18:32:00,26.0013,191.312,3.74 +2016-03-01 18:47:00,26.29,191.008,3.74 +2016-03-01 19:02:00,25.2213,190.857,3.73 +2016-03-01 19:17:00,24.87,190.74,3.72 +2016-03-01 19:32:00,24.8712,190.705,3.71 +2016-03-01 19:47:00,24.4225,190.862,3.7 +2016-03-01 20:02:00,24.9225,190.938,3.7 +2016-03-01 20:17:00,24.475,190.965,3.69 +2016-03-01 20:32:00,24.0737,190.992,3.67 +2016-03-01 20:47:00,24.3275,190.938,3.65 +2016-03-01 21:02:00,25.0775,191.155,3.65 +2016-03-01 21:17:00,26.2425,191.26,3.65 +2016-03-01 21:32:00,23.6387,191.46,3.65 +2016-03-01 21:47:00,26.0525,191.342,3.66 +2016-03-01 22:02:00,24.97,191.36,3.66 +2016-03-01 22:17:00,24.5788,191.352,3.65 +2016-03-01 22:32:00,26.78,191.332,3.65 +2016-03-01 22:47:00,23.15,191.4,3.64 +2016-03-01 23:02:00,23.9762,191.36,3.64 +2016-03-01 23:17:00,25.1725,191.522,3.63 +2016-03-01 23:32:00,25.2188,191.607,3.62 +2016-03-01 23:47:00,24.07,191.732,3.61 +2016-03-02 00:02:00,24.12,191.973,3.62 +2016-03-02 00:17:00,25.1725,191.832,3.61 +2016-03-02 00:32:00,23.835,192.003,3.61 +2016-03-02 00:47:00,25.5563,192.098,3.6 +2016-03-02 01:02:00,23.7838,192.135,3.6 +2016-03-02 01:17:00,24.77,191.992,3.61 +2016-03-02 01:32:00,24.4262,192.193,3.62 +2016-03-02 01:47:00,23.8812,192.145,3.61 +2016-03-02 02:02:00,23.9725,191.96,3.62 +2016-03-02 02:17:00,24.3725,191.98,3.62 +2016-03-02 02:32:00,24.92,191.99,3.62 +2016-03-02 02:47:00,23.6888,191.947,3.63 +2016-03-02 03:02:00,25.9987,191.987,3.63 +2016-03-02 03:17:00,24.7675,191.797,3.63 +2016-03-02 03:32:00,24.1663,191.84,3.64 +2016-03-02 03:47:00,24.4713,191.827,3.65 +2016-03-02 04:02:00,24.3725,191.693,3.65 +2016-03-02 04:17:00,23.7862,191.59,3.64 +2016-03-02 04:32:00,24.5262,191.288,3.62 +2016-03-02 04:47:00,23.4925,191.503,3.61 +2016-03-02 05:02:00,22.0413,191.322,3.61 +2016-03-02 05:17:00,24.1188,191.362,3.64 +2016-03-02 05:32:00,22.4238,191.32,3.64 +2016-03-02 05:47:00,25.0737,191.02,3.65 +2016-03-02 06:02:00,23.69,190.837,3.65 +2016-03-02 06:17:00,21.5025,190.957,3.66 +2016-03-02 06:32:00,23.9275,190.628,3.66 +2016-03-02 06:47:00,24.12,190.688,3.64 +2016-03-02 07:02:00,25.22,190.577,3.63 +2016-03-02 07:17:00,24.4275,190.44,3.64 +2016-03-02 07:32:00,25.07,190.3,3.68 +2016-03-02 07:47:00,23.39,190.262,3.7 +2016-03-02 08:02:00,24.0713,190.057,3.72 +2016-03-02 08:17:00,22.8625,190.065,3.74 +2016-03-02 08:32:00,23.54,190.022,3.78 +2016-03-02 08:47:00,25.1725,189.945,3.86 +2016-03-02 09:02:00,22.9613,189.973,3.9 +2016-03-02 09:17:00,24.6725,189.985,3.93 +2016-03-02 09:32:00,24.3725,192.917,3.92 +2016-03-02 09:47:00,22.2825,193.772,3.93 +2016-03-02 10:02:00,24.5775,194.39,3.96 +2016-03-02 10:17:00,24.7712,194.737,3.98 +2016-03-02 10:32:00,23.2438,194.305,4.03 +2016-03-02 10:47:00,22.9575,194.03,4.08 +2016-03-02 11:02:00,23.5912,193.98,4.12 +2016-03-02 11:17:00,25.51,193.395,4.16 +2016-03-02 11:32:00,23.6387,193.2,4.18 +2016-03-02 11:47:00,25.1225,192.848,4.21 +2016-03-02 12:02:00,22.96,192.938,4.26 +2016-03-02 12:17:00,23.1025,186.675,4.25 +2016-03-02 12:32:00,22.6175,181.685,4.28 +2016-03-02 12:47:00,23.15,179.54,4.31 +2016-03-02 13:02:00,23.7363,178.8,4.36 +2016-03-02 13:17:00,25.3688,178.848,4.43 +2016-03-02 13:32:00,24.4238,179.365,4.48 +2016-03-02 13:47:00,22.9112,180.033,4.49 +2016-03-02 14:02:00,23.4412,180.943,4.5 +2016-03-02 14:17:00,21.7962,182.14,4.46 +2016-03-02 14:32:00,24.2237,183.24,4.49 +2016-03-02 14:47:00,23.1513,184.05,4.52 +2016-03-02 15:02:00,22.9137,185.08,4.55 +2016-03-02 15:17:00,23.3425,185.917,4.56 +2016-03-02 15:32:00,24.1175,186.545,4.56 +2016-03-02 15:47:00,24.0737,187.005,4.57 +2016-03-02 16:02:00,22.8138,187.188,4.58 +2016-03-02 16:17:00,22.425,187.547,4.6 +2016-03-02 16:32:00,23.055,187.927,4.61 +2016-03-02 16:47:00,21.6475,188.247,4.62 +2016-03-02 17:02:00,23.7862,188.742,4.61 +2016-03-02 17:17:00,23.3887,188.98,4.61 +2016-03-02 17:32:00,22.8637,189.142,4.6 +2016-03-02 17:47:00,22.47,189.33,4.6 +2016-03-02 18:02:00,23.9737,189.51,4.59 +2016-03-02 18:17:00,21.4512,189.72,4.59 +2016-03-02 18:32:00,23.8787,189.77,4.59 +2016-03-02 18:47:00,22.7663,189.568,4.6 +2016-03-02 19:02:00,23.0537,189.82,4.61 +2016-03-02 19:17:00,23.93,189.675,4.63 +2016-03-02 19:32:00,23.4925,189.34,4.63 +2016-03-02 19:47:00,23.1012,189.115,4.64 +2016-03-02 20:02:00,21.5462,188.992,4.64 +2016-03-02 20:17:00,21.6963,189.033,4.63 +2016-03-02 20:32:00,23.9262,189.07,4.62 +2016-03-02 20:47:00,24.2188,189.017,4.6 +2016-03-02 21:02:00,22.3737,188.935,4.57 +2016-03-02 21:17:00,22.4262,189.147,4.55 +2016-03-02 21:32:00,23.1,189.015,4.53 +2016-03-02 21:47:00,22.3775,189.193,4.52 +2016-03-02 22:02:00,22.6687,189.047,4.5 +2016-03-02 22:17:00,21.1525,188.902,4.49 +2016-03-02 22:32:00,23.055,188.73,4.48 +2016-03-02 22:47:00,23.4425,188.572,4.47 +2016-03-02 23:02:00,23.7387,188.34,4.47 +2016-03-02 23:17:00,22.7188,188.283,4.46 +2016-03-02 23:32:00,25.5075,188.172,4.45 +2016-03-02 23:47:00,22.815,188.06,4.44 +2016-03-03 00:02:00,24.0737,188.145,4.43 +2016-03-03 00:17:00,24.2725,188.253,4.42 +2016-03-03 00:32:00,23.9262,188.41,4.41 +2016-03-03 00:47:00,22.96,188.4,4.39 +2016-03-03 01:02:00,22.2838,188.475,4.38 +2016-03-03 01:17:00,23.2937,188.592,4.36 +2016-03-03 01:32:00,23.3913,188.47,4.35 +2016-03-03 01:47:00,22.8637,188.29,4.32 +2016-03-03 02:02:00,23.7838,188.087,4.31 +2016-03-03 02:17:00,23.0625,187.737,4.29 +2016-03-03 02:32:00,24.075,187.625,4.28 +2016-03-03 02:47:00,22.8662,187.6,4.26 +2016-03-03 03:02:00,23.4925,187.592,4.24 +2016-03-03 03:17:00,21.745,187.655,4.22 +2016-03-03 03:32:00,24.1712,187.512,4.19 +2016-03-03 03:47:00,22.0425,187.335,4.18 +2016-03-03 04:02:00,21.995,187.352,4.16 +2016-03-03 04:17:00,23.9788,187.55,4.14 +2016-03-03 04:32:00,22.6687,187.302,4.12 +2016-03-03 04:47:00,23.2937,187.355,4.11 +2016-03-03 05:02:00,20.9075,187.495,4.1 +2016-03-03 05:17:00,22.9137,187.15,4.09 +2016-03-03 05:32:00,22.4238,187.082,4.09 +2016-03-03 05:47:00,25.2675,187.005,4.09 +2016-03-03 06:02:00,22.6675,186.75,4.08 +2016-03-03 06:17:00,22.7188,186.56,4.08 +2016-03-03 06:32:00,22.8625,186.503,4.07 +2016-03-03 06:47:00,24.2225,186.69,4.06 +2016-03-03 07:02:00,21.6425,186.542,4.05 +2016-03-03 07:17:00,23.7825,186.72,4.04 +2016-03-03 07:32:00,24.2738,187.015,4.04 +2016-03-03 07:47:00,21.455,186.785,4.03 +2016-03-03 08:02:00,22.5725,186.785,4.04 +2016-03-03 08:17:00,21.6963,192.79,4.04 +2016-03-03 08:32:00,21.7962,196.18,4.04 +2016-03-03 08:47:00,22.5225,196.617,4.04 +2016-03-03 09:02:00,24.6237,196.805,4.05 +2016-03-03 09:17:00,22.5662,196.357,4.07 +2016-03-03 09:32:00,22.4713,195.73,4.1 +2016-03-03 09:47:00,23.9238,195.14,4.13 +2016-03-03 10:02:00,23.1,194.372,4.16 +2016-03-03 10:17:00,23.3387,191.23,4.19 +2016-03-03 10:32:00,23.1513,184.737,4.23 +2016-03-03 10:47:00,23.5387,181.49,4.29 +2016-03-03 11:02:00,21.7962,179.842,4.33 +2016-03-03 11:17:00,22.4212,179.13,4.37 +2016-03-03 11:32:00,22.4713,179.478,4.4 +2016-03-03 11:47:00,22.285,179.797,4.44 +2016-03-03 12:02:00,20.1837,180.077,4.46 +2016-03-03 12:17:00,23.835,180.43,4.51 +2016-03-03 12:32:00,22.5675,180.63,4.53 +2016-03-03 12:47:00,22.285,181.062,4.56 +2016-03-03 13:02:00,21.25,181.59,4.58 +2016-03-03 13:17:00,23.39,181.76,4.6 +2016-03-03 13:32:00,22.0437,181.915,4.63 +2016-03-03 13:47:00,22.2838,181.982,4.66 +2016-03-03 14:02:00,22.72,182.215,4.7 +2016-03-03 14:17:00,22.9613,182.318,4.74 +2016-03-03 14:32:00,22.765,182.42,4.78 +2016-03-03 14:47:00,23.7862,182.45,4.82 +2016-03-03 15:02:00,23.5413,182.39,4.85 +2016-03-03 15:17:00,23.8412,182.307,4.87 +2016-03-03 15:32:00,23.1975,182.345,4.9 +2016-03-03 15:47:00,22.7663,182.22,4.93 +2016-03-03 16:02:00,23.5925,181.938,4.94 +2016-03-03 16:17:00,24.5775,182.1,4.96 +2016-03-03 16:32:00,23.2438,181.68,4.96 +2016-03-03 16:47:00,22.3737,181.435,4.97 +2016-03-03 17:02:00,22.67,181.345,4.95 +2016-03-03 17:17:00,21.995,181.08,4.94 +2016-03-03 17:32:00,22.6188,180.758,4.92 +2016-03-03 17:47:00,21.845,180.68,4.92 +2016-03-03 18:02:00,22.045,180.295,4.92 +2016-03-03 18:17:00,23.0587,180.185,4.92 +2016-03-03 18:32:00,25.1725,179.927,4.92 +2016-03-03 18:47:00,22.3325,180.057,4.91 +2016-03-03 19:02:00,21.1087,179.927,4.9 +2016-03-03 19:17:00,23.1525,179.682,4.89 +2016-03-03 19:32:00,23.0575,179.503,4.87 +2016-03-03 19:47:00,24.575,179.342,4.85 +2016-03-03 20:02:00,23.15,179.53,4.83 +2016-03-03 20:17:00,22.6687,179.305,4.81 +2016-03-03 20:32:00,21.2038,179.605,4.8 +2016-03-03 20:47:00,23.4437,179.54,4.79 +2016-03-03 21:02:00,23.1062,179.68,4.78 +2016-03-03 21:17:00,22.1925,179.598,4.76 +2016-03-03 21:32:00,23.445,179.348,4.75 +2016-03-03 21:47:00,22.9125,179.417,4.75 +2016-03-03 22:02:00,23.3887,179.405,4.75 +2016-03-03 22:17:00,22.09,179.25,4.75 +2016-03-03 22:32:00,24.5788,179.165,4.75 +2016-03-03 22:47:00,22.3288,179.592,4.75 +2016-03-03 23:02:00,22.3288,179.467,4.74 +2016-03-03 23:17:00,22.8625,179.52,4.74 +2016-03-03 23:32:00,22.1875,179.275,4.72 +2016-03-03 23:47:00,23.975,179.307,4.71 +2016-03-04 00:02:00,23.5925,178.952,4.71 +2016-03-04 00:17:00,21.8463,179.202,4.7 +2016-03-04 00:32:00,23.5912,179.26,4.7 +2016-03-04 00:47:00,23.6375,179.197,4.68 +2016-03-04 01:02:00,23.295,179.353,4.65 +2016-03-04 01:17:00,23.8337,179.387,4.63 +2016-03-04 01:32:00,22.8625,179.922,4.61 +2016-03-04 01:47:00,22.33,179.86,4.59 +2016-03-04 02:02:00,22.5212,179.997,4.56 +2016-03-04 02:17:00,21.9475,179.927,4.53 +2016-03-04 02:32:00,21.5037,179.71,4.5 +2016-03-04 02:47:00,21.3037,179.702,4.47 +2016-03-04 03:02:00,22.7675,179.732,4.45 +2016-03-04 03:17:00,24.1663,179.425,4.4 +2016-03-04 03:32:00,22.8138,179.64,4.36 +2016-03-04 03:47:00,23.0575,179.59,4.33 +2016-03-04 04:02:00,22.285,179.422,4.3 +2016-03-04 04:17:00,23.105,179.39,4.27 +2016-03-04 04:32:00,24.3225,179.527,4.23 +2016-03-04 04:47:00,22.0462,179.375,4.18 +2016-03-04 05:02:00,22.8175,179.51,4.14 +2016-03-04 05:17:00,21.745,179.625,4.11 +2016-03-04 05:32:00,21.4538,179.63,4.08 +2016-03-04 05:47:00,22.2862,179.792,4.05 +2016-03-04 06:02:00,21.995,179.48,4.02 +2016-03-04 06:17:00,23.3937,179.492,3.99 +2016-03-04 06:32:00,22.6725,179.32,3.97 +2016-03-04 06:47:00,23.785,179.365,3.95 +2016-03-04 07:02:00,22.57,179.022,3.95 +2016-03-04 07:17:00,23.2012,178.9,3.94 +2016-03-04 07:32:00,22.815,178.617,3.93 +2016-03-04 07:47:00,23.3925,178.542,3.94 +2016-03-04 08:02:00,23.4925,178.318,3.95 +2016-03-04 08:17:00,23.1075,178.288,3.98 +2016-03-04 08:32:00,22.6237,178.285,3.99 +2016-03-04 08:47:00,23.1475,178.305,4.0 +2016-03-04 09:02:00,23.4437,178.415,4.01 +2016-03-04 09:17:00,23.3925,178.46,4.03 +2016-03-04 09:32:00,22.57,178.345,4.05 +2016-03-04 09:47:00,22.3312,178.348,4.07 +2016-03-04 10:02:00,22.67,178.318,4.09 +2016-03-04 10:17:00,23.64,178.38,4.12 +2016-03-04 10:32:00,23.64,177.997,4.15 +2016-03-04 10:47:00,22.1413,178.197,4.19 +2016-03-04 11:02:00,22.5713,177.785,4.23 +2016-03-04 11:17:00,22.62,177.93,4.27 +2016-03-04 11:32:00,23.9762,177.755,4.32 +2016-03-04 11:47:00,22.8138,177.495,4.38 +2016-03-04 12:02:00,23.1025,177.353,4.44 +2016-03-04 12:17:00,23.1488,177.217,4.46 +2016-03-04 12:32:00,21.9962,177.22,4.5 +2016-03-04 12:47:00,23.0563,176.742,4.55 +2016-03-04 13:02:00,22.425,176.462,4.6 +2016-03-04 13:17:00,21.8425,176.375,4.63 +2016-03-04 13:32:00,22.5713,176.305,4.67 +2016-03-04 13:47:00,23.0112,175.997,4.73 +2016-03-04 14:02:00,23.9725,176.052,4.77 +2016-03-04 14:17:00,23.1488,175.732,4.81 +2016-03-04 14:32:00,21.6437,175.39,4.84 +2016-03-04 14:47:00,24.525,175.533,4.85 +2016-03-04 15:02:00,22.6687,175.092,4.88 +2016-03-04 15:17:00,23.4938,174.967,4.9 +2016-03-04 15:32:00,22.0912,174.385,4.92 +2016-03-04 15:47:00,22.6175,174.432,4.94 +2016-03-04 16:02:00,24.2237,174.43,4.96 +2016-03-04 16:17:00,24.2237,174.577,4.97 +2016-03-04 16:32:00,23.6375,174.587,4.98 +2016-03-04 16:47:00,23.4412,174.837,4.98 +2016-03-04 17:02:00,23.5863,174.835,4.98 +2016-03-04 17:17:00,23.0125,174.85,4.99 +2016-03-04 17:32:00,23.5375,174.723,4.98 +2016-03-04 17:47:00,24.2213,174.76,4.99 +2016-03-04 18:02:00,20.0362,174.585,4.99 +2016-03-04 18:17:00,23.0587,174.467,4.98 +2016-03-04 18:32:00,21.645,174.432,4.97 +2016-03-04 18:47:00,22.2375,174.6,4.96 +2016-03-04 19:02:00,20.9562,174.505,4.96 +2016-03-04 19:17:00,23.3438,174.797,4.95 +2016-03-04 19:32:00,24.275,174.77,4.95 +2016-03-04 19:47:00,23.1987,174.955,4.93 +2016-03-04 20:02:00,23.01,175.08,4.92 +2016-03-04 20:17:00,22.8625,175.19,4.92 +2016-03-04 20:32:00,24.7687,175.27,4.91 +2016-03-04 20:47:00,21.45,175.207,4.91 +2016-03-04 21:02:00,22.6663,175.01,4.9 +2016-03-04 21:17:00,23.245,174.945,4.9 +2016-03-04 21:32:00,23.0112,174.982,4.92 +2016-03-04 21:47:00,21.3,174.862,4.9 +2016-03-04 22:02:00,22.525,174.943,4.88 +2016-03-04 22:17:00,23.105,175.13,4.86 +2016-03-04 22:32:00,21.695,175.292,4.84 +2016-03-04 22:47:00,22.38,175.452,4.84 +2016-03-04 23:02:00,22.9613,175.49,4.81 +2016-03-04 23:17:00,24.0725,175.432,4.8 +2016-03-04 23:32:00,22.8162,175.642,4.79 +2016-03-04 23:47:00,23.9737,175.647,4.79 +2016-03-05 00:02:00,22.72,175.253,4.79 +2016-03-05 00:17:00,22.38,175.408,4.79 +2016-03-05 00:32:00,22.1888,175.16,4.78 +2016-03-05 00:47:00,23.5387,175.473,4.77 +2016-03-05 01:02:00,23.06,175.392,4.76 +2016-03-05 01:17:00,22.8662,175.44,4.74 +2016-03-05 01:32:00,21.5525,175.515,4.73 +2016-03-05 01:47:00,23.6862,175.663,4.72 +2016-03-05 02:02:00,22.19,175.675,4.7 +2016-03-05 02:17:00,23.5912,175.77,4.69 +2016-03-05 02:32:00,24.2225,175.495,4.68 +2016-03-05 02:47:00,23.2425,175.34,4.67 +2016-03-05 03:02:00,22.0912,175.212,4.65 +2016-03-05 03:17:00,21.55,175.265,4.64 +2016-03-05 03:32:00,24.3763,175.082,4.64 +2016-03-05 03:47:00,20.7225,175.147,4.63 +2016-03-05 04:02:00,23.2925,175.577,4.62 +2016-03-05 04:17:00,23.8775,175.217,4.61 +2016-03-05 04:32:00,24.375,175.508,4.61 +2016-03-05 04:47:00,23.445,175.39,4.6 +2016-03-05 05:02:00,20.3337,175.385,4.6 +2016-03-05 05:17:00,23.1038,175.59,4.59 +2016-03-05 05:32:00,20.04,175.217,4.58 +2016-03-05 05:47:00,23.835,174.982,4.58 +2016-03-05 06:02:00,21.6488,174.913,4.57 +2016-03-05 06:17:00,24.475,174.825,4.56 +2016-03-05 06:32:00,22.9125,174.905,4.55 +2016-03-05 06:47:00,23.4463,174.932,4.55 +2016-03-05 07:02:00,23.1963,174.837,4.55 +2016-03-05 07:17:00,22.285,174.762,4.54 +2016-03-05 07:32:00,22.6212,174.533,4.53 +2016-03-05 07:47:00,21.505,174.637,4.54 +2016-03-05 08:02:00,22.2838,174.445,4.53 +2016-03-05 08:17:00,22.3325,174.47,4.55 +2016-03-05 08:32:00,24.12,174.762,4.55 +2016-03-05 08:47:00,22.19,174.883,4.55 +2016-03-05 09:02:00,22.9125,174.55,4.55 +2016-03-05 09:17:00,23.3387,174.568,4.57 +2016-03-05 09:32:00,23.1,174.65,4.56 +2016-03-05 09:47:00,22.4238,174.385,4.57 +2016-03-05 10:02:00,22.525,174.378,4.59 +2016-03-05 10:17:00,22.09,174.427,4.6 +2016-03-05 10:32:00,22.8162,174.473,4.62 +2016-03-05 10:47:00,23.5912,174.747,4.66 +2016-03-05 11:02:00,21.6987,174.568,4.69 +2016-03-05 11:17:00,21.5512,174.79,4.72 +2016-03-05 11:32:00,23.8825,174.688,4.74 +2016-03-05 11:47:00,23.4437,174.865,4.75 +2016-03-05 12:02:00,24.0725,174.685,4.77 +2016-03-05 12:17:00,21.5475,174.652,4.8 +2016-03-05 12:32:00,21.2513,174.44,4.82 +2016-03-05 12:47:00,22.6687,174.29,4.84 +2016-03-05 13:02:00,23.0575,174.405,4.85 +2016-03-05 13:17:00,22.3275,174.31,4.87 +2016-03-05 13:32:00,22.0888,174.405,4.88 +2016-03-05 13:47:00,22.285,174.605,4.91 +2016-03-05 14:02:00,23.1975,174.795,4.95 +2016-03-05 14:17:00,22.8637,174.253,4.98 +2016-03-05 14:32:00,22.5687,174.747,5.0 +2016-03-05 14:47:00,23.4425,174.482,5.01 +2016-03-05 15:02:00,22.815,174.61,5.04 +2016-03-05 15:17:00,22.8175,174.585,5.05 +2016-03-05 15:32:00,21.9912,174.457,5.06 +2016-03-05 15:47:00,22.0938,174.2,5.07 +2016-03-05 16:02:00,23.2412,174.012,5.09 +2016-03-05 16:17:00,22.285,173.967,5.11 +2016-03-05 16:32:00,22.4725,173.967,5.12 +2016-03-05 16:47:00,22.5225,174.312,5.13 +2016-03-05 17:02:00,24.525,174.32,5.13 +2016-03-05 17:17:00,22.6675,174.415,5.13 +2016-03-05 17:32:00,23.3438,174.628,5.14 +2016-03-05 17:47:00,23.01,174.615,5.15 +2016-03-05 18:02:00,21.7962,174.438,5.15 +2016-03-05 18:17:00,21.5975,174.35,5.15 +2016-03-05 18:32:00,22.8613,174.355,5.16 +2016-03-05 18:47:00,23.1912,174.103,5.16 +2016-03-05 19:02:00,23.6387,173.952,5.16 +2016-03-05 19:17:00,22.52,174.133,5.17 +2016-03-05 19:32:00,21.7962,173.982,5.17 +2016-03-05 19:47:00,22.4688,174.267,5.18 +2016-03-05 20:02:00,21.1575,174.307,5.18 +2016-03-05 20:17:00,22.9125,174.345,5.19 +2016-03-05 20:32:00,23.9225,174.517,5.19 +2016-03-05 20:47:00,21.8475,174.663,5.19 +2016-03-05 21:02:00,21.995,174.522,5.19 +2016-03-05 21:17:00,21.945,174.223,5.19 +2016-03-05 21:32:00,21.9437,174.362,5.2 +2016-03-05 21:47:00,22.8625,174.21,5.21 +2016-03-05 22:02:00,22.3787,174.045,5.2 +2016-03-05 22:17:00,23.0537,173.65,5.19 +2016-03-05 22:32:00,22.7687,173.747,5.19 +2016-03-05 22:47:00,22.135,173.785,5.19 +2016-03-05 23:02:00,22.4713,174.11,5.18 +2016-03-05 23:17:00,23.88,174.122,5.18 +2016-03-05 23:32:00,22.235,174.27,5.18 +2016-03-05 23:47:00,21.2038,173.967,5.18 +2016-03-06 00:02:00,23.2425,174.22,5.18 +2016-03-06 00:17:00,24.37,174.197,5.19 +2016-03-06 00:32:00,23.2425,174.14,5.19 +2016-03-06 00:47:00,21.845,173.705,5.18 +2016-03-06 01:02:00,24.075,173.665,5.17 +2016-03-06 01:17:00,21.6462,173.783,5.18 +2016-03-06 01:32:00,21.8463,173.688,5.17 +2016-03-06 01:47:00,21.005,173.825,5.17 +2016-03-06 02:02:00,23.0112,173.895,5.17 +2016-03-06 02:17:00,23.1513,173.853,5.16 +2016-03-06 02:32:00,22.2375,173.96,5.16 +2016-03-06 02:47:00,20.9575,174.135,5.17 +2016-03-06 03:02:00,21.9463,173.9,5.17 +2016-03-06 03:17:00,22.4238,174.038,5.17 +2016-03-06 03:32:00,21.1062,173.675,5.15 +2016-03-06 03:47:00,22.865,173.577,5.15 +2016-03-06 04:02:00,23.1,173.6,5.16 +2016-03-06 04:17:00,22.6687,173.367,5.16 +2016-03-06 04:32:00,23.2988,173.402,5.15 +2016-03-06 04:47:00,21.455,173.642,5.15 +2016-03-06 05:02:00,22.915,173.69,5.15 +2016-03-06 05:17:00,22.33,173.8,5.14 +2016-03-06 05:32:00,23.2462,173.835,5.14 +2016-03-06 05:47:00,23.39,173.802,5.14 +2016-03-06 06:02:00,22.0425,173.74,5.13 +2016-03-06 06:17:00,23.4425,173.702,5.13 +2016-03-06 06:32:00,21.6462,173.57,5.12 +2016-03-06 06:47:00,22.0912,173.53,5.12 +2016-03-06 07:02:00,23.15,173.145,5.12 +2016-03-06 07:17:00,23.69,173.115,5.12 +2016-03-06 07:32:00,22.7675,173.09,5.11 +2016-03-06 07:47:00,21.7438,173.145,5.1 +2016-03-06 08:02:00,24.0275,173.36,5.1 +2016-03-06 08:17:00,22.3275,173.503,5.1 +2016-03-06 08:32:00,23.8337,173.598,5.09 +2016-03-06 08:47:00,22.0425,173.128,5.09 +2016-03-06 09:02:00,23.9275,173.193,5.09 +2016-03-06 09:17:00,22.4775,173.18,5.1 +2016-03-06 09:32:00,23.8787,173.365,5.11 +2016-03-06 09:47:00,21.3037,173.182,5.11 +2016-03-06 10:02:00,21.5488,172.997,5.12 +2016-03-06 10:17:00,22.7213,173.25,5.12 +2016-03-06 10:32:00,23.7337,173.035,5.13 +2016-03-06 10:47:00,21.795,173.302,5.14 +2016-03-06 11:02:00,21.9437,173.052,5.17 +2016-03-06 11:17:00,21.895,173.422,5.2 +2016-03-06 11:32:00,22.8625,173.427,5.24 +2016-03-06 11:47:00,22.6675,173.497,5.25 +2016-03-06 12:02:00,24.3187,173.742,5.29 +2016-03-06 12:17:00,23.2925,173.395,5.31 +2016-03-06 12:32:00,22.5687,173.603,5.31 +2016-03-06 12:47:00,22.0875,173.522,5.31 +2016-03-06 13:02:00,23.1987,173.163,5.35 +2016-03-06 13:17:00,23.735,173.385,5.38 +2016-03-06 13:32:00,22.0425,173.02,5.4 +2016-03-06 13:47:00,22.8625,173.242,5.41 +2016-03-06 14:02:00,22.7175,173.36,5.43 +2016-03-06 14:17:00,23.9737,173.475,5.44 +2016-03-06 14:32:00,21.5013,173.315,5.46 +2016-03-06 14:47:00,21.155,173.637,5.47 +2016-03-06 15:02:00,23.6362,173.512,5.49 +2016-03-06 15:17:00,22.1413,173.598,5.5 +2016-03-06 15:32:00,23.385,173.427,5.5 +2016-03-06 15:47:00,21.7425,173.23,5.51 +2016-03-06 16:02:00,21.9975,173.277,5.51 +2016-03-06 16:17:00,20.3838,173.193,5.52 +2016-03-06 16:32:00,22.0437,172.862,5.51 +2016-03-06 16:47:00,23.2913,173.042,5.51 +2016-03-06 17:02:00,21.795,173.355,5.51 +2016-03-06 17:17:00,22.04,173.235,5.51 +2016-03-06 17:32:00,20.525,173.39,5.5 +2016-03-06 17:47:00,21.8438,173.365,5.5 +2016-03-06 18:02:00,22.0425,173.402,5.5 +2016-03-06 18:17:00,22.47,173.247,5.5 +2016-03-06 18:32:00,22.9137,172.832,5.5 +2016-03-06 18:47:00,21.2537,172.895,5.5 +2016-03-06 19:02:00,22.235,172.867,5.49 +2016-03-06 19:17:00,23.2937,172.747,5.49 +2016-03-06 19:32:00,23.245,172.812,5.48 +2016-03-06 19:47:00,22.8662,173.035,5.48 +2016-03-06 20:02:00,22.0437,172.85,5.47 +2016-03-06 20:17:00,21.895,173.145,5.47 +2016-03-06 20:32:00,22.6687,172.94,5.48 +2016-03-06 20:47:00,24.1212,173.212,5.49 +2016-03-06 21:02:00,21.995,173.117,5.49 +2016-03-06 21:17:00,22.285,172.797,5.5 +2016-03-06 21:32:00,21.5987,172.663,5.5 +2016-03-06 21:47:00,23.2962,172.89,5.52 +2016-03-06 22:02:00,22.8162,172.57,5.52 +2016-03-06 22:17:00,23.6862,172.68,5.53 +2016-03-06 22:32:00,22.045,172.557,5.52 +2016-03-06 22:47:00,22.57,172.28,5.51 +2016-03-06 23:02:00,21.9925,172.535,5.51 +2016-03-06 23:17:00,22.6188,172.785,5.51 +2016-03-06 23:32:00,23.3875,172.465,5.49 +2016-03-06 23:47:00,21.1562,172.467,5.48 +2016-03-07 00:02:00,22.0413,172.413,5.47 +2016-03-07 00:17:00,22.5175,172.297,5.47 +2016-03-07 00:32:00,22.4713,172.085,5.46 +2016-03-07 00:47:00,23.3937,171.905,5.46 +2016-03-07 01:02:00,21.1025,171.867,5.44 +2016-03-07 01:17:00,22.1888,171.815,5.41 +2016-03-07 01:32:00,22.3312,171.837,5.4 +2016-03-07 01:47:00,23.1062,171.96,5.39 +2016-03-07 02:02:00,22.865,171.857,5.37 +2016-03-07 02:17:00,21.5525,171.705,5.36 +2016-03-07 02:32:00,21.695,171.992,5.33 +2016-03-07 02:47:00,23.2487,171.805,5.31 +2016-03-07 03:02:00,22.4725,171.605,5.3 +2016-03-07 03:17:00,23.2925,171.413,5.27 +2016-03-07 03:32:00,21.9912,171.27,5.26 +2016-03-07 03:47:00,22.6675,171.25,5.23 +2016-03-07 04:02:00,21.745,171.38,5.21 +2016-03-07 04:17:00,21.1575,171.29,5.19 +2016-03-07 04:32:00,22.765,171.365,5.17 +2016-03-07 04:47:00,21.5963,171.4,5.15 +2016-03-07 05:02:00,22.8625,171.125,5.12 +2016-03-07 05:17:00,22.4212,171.265,5.1 +2016-03-07 05:32:00,23.4412,171.405,5.09 +2016-03-07 05:47:00,21.895,171.195,5.07 +2016-03-07 06:02:00,21.8425,171.012,5.05 +2016-03-07 06:17:00,23.105,171.087,5.03 +2016-03-07 06:32:00,22.6675,170.767,5.02 +2016-03-07 06:47:00,21.4062,170.772,5.0 +2016-03-07 07:02:00,21.795,170.62,4.99 +2016-03-07 07:17:00,24.2213,170.587,4.98 +2016-03-07 07:32:00,22.52,170.322,4.96 +2016-03-07 07:47:00,21.4512,170.27,4.96 +2016-03-07 08:02:00,21.5475,170.455,4.96 +2016-03-07 08:17:00,22.3775,170.397,4.96 +2016-03-07 08:32:00,22.3737,169.17,4.96 +2016-03-07 08:47:00,21.35,166.895,4.98 +2016-03-07 09:02:00,22.1387,165.872,5.0 +2016-03-07 09:17:00,21.8425,165.753,5.07 +2016-03-07 09:32:00,22.2825,165.772,5.15 +2016-03-07 09:47:00,22.5662,166.01,5.18 +2016-03-07 10:02:00,23.195,166.11,5.15 +2016-03-07 10:17:00,24.17,166.265,5.11 +2016-03-07 10:32:00,21.5475,166.688,5.11 +2016-03-07 10:47:00,23.2925,166.67,5.14 +2016-03-07 11:02:00,22.9088,167.087,5.19 +2016-03-07 11:17:00,21.6937,167.142,5.23 +2016-03-07 11:32:00,22.3775,167.557,5.22 +2016-03-07 11:47:00,21.7487,167.737,5.2 +2016-03-07 12:02:00,21.4975,167.832,5.22 +2016-03-07 12:17:00,22.7637,167.462,5.23 +2016-03-07 12:32:00,22.4713,167.267,5.24 +2016-03-07 12:47:00,21.645,167.04,5.26 +2016-03-07 13:02:00,23.4412,166.913,5.3 +2016-03-07 13:17:00,23.9737,166.788,5.34 +2016-03-07 13:32:00,23.3875,166.878,5.39 +2016-03-07 13:47:00,21.2038,166.413,5.47 +2016-03-07 14:02:00,21.5462,166.367,5.5 +2016-03-07 14:17:00,21.995,166.052,5.53 +2016-03-07 14:32:00,22.9613,165.927,5.53 +2016-03-07 14:47:00,21.4025,165.76,5.55 +2016-03-07 15:02:00,22.3763,165.655,5.53 +2016-03-07 15:17:00,23.59,165.387,5.49 +2016-03-07 15:32:00,21.3512,165.283,5.42 +2016-03-07 15:47:00,22.24,165.307,5.42 +2016-03-07 16:02:00,23.4388,165.595,5.41 +2016-03-07 16:17:00,22.7188,165.552,5.41 +2016-03-07 16:32:00,24.5737,165.587,5.37 +2016-03-07 16:47:00,22.0413,165.547,5.33 +2016-03-07 17:02:00,22.7637,165.46,5.29 +2016-03-07 17:17:00,21.895,165.362,5.27 +2016-03-07 17:32:00,20.5263,165.672,5.27 +2016-03-07 17:47:00,21.6925,165.59,5.29 +2016-03-07 18:02:00,22.235,165.325,5.29 +2016-03-07 18:17:00,22.6663,165.397,5.27 +2016-03-07 18:32:00,20.9538,165.342,5.27 +2016-03-07 18:47:00,21.9962,165.265,5.26 +2016-03-07 19:02:00,21.645,165.447,5.27 +2016-03-07 19:17:00,23.8337,165.395,5.27 +2016-03-07 19:32:00,22.6675,165.37,5.27 +2016-03-07 19:47:00,22.0888,165.65,5.27 +2016-03-07 20:02:00,22.3312,165.44,5.25 +2016-03-07 20:17:00,22.7687,165.535,5.23 +2016-03-07 20:32:00,21.645,165.85,5.2 +2016-03-07 20:47:00,20.8112,165.892,5.17 +2016-03-07 21:02:00,23.2425,166.057,5.15 +2016-03-07 21:17:00,22.96,166.142,5.11 +2016-03-07 21:32:00,23.3937,165.978,5.08 +2016-03-07 21:47:00,23.245,165.917,5.06 +2016-03-07 22:02:00,22.57,165.832,5.04 +2016-03-07 22:17:00,21.5963,165.545,5.02 +2016-03-07 22:32:00,22.47,165.635,5.0 +2016-03-07 22:47:00,23.3862,165.505,5.0 +2016-03-07 23:02:00,21.7937,165.482,4.98 +2016-03-07 23:17:00,22.62,165.45,4.96 +2016-03-07 23:32:00,23.295,165.45,4.93 +2016-03-07 23:47:00,22.1862,165.473,4.9 +2016-03-08 00:02:00,21.7962,165.435,4.86 +2016-03-08 00:17:00,20.765,165.315,4.81 +2016-03-08 00:32:00,23.1038,165.43,4.78 +2016-03-08 00:47:00,22.4287,165.527,4.74 +2016-03-08 01:02:00,21.3063,165.848,4.71 +2016-03-08 01:17:00,22.5687,165.89,4.66 +2016-03-08 01:32:00,23.8787,165.87,4.62 +2016-03-08 01:47:00,20.385,165.55,4.59 +2016-03-08 02:02:00,23.4425,165.715,4.58 +2016-03-08 02:17:00,23.7387,165.535,4.55 +2016-03-08 02:32:00,22.5713,165.452,4.53 +2016-03-08 02:47:00,22.0437,165.413,4.52 +2016-03-08 03:02:00,21.895,165.332,4.51 +2016-03-08 03:17:00,23.245,165.28,4.49 +2016-03-08 03:32:00,22.3288,165.055,4.48 +2016-03-08 03:47:00,23.3425,164.862,4.45 +2016-03-08 04:02:00,20.7675,164.973,4.42 +2016-03-08 04:17:00,22.0413,164.8,4.4 +2016-03-08 04:32:00,20.135,164.807,4.39 +2016-03-08 04:47:00,22.5187,164.7,4.38 +2016-03-08 05:02:00,22.1338,164.815,4.37 +2016-03-08 05:17:00,20.67,164.693,4.34 +2016-03-08 05:32:00,21.645,165.105,4.32 +2016-03-08 05:47:00,21.4562,165.008,4.29 +2016-03-08 06:02:00,22.1362,165.232,4.26 +2016-03-08 06:17:00,22.7663,165.225,4.24 +2016-03-08 06:32:00,22.1375,165.128,4.22 +2016-03-08 06:47:00,22.0888,164.765,4.2 +2016-03-08 07:02:00,22.815,165.255,4.18 +2016-03-08 07:17:00,22.4238,164.815,4.17 +2016-03-08 07:32:00,22.3288,164.88,4.17 +2016-03-08 07:47:00,23.7375,164.48,4.16 +2016-03-08 08:02:00,22.1875,164.475,4.14 +2016-03-08 08:17:00,22.09,164.265,4.15 +2016-03-08 08:32:00,22.6125,164.165,4.15 +2016-03-08 08:47:00,23.3913,164.445,4.16 +2016-03-08 09:02:00,22.52,164.122,4.16 +2016-03-08 09:17:00,22.185,164.467,4.16 +2016-03-08 09:32:00,22.765,164.48,4.18 +2016-03-08 09:47:00,12.0562,164.79,3.26 +2016-03-08 10:02:00,23.7825,164.872,4.23 +2016-03-08 10:08:36,23.7812,164.76,4.24 +2016-03-08 10:17:00,22.2588,164.895,4.26 +2016-03-08 10:32:00,22.5225,165.0,4.28 +2016-03-08 10:47:00,21.505,164.767,4.32 +2016-03-08 11:02:00,23.4437,164.94,4.34 +2016-03-08 11:17:00,23.7838,164.413,4.36 +2016-03-08 11:32:00,23.5837,164.52,4.4 +2016-03-08 11:47:00,23.44,164.497,4.45 +2016-03-08 12:02:00,24.2712,164.45,4.43 +2016-03-08 12:17:00,23.1475,164.582,4.46 +2016-03-08 12:32:00,21.6937,164.158,4.47 +2016-03-08 12:47:00,22.3288,164.35,4.49 +2016-03-08 13:02:00,24.7663,164.232,4.52 +2016-03-08 13:17:00,23.9262,164.262,4.58 +2016-03-08 13:32:00,24.7663,164.16,4.67 +2016-03-08 13:47:00,22.2838,164.027,4.73 +2016-03-08 14:02:00,22.1888,164.27,4.77 +2016-03-08 14:17:00,22.525,164.06,4.79 +2016-03-08 14:32:00,23.0125,164.145,4.81 +2016-03-08 14:47:00,22.3725,163.96,4.84 +2016-03-08 15:02:00,22.5687,163.815,4.87 +2016-03-08 15:17:00,22.4225,164.02,4.89 +2016-03-08 15:32:00,21.5475,163.805,4.89 +2016-03-08 15:47:00,20.525,163.822,4.89 +2016-03-08 16:02:00,21.995,163.655,4.91 +2016-03-08 16:17:00,20.955,163.672,4.91 +2016-03-08 16:32:00,22.2363,163.443,4.9 +2016-03-08 16:47:00,23.1,163.552,4.9 +2016-03-08 17:02:00,20.6237,163.777,4.92 +2016-03-08 17:17:00,22.765,163.58,4.93 +2016-03-08 17:32:00,22.7188,163.642,4.95 +2016-03-08 17:47:00,22.2838,163.367,4.94 +2016-03-08 18:02:00,24.1675,163.68,4.94 +2016-03-08 18:17:00,24.025,163.71,4.93 +2016-03-08 18:32:00,21.1012,163.915,4.93 +2016-03-08 18:47:00,21.2537,163.807,4.92 +2016-03-08 19:02:00,24.1188,163.6,4.93 +2016-03-08 19:17:00,21.7925,163.84,4.92 +2016-03-08 19:32:00,23.39,163.46,4.91 +2016-03-08 19:47:00,22.135,163.447,4.9 +2016-03-08 20:02:00,22.4713,163.202,4.89 +2016-03-08 20:17:00,21.6937,163.288,4.89 +2016-03-08 20:32:00,22.5725,163.212,4.87 +2016-03-08 20:47:00,23.0563,163.2,4.85 +2016-03-08 21:02:00,21.9,163.008,4.81 +2016-03-08 21:17:00,20.9562,163.125,4.78 +2016-03-08 21:32:00,21.355,163.045,4.75 +2016-03-08 21:47:00,21.3025,163.142,4.72 +2016-03-08 22:02:00,21.05,163.253,4.68 +2016-03-08 22:17:00,21.9463,162.997,4.65 +2016-03-08 22:32:00,20.8138,162.975,4.61 +2016-03-08 22:47:00,20.4788,162.73,4.57 +2016-03-08 23:02:00,22.52,162.772,4.53 +2016-03-08 23:17:00,20.72,163.165,4.5 +2016-03-08 23:32:00,20.815,163.275,4.44 +2016-03-08 23:47:00,21.2025,163.28,4.41 +2016-03-09 00:02:00,22.9125,163.277,4.38 +2016-03-09 00:17:00,21.7975,163.065,4.36 +2016-03-09 00:32:00,22.5713,162.902,4.33 +2016-03-09 00:47:00,20.8575,163.035,4.29 +2016-03-09 01:02:00,22.6725,162.967,4.26 +2016-03-09 01:17:00,20.5275,162.84,4.23 +2016-03-09 01:32:00,20.7225,162.84,4.21 +2016-03-09 01:47:00,21.7438,162.772,4.18 +2016-03-09 02:02:00,22.3787,162.68,4.18 +2016-03-09 02:17:00,21.005,162.555,4.15 +2016-03-09 02:32:00,21.5037,162.777,4.12 +2016-03-09 02:47:00,23.6413,162.628,4.1 +2016-03-09 03:02:00,22.62,162.42,4.09 +2016-03-09 03:17:00,21.0537,162.47,4.07 +2016-03-09 03:32:00,23.6875,162.652,4.03 +2016-03-09 03:47:00,22.77,162.665,4.01 +2016-03-09 04:02:00,23.0112,162.915,3.99 +2016-03-09 04:17:00,22.285,162.88,3.97 +2016-03-09 04:32:00,21.3562,163.025,3.94 +2016-03-09 04:47:00,21.595,163.04,3.9 +2016-03-09 05:02:00,22.425,162.822,3.88 +2016-03-09 05:17:00,22.8112,162.797,3.86 +2016-03-09 05:32:00,21.1525,162.58,3.84 +2016-03-09 05:47:00,21.5963,162.508,3.82 +2016-03-09 06:02:00,21.595,162.42,3.8 +2016-03-09 06:17:00,21.5963,162.345,3.78 +2016-03-09 06:32:00,21.9925,162.475,3.79 +2016-03-09 06:47:00,21.3063,162.723,3.8 +2016-03-09 07:02:00,22.3275,162.503,3.8 +2016-03-09 07:17:00,21.9887,162.875,3.8 +2016-03-09 07:32:00,21.8412,162.947,3.79 +2016-03-09 07:47:00,21.35,162.725,3.78 +2016-03-09 08:02:00,22.7162,162.625,3.78 +2016-03-09 08:17:00,20.0888,162.682,3.79 +2016-03-09 08:32:00,22.4225,162.64,3.79 +2016-03-09 08:47:00,20.8538,162.44,3.8 +2016-03-09 09:02:00,20.085,162.628,3.81 +2016-03-09 09:17:00,21.3,162.397,3.82 +2016-03-09 09:32:00,23.34,162.29,3.83 +2016-03-09 09:47:00,23.1012,162.325,3.85 +2016-03-09 10:02:00,21.0013,162.31,3.89 +2016-03-09 10:17:00,22.3775,162.307,3.9 +2016-03-09 10:32:00,22.2838,161.945,3.94 +2016-03-09 10:47:00,22.3737,162.73,3.97 +2016-03-09 11:02:00,21.305,162.747,4.01 +2016-03-09 11:17:00,20.7213,162.527,4.05 +2016-03-09 11:32:00,20.8575,162.39,4.1 +2016-03-09 11:47:00,22.52,162.172,4.12 +2016-03-09 12:02:00,21.4987,162.457,4.18 +2016-03-09 12:17:00,22.5187,162.73,4.25 +2016-03-09 12:32:00,22.33,162.512,4.29 +2016-03-09 12:47:00,21.845,162.255,4.35 +2016-03-09 13:02:00,21.5488,162.405,4.4 +2016-03-09 13:17:00,22.18,162.297,4.46 +2016-03-09 13:32:00,22.96,161.947,4.47 +2016-03-09 13:47:00,21.745,162.115,4.49 +2016-03-09 14:02:00,24.32,161.865,4.54 +2016-03-09 14:17:00,21.1537,161.425,4.55 +2016-03-09 14:32:00,23.685,161.505,4.55 +2016-03-09 14:47:00,21.7925,161.585,4.58 +2016-03-09 15:02:00,20.3787,161.44,4.63 +2016-03-09 15:17:00,21.6437,161.337,4.69 +2016-03-09 15:32:00,20.765,161.117,4.74 +2016-03-09 15:47:00,21.6,161.232,4.79 +2016-03-09 16:02:00,22.3763,161.432,4.82 +2016-03-09 16:17:00,21.8425,161.525,4.84 +2016-03-09 16:32:00,20.855,161.503,4.85 +2016-03-09 16:47:00,21.6925,161.6,4.86 +2016-03-09 17:02:00,22.0875,161.438,4.88 +2016-03-09 17:17:00,21.4512,161.152,4.86 +2016-03-09 17:32:00,23.5375,161.25,4.84 +2016-03-09 17:47:00,23.15,161.13,4.84 +2016-03-09 18:02:00,21.5037,161.212,4.82 +2016-03-09 18:17:00,22.5238,160.81,4.8 +2016-03-09 18:32:00,23.785,161.19,4.79 +2016-03-09 18:47:00,21.5987,160.635,4.77 +2016-03-09 19:02:00,20.4788,160.775,4.75 +2016-03-09 19:17:00,21.7988,160.92,4.73 +2016-03-09 19:32:00,23.1513,160.815,4.7 +2016-03-09 19:47:00,21.105,160.712,4.67 +2016-03-09 20:02:00,21.79,160.45,4.64 +2016-03-09 20:17:00,22.6162,160.685,4.61 +2016-03-09 20:32:00,21.3525,160.647,4.59 +2016-03-09 20:47:00,20.6725,160.777,4.57 +2016-03-09 21:02:00,23.1963,161.055,4.54 +2016-03-09 21:17:00,23.1488,160.745,4.52 +2016-03-09 21:32:00,22.3763,160.855,4.5 +2016-03-09 21:47:00,21.2525,160.637,4.48 +2016-03-09 22:02:00,19.5563,160.555,4.45 +2016-03-09 22:17:00,21.7925,160.69,4.43 +2016-03-09 22:32:00,20.6725,160.592,4.41 +2016-03-09 22:47:00,22.33,160.072,4.38 +2016-03-09 23:02:00,22.91,160.223,4.35 +2016-03-09 23:17:00,21.99,159.965,4.3 +2016-03-09 23:32:00,22.8175,159.747,4.28 +2016-03-09 23:47:00,20.8112,160.22,4.25 +2016-03-10 00:02:00,23.0088,160.172,4.23 +2016-03-10 00:17:00,21.3037,159.947,4.21 +2016-03-10 00:32:00,22.57,159.927,4.19 +2016-03-10 00:47:00,21.3037,159.822,4.17 +2016-03-10 01:02:00,21.945,159.545,4.15 +2016-03-10 01:17:00,20.5263,159.675,4.14 +2016-03-10 01:32:00,23.39,159.867,4.13 +2016-03-10 01:47:00,23.055,160.25,4.12 +2016-03-10 02:02:00,20.43,160.247,4.12 +2016-03-10 02:17:00,21.3037,160.225,4.11 +2016-03-10 02:32:00,23.5875,159.93,4.1 +2016-03-10 02:47:00,21.795,159.785,4.1 +2016-03-10 03:02:00,22.1437,159.93,4.09 +2016-03-10 03:17:00,22.9613,159.675,4.07 +2016-03-10 03:32:00,23.3412,159.482,4.07 +2016-03-10 03:47:00,20.6712,159.467,4.07 +2016-03-10 04:02:00,22.7188,159.355,4.07 +2016-03-10 04:17:00,23.1925,159.422,4.06 +2016-03-10 04:32:00,21.2525,159.485,4.05 +2016-03-10 04:47:00,20.035,159.413,4.05 +2016-03-10 05:02:00,21.0075,159.292,4.05 +2016-03-10 05:17:00,22.185,159.202,4.05 +2016-03-10 05:32:00,21.1525,159.35,4.05 +2016-03-10 05:47:00,21.155,159.417,4.05 +2016-03-10 06:02:00,22.0413,159.22,4.04 +2016-03-10 06:17:00,21.405,159.342,4.04 +2016-03-10 06:32:00,22.7213,159.545,4.04 +2016-03-10 06:47:00,22.1387,159.475,4.04 +2016-03-10 07:02:00,22.0875,159.158,4.05 +2016-03-10 07:17:00,23.3425,159.385,4.04 +2016-03-10 07:32:00,21.3538,159.32,4.04 +2016-03-10 07:47:00,22.9587,159.235,4.03 +2016-03-10 08:02:00,22.4225,159.092,4.03 +2016-03-10 08:17:00,21.4525,159.197,4.04 +2016-03-10 08:32:00,21.45,159.215,4.03 +2016-03-10 08:47:00,22.6712,158.98,4.04 +2016-03-10 09:02:00,21.9425,159.068,4.03 +2016-03-10 09:17:00,21.2012,159.045,4.04 +2016-03-10 09:32:00,22.3737,159.015,4.04 +2016-03-10 09:47:00,21.845,158.87,4.05 +2016-03-10 10:02:00,20.8575,158.978,4.05 +2016-03-10 10:17:00,22.3262,159.042,4.04 +2016-03-10 10:32:00,21.595,158.93,4.05 +2016-03-10 10:47:00,21.2525,159.035,4.08 +2016-03-10 11:02:00,22.2363,158.938,4.1 +2016-03-10 11:17:00,21.0525,158.92,4.12 +2016-03-10 11:32:00,22.6637,158.975,4.13 +2016-03-10 11:47:00,21.2012,159.348,4.13 +2016-03-10 12:02:00,21.895,159.38,4.14 +2016-03-10 12:17:00,22.96,159.335,4.14 +2016-03-10 12:32:00,21.5512,159.068,4.15 +2016-03-10 12:47:00,20.5725,159.17,4.14 +2016-03-10 13:02:00,20.525,159.085,4.15 +2016-03-10 13:17:00,21.0025,159.075,4.17 +2016-03-10 13:32:00,22.19,158.642,4.18 +2016-03-10 13:47:00,21.205,158.723,4.19 +2016-03-10 14:02:00,20.9575,158.767,4.2 +2016-03-10 14:17:00,22.6675,158.505,4.24 +2016-03-10 14:32:00,23.4412,158.737,4.27 +2016-03-10 14:47:00,22.6162,158.568,4.28 +2016-03-10 15:02:00,20.5788,158.568,4.3 +2016-03-10 15:17:00,22.52,158.497,4.3 +2016-03-10 15:32:00,21.305,158.307,4.3 +2016-03-10 15:47:00,23.245,158.557,4.3 +2016-03-10 16:02:00,19.3087,158.217,4.31 +2016-03-10 16:17:00,19.2588,158.365,4.32 +2016-03-10 16:32:00,20.9075,158.51,4.32 +2016-03-10 16:47:00,21.4013,158.547,4.33 +2016-03-10 17:02:00,21.845,158.747,4.34 +2016-03-10 17:17:00,20.38,158.747,4.35 +2016-03-10 17:32:00,20.9562,158.848,4.35 +2016-03-10 17:47:00,22.375,158.945,4.35 +2016-03-10 18:02:00,21.5912,158.947,4.35 +2016-03-10 18:17:00,21.5963,158.705,4.35 +2016-03-10 18:32:00,21.3525,158.542,4.35 +2016-03-10 18:47:00,20.8538,158.497,4.34 +2016-03-10 19:02:00,21.5975,158.367,4.35 +2016-03-10 19:17:00,22.7175,158.283,4.35 +2016-03-10 19:32:00,21.5,158.19,4.35 +2016-03-10 19:47:00,20.91,157.913,4.35 +2016-03-10 20:02:00,20.085,157.93,4.36 +2016-03-10 20:17:00,21.3025,157.848,4.36 +2016-03-10 20:32:00,23.5387,157.872,4.35 +2016-03-10 20:47:00,20.7637,157.88,4.34 +2016-03-10 21:02:00,23.1025,157.615,4.34 +2016-03-10 21:17:00,21.2012,157.497,4.36 +2016-03-10 21:32:00,21.9925,157.55,4.37 +2016-03-10 21:47:00,19.7487,157.52,4.37 +2016-03-10 22:02:00,20.6237,157.637,4.39 +2016-03-10 22:17:00,20.6687,157.592,4.41 +2016-03-10 22:32:00,22.235,157.837,4.41 +2016-03-10 22:47:00,21.745,157.952,4.41 +2016-03-10 23:02:00,21.5462,157.802,4.41 +2016-03-10 23:17:00,20.3325,157.91,4.41 +2016-03-10 23:32:00,21.745,157.672,4.4 +2016-03-10 23:47:00,22.9088,157.482,4.41 +2016-03-11 00:02:00,22.2363,157.415,4.42 +2016-03-11 00:17:00,19.075,157.37,4.42 +2016-03-11 00:32:00,21.4062,157.37,4.42 +2016-03-11 00:47:00,22.7612,157.035,4.42 +2016-03-11 01:02:00,22.5263,157.09,4.41 +2016-03-11 01:17:00,19.99,156.822,4.42 +2016-03-11 01:32:00,21.1038,157.1,4.42 +2016-03-11 01:47:00,21.5488,156.885,4.42 +2016-03-11 02:02:00,23.7862,157.06,4.42 +2016-03-11 02:17:00,22.1425,157.005,4.41 +2016-03-11 02:32:00,23.7838,157.115,4.41 +2016-03-11 02:47:00,21.4037,157.19,4.41 +2016-03-11 03:02:00,22.52,157.09,4.41 +2016-03-11 03:17:00,21.55,156.935,4.4 +2016-03-11 03:32:00,21.4512,156.89,4.4 +2016-03-11 03:47:00,20.085,156.67,4.4 +2016-03-11 04:02:00,22.675,156.605,4.4 +2016-03-11 04:17:00,19.5525,156.735,4.39 +2016-03-11 04:32:00,22.185,156.728,4.38 +2016-03-11 04:47:00,21.1562,156.457,4.37 +2016-03-11 05:02:00,21.6925,156.247,4.37 +2016-03-11 05:17:00,21.8438,156.228,4.37 +2016-03-11 05:32:00,21.2562,156.158,4.36 +2016-03-11 05:47:00,22.8625,156.23,4.36 +2016-03-11 06:02:00,21.1038,156.34,4.34 +2016-03-11 06:17:00,21.0025,155.922,4.33 +2016-03-11 06:32:00,21.9437,156.3,4.33 +2016-03-11 06:47:00,21.2513,156.005,4.33 +2016-03-11 07:02:00,22.91,156.292,4.35 +2016-03-11 07:17:00,21.8425,156.575,4.33 +2016-03-11 07:32:00,22.5687,155.935,4.31 +2016-03-11 07:47:00,22.8625,155.902,4.31 +2016-03-11 08:02:00,22.47,155.815,4.3 +2016-03-11 08:17:00,20.8087,155.512,4.3 +2016-03-11 08:32:00,21.5037,155.348,4.29 +2016-03-11 08:47:00,22.1375,155.387,4.29 +2016-03-11 09:02:00,22.09,155.125,4.28 +2016-03-11 09:17:00,20.6263,154.945,4.27 +2016-03-11 09:32:00,21.845,155.01,4.27 +2016-03-11 09:47:00,21.05,154.715,4.27 +2016-03-11 10:02:00,21.9425,154.487,4.27 +2016-03-11 10:17:00,22.375,154.457,4.27 +2016-03-11 10:32:00,21.595,154.232,4.27 +2016-03-11 10:47:00,21.2025,153.938,4.28 +2016-03-11 11:02:00,23.8288,153.995,4.28 +2016-03-11 11:17:00,21.5025,153.253,4.28 +2016-03-11 11:32:00,21.2012,152.943,4.29 +2016-03-11 11:47:00,21.4525,152.44,4.3 +2016-03-11 12:02:00,22.2862,151.572,4.3 +2016-03-11 12:17:00,22.3763,150.91,4.33 +2016-03-11 12:32:00,21.6912,150.06,4.37 +2016-03-11 12:47:00,22.3288,149.385,4.41 +2016-03-11 13:02:00,21.3025,148.622,4.43 +2016-03-11 13:17:00,20.23,148.027,4.42 +2016-03-11 13:32:00,20.7175,147.79,4.4 +2016-03-11 13:47:00,22.9625,147.18,4.39 +2016-03-11 14:02:00,20.0863,146.49,4.4 +2016-03-11 14:17:00,21.84,145.872,4.43 +2016-03-11 14:32:00,22.09,145.337,4.45 +2016-03-11 14:47:00,21.55,145.008,4.45 +2016-03-11 15:02:00,21.3,144.607,4.47 +2016-03-11 15:17:00,19.8962,144.415,4.5 +2016-03-11 15:32:00,22.2363,144.087,4.5 +2016-03-11 15:47:00,23.1025,144.132,4.5 +2016-03-11 16:02:00,22.4238,144.152,4.52 +2016-03-11 16:17:00,21.5488,144.057,4.53 +2016-03-11 16:32:00,23.1987,143.923,4.54 +2016-03-11 16:47:00,21.595,144.152,4.55 +2016-03-11 17:02:00,21.4538,144.152,4.55 +2016-03-11 17:17:00,21.7438,144.235,4.55 +2016-03-11 17:32:00,22.865,144.555,4.55 +2016-03-11 17:47:00,23.1025,144.837,4.55 +2016-03-11 18:02:00,22.285,144.877,4.56 +2016-03-11 18:17:00,20.3363,145.212,4.55 +2016-03-11 18:32:00,21.3037,145.473,4.55 +2016-03-11 18:47:00,21.5925,145.52,4.55 +2016-03-11 19:02:00,21.895,145.818,4.56 +2016-03-11 19:17:00,20.4287,146.105,4.56 +2016-03-11 19:32:00,21.5037,146.447,4.55 +2016-03-11 19:47:00,21.5987,146.572,4.56 +2016-03-11 20:02:00,20.8575,146.75,4.55 +2016-03-11 20:17:00,20.7175,146.79,4.55 +2016-03-11 20:32:00,22.425,147.112,4.54 +2016-03-11 20:47:00,21.1575,147.115,4.52 +2016-03-11 21:02:00,21.1575,147.253,4.51 +2016-03-11 21:17:00,22.2812,147.21,4.51 +2016-03-11 21:32:00,22.86,147.35,4.51 +2016-03-11 21:47:00,21.6475,147.372,4.5 +2016-03-11 22:02:00,21.5037,147.533,4.49 +2016-03-11 22:17:00,22.0362,147.575,4.49 +2016-03-11 22:32:00,21.2025,147.712,4.48 +2016-03-11 22:47:00,21.5975,147.697,4.48 +2016-03-11 23:02:00,21.9437,147.75,4.49 +2016-03-11 23:17:00,22.2363,147.575,4.47 +2016-03-11 23:32:00,21.355,147.805,4.46 +2016-03-11 23:47:00,20.035,147.717,4.47 +2016-03-12 00:02:00,19.65,147.81,4.48 +2016-03-12 00:17:00,20.7625,147.792,4.47 +2016-03-12 00:32:00,22.3737,147.58,4.46 +2016-03-12 00:47:00,21.1537,147.378,4.47 +2016-03-12 01:02:00,21.4538,147.43,4.49 +2016-03-12 01:17:00,21.895,147.47,4.51 +2016-03-12 01:32:00,21.5013,147.61,4.5 +2016-03-12 01:47:00,21.4525,147.79,4.51 +2016-03-12 02:02:00,22.4225,147.922,4.5 +2016-03-12 02:17:00,20.8562,147.85,4.5 +2016-03-12 02:32:00,22.3288,147.658,4.5 +2016-03-12 02:47:00,21.8937,147.712,4.51 +2016-03-12 03:02:00,21.105,147.887,4.5 +2016-03-12 03:17:00,23.4938,147.45,4.5 +2016-03-12 03:32:00,18.9725,147.342,4.51 +2016-03-12 03:47:00,21.6462,147.245,4.52 +2016-03-12 04:02:00,20.2325,147.337,4.53 +2016-03-12 04:17:00,19.405,147.265,4.52 +2016-03-12 04:32:00,20.9525,147.253,4.53 +2016-03-12 04:47:00,22.6663,146.927,4.52 +2016-03-12 05:02:00,22.4262,146.848,4.51 +2016-03-12 05:17:00,19.65,146.865,4.52 +2016-03-12 05:32:00,21.0025,146.802,4.53 +2016-03-12 05:47:00,21.3037,146.935,4.52 +2016-03-12 06:02:00,21.255,146.725,4.52 +2016-03-12 06:17:00,18.78,146.71,4.51 +2016-03-12 06:32:00,18.535,146.642,4.52 +2016-03-12 06:47:00,19.6975,146.577,4.52 +2016-03-12 07:02:00,21.5963,146.622,4.51 +2016-03-12 07:17:00,20.8112,145.212,4.52 +2016-03-12 07:32:00,18.9225,142.627,4.52 +2016-03-12 07:47:00,19.8975,141.625,4.54 +2016-03-12 08:02:00,20.675,141.048,4.55 +2016-03-12 08:17:00,22.235,140.945,4.56 +2016-03-12 08:32:00,22.67,141.195,4.58 +2016-03-12 08:47:00,22.3288,141.165,4.58 +2016-03-12 09:02:00,21.6937,141.845,4.56 +2016-03-12 09:17:00,21.4987,141.962,4.55 +2016-03-12 09:32:00,22.4675,142.225,4.56 +2016-03-12 09:47:00,20.085,142.777,4.59 +2016-03-12 10:02:00,21.9412,143.147,4.62 +2016-03-12 10:17:00,19.8975,143.502,4.63 +2016-03-12 10:32:00,21.9437,143.775,4.67 +2016-03-12 10:47:00,20.9062,144.312,4.7 +2016-03-12 11:02:00,22.2337,144.572,4.73 +2016-03-12 11:17:00,21.9463,144.46,4.74 +2016-03-12 11:32:00,23.0575,144.577,4.76 +2016-03-12 11:47:00,23.0575,144.527,4.79 +2016-03-12 12:02:00,19.8475,144.235,4.8 +2016-03-12 12:17:00,21.6937,144.005,4.82 +2016-03-12 12:32:00,22.8625,143.927,4.85 +2016-03-12 12:47:00,20.9062,143.717,4.86 +2016-03-12 13:02:00,23.3412,143.51,4.88 +2016-03-12 13:17:00,21.5963,143.2,4.89 +2016-03-12 13:32:00,20.9037,143.34,4.89 +2016-03-12 13:47:00,20.135,143.112,4.9 +2016-03-12 14:02:00,20.9562,143.145,4.9 +2016-03-12 14:17:00,22.6687,142.965,4.9 +2016-03-12 14:32:00,21.3,142.9,4.9 +2016-03-12 14:47:00,20.81,142.522,4.9 +2016-03-12 15:02:00,20.67,142.423,4.87 +2016-03-12 15:17:00,22.6663,142.355,4.8 +2016-03-12 15:32:00,22.1862,142.367,4.79 +2016-03-12 15:47:00,21.3538,142.505,4.82 +2016-03-12 16:02:00,22.2337,142.535,4.88 +2016-03-12 16:17:00,21.25,142.685,4.88 +2016-03-12 16:32:00,21.0525,142.69,4.86 +2016-03-12 16:47:00,20.9538,142.768,4.85 +2016-03-12 17:02:00,20.9062,142.688,4.84 +2016-03-12 17:17:00,19.6012,142.775,4.82 +2016-03-12 17:32:00,21.9912,142.65,4.82 +2016-03-12 17:47:00,21.3,142.727,4.8 +2016-03-12 18:02:00,21.3487,142.822,4.79 +2016-03-12 18:17:00,20.6738,143.015,4.78 +2016-03-12 18:32:00,21.99,142.997,4.78 +2016-03-12 18:47:00,21.8438,143.042,4.77 +2016-03-12 19:02:00,20.6675,143.39,4.78 +2016-03-12 19:17:00,21.7925,143.495,4.77 +2016-03-12 19:32:00,21.6925,143.58,4.77 +2016-03-12 19:47:00,21.2975,143.572,4.76 +2016-03-12 20:02:00,20.52,143.66,4.76 +2016-03-12 20:17:00,20.1813,143.527,4.76 +2016-03-12 20:32:00,22.0362,143.548,4.74 +2016-03-12 20:47:00,22.2812,143.445,4.73 +2016-03-12 21:02:00,21.8937,143.6,4.73 +2016-03-12 21:17:00,21.7425,143.495,4.74 +2016-03-12 21:32:00,20.8575,143.682,4.74 +2016-03-12 21:47:00,21.0475,143.637,4.73 +2016-03-12 22:02:00,22.7637,143.567,4.72 +2016-03-12 22:17:00,22.2812,143.548,4.71 +2016-03-12 22:32:00,22.8138,143.495,4.7 +2016-03-12 22:47:00,22.0863,143.535,4.7 +2016-03-12 23:02:00,21.9925,143.6,4.68 +2016-03-12 23:17:00,21.6475,143.337,4.67 +2016-03-12 23:32:00,20.525,143.342,4.65 +2016-03-12 23:47:00,21.5025,143.283,4.65 +2016-03-13 00:02:00,22.0387,143.465,4.64 +2016-03-13 00:17:00,21.1025,143.477,4.63 +2016-03-13 00:32:00,21.45,143.36,4.63 +2016-03-13 00:47:00,21.2038,143.77,4.61 +2016-03-13 01:02:00,21.3512,143.86,4.57 +2016-03-13 01:17:00,21.3538,143.915,4.53 +2016-03-13 01:32:00,22.3288,143.895,4.53 +2016-03-13 01:47:00,19.5013,143.927,4.54 +2016-03-13 02:02:00,21.1575,143.827,4.55 +2016-03-13 02:17:00,21.6475,143.815,4.55 +2016-03-13 02:32:00,20.48,143.942,4.55 +2016-03-13 02:47:00,21.5975,143.912,4.54 +2016-03-13 03:02:00,21.355,143.787,4.53 +2016-03-13 03:17:00,19.4525,143.64,4.53 +2016-03-13 03:32:00,21.8925,143.812,4.53 +2016-03-13 03:47:00,20.3325,143.635,4.52 +2016-03-13 04:02:00,22.5687,143.81,4.51 +2016-03-13 04:17:00,21.405,143.697,4.51 +2016-03-13 04:32:00,20.4287,143.688,4.49 +2016-03-13 04:47:00,22.1875,143.622,4.47 +2016-03-13 05:02:00,21.5062,143.742,4.47 +2016-03-13 05:17:00,18.585,143.745,4.47 +2016-03-13 05:32:00,21.255,143.987,4.48 +2016-03-13 05:47:00,20.0837,143.985,4.46 +2016-03-13 06:02:00,20.7162,143.882,4.44 +2016-03-13 06:17:00,22.1888,143.94,4.44 +2016-03-13 06:32:00,24.6287,143.64,4.43 +2016-03-13 06:47:00,20.4762,143.9,4.42 +2016-03-13 07:02:00,22.3763,143.572,4.42 +2016-03-13 07:17:00,21.1038,143.307,4.39 +2016-03-13 07:32:00,23.34,143.632,4.38 +2016-03-13 07:47:00,22.2875,143.307,4.38 +2016-03-13 08:02:00,21.155,143.252,4.4 +2016-03-13 08:17:00,21.5963,143.185,4.42 +2016-03-13 08:32:00,19.8988,143.472,4.43 +2016-03-13 08:47:00,21.7425,143.095,4.45 +2016-03-13 09:02:00,21.0013,143.147,4.45 +2016-03-13 09:17:00,21.1038,143.015,4.4 +2016-03-13 09:32:00,20.5725,143.167,4.39 +2016-03-13 09:47:00,23.2937,143.065,4.4 +2016-03-13 10:02:00,21.3525,142.86,4.41 +2016-03-13 10:17:00,23.1513,142.715,4.41 +2016-03-13 10:32:00,22.3775,142.965,4.41 +2016-03-13 10:47:00,22.515,143.045,4.42 +2016-03-13 11:02:00,22.7637,143.055,4.44 +2016-03-13 11:17:00,21.2537,142.92,4.47 +2016-03-13 11:32:00,22.2363,142.955,4.5 +2016-03-13 11:47:00,21.9437,142.85,4.5 +2016-03-13 12:02:00,21.7913,142.905,4.51 +2016-03-13 12:17:00,21.4025,143.075,4.51 +2016-03-13 12:32:00,20.2825,143.235,4.52 +2016-03-13 12:47:00,21.3512,143.305,4.52 +2016-03-13 13:02:00,20.8575,143.015,4.53 +2016-03-13 13:17:00,18.8262,143.1,4.55 +2016-03-13 13:32:00,21.2025,143.16,4.56 +2016-03-13 13:47:00,21.3025,143.14,4.58 +2016-03-13 14:02:00,21.4512,143.025,4.6 +2016-03-13 14:17:00,21.9463,143.048,4.6 +2016-03-13 14:32:00,20.765,142.98,4.6 +2016-03-13 14:47:00,21.0537,142.742,4.6 +2016-03-13 15:02:00,20.7612,142.645,4.61 +2016-03-13 15:17:00,18.6312,142.798,4.61 +2016-03-13 15:32:00,21.2537,142.55,4.6 +2016-03-13 15:47:00,22.6188,142.712,4.6 +2016-03-13 16:02:00,23.0075,142.518,4.6 +2016-03-13 16:17:00,20.48,142.36,4.6 +2016-03-13 16:32:00,20.9075,142.435,4.6 +2016-03-13 16:47:00,22.8625,142.375,4.6 +2016-03-13 17:02:00,23.0125,142.222,4.59 +2016-03-13 17:17:00,20.3812,142.33,4.59 +2016-03-13 17:32:00,18.8763,142.533,4.59 +2016-03-13 17:47:00,23.9275,142.252,4.59 +2016-03-13 18:02:00,22.5212,142.35,4.57 +2016-03-13 18:17:00,23.06,142.255,4.57 +2016-03-13 18:32:00,23.5362,142.182,4.56 +2016-03-13 18:47:00,20.185,142.122,4.56 +2016-03-13 19:02:00,22.7213,142.377,4.56 +2016-03-13 19:17:00,20.7213,142.372,4.53 +2016-03-13 19:32:00,20.96,142.525,4.53 +2016-03-13 19:47:00,21.8962,142.43,4.52 +2016-03-13 20:02:00,23.3425,142.295,4.52 +2016-03-13 20:17:00,20.7675,142.36,4.54 +2016-03-13 20:32:00,20.7637,142.255,4.51 +2016-03-13 20:47:00,21.4538,142.062,4.49 +2016-03-13 21:02:00,21.3575,142.25,4.48 +2016-03-13 21:17:00,22.3763,142.09,4.48 +2016-03-13 21:32:00,21.9925,141.875,4.48 +2016-03-13 21:47:00,21.3512,141.643,4.47 +2016-03-13 22:02:00,20.1862,141.68,4.43 +2016-03-13 22:17:00,21.895,141.462,4.4 +2016-03-13 22:32:00,19.5025,141.442,4.39 +2016-03-13 22:47:00,20.4287,141.357,4.4 +2016-03-13 23:02:00,22.57,141.665,4.39 +2016-03-13 23:17:00,20.7188,141.387,4.37 +2016-03-13 23:32:00,20.4275,141.475,4.35 +2016-03-13 23:47:00,20.8138,141.472,4.34 +2016-03-14 00:02:00,20.8587,141.643,4.33 +2016-03-14 00:17:00,20.525,141.537,4.33 +2016-03-14 00:32:00,21.4025,141.71,4.32 +2016-03-14 00:47:00,20.0837,141.727,4.31 +2016-03-14 01:02:00,20.8112,141.81,4.31 +2016-03-14 01:17:00,22.2375,141.89,4.3 +2016-03-14 01:32:00,22.0912,141.902,4.29 +2016-03-14 01:47:00,23.4925,141.745,4.29 +2016-03-14 02:02:00,20.0888,141.942,4.27 +2016-03-14 02:17:00,21.5488,141.902,4.27 +2016-03-14 02:32:00,22.5212,141.902,4.26 +2016-03-14 02:47:00,21.255,141.78,4.25 +2016-03-14 03:02:00,22.3787,141.772,4.24 +2016-03-14 03:17:00,21.4538,141.725,4.23 +2016-03-14 03:32:00,21.1588,141.7,4.22 +2016-03-14 03:47:00,20.3337,141.66,4.2 +2016-03-14 04:02:00,21.105,141.447,4.19 +2016-03-14 04:17:00,22.235,141.3,4.18 +2016-03-14 04:32:00,21.005,141.28,4.17 +2016-03-14 04:47:00,22.2838,141.18,4.13 +2016-03-14 05:02:00,20.7625,141.307,4.12 +2016-03-14 05:17:00,20.0888,141.305,4.1 +2016-03-14 05:32:00,21.05,141.423,4.08 +2016-03-14 05:47:00,21.0025,141.252,4.07 +2016-03-14 06:02:00,21.995,141.087,4.05 +2016-03-14 06:17:00,21.99,141.107,4.04 +2016-03-14 06:32:00,21.9463,141.05,4.03 +2016-03-14 06:47:00,20.9062,140.965,4.0 +2016-03-14 07:02:00,22.2375,141.015,4.0 +2016-03-14 07:17:00,21.9925,141.037,4.0 +2016-03-14 07:32:00,22.0912,140.792,4.0 +2016-03-14 07:47:00,21.8925,140.802,4.01 +2016-03-14 08:02:00,20.8112,140.893,4.02 +2016-03-14 08:17:00,21.845,140.697,4.05 +2016-03-14 08:32:00,21.1562,140.485,4.08 +2016-03-14 08:47:00,21.005,140.615,4.1 +2016-03-14 09:02:00,21.895,140.438,4.13 +2016-03-14 09:17:00,22.8637,140.548,4.14 +2016-03-14 09:32:00,21.8962,140.393,4.17 +2016-03-14 09:47:00,21.3538,140.23,4.16 +2016-03-14 10:02:00,18.8288,140.502,4.19 +2016-03-14 10:17:00,19.945,140.587,4.2 +2016-03-14 10:32:00,21.695,140.74,4.23 +2016-03-14 10:47:00,20.6237,140.742,4.3 +2016-03-14 11:02:00,22.3787,140.637,4.38 +2016-03-14 11:17:00,20.86,140.432,4.44 +2016-03-14 11:32:00,21.5025,140.727,4.49 +2016-03-14 11:47:00,20.9538,140.447,4.54 +2016-03-14 12:02:00,22.5212,140.22,4.59 +2016-03-14 12:17:00,20.9587,140.145,4.63 +2016-03-14 12:32:00,20.9575,139.862,4.69 +2016-03-14 12:47:00,20.905,139.742,4.73 +2016-03-14 13:02:00,22.375,139.752,4.79 +2016-03-14 13:17:00,22.2875,139.51,4.84 +2016-03-14 13:32:00,22.4762,139.257,4.89 +2016-03-14 13:47:00,21.155,139.147,4.94 +2016-03-14 14:02:00,22.09,138.908,5.0 +2016-03-14 14:17:00,20.905,138.827,5.06 +2016-03-14 14:32:00,20.3838,138.622,5.11 +2016-03-14 14:47:00,22.235,138.505,5.15 +2016-03-14 15:02:00,22.8625,138.487,5.21 +2016-03-14 15:17:00,21.9487,138.47,5.27 +2016-03-14 15:32:00,20.6725,138.412,5.31 +2016-03-14 15:47:00,20.04,138.015,5.36 +2016-03-14 16:02:00,20.7637,137.942,5.41 +2016-03-14 16:17:00,21.3538,138.048,5.46 +2016-03-14 16:32:00,20.38,138.395,5.5 +2016-03-14 16:47:00,22.815,138.495,5.53 +2016-03-14 17:02:00,23.0112,138.587,5.54 +2016-03-14 17:17:00,22.5212,138.37,5.56 +2016-03-14 17:32:00,22.8162,138.352,5.54 +2016-03-14 17:47:00,22.5675,137.93,5.53 +2016-03-14 18:02:00,20.48,138.062,5.52 +2016-03-14 18:17:00,21.9475,138.21,5.52 +2016-03-14 18:32:00,21.35,138.135,5.52 +2016-03-14 18:47:00,21.4037,138.03,5.51 +2016-03-14 19:02:00,20.8625,137.855,5.48 +2016-03-14 19:17:00,21.8463,137.662,5.47 +2016-03-14 19:32:00,20.67,137.735,5.45 +2016-03-14 19:47:00,22.0413,137.832,5.44 +2016-03-14 20:02:00,21.2062,137.902,5.41 +2016-03-14 20:17:00,19.8012,137.923,5.4 +2016-03-14 20:32:00,21.9938,137.927,5.39 +2016-03-14 20:47:00,21.9475,137.992,5.37 +2016-03-14 21:02:00,20.43,138.212,5.35 +2016-03-14 21:17:00,23.105,137.965,5.34 +2016-03-14 21:32:00,22.2375,138.145,5.33 +2016-03-14 21:47:00,21.1038,138.09,5.32 +2016-03-14 22:02:00,21.2562,138.165,5.31 +2016-03-14 22:17:00,21.4562,138.177,5.29 +2016-03-14 22:32:00,20.5275,138.385,5.27 +2016-03-14 22:47:00,20.72,138.605,5.25 +2016-03-14 23:02:00,19.8012,138.877,5.23 +2016-03-14 23:17:00,21.6963,138.768,5.21 +2016-03-14 23:32:00,21.7962,138.757,5.19 +2016-03-14 23:47:00,20.2363,138.69,5.16 +2016-03-15 00:02:00,22.6725,138.815,5.16 +2016-03-15 00:17:00,19.655,138.695,5.15 +2016-03-15 00:32:00,23.3463,138.73,5.14 +2016-03-15 00:47:00,21.7438,138.832,5.13 +2016-03-15 01:02:00,21.505,138.83,5.13 +2016-03-15 01:17:00,21.4062,138.74,5.11 +2016-03-15 01:32:00,21.745,138.727,5.09 +2016-03-15 01:47:00,20.09,138.817,5.09 +2016-03-15 02:02:00,22.4762,138.7,5.09 +2016-03-15 02:17:00,21.355,138.557,5.08 +2016-03-15 02:32:00,21.7462,138.705,5.07 +2016-03-15 02:47:00,21.355,138.755,5.11 +2016-03-15 03:02:00,20.3825,139.143,5.08 +2016-03-15 03:17:00,21.75,139.127,5.06 +2016-03-15 03:32:00,20.8075,139.327,5.04 +2016-03-15 03:47:00,20.9575,138.923,5.02 +2016-03-15 04:02:00,21.4025,138.755,5.0 +2016-03-15 04:17:00,21.6937,138.695,4.99 +2016-03-15 04:32:00,20.1875,138.68,4.97 +2016-03-15 04:47:00,22.5212,138.545,4.96 +2016-03-15 05:02:00,22.9587,138.612,4.97 +2016-03-15 05:17:00,22.285,138.812,4.98 +2016-03-15 05:32:00,21.8475,139.215,4.99 +2016-03-15 05:47:00,21.8962,139.302,5.0 +2016-03-15 06:02:00,20.4788,139.052,5.01 +2016-03-15 06:17:00,20.8587,139.04,5.0 +2016-03-15 06:32:00,22.285,139.167,4.99 +2016-03-15 06:47:00,21.455,139.537,5.04 +2016-03-15 07:02:00,21.8425,139.555,5.16 +2016-03-15 07:17:00,19.6525,139.312,5.14 +2016-03-15 07:32:00,20.5263,139.037,5.07 +2016-03-15 07:47:00,21.8925,139.02,5.06 +2016-03-15 08:02:00,22.8625,138.775,5.06 +2016-03-15 08:17:00,21.7425,138.527,5.07 +2016-03-15 08:32:00,21.6437,138.377,5.11 +2016-03-15 08:47:00,21.7937,136.707,5.14 +2016-03-15 09:02:00,21.645,135.122,5.16 +2016-03-15 09:17:00,22.3737,134.71,5.18 +2016-03-15 09:32:00,20.8587,134.21,5.21 +2016-03-15 09:47:00,21.255,134.085,5.23 +2016-03-15 10:02:00,20.8063,134.382,5.25 +2016-03-15 10:17:00,20.8112,134.6,5.29 +2016-03-15 10:32:00,21.6963,134.225,5.33 +2016-03-15 10:47:00,21.055,134.415,5.36 +2016-03-15 11:02:00,21.0488,134.465,5.39 +2016-03-15 11:17:00,22.4212,134.467,5.44 +2016-03-15 11:32:00,20.6712,134.312,5.47 +2016-03-15 11:47:00,21.9425,134.377,5.46 +2016-03-15 12:02:00,20.5287,134.002,5.47 +2016-03-15 12:17:00,21.255,133.99,5.48 +2016-03-15 12:32:00,-51.93,133.857,5.5 +2016-03-15 12:47:00,-51.93,134.05,5.69 +2016-03-15 13:02:00,-51.9275,134.097,5.78 +2016-03-15 13:17:00,-51.9275,133.995,5.95 +2016-03-15 13:32:00,-51.9275,133.58,6.04 +2016-03-15 13:47:00,-51.9287,133.335,6.1 +2016-03-15 14:02:00,-51.9275,132.69,6.17 +2016-03-15 14:17:00,-51.9263,131.677,6.24 +2016-03-15 14:32:00,-51.9263,130.74,6.21 +2016-03-15 14:47:00,-51.9263,129.467,6.23 +2016-03-15 15:02:00,-51.925,128.065,6.23 +2016-03-15 15:17:00,-51.925,126.692,6.22 +2016-03-15 15:32:00,-51.9275,124.847,6.08 +2016-03-15 15:47:00,-51.9287,123.357,6.06 +2016-03-15 16:02:00,-51.925,121.96,6.01 +2016-03-15 16:17:00,22.91,120.612,5.82 +2016-03-15 16:32:00,22.0,119.285,5.84 +2016-03-15 16:47:00,21.4625,118.217,5.84 +2016-03-15 17:02:00,21.5612,117.262,5.83 +2016-03-15 17:17:00,21.1175,116.2,5.82 +2016-03-15 17:32:00,22.6387,115.807,5.81 +2016-03-15 17:47:00,21.7612,115.205,5.81 +2016-03-15 18:02:00,21.91,114.927,5.81 +2016-03-15 18:17:00,23.2138,114.47,5.82 +2016-03-15 18:32:00,21.4638,113.985,5.83 +2016-03-15 18:47:00,21.7175,114.235,5.82 +2016-03-15 19:02:00,21.665,114.217,5.83 +2016-03-15 19:17:00,22.5387,114.44,5.83 +2016-03-15 19:32:00,21.42,114.815,5.84 +2016-03-15 19:47:00,21.8175,115.565,5.84 +2016-03-15 20:02:00,22.3913,116.39,5.85 +2016-03-15 20:17:00,21.3237,117.49,5.84 +2016-03-15 20:32:00,23.025,118.41,5.84 +2016-03-15 20:47:00,23.515,119.58,5.83 +2016-03-15 21:02:00,22.9325,120.902,5.81 +2016-03-15 21:17:00,23.1175,122.182,5.81 +2016-03-15 21:32:00,23.51,123.322,5.79 +2016-03-15 21:47:00,23.1188,124.442,5.78 +2016-03-15 22:02:00,22.98,125.21,5.79 +2016-03-15 22:17:00,21.82,126.005,5.77 +2016-03-15 22:32:00,22.8825,126.36,5.76 +2016-03-15 22:47:00,23.0225,126.542,5.73 +2016-03-15 23:02:00,21.5163,127.005,5.72 +2016-03-15 23:17:00,23.3613,127.173,5.71 +2016-03-15 23:32:00,22.6387,127.362,5.7 +2016-03-15 23:47:00,23.0675,127.36,5.71 +2016-03-16 00:02:00,22.0575,127.307,5.71 +2016-03-16 00:17:00,21.8187,127.46,5.73 +2016-03-16 00:32:00,22.4938,127.632,5.72 +2016-03-16 00:47:00,21.5638,127.91,5.73 +2016-03-16 01:02:00,21.96,127.667,5.73 +2016-03-16 01:17:00,21.5638,127.5,5.74 +2016-03-16 01:32:00,22.2062,127.537,5.73 +2016-03-16 01:47:00,20.5425,127.247,5.72 +2016-03-16 02:02:00,21.3775,127.117,5.71 +2016-03-16 02:17:00,20.11,127.015,5.71 +2016-03-16 02:32:00,22.1537,126.86,5.7 +2016-03-16 02:47:00,21.0238,126.48,5.69 +2016-03-16 03:02:00,21.1762,126.62,5.71 +2016-03-16 03:17:00,21.62,126.365,5.71 +2016-03-16 03:32:00,23.4613,126.542,5.71 +2016-03-16 03:47:00,20.97,126.472,5.69 +2016-03-16 04:02:00,21.8175,126.393,5.69 +2016-03-16 04:17:00,22.8825,126.4,5.67 +2016-03-16 04:32:00,23.3587,126.322,5.66 +2016-03-16 04:47:00,24.19,126.117,5.65 +2016-03-16 05:02:00,22.0587,125.822,5.63 +2016-03-16 05:17:00,22.0088,125.752,5.61 +2016-03-16 05:32:00,21.96,125.64,5.61 +2016-03-16 05:47:00,21.175,125.34,5.61 +2016-03-16 06:02:00,22.6888,125.26,5.6 +2016-03-16 06:17:00,22.295,125.03,5.59 +2016-03-16 06:32:00,22.1562,125.255,5.59 +2016-03-16 06:47:00,22.6387,125.21,5.59 +2016-03-16 07:02:00,23.4137,125.027,5.6 +2016-03-16 07:17:00,22.06,124.99,5.62 +2016-03-16 07:32:00,23.2625,124.867,5.63 +2016-03-16 07:47:00,22.4912,124.975,5.64 +2016-03-16 08:02:00,22.54,125.01,5.66 +2016-03-16 08:17:00,23.4575,124.602,5.69 +2016-03-16 08:32:00,22.205,124.58,5.72 +2016-03-16 08:47:00,23.36,124.35,5.78 +2016-03-16 09:02:00,23.6562,124.033,5.81 +2016-03-16 09:17:00,22.3438,123.768,5.85 +2016-03-16 09:32:00,22.7875,123.795,5.84 +2016-03-16 09:47:00,22.9362,123.92,5.87 +2016-03-16 10:02:00,22.5413,123.117,5.89 +2016-03-16 10:17:00,22.0612,121.655,5.92 +2016-03-16 10:32:00,23.0675,120.893,5.95 +2016-03-16 10:47:00,22.7838,120.487,6.0 +2016-03-16 11:02:00,23.755,120.39,6.07 +2016-03-16 11:17:00,22.2975,120.335,6.11 +2016-03-16 11:32:00,22.6425,120.53,6.09 +2016-03-16 11:47:00,23.3138,120.675,6.12 +2016-03-16 12:02:00,22.9325,120.612,6.18 +2016-03-16 12:17:00,22.0137,121.025,6.21 +2016-03-16 12:32:00,22.1087,121.36,6.28 +2016-03-16 12:47:00,22.4938,121.427,6.33 +2016-03-16 13:02:00,23.3637,121.9,6.37 +2016-03-16 13:17:00,22.9825,121.815,6.43 +2016-03-16 13:32:00,21.5675,122.087,6.48 +2016-03-16 13:47:00,21.8225,122.0,6.53 +2016-03-16 14:02:00,22.69,122.222,6.54 +2016-03-16 14:17:00,21.6175,122.21,6.56 +2016-03-16 14:32:00,21.1762,122.567,6.58 +2016-03-16 14:47:00,21.7675,122.837,6.59 +2016-03-16 15:02:00,22.1125,123.145,6.62 +2016-03-16 15:17:00,23.0713,122.81,6.63 +2016-03-16 15:32:00,21.3262,122.91,6.64 +2016-03-16 15:47:00,22.5387,122.822,6.66 +2016-03-16 16:02:00,22.8337,122.76,6.69 +2016-03-16 16:17:00,21.7162,122.612,6.73 +2016-03-16 16:32:00,21.47,122.47,6.76 +2016-03-16 16:47:00,21.7663,122.43,6.78 +2016-03-16 17:02:00,22.205,122.122,6.8 +2016-03-16 17:17:00,22.1113,122.188,6.81 +2016-03-16 17:32:00,22.1612,122.065,6.82 +2016-03-16 17:47:00,23.2138,121.93,6.81 +2016-03-16 18:02:00,23.1637,121.832,6.8 +2016-03-16 18:17:00,22.6862,122.11,6.79 +2016-03-16 18:32:00,21.865,121.837,6.79 +2016-03-16 18:47:00,22.3,121.765,6.81 +2016-03-16 19:02:00,22.16,121.89,6.8 +2016-03-16 19:17:00,23.1725,122.182,6.78 +2016-03-16 19:32:00,21.7125,122.457,6.76 +2016-03-16 19:47:00,22.2038,122.265,6.71 +2016-03-16 20:02:00,20.4975,122.057,6.66 +2016-03-16 20:17:00,21.4662,122.062,6.61 +2016-03-16 20:32:00,22.3913,121.75,6.56 +2016-03-16 20:47:00,22.2038,121.74,6.5 +2016-03-16 21:02:00,22.015,121.487,6.44 +2016-03-16 21:17:00,23.9925,121.725,6.41 +2016-03-16 21:32:00,21.7625,121.557,6.37 +2016-03-16 21:47:00,23.025,121.367,6.35 +2016-03-16 22:02:00,22.2038,121.325,6.31 +2016-03-16 22:17:00,20.4962,121.112,6.26 +2016-03-16 22:32:00,22.2487,121.472,6.23 +2016-03-16 22:47:00,22.395,121.225,6.21 +2016-03-16 23:02:00,21.9688,121.19,6.18 +2016-03-16 23:17:00,23.1225,121.305,6.15 +2016-03-16 23:32:00,22.205,121.42,6.12 +2016-03-16 23:47:00,22.0587,121.533,6.1 +2016-03-17 00:02:00,22.6413,121.548,6.06 +2016-03-17 00:17:00,22.25,121.567,6.03 +2016-03-17 00:32:00,24.2412,121.262,6.0 +2016-03-17 00:47:00,22.5413,121.292,5.95 +2016-03-17 01:02:00,21.7213,120.927,5.91 +2016-03-17 01:17:00,23.4613,120.965,5.87 +2016-03-17 01:32:00,22.155,120.855,5.82 +2016-03-17 01:47:00,20.9725,120.89,5.77 +2016-03-17 02:02:00,21.3725,120.632,5.73 +2016-03-17 02:17:00,22.3925,120.795,5.7 +2016-03-17 02:32:00,21.5713,120.645,5.68 +2016-03-17 02:47:00,21.9175,120.655,5.66 +2016-03-17 03:02:00,22.0088,120.765,5.64 +2016-03-17 03:17:00,20.5925,120.48,5.62 +2016-03-17 03:32:00,21.2725,120.48,5.6 +2016-03-17 03:47:00,21.6175,120.55,5.58 +2016-03-17 04:02:00,22.2975,120.927,5.55 +2016-03-17 04:17:00,22.0112,120.862,5.53 +2016-03-17 04:32:00,22.74,121.018,5.5 +2016-03-17 04:47:00,21.8712,120.837,5.47 +2016-03-17 05:02:00,22.205,120.92,5.45 +2016-03-17 05:17:00,21.47,120.675,5.41 +2016-03-17 05:32:00,22.2513,120.752,5.37 +2016-03-17 05:47:00,22.0612,120.682,5.32 +2016-03-17 06:02:00,22.0112,120.487,5.29 +2016-03-17 06:17:00,22.5425,120.635,5.26 +2016-03-17 06:32:00,22.9825,120.37,5.23 +2016-03-17 06:47:00,22.01,120.347,5.2 +2016-03-17 07:02:00,21.2738,120.38,5.17 +2016-03-17 07:17:00,22.785,120.46,5.16 +2016-03-17 07:32:00,23.4163,120.64,5.15 +2016-03-17 07:47:00,22.3937,120.507,5.15 +2016-03-17 08:02:00,21.815,120.32,5.17 +2016-03-17 08:17:00,21.3275,120.03,5.17 +2016-03-17 08:32:00,22.1087,120.05,5.19 +2016-03-17 08:47:00,20.7325,120.415,5.22 +2016-03-17 09:02:00,23.3637,120.457,5.33 +2016-03-17 09:17:00,22.2962,120.637,5.48 +2016-03-17 09:32:00,23.4137,120.645,5.53 +2016-03-17 09:47:00,22.1062,121.1,5.56 +2016-03-17 10:02:00,21.5687,120.992,5.6 +2016-03-17 10:17:00,22.205,120.935,5.66 +2016-03-17 10:32:00,22.245,120.975,5.71 +2016-03-17 10:47:00,22.155,121.08,5.76 +2016-03-17 11:02:00,21.4225,120.762,5.83 +2016-03-17 11:17:00,21.5638,120.347,5.88 +2016-03-17 11:32:00,23.5075,120.147,5.92 +2016-03-17 11:47:00,23.31,120.057,6.0 +2016-03-17 12:02:00,23.1212,119.745,6.07 +2016-03-17 12:17:00,22.3012,119.522,6.13 +2016-03-17 12:32:00,22.6862,119.327,6.17 +2016-03-17 12:47:00,22.2487,119.072,6.23 +2016-03-17 13:02:00,22.4875,118.77,6.29 +2016-03-17 13:17:00,21.5687,118.28,6.37 +2016-03-17 13:32:00,22.73,117.475,6.4 +2016-03-17 13:47:00,22.9337,117.12,6.38 +2016-03-17 14:02:00,22.115,116.762,6.34 +2016-03-17 14:17:00,23.51,116.202,6.38 +2016-03-17 14:32:00,22.0575,115.8,6.43 +2016-03-17 14:47:00,21.5175,115.622,6.48 +2016-03-17 15:02:00,23.0725,115.503,6.53 +2016-03-17 15:17:00,21.7125,115.393,6.58 +2016-03-17 15:32:00,22.1087,115.415,6.64 +2016-03-17 15:47:00,22.8337,115.477,6.68 +2016-03-17 16:02:00,22.1125,115.707,6.73 +2016-03-17 16:17:00,23.4112,115.605,6.78 +2016-03-17 16:32:00,23.0238,115.682,6.82 +2016-03-17 16:47:00,22.7363,115.882,6.86 +2016-03-17 17:02:00,21.3725,115.707,6.89 +2016-03-17 17:17:00,22.4912,115.512,6.92 +2016-03-17 17:32:00,22.8875,115.827,6.94 +2016-03-17 17:47:00,22.2075,115.727,6.97 +2016-03-17 18:02:00,23.1188,115.84,6.99 +2016-03-17 18:17:00,21.3237,116.012,7.0 +2016-03-17 18:32:00,23.5125,116.25,7.0 +2016-03-17 18:47:00,23.07,116.25,7.0 +2016-03-17 19:02:00,23.07,116.632,6.99 +2016-03-17 19:17:00,22.0137,116.787,6.96 +2016-03-17 19:32:00,22.0587,116.527,6.93 +2016-03-17 19:47:00,21.425,116.745,6.9 +2016-03-17 20:02:00,23.6588,116.332,6.87 +2016-03-17 20:17:00,22.6387,116.19,6.82 +2016-03-17 20:32:00,21.375,116.357,6.77 +2016-03-17 20:47:00,21.5638,116.28,6.72 +2016-03-17 21:02:00,22.39,116.425,6.66 +2016-03-17 21:17:00,22.9812,116.632,6.61 +2016-03-17 21:32:00,22.2975,116.585,6.57 +2016-03-17 21:47:00,22.9788,116.67,6.54 +2016-03-17 22:02:00,22.4375,116.79,6.5 +2016-03-17 22:17:00,21.4212,116.947,6.44 +2016-03-17 22:32:00,21.0775,116.952,6.41 +2016-03-17 22:47:00,23.655,117.042,6.37 +2016-03-17 23:02:00,22.9325,116.908,6.32 +2016-03-17 23:17:00,22.6888,116.852,6.28 +2016-03-17 23:32:00,22.98,116.57,6.23 +2016-03-17 23:47:00,21.1738,116.425,6.19 +2016-03-18 00:02:00,22.2075,116.44,6.15 +2016-03-18 00:17:00,23.8438,116.8,6.1 +2016-03-18 00:32:00,22.83,116.89,6.06 +2016-03-18 00:47:00,21.2237,117.182,6.01 +2016-03-18 01:02:00,22.35,117.51,5.97 +2016-03-18 01:17:00,23.6113,117.408,5.92 +2016-03-18 01:32:00,23.6087,117.555,5.88 +2016-03-18 01:47:00,22.1562,117.635,5.84 +2016-03-18 02:02:00,22.6875,117.595,5.8 +2016-03-18 02:17:00,22.0088,117.34,5.77 +2016-03-18 02:32:00,21.9163,117.227,5.74 +2016-03-18 02:47:00,22.3438,117.597,5.72 +2016-03-18 03:02:00,23.1225,117.427,5.7 +2016-03-18 03:17:00,20.2537,117.408,5.67 +2016-03-18 03:32:00,23.6575,117.76,5.65 +2016-03-18 03:47:00,24.0912,117.815,5.63 +2016-03-18 04:02:00,22.7363,118.105,5.61 +2016-03-18 04:17:00,22.8312,118.227,5.6 +2016-03-18 04:32:00,22.205,118.47,5.55 +2016-03-18 04:47:00,23.1175,118.597,5.53 +2016-03-18 05:02:00,21.7675,118.54,5.5 +2016-03-18 05:17:00,22.7387,118.397,5.48 +2016-03-18 05:32:00,23.3138,118.395,5.46 +2016-03-18 05:47:00,21.815,118.24,5.42 +2016-03-18 06:02:00,21.8662,118.132,5.39 +2016-03-18 06:17:00,21.3725,118.177,5.37 +2016-03-18 06:32:00,23.315,118.302,5.36 +2016-03-18 06:47:00,23.9412,118.322,5.34 +2016-03-18 07:02:00,23.8512,118.235,5.34 +2016-03-18 07:17:00,22.1588,118.11,5.34 +2016-03-18 07:32:00,22.9775,117.715,5.34 +2016-03-18 07:47:00,22.5387,117.045,5.34 +2016-03-18 08:02:00,23.3087,115.35,5.34 +2016-03-18 08:17:00,22.0112,114.362,5.34 +2016-03-18 08:32:00,22.8825,114.272,5.35 +2016-03-18 08:47:00,21.2775,113.987,5.37 +2016-03-18 09:02:00,23.2188,114.362,5.37 +2016-03-18 09:17:00,24.3412,114.832,5.37 +2016-03-18 09:32:00,22.6875,115.177,5.37 +2016-03-18 09:47:00,21.0225,115.552,5.36 +2016-03-18 10:02:00,19.8162,115.827,5.36 +2016-03-18 10:17:00,21.7625,116.222,5.39 +2016-03-18 10:32:00,23.17,116.425,5.44 +2016-03-18 10:47:00,23.12,116.485,5.48 +2016-03-18 11:02:00,24.4437,116.332,5.5 +2016-03-18 11:17:00,21.7138,116.442,5.51 +2016-03-18 11:32:00,23.3662,116.402,5.53 +2016-03-18 11:47:00,23.165,116.93,5.54 +2016-03-18 12:02:00,22.59,116.87,5.57 +2016-03-18 12:17:00,21.9625,117.298,5.59 +2016-03-18 12:32:00,20.8763,117.317,5.61 +2016-03-18 12:47:00,23.025,117.322,5.62 +2016-03-18 13:02:00,23.2663,117.423,5.64 +2016-03-18 13:17:00,23.4125,117.612,5.66 +2016-03-18 13:32:00,23.7575,117.587,5.7 +2016-03-18 13:47:00,22.4887,117.495,5.7 +2016-03-18 14:02:00,22.3937,117.23,5.72 +2016-03-18 14:17:00,22.1575,117.367,5.72 +2016-03-18 14:32:00,22.6912,117.15,5.72 +2016-03-18 14:47:00,21.9662,117.015,5.73 +2016-03-18 15:02:00,22.4863,117.195,5.76 +2016-03-18 15:17:00,21.0725,117.3,5.79 +2016-03-18 15:32:00,23.755,117.52,5.78 +2016-03-18 15:47:00,22.4375,117.705,5.78 +2016-03-18 16:02:00,21.3737,117.552,5.79 +2016-03-18 16:17:00,22.5925,117.615,5.78 +2016-03-18 16:32:00,21.8725,117.455,5.73 +2016-03-18 16:47:00,22.6362,117.51,5.7 +2016-03-18 17:02:00,22.6362,117.692,5.7 +2016-03-18 17:17:00,21.4688,117.165,5.7 +2016-03-18 17:32:00,23.1162,117.02,5.69 +2016-03-18 17:47:00,22.4412,116.802,5.69 +2016-03-18 18:02:00,20.7812,116.73,5.68 +2016-03-18 18:17:00,23.6612,116.967,5.66 +2016-03-18 18:32:00,23.4112,117.075,5.66 +2016-03-18 18:47:00,21.7637,117.01,5.67 +2016-03-18 19:02:00,21.9125,116.862,5.67 +2016-03-18 19:17:00,21.465,117.128,5.67 +2016-03-18 19:32:00,21.1762,117.137,5.66 +2016-03-18 19:47:00,21.3725,117.03,5.66 +2016-03-18 20:02:00,22.6437,117.057,5.65 +2016-03-18 20:17:00,22.16,117.115,5.65 +2016-03-18 20:32:00,21.52,117.235,5.65 +2016-03-18 20:47:00,22.5938,117.007,5.65 +2016-03-18 21:02:00,22.2962,117.222,5.63 +2016-03-18 21:17:00,22.6362,117.115,5.62 +2016-03-18 21:32:00,21.715,117.2,5.62 +2016-03-18 21:47:00,22.2075,116.755,5.62 +2016-03-18 22:02:00,21.7625,116.605,5.6 +2016-03-18 22:17:00,23.6575,116.495,5.59 +2016-03-18 22:32:00,20.8763,116.595,5.57 +2016-03-18 22:47:00,22.4887,116.602,5.56 +2016-03-18 23:02:00,22.01,116.64,5.56 +2016-03-18 23:17:00,23.6038,116.855,5.55 +2016-03-18 23:32:00,22.6387,116.552,5.54 +2016-03-18 23:47:00,22.3962,116.742,5.53 +2016-03-19 00:02:00,22.5963,116.64,5.53 +2016-03-19 00:17:00,21.5137,116.362,5.52 +2016-03-19 00:32:00,22.39,116.325,5.51 +2016-03-19 00:47:00,22.4412,116.482,5.5 +2016-03-19 01:02:00,22.1087,116.647,5.5 +2016-03-19 01:17:00,23.4137,116.612,5.5 +2016-03-19 01:32:00,22.74,116.405,5.5 +2016-03-19 01:47:00,23.1188,116.525,5.49 +2016-03-19 02:02:00,21.6637,116.71,5.48 +2016-03-19 02:17:00,21.4187,116.695,5.49 +2016-03-19 02:32:00,22.5837,116.477,5.49 +2016-03-19 02:47:00,22.3438,116.912,5.49 +2016-03-19 03:02:00,21.225,116.842,5.48 +2016-03-19 03:17:00,23.655,116.792,5.48 +2016-03-19 03:32:00,22.5413,116.798,5.48 +2016-03-19 03:47:00,22.2075,116.827,5.48 +2016-03-19 04:02:00,23.8925,116.66,5.48 +2016-03-19 04:17:00,23.0225,116.457,5.47 +2016-03-19 04:32:00,21.7138,116.25,5.48 +2016-03-19 04:47:00,22.5875,116.197,5.48 +2016-03-19 05:02:00,23.3625,116.487,5.48 +2016-03-19 05:17:00,22.9337,116.167,5.48 +2016-03-19 05:32:00,23.1188,116.222,5.46 +2016-03-19 05:47:00,22.25,116.033,5.46 +2016-03-19 06:02:00,22.9737,115.915,5.46 +2016-03-19 06:17:00,23.2575,116.18,5.45 +2016-03-19 06:32:00,22.5875,116.242,5.45 +2016-03-19 06:47:00,22.155,116.17,5.45 +2016-03-19 07:02:00,22.1575,116.37,5.45 +2016-03-19 07:17:00,21.8175,116.362,5.44 +2016-03-19 07:32:00,22.3962,116.74,5.44 +2016-03-19 07:47:00,23.9425,116.555,5.45 +2016-03-19 08:02:00,22.9313,116.675,5.47 +2016-03-19 08:17:00,21.7113,116.495,5.47 +2016-03-19 08:32:00,22.4412,116.45,5.48 +2016-03-19 08:47:00,23.655,116.42,5.49 +2016-03-19 09:02:00,23.1675,116.337,5.5 +2016-03-19 09:17:00,24.0413,116.175,5.51 +2016-03-19 09:32:00,22.8787,116.15,5.53 +2016-03-19 09:47:00,21.9137,116.003,5.55 +2016-03-19 10:02:00,23.1162,116.147,5.58 +2016-03-19 10:17:00,21.865,116.182,5.6 +2016-03-19 10:32:00,22.3937,116.4,5.64 +2016-03-19 10:47:00,21.2738,116.158,5.69 +2016-03-19 11:02:00,23.2188,116.41,5.75 +2016-03-19 11:17:00,22.3925,116.14,5.8 +2016-03-19 11:32:00,22.01,116.11,5.87 +2016-03-19 11:47:00,23.3087,115.962,5.9 +2016-03-19 12:02:00,20.5938,115.737,5.94 +2016-03-19 12:17:00,23.8463,115.712,5.94 +2016-03-19 12:32:00,22.4887,115.552,5.95 +2016-03-19 12:47:00,22.4437,115.352,5.97 +2016-03-19 13:02:00,23.315,115.587,6.02 +2016-03-19 13:17:00,23.3125,115.825,6.04 +2016-03-19 13:32:00,23.9925,115.755,6.05 +2016-03-19 13:47:00,24.09,115.673,6.09 +2016-03-19 14:02:00,21.2712,115.747,6.11 +2016-03-19 14:17:00,21.7663,115.652,6.12 +2016-03-19 14:32:00,22.1588,115.477,6.15 +2016-03-19 14:47:00,24.2475,115.26,6.17 +2016-03-19 15:02:00,21.9675,115.115,6.21 +2016-03-19 15:17:00,21.8662,115.003,6.24 +2016-03-19 15:32:00,21.7625,115.005,6.26 +2016-03-19 15:47:00,21.375,115.012,6.27 +2016-03-19 16:02:00,23.1162,115.077,6.28 +2016-03-19 16:17:00,23.5112,115.408,6.29 +2016-03-19 16:32:00,20.8288,115.342,6.29 +2016-03-19 16:47:00,23.5163,115.378,6.29 +2016-03-19 17:02:00,22.25,115.362,6.29 +2016-03-19 17:17:00,22.0587,115.247,6.29 +2016-03-19 17:32:00,22.0587,115.027,6.29 +2016-03-19 17:47:00,22.1562,115.1,6.29 +2016-03-19 18:02:00,21.9625,114.917,6.27 +2016-03-19 18:17:00,22.4388,114.965,6.25 +2016-03-19 18:32:00,21.8688,114.635,6.26 +2016-03-19 18:47:00,21.025,114.822,6.27 +2016-03-19 19:02:00,22.345,114.957,6.29 +2016-03-19 19:17:00,22.2475,115.077,6.29 +2016-03-19 19:32:00,22.59,115.112,6.3 +2016-03-19 19:47:00,23.3112,114.908,6.31 +2016-03-19 20:02:00,22.5875,114.542,6.3 +2016-03-19 20:17:00,23.945,114.417,6.29 +2016-03-19 20:32:00,21.965,114.225,6.27 +2016-03-19 20:47:00,20.5938,114.112,6.25 +2016-03-19 21:02:00,22.0112,114.065,6.23 +2016-03-19 21:17:00,21.6675,114.012,6.22 +2016-03-19 21:32:00,21.9125,113.78,6.19 +2016-03-19 21:47:00,21.8625,113.987,6.18 +2016-03-19 22:02:00,21.2725,114.132,6.16 +2016-03-19 22:17:00,22.16,114.3,6.14 +2016-03-19 22:32:00,22.7387,114.147,6.13 +2016-03-19 22:47:00,22.345,114.21,6.12 +2016-03-19 23:02:00,22.6888,114.067,6.11 +2016-03-19 23:17:00,23.0762,113.902,6.1 +2016-03-19 23:32:00,21.8662,113.675,6.09 +2016-03-19 23:47:00,23.31,113.67,6.08 +2016-03-20 00:02:00,22.4912,113.71,6.07 +2016-03-20 00:17:00,21.9638,113.555,6.06 +2016-03-20 00:32:00,21.8187,113.477,6.04 +2016-03-20 00:47:00,23.31,113.677,6.03 +2016-03-20 01:02:00,22.93,114.077,6.02 +2016-03-20 01:17:00,22.0563,113.893,6.01 +2016-03-20 01:32:00,22.6837,113.945,6.01 +2016-03-20 01:47:00,21.3225,113.89,6.0 +2016-03-20 02:02:00,21.8175,114.04,6.0 +2016-03-20 02:17:00,22.2962,113.802,6.0 +2016-03-20 02:32:00,21.8125,113.65,5.99 +2016-03-20 02:47:00,21.2237,113.697,5.98 +2016-03-20 03:02:00,21.37,113.337,5.98 +2016-03-20 03:17:00,22.9287,113.595,5.97 +2016-03-20 03:32:00,24.1413,113.362,5.97 +2016-03-20 03:47:00,21.9175,113.783,5.96 +2016-03-20 04:02:00,24.4538,113.947,5.95 +2016-03-20 04:17:00,21.1263,114.027,5.94 +2016-03-20 04:32:00,22.1087,113.893,5.93 +2016-03-20 04:47:00,22.25,113.798,5.92 +2016-03-20 05:02:00,21.96,113.692,5.92 +2016-03-20 05:17:00,21.8125,113.515,5.91 +2016-03-20 05:32:00,22.155,113.387,5.9 +2016-03-20 05:47:00,22.9313,113.49,5.89 +2016-03-20 06:02:00,23.4625,113.402,5.88 +2016-03-20 06:17:00,21.3237,113.423,5.87 +2016-03-20 06:32:00,22.685,113.585,5.87 +2016-03-20 06:47:00,22.7325,113.283,5.86 +2016-03-20 07:02:00,23.9887,113.268,5.86 +2016-03-20 07:17:00,22.4863,113.35,5.87 +2016-03-20 07:32:00,22.6862,113.347,5.88 +2016-03-20 07:47:00,23.1687,113.435,5.88 +2016-03-20 08:02:00,21.5187,113.17,5.89 +2016-03-20 08:17:00,22.2487,113.097,5.89 +2016-03-20 08:32:00,21.8162,113.067,5.9 +2016-03-20 08:47:00,23.0212,113.095,5.9 +2016-03-20 09:02:00,22.7825,112.992,5.91 +2016-03-20 09:17:00,23.2113,113.255,5.92 +2016-03-20 09:32:00,23.0275,113.497,5.92 +2016-03-20 09:47:00,22.4925,113.402,5.94 +2016-03-20 10:02:00,22.0112,113.647,5.97 +2016-03-20 10:17:00,22.83,113.46,6.0 +2016-03-20 10:32:00,22.34,113.575,6.02 +2016-03-20 10:47:00,21.91,113.408,6.04 +2016-03-20 11:02:00,24.0387,113.33,6.05 +2016-03-20 11:17:00,22.5888,113.212,6.07 +2016-03-20 11:32:00,23.76,112.917,6.09 +2016-03-20 11:47:00,23.0713,113.15,6.15 +2016-03-20 12:02:00,22.155,113.057,6.18 +2016-03-20 12:17:00,22.4912,113.257,6.19 +2016-03-20 12:32:00,23.1188,113.587,6.19 +2016-03-20 12:47:00,23.1137,113.695,6.21 +2016-03-20 13:02:00,22.205,113.5,6.23 +2016-03-20 13:17:00,23.3662,113.31,6.25 +2016-03-20 13:32:00,22.205,113.355,6.27 +2016-03-20 13:47:00,22.5375,113.365,6.29 +2016-03-20 14:02:00,21.5687,113.207,6.3 +2016-03-20 14:17:00,22.7337,113.272,6.32 +2016-03-20 14:32:00,21.2712,113.057,6.34 +2016-03-20 14:47:00,22.8787,112.95,6.35 +2016-03-20 15:02:00,22.88,113.27,6.36 +2016-03-20 15:17:00,23.265,113.182,6.37 +2016-03-20 15:32:00,23.2637,113.3,6.38 +2016-03-20 15:47:00,22.0575,113.582,6.39 +2016-03-20 16:02:00,23.02,113.503,6.41 +2016-03-20 16:17:00,23.7962,113.272,6.42 +2016-03-20 16:32:00,22.3412,113.255,6.43 +2016-03-20 16:47:00,22.2475,113.162,6.44 +2016-03-20 17:02:00,22.83,113.105,6.44 +2016-03-20 17:17:00,21.1738,113.045,6.45 +2016-03-20 17:32:00,22.8787,113.007,6.45 +2016-03-20 17:47:00,23.1637,113.117,6.45 +2016-03-20 18:02:00,21.32,113.257,6.44 +2016-03-20 18:17:00,21.7637,113.357,6.45 +2016-03-20 18:32:00,22.34,113.658,6.44 +2016-03-20 18:47:00,21.8637,113.605,6.44 +2016-03-20 19:02:00,23.4187,113.447,6.43 +2016-03-20 19:17:00,21.9638,113.347,6.42 +2016-03-20 19:32:00,22.205,113.19,6.41 +2016-03-20 19:47:00,23.5563,113.1,6.41 +2016-03-20 20:02:00,22.0575,113.01,6.42 +2016-03-20 20:17:00,23.1663,112.99,6.41 +2016-03-20 20:32:00,20.9212,112.975,6.4 +2016-03-20 20:47:00,20.4475,112.95,6.39 +2016-03-20 21:02:00,21.7213,112.872,6.38 +2016-03-20 21:17:00,23.7075,113.027,6.36 +2016-03-20 21:32:00,22.7363,113.22,6.36 +2016-03-20 21:47:00,22.9812,113.442,6.34 +2016-03-20 22:02:00,22.39,113.427,6.32 +2016-03-20 22:17:00,21.665,113.27,6.3 +2016-03-20 22:32:00,23.0263,113.033,6.28 +2016-03-20 22:47:00,22.015,112.88,6.26 +2016-03-20 23:02:00,22.4938,112.997,6.23 +2016-03-20 23:17:00,22.8288,112.725,6.22 +2016-03-20 23:32:00,22.5338,112.572,6.21 +2016-03-20 23:47:00,21.5163,112.44,6.2 +2016-03-21 00:02:00,22.295,112.518,6.19 +2016-03-21 00:17:00,22.6362,112.692,6.17 +2016-03-21 00:32:00,21.6162,113.02,6.18 +2016-03-21 00:47:00,22.5387,113.005,6.17 +2016-03-21 01:02:00,22.9275,112.745,6.17 +2016-03-21 01:17:00,22.25,112.957,6.15 +2016-03-21 01:32:00,22.4375,112.497,6.14 +2016-03-21 01:47:00,23.5062,112.725,6.13 +2016-03-21 02:02:00,22.3887,112.317,6.11 +2016-03-21 02:17:00,24.0863,112.56,6.11 +2016-03-21 02:32:00,22.64,112.295,6.1 +2016-03-21 02:47:00,22.54,112.02,6.09 +2016-03-21 03:02:00,22.2475,112.097,6.07 +2016-03-21 03:17:00,21.7138,112.222,6.05 +2016-03-21 03:32:00,24.3937,112.387,6.05 +2016-03-21 03:47:00,22.2937,112.465,6.05 +2016-03-21 04:02:00,21.0762,112.81,6.04 +2016-03-21 04:17:00,21.025,112.765,6.02 +2016-03-21 04:32:00,19.525,112.768,6.01 +2016-03-21 04:47:00,22.0587,112.562,6.0 +2016-03-21 05:02:00,21.8138,112.355,5.99 +2016-03-21 05:17:00,23.0212,112.42,5.99 +2016-03-21 05:32:00,22.44,112.27,5.99 +2016-03-21 05:47:00,22.8275,112.227,5.99 +2016-03-21 06:02:00,23.89,112.25,5.99 +2016-03-21 06:17:00,22.0625,112.018,6.0 +2016-03-21 06:32:00,22.7875,112.125,6.01 +2016-03-21 06:47:00,22.6362,112.305,6.01 +2016-03-21 07:02:00,22.5875,112.47,6.01 +2016-03-21 07:17:00,22.2038,112.43,6.03 +2016-03-21 07:32:00,21.515,112.302,6.04 +2016-03-21 07:47:00,23.21,112.247,6.06 +2016-03-21 08:02:00,21.3288,112.087,6.08 +2016-03-21 08:17:00,21.7712,112.0,6.1 +2016-03-21 08:32:00,22.3862,111.88,6.12 +2016-03-21 08:47:00,22.2038,111.967,6.16 +2016-03-21 09:02:00,22.2475,112.125,6.18 +2016-03-21 09:17:00,23.2125,111.7,6.19 +2016-03-21 09:32:00,22.2012,111.992,6.22 +2016-03-21 09:47:00,22.44,111.58,6.25 +2016-03-21 10:02:00,23.265,111.492,6.27 +2016-03-21 10:17:00,23.61,111.643,6.35 +2016-03-21 10:32:00,23.5088,111.302,6.36 +2016-03-21 10:47:00,22.2962,111.13,6.35 +2016-03-21 11:02:00,23.8438,111.295,6.4 +2016-03-21 11:17:00,22.8312,-10.42,6.42 +2016-03-21 11:47:00,22.1775,99.6325,6.44 +2016-03-21 12:02:00,22.61,402.88,6.46 +2016-03-21 12:17:00,22.4137,116.02,6.52 +2016-03-21 12:32:00,18.3613,114.622,6.57 +2016-03-21 12:47:00,22.6837,114.977,6.58 +2016-03-21 13:02:00,20.88,114.98, +2016-03-21 13:17:00,5.175,114.847, +2016-03-21 13:32:00,8.60125,114.475, +2016-03-21 13:47:00,16.3388,114.21,6.64 +2016-03-21 14:01:26,21.2087,114.23,6.66 +2016-03-21 14:17:00,22.9463,114.165,6.68 +2016-03-21 14:32:00,21.2875,113.805,6.7 +2016-03-21 14:47:00,22.3112,113.477,6.71 +2016-03-21 15:02:00,22.365,113.355,6.74 +2016-03-21 15:17:00,22.4088,113.305,6.75 +2016-03-21 15:32:00,22.0725,113.335,6.77 +2016-03-21 15:47:00,21.9275,113.158,6.78 +2016-03-21 16:02:00,21.7312,113.035,6.79 +2016-03-21 16:17:00,20.6963,112.985,6.8 +2016-03-21 16:32:00,22.805,112.852,6.8 +2016-03-21 16:47:00,22.4075,112.905,6.82 +2016-03-21 17:02:00,22.2188,112.71,6.83 +2016-03-21 17:17:00,20.4575,112.825,6.83 +2016-03-21 17:32:00,21.68,112.9,6.85 +2016-03-21 17:47:00,22.505,112.93,6.88 +2016-03-21 18:02:00,21.7288,113.102,6.89 +2016-03-21 18:17:00,22.2188,113.29,6.89 +2016-03-21 18:32:00,20.8425,113.432,6.88 +2016-03-21 18:47:00,21.8812,113.49,6.87 +2016-03-21 19:02:00,21.39,113.455,6.86 +2016-03-21 19:17:00,21.8825,113.62,6.84 +2016-03-21 19:32:00,21.435,113.518,6.83 +2016-03-21 19:47:00,22.2213,113.552,6.82 +2016-03-21 20:02:00,20.2162,113.645,6.81 +2016-03-21 20:17:00,21.7812,113.652,6.81 +2016-03-21 20:32:00,20.94,113.65,6.8 +2016-03-21 20:47:00,21.8787,113.732,6.78 +2016-03-21 21:02:00,21.1888,113.795,6.75 +2016-03-21 21:17:00,21.53,114.018,6.73 +2016-03-21 21:32:00,22.315,114.23,6.71 +2016-03-21 21:47:00,21.6813,114.317,6.7 +2016-03-21 22:02:00,21.6813,114.165,6.67 +2016-03-21 22:17:00,22.0275,114.292,6.66 +2016-03-21 22:32:00,21.7825,114.158,6.65 +2016-03-21 22:47:00,21.6825,114.135,6.63 +2016-03-21 23:02:00,21.68,114.247,6.61 +2016-03-21 23:17:00,22.61,114.21,6.59 +2016-03-21 23:32:00,21.1413,114.132,6.57 +2016-03-21 23:47:00,21.9275,114.215,6.55 +2016-03-22 00:02:00,21.58,114.235,6.54 +2016-03-22 00:17:00,22.1237,114.342,6.53 +2016-03-22 00:32:00,21.53,114.6,6.52 +2016-03-22 00:47:00,23.525,114.585,6.51 +2016-03-22 01:02:00,21.53,114.68,6.48 +2016-03-22 01:17:00,22.0263,114.51,6.46 +2016-03-22 01:32:00,23.5725,114.5,6.44 +2016-03-22 01:47:00,22.1212,114.472,6.42 +2016-03-22 02:02:00,22.1237,114.507,6.41 +2016-03-22 02:17:00,22.5075,114.518,6.4 +2016-03-22 02:32:00,22.0212,114.367,6.4 +2016-03-22 02:47:00,22.0737,114.542,6.4 +2016-03-22 03:02:00,23.1837,114.562,6.4 +2016-03-22 03:17:00,22.1212,114.88,6.39 +2016-03-22 03:32:00,21.335,114.992,6.39 +2016-03-22 03:47:00,20.1675,114.927,6.39 +2016-03-22 04:02:00,21.1875,114.84,6.38 +2016-03-22 04:17:00,21.7275,114.815,6.36 +2016-03-22 04:32:00,22.6025,114.605,6.35 +2016-03-22 04:47:00,21.8812,114.742,6.34 +2016-03-22 05:02:00,21.2875,114.652,6.34 +2016-03-22 05:17:00,22.02,114.72,6.34 +2016-03-22 05:32:00,22.3562,114.525,6.33 +2016-03-22 05:47:00,21.7825,114.762,6.32 +2016-03-22 06:02:00,21.0425,114.862,6.32 +2016-03-22 06:17:00,22.1212,114.747,6.31 +2016-03-22 06:32:00,21.1387,114.93,6.31 +2016-03-22 06:47:00,21.2862,114.967,6.3 +2016-03-22 07:02:00,21.8737,115.102,6.31 +2016-03-22 07:17:00,23.04,115.035,6.35 +2016-03-22 07:32:00,21.8337,115.022,6.38 +2016-03-22 07:47:00,23.1338,115.077,6.37 +2016-03-22 08:02:00,22.7487,115.01,6.38 +2016-03-22 08:17:00,21.4337,115.003,6.4 +2016-03-22 08:32:00,22.5037,114.965,6.41 +2016-03-22 08:47:00,21.2363,115.035,6.44 +2016-03-22 09:02:00,22.9412,115.06,6.46 +2016-03-22 09:17:00,21.53,114.975,6.5 +2016-03-22 09:32:00,22.9925,115.17,6.52 +2016-03-22 09:47:00,21.8838,115.12,6.54 +2016-03-22 10:02:00,21.1387,115.247,6.55 +2016-03-22 10:17:00,22.17,115.125,6.58 +2016-03-22 10:32:00,22.75,115.092,6.61 +2016-03-22 10:47:00,24.1038,115.175,6.65 +2016-03-22 11:02:00,22.0212,115.28,6.68 +2016-03-22 11:17:00,20.5075,115.167,6.71 +2016-03-22 11:32:00,21.39,115.082,6.74 +2016-03-22 11:47:00,23.3763,115.04,6.79 +2016-03-22 12:02:00,23.3787,114.822,6.83 +2016-03-22 12:17:00,22.1225,114.71,6.86 +2016-03-22 12:32:00,22.6537,114.722,6.91 +2016-03-22 12:47:00,22.1725,114.745,6.97 +2016-03-22 13:02:00,22.26,114.78,7.02 +2016-03-22 13:17:00,21.0413,114.867,7.04 +2016-03-22 13:32:00,22.9912,114.985,7.07 +2016-03-22 13:47:00,22.5025,115.072,7.09 +2016-03-22 14:02:00,20.7012,115.012,7.09 +2016-03-22 14:17:00,21.8325,115.065,7.11 +2016-03-22 14:32:00,22.0263,115.155,7.14 +2016-03-22 14:47:00,22.75,115.102,7.16 +2016-03-22 15:02:00,21.34,115.075,7.15 +2016-03-22 15:17:00,22.2675,115.062,7.16 +2016-03-22 15:32:00,22.0263,115.222,7.17 +2016-03-22 15:47:00,22.1212,115.135,7.17 +2016-03-22 16:02:00,22.5512,115.15,7.19 +2016-03-22 16:17:00,21.0912,115.057,7.19 +2016-03-22 16:32:00,20.9863,114.967,7.2 +2016-03-22 16:47:00,22.2188,114.867,7.22 +2016-03-22 17:02:00,22.1237,114.832,7.23 +2016-03-22 17:17:00,23.1325,115.0,7.24 +2016-03-22 17:32:00,21.9775,115.033,7.25 +2016-03-22 17:47:00,21.3875,115.027,7.27 +2016-03-22 18:02:00,21.2387,115.122,7.29 +2016-03-22 18:17:00,22.0238,115.082,7.28 +2016-03-22 18:32:00,22.355,115.212,7.28 +2016-03-22 18:47:00,22.1263,115.34,7.29 +2016-03-22 19:02:00,20.5088,115.225,7.28 +2016-03-22 19:17:00,21.6325,115.46,7.27 +2016-03-22 19:32:00,22.9938,115.515,7.26 +2016-03-22 19:47:00,21.9737,115.452,7.24 +2016-03-22 20:02:00,22.265,115.597,7.22 +2016-03-22 20:17:00,22.9,115.575,7.2 +2016-03-22 20:32:00,21.285,115.442,7.18 +2016-03-22 20:47:00,22.4112,115.36,7.16 +2016-03-22 21:02:00,21.19,115.355,7.13 +2016-03-22 21:17:00,19.9225,115.265,7.11 +2016-03-22 21:32:00,22.2213,115.442,7.08 +2016-03-22 21:47:00,21.2862,115.612,7.06 +2016-03-22 22:02:00,21.4325,115.577,7.06 +2016-03-22 22:17:00,21.9225,115.527,7.05 +2016-03-22 22:32:00,21.9287,115.71,7.01 +2016-03-22 22:47:00,20.655,115.68,7.0 +2016-03-22 23:02:00,21.1888,115.702,6.98 +2016-03-22 23:17:00,22.7937,115.787,6.96 +2016-03-22 23:32:00,22.1725,115.81,6.94 +2016-03-22 23:47:00,21.3887,115.715,6.91 +2016-03-23 00:02:00,21.3887,115.768,6.89 +2016-03-23 00:17:00,22.7,115.71,6.86 +2016-03-23 00:32:00,22.2675,115.557,6.84 +2016-03-23 00:47:00,21.1437,115.518,6.81 +2016-03-23 01:02:00,21.2363,115.46,6.8 +2016-03-23 01:17:00,20.89,115.41,6.78 +2016-03-23 01:32:00,22.3087,115.317,6.77 +2016-03-23 01:47:00,23.3763,115.43,6.76 +2016-03-23 02:02:00,22.8,115.46,6.75 +2016-03-23 02:17:00,20.6525,115.435,6.72 +2016-03-23 02:32:00,22.075,115.39,6.71 +2016-03-23 02:47:00,20.61,115.405,6.69 +2016-03-23 03:02:00,20.7925,115.48,6.66 +2016-03-23 03:17:00,22.2612,115.515,6.63 +2016-03-23 03:32:00,21.53,115.423,6.61 +2016-03-23 03:47:00,20.6987,115.41,6.6 +2016-03-23 04:02:00,21.6275,115.242,6.59 +2016-03-23 04:17:00,20.6525,115.188,6.59 +2016-03-23 04:32:00,21.0912,115.042,6.58 +2016-03-23 04:47:00,21.9275,114.917,6.56 +2016-03-23 05:02:00,20.4613,114.98,6.54 +2016-03-23 05:17:00,22.8438,115.057,6.52 +2016-03-23 05:32:00,22.12,115.095,6.51 +2016-03-23 05:47:00,22.1687,115.25,6.52 +2016-03-23 06:02:00,21.6263,115.28,6.51 +2016-03-23 06:17:00,22.1263,115.165,6.5 +2016-03-23 06:32:00,22.8,115.045,6.5 +2016-03-23 06:47:00,22.2663,114.95,6.51 +2016-03-23 07:02:00,21.8787,115.025,6.51 +2016-03-23 07:17:00,21.385,115.143,6.5 +2016-03-23 07:32:00,21.7775,115.283,6.5 +2016-03-23 07:47:00,22.4562,115.23,6.49 +2016-03-23 08:02:00,22.41,115.152,6.5 +2016-03-23 08:17:00,21.24,115.298,6.49 +2016-03-23 08:32:00,20.84,115.268,6.48 +2016-03-23 08:47:00,22.7012,115.367,6.48 +2016-03-23 09:02:00,22.9425,115.4,6.48 +2016-03-23 09:17:00,21.9762,115.425,6.48 +2016-03-23 09:32:00,21.9262,115.302,6.49 +2016-03-23 09:47:00,22.3087,115.195,6.5 +2016-03-23 10:02:00,23.8625,115.125,6.51 +2016-03-23 10:17:00,22.0762,115.007,6.52 +2016-03-23 10:32:00,22.2188,114.938,6.54 +2016-03-23 10:47:00,22.7513,114.942,6.56 +2016-03-23 11:02:00,22.9425,114.852,6.58 +2016-03-23 11:17:00,22.355,114.965,6.6 +2016-03-23 11:32:00,23.035,115.122,6.62 +2016-03-23 11:47:00,21.6312,115.085,6.64 +2016-03-23 12:02:00,22.0737,114.992,6.65 +2016-03-23 12:17:00,20.6537,115.13,6.68 +2016-03-23 12:32:00,21.675,115.112,6.74 +2016-03-23 12:47:00,21.2825,115.13,6.82 +2016-03-23 13:02:00,21.8275,115.385,6.87 +2016-03-23 13:17:00,21.0875,115.495,6.87 +2016-03-23 13:32:00,19.8787,115.652,6.88 +2016-03-23 13:47:00,21.2887,115.785,6.88 +2016-03-23 14:02:00,22.6575,115.867,6.87 +2016-03-23 14:17:00,23.5225,115.995,6.88 +2016-03-23 14:32:00,22.7475,115.908,6.89 +2016-03-23 14:47:00,20.9875,115.817,6.9 +2016-03-23 15:02:00,21.78,115.942,6.93 +2016-03-23 15:17:00,21.6275,115.972,6.96 +2016-03-23 15:32:00,22.75,116.005,6.98 +2016-03-23 15:47:00,20.7962,116.09,6.99 +2016-03-23 16:02:00,22.5013,116.08,7.01 +2016-03-23 16:17:00,20.7913,116.245,7.01 +2016-03-23 16:32:00,21.6275,116.195,7.02 +2016-03-23 16:47:00,22.9912,116.212,7.03 +2016-03-23 17:02:00,21.9725,116.305,7.03 +2016-03-23 17:17:00,20.6525,116.222,7.04 +2016-03-23 17:32:00,23.5262,116.057,7.06 +2016-03-23 17:47:00,21.88,116.107,7.08 +2016-03-23 18:02:00,21.385,116.02,7.08 +2016-03-23 18:17:00,22.0225,115.867,7.08 +2016-03-23 18:32:00,21.1825,115.822,7.07 +2016-03-23 18:47:00,22.9875,115.625,7.07 +2016-03-23 19:02:00,22.5512,115.457,7.06 +2016-03-23 19:17:00,22.3587,115.067,7.06 +2016-03-23 19:32:00,22.6038,115.022,7.04 +2016-03-23 19:47:00,22.4037,114.847,7.04 +2016-03-23 20:02:00,21.4375,114.69,7.03 +2016-03-23 20:17:00,22.7487,114.587,7.03 +2016-03-23 20:32:00,22.5013,114.36,7.02 +2016-03-23 20:47:00,23.6212,114.375,7.02 +2016-03-23 21:02:00,22.6025,114.265,7.01 +2016-03-23 21:17:00,21.73,114.095,6.99 +2016-03-23 21:32:00,22.025,114.155,6.98 +2016-03-23 21:47:00,22.31,114.105,6.97 +2016-03-23 22:02:00,22.0675,113.842,6.94 +2016-03-23 22:17:00,23.0362,113.895,6.91 +2016-03-23 22:32:00,22.4013,113.65,6.88 +2016-03-23 22:47:00,22.6,113.647,6.85 +2016-03-23 23:02:00,22.2188,113.658,6.84 +2016-03-23 23:17:00,21.4362,113.455,6.82 +2016-03-23 23:32:00,22.6987,113.192,6.79 +2016-03-23 23:47:00,21.9238,113.132,6.75 +2016-03-24 00:02:00,20.7913,113.04,6.72 +2016-03-24 00:17:00,22.3575,112.97,6.69 +2016-03-24 00:32:00,20.605,113.132,6.67 +2016-03-24 00:47:00,22.505,113.082,6.63 +2016-03-24 01:02:00,23.2312,113.215,6.61 +2016-03-24 01:17:00,20.4638,113.102,6.6 +2016-03-24 01:32:00,21.5788,113.262,6.59 +2016-03-24 01:47:00,21.6775,113.25,6.58 +2016-03-24 02:02:00,21.0387,113.302,6.57 +2016-03-24 02:17:00,21.7288,113.34,6.56 +2016-03-24 02:32:00,22.175,113.503,6.54 +2016-03-24 02:47:00,21.485,113.505,6.52 +2016-03-24 03:02:00,21.93,113.542,6.51 +2016-03-24 03:17:00,21.9262,113.535,6.49 +2016-03-24 03:32:00,20.3613,113.73,6.47 +2016-03-24 03:47:00,22.9437,113.587,6.45 +2016-03-24 04:02:00,22.025,113.622,6.43 +2016-03-24 04:17:00,21.385,113.53,6.42 +2016-03-24 04:32:00,22.6,113.442,6.4 +2016-03-24 04:47:00,21.6837,113.562,6.37 +2016-03-24 05:02:00,21.8325,113.612,6.36 +2016-03-24 05:17:00,21.7787,113.612,6.34 +2016-03-24 05:32:00,21.2838,113.702,6.34 +2016-03-24 05:47:00,22.5037,113.783,6.33 +2016-03-24 06:02:00,22.0225,113.71,6.31 +2016-03-24 06:17:00,21.8275,113.702,6.3 +2016-03-24 06:32:00,21.88,113.96,6.3 +2016-03-24 06:47:00,21.8337,114.08,6.3 +2016-03-24 07:02:00,21.44,114.085,6.3 +2016-03-24 07:17:00,22.6012,114.25,6.29 +2016-03-24 07:32:00,23.2738,114.2,6.29 +2016-03-24 07:47:00,22.355,114.225,6.3 +2016-03-24 08:02:00,23.4238,114.19,6.32 +2016-03-24 08:17:00,21.1362,114.077,6.33 +2016-03-24 08:32:00,22.3575,114.268,6.35 +2016-03-24 08:47:00,21.5338,114.182,6.37 +2016-03-24 09:02:00,20.8388,114.18,6.36 +2016-03-24 09:17:00,22.2637,114.137,6.36 +2016-03-24 09:32:00,22.1225,114.47,6.4 +2016-03-24 09:47:00,21.9725,114.5,6.43 +2016-03-24 10:02:00,23.2262,114.533,6.49 +2016-03-24 10:17:00,22.3125,114.658,6.5 +2016-03-24 10:32:00,22.2663,114.497,6.57 +2016-03-24 10:47:00,22.0275,114.385,6.59 +2016-03-24 11:02:00,22.895,114.283,6.69 +2016-03-24 11:17:00,22.4013,114.44,6.74 +2016-03-24 11:32:00,22.4062,114.32,6.74 +2016-03-24 11:47:00,23.0362,114.18,6.77 +2016-03-24 12:02:00,21.7787,114.285,6.86 +2016-03-24 12:17:00,20.1675,114.39,6.95 +2016-03-24 12:32:00,21.1387,114.542,6.95 +2016-03-24 12:47:00,20.985,114.675,6.99 +2016-03-24 13:02:00,22.745,114.727,7.04 +2016-03-24 13:17:00,22.2225,114.59,7.03 +2016-03-24 13:32:00,21.0362,114.565,7.07 +2016-03-24 13:47:00,21.4337,114.507,7.1 +2016-03-24 14:02:00,21.8312,114.505,7.11 +2016-03-24 14:17:00,22.605,114.375,7.12 +2016-03-24 14:32:00,20.7,114.315,7.15 +2016-03-24 14:47:00,21.9275,114.387,7.17 +2016-03-24 15:02:00,22.3587,114.355,7.21 +2016-03-24 15:17:00,21.6263,114.257,7.28 +2016-03-24 15:32:00,22.025,114.555,7.34 +2016-03-24 15:47:00,20.89,114.652,7.4 +2016-03-24 16:02:00,20.845,114.625,7.44 +2016-03-24 16:17:00,22.4587,114.602,7.47 +2016-03-24 16:32:00,21.535,114.445,7.46 +2016-03-24 16:47:00,21.3875,114.432,7.45 +2016-03-24 17:02:00,20.745,114.438,7.46 +2016-03-24 17:17:00,22.3112,114.28,7.49 +2016-03-24 17:32:00,22.0713,114.275,7.54 +2016-03-24 17:47:00,22.7975,114.28,7.6 +2016-03-24 18:02:00,21.685,114.167,7.67 +2016-03-24 18:17:00,21.485,114.32,7.72 +2016-03-24 18:32:00,23.13,114.312,7.76 +2016-03-24 18:47:00,22.0713,114.38,7.77 +2016-03-24 19:02:00,22.5013,114.378,7.73 +2016-03-24 19:17:00,22.55,114.345,7.68 +2016-03-24 19:32:00,21.19,114.28,7.61 +2016-03-24 19:47:00,21.5338,114.237,7.56 +2016-03-24 20:02:00,21.2887,114.117,7.51 +2016-03-24 20:17:00,22.0725,113.99,7.48 +2016-03-24 20:32:00,22.7525,114.007,7.48 +2016-03-24 20:47:00,22.17,113.95,7.49 +2016-03-24 21:02:00,21.7812,113.93,7.5 +2016-03-24 21:17:00,22.4062,113.865,7.51 +2016-03-24 21:32:00,23.2275,113.872,7.53 +2016-03-24 21:47:00,20.9875,114.097,7.56 +2016-03-24 22:02:00,21.4887,114.217,7.57 +2016-03-24 22:17:00,21.975,114.105,7.56 +2016-03-24 22:32:00,21.2862,114.1,7.54 +2016-03-24 22:47:00,21.4362,113.947,7.52 +2016-03-24 23:02:00,21.4362,113.875,7.48 +2016-03-24 23:17:00,21.9287,113.927,7.42 +2016-03-24 23:32:00,20.7012,113.655,7.36 +2016-03-24 23:47:00,21.9313,113.768,7.31 +2016-03-25 00:02:00,22.6513,113.6,7.28 +2016-03-25 00:17:00,22.6537,113.747,7.26 +2016-03-25 00:32:00,22.0762,113.63,7.25 +2016-03-25 00:47:00,21.3375,113.987,7.24 +2016-03-25 01:02:00,21.1338,113.945,7.24 +2016-03-25 01:17:00,21.7787,113.955,7.25 +2016-03-25 01:32:00,21.3887,114.037,7.26 +2016-03-25 01:47:00,21.9762,113.977,7.27 +2016-03-25 02:02:00,21.7775,113.865,7.26 +2016-03-25 02:17:00,20.9863,113.84,7.26 +2016-03-25 02:32:00,22.8937,113.647,7.27 +2016-03-25 02:47:00,22.2612,113.643,7.28 +2016-03-25 03:02:00,23.1325,113.673,7.29 +2016-03-25 03:17:00,21.4388,113.567,7.28 +2016-03-25 03:32:00,22.7513,113.753,7.27 +2016-03-25 03:47:00,22.0263,113.827,7.27 +2016-03-25 04:02:00,21.6312,113.83,7.26 +2016-03-25 04:17:00,20.8875,113.77,7.25 +2016-03-25 04:32:00,21.9262,113.702,7.24 +2016-03-25 04:47:00,22.2162,113.587,7.22 +2016-03-25 05:02:00,23.325,113.467,7.21 +2016-03-25 05:17:00,22.4088,113.497,7.2 +2016-03-25 05:32:00,22.5525,113.477,7.19 +2016-03-25 05:47:00,22.0212,113.402,7.18 +2016-03-25 06:02:00,22.1225,113.357,7.15 +2016-03-25 06:17:00,22.3587,113.34,7.13 +2016-03-25 06:32:00,22.6025,113.332,7.12 +2016-03-25 06:47:00,20.0212,113.235,7.11 +2016-03-25 07:02:00,23.2775,113.352,7.1 +2016-03-25 07:17:00,22.605,113.372,7.08 +2016-03-25 07:32:00,23.2763,113.337,7.08 +2016-03-25 07:47:00,21.53,113.342,7.07 +2016-03-25 08:02:00,21.5788,113.393,7.08 +2016-03-25 08:17:00,22.1188,113.557,7.09 +2016-03-25 08:32:00,22.895,113.455,7.11 +2016-03-25 08:47:00,23.32,113.602,7.12 +2016-03-25 09:02:00,21.8363,113.715,7.15 +2016-03-25 09:17:00,21.5325,113.768,7.16 +2016-03-25 09:32:00,22.895,113.845,7.18 +2016-03-25 09:47:00,23.1813,113.675,7.19 +2016-03-25 10:02:00,20.51,113.577,7.21 +2016-03-25 10:17:00,23.0362,113.555,7.23 +2016-03-25 10:32:00,22.5462,113.382,7.26 +2016-03-25 10:47:00,21.0413,113.44,7.3 +2016-03-25 11:02:00,23.2812,113.347,7.32 +2016-03-25 11:17:00,21.5812,113.29,7.36 +2016-03-25 11:32:00,22.3562,113.36,7.4 +2016-03-25 11:47:00,22.1175,113.215,7.43 +2016-03-25 12:02:00,22.6012,113.53,7.48 +2016-03-25 12:17:00,23.725,113.412,7.52 +2016-03-25 12:32:00,23.3725,113.597,7.56 +2016-03-25 12:47:00,21.1387,113.42,7.59 +2016-03-25 13:02:00,21.0425,113.43,7.63 +2016-03-25 13:17:00,22.1188,113.322,7.66 +2016-03-25 13:32:00,22.9463,113.29,7.67 +2016-03-25 13:47:00,22.5025,113.205,7.69 +2016-03-25 14:02:00,20.365,113.292,7.71 +2016-03-25 14:17:00,22.5537,113.355,7.73 +2016-03-25 14:32:00,23.0888,113.305,7.74 +2016-03-25 14:47:00,22.6075,113.55,7.75 +2016-03-25 15:02:00,22.995,113.7,7.76 +2016-03-25 15:17:00,21.14,113.652,7.78 +2016-03-25 15:32:00,21.4362,113.72,7.79 +2016-03-25 15:47:00,22.3575,113.647,7.8 +2016-03-25 16:02:00,23.4262,113.605,7.81 +2016-03-25 16:17:00,22.2175,113.472,7.82 +2016-03-25 16:32:00,23.0362,113.522,7.83 +2016-03-25 16:47:00,21.53,113.495,7.83 +2016-03-25 17:02:00,20.6562,113.5,7.85 +2016-03-25 17:17:00,21.035,113.43,7.87 +2016-03-25 17:32:00,21.3838,113.537,7.87 +2016-03-25 17:47:00,22.6513,113.722,7.87 +2016-03-25 18:02:00,21.9275,113.78,7.88 +2016-03-25 18:17:00,22.0263,113.862,7.88 +2016-03-25 18:32:00,21.3913,113.772,7.88 +2016-03-25 18:47:00,22.8475,113.567,7.87 +2016-03-25 19:02:00,21.6813,113.645,7.86 +2016-03-25 19:17:00,23.72,113.577,7.85 +2016-03-25 19:32:00,20.2125,113.533,7.84 +2016-03-25 19:47:00,23.375,113.305,7.84 +2016-03-25 20:02:00,22.895,113.312,7.83 +2016-03-25 20:17:00,22.265,113.325,7.81 +2016-03-25 20:32:00,21.1387,113.415,7.8 +2016-03-25 20:47:00,21.4812,113.625,7.79 +2016-03-25 21:02:00,21.9275,113.647,7.78 +2016-03-25 21:17:00,22.3538,113.565,7.78 +2016-03-25 21:32:00,21.975,113.505,7.78 +2016-03-25 21:47:00,22.6012,113.527,7.77 +2016-03-25 22:02:00,22.2612,113.455,7.77 +2016-03-25 22:17:00,21.4863,113.298,7.76 +2016-03-25 22:32:00,21.8825,113.21,7.74 +2016-03-25 22:47:00,20.1687,113.27,7.73 +2016-03-25 23:02:00,22.8,113.232,7.72 +2016-03-25 23:17:00,22.31,113.287,7.72 +2016-03-25 23:32:00,22.2162,113.36,7.7 +2016-03-25 23:47:00,21.7763,113.525,7.7 +2016-03-26 00:02:00,22.7525,113.462,7.69 +2016-03-26 00:17:00,23.8625,113.492,7.68 +2016-03-26 00:32:00,21.4362,113.415,7.67 +2016-03-26 00:47:00,22.405,113.307,7.67 +2016-03-26 01:02:00,22.5037,113.237,7.66 +2016-03-26 01:17:00,22.17,113.272,7.65 +2016-03-26 01:32:00,22.265,113.158,7.64 +2016-03-26 01:47:00,21.1362,113.143,7.64 +2016-03-26 02:02:00,21.6325,113.255,7.64 +2016-03-26 02:17:00,21.3862,113.327,7.62 +2016-03-26 02:32:00,21.83,113.455,7.61 +2016-03-26 02:47:00,21.8275,113.442,7.61 +2016-03-26 03:02:00,22.355,113.382,7.6 +2016-03-26 03:17:00,21.9725,113.412,7.59 +2016-03-26 03:32:00,21.3887,113.32,7.58 +2016-03-26 03:47:00,21.19,113.195,7.57 +2016-03-26 04:02:00,22.2663,113.217,7.56 +2016-03-26 04:17:00,20.5088,113.112,7.55 +2016-03-26 04:32:00,21.53,113.15,7.55 +2016-03-26 04:47:00,21.4375,113.072,7.55 +2016-03-26 05:02:00,21.9725,113.13,7.54 +2016-03-26 05:17:00,22.5488,113.342,7.53 +2016-03-26 05:32:00,23.8112,113.475,7.53 +2016-03-26 05:47:00,22.0263,113.545,7.53 +2016-03-26 06:02:00,21.93,113.44,7.54 +2016-03-26 06:17:00,22.1663,113.41,7.53 +2016-03-26 06:32:00,21.5312,113.44,7.54 +2016-03-26 06:47:00,20.4575,113.472,7.54 +2016-03-26 07:02:00,22.795,113.46,7.56 +2016-03-26 07:17:00,23.47,113.47,7.58 +2016-03-26 07:32:00,21.7738,113.507,7.59 +2016-03-26 07:47:00,22.6537,113.465,7.61 +2016-03-26 08:02:00,22.2625,113.525,7.63 +2016-03-26 08:17:00,22.7438,113.525,7.66 +2016-03-26 08:32:00,22.9412,113.495,7.73 +2016-03-26 08:47:00,22.025,113.365,7.75 +2016-03-26 09:02:00,22.7,113.317,7.78 +2016-03-26 09:17:00,22.6525,113.257,7.84 +2016-03-26 09:32:00,22.265,113.382,7.9 +2016-03-26 09:47:00,23.2275,113.262,7.93 +2016-03-26 10:02:00,21.3862,113.317,7.95 +2016-03-26 10:17:00,22.405,113.525,7.99 +2016-03-26 10:32:00,22.6025,113.69,8.06 +2016-03-26 10:47:00,21.3887,113.72,8.14 +2016-03-26 11:02:00,22.5025,113.63,8.2 +2016-03-26 11:17:00,22.175,113.67,8.26 +2016-03-26 11:32:00,22.8988,113.417,8.31 +2016-03-26 11:47:00,22.6987,113.522,8.35 +2016-03-26 12:02:00,20.265,113.465,8.36 +2016-03-26 12:17:00,23.8125,113.367,8.4 +2016-03-26 12:32:00,22.0713,113.572,8.41 +2016-03-26 12:47:00,21.7288,113.753,8.42 +2016-03-26 13:02:00,21.4362,113.92,8.45 +2016-03-26 13:17:00,21.48,113.717,8.53 +2016-03-26 13:32:00,22.4062,113.925,8.61 +2016-03-26 13:47:00,21.8787,113.72,8.71 +2016-03-26 14:02:00,21.3875,113.91,8.8 +2016-03-26 14:17:00,22.5525,113.765,8.87 +2016-03-26 14:32:00,20.6513,113.66,8.94 +2016-03-26 14:47:00,21.3862,113.727,8.99 +2016-03-26 15:02:00,21.9313,113.597,9.03 +2016-03-26 15:17:00,21.9837,113.757,9.07 +2016-03-26 15:32:00,22.5537,113.827,9.13 +2016-03-26 15:47:00,22.55,113.945,9.17 +2016-03-26 16:02:00,21.6312,114.012,9.23 +2016-03-26 16:17:00,21.6275,113.89,9.28 +2016-03-26 16:32:00,21.9238,113.855,9.32 +2016-03-26 16:47:00,23.18,113.762,9.37 +2016-03-26 17:02:00,21.6338,113.765,9.41 +2016-03-26 17:17:00,21.3312,113.632,9.44 +2016-03-26 17:32:00,20.1675,113.67,9.45 +2016-03-26 17:47:00,22.3087,113.56,9.45 +2016-03-26 18:02:00,22.945,113.592,9.45 +2016-03-26 18:17:00,21.7812,113.682,9.46 +2016-03-26 18:32:00,22.6537,113.76,9.45 +2016-03-26 18:47:00,22.3637,113.835,9.46 +2016-03-26 19:02:00,22.2663,113.855,9.47 +2016-03-26 19:17:00,22.0263,113.745,9.46 +2016-03-26 19:32:00,21.8838,113.717,9.45 +2016-03-26 19:47:00,22.7975,113.527,9.42 +2016-03-26 20:02:00,21.73,113.575,9.37 +2016-03-26 20:17:00,21.6775,113.525,9.3 +2016-03-26 20:32:00,23.1312,113.305,9.24 +2016-03-26 20:47:00,22.8525,113.345,9.19 +2016-03-26 21:02:00,22.3613,113.673,9.14 +2016-03-26 21:17:00,20.7937,113.753,9.1 +2016-03-26 21:32:00,20.8875,113.777,9.05 +2016-03-26 21:47:00,21.78,113.725,9.02 +2016-03-26 22:02:00,21.5812,113.575,8.98 +2016-03-26 22:17:00,21.9775,113.495,8.94 +2016-03-26 22:32:00,21.9788,113.482,8.9 +2016-03-26 22:47:00,21.6338,113.46,8.88 +2016-03-26 23:02:00,21.98,113.442,8.85 +2016-03-26 23:17:00,22.6525,113.295,8.81 +2016-03-26 23:32:00,21.73,113.232,8.77 +2016-03-26 23:47:00,21.4837,113.215,8.73 +2016-03-27 00:02:00,22.1738,113.347,8.69 +2016-03-27 00:17:00,22.2625,113.45,8.66 +2016-03-27 00:32:00,22.8988,113.49,8.61 +2016-03-27 00:47:00,21.785,113.34,8.57 +2016-03-27 01:02:00,22.945,113.427,8.53 +2016-03-27 01:17:00,23.6212,113.395,8.48 +2016-03-27 01:32:00,22.5525,113.26,8.43 +2016-03-27 01:47:00,22.6525,113.207,8.39 +2016-03-27 02:02:00,22.4075,113.12,8.35 +2016-03-27 02:17:00,22.5525,113.16,8.3 +2016-03-27 02:32:00,23.5775,113.1,8.26 +2016-03-27 02:47:00,21.9287,113.06,8.22 +2016-03-27 03:02:00,21.5825,113.21,8.2 +2016-03-27 03:17:00,21.48,113.537,8.17 +2016-03-27 03:32:00,21.68,113.412,8.14 +2016-03-27 03:47:00,21.6787,113.337,8.12 +2016-03-27 04:02:00,22.3587,113.24,8.1 +2016-03-27 04:17:00,22.9,113.14,8.08 +2016-03-27 04:32:00,22.0775,113.155,8.06 +2016-03-27 04:47:00,21.4812,113.132,8.04 +2016-03-27 05:02:00,22.1725,112.99,8.0 +2016-03-27 05:17:00,22.605,113.005,7.96 +2016-03-27 05:32:00,22.4562,112.96,7.94 +2016-03-27 05:47:00,21.1875,112.977,7.91 +2016-03-27 06:02:00,22.5963,112.757,7.88 +2016-03-27 06:17:00,22.125,112.99,7.85 +2016-03-27 06:32:00,21.5812,112.92,7.83 +2016-03-27 06:47:00,22.2637,113.003,7.81 +2016-03-27 07:02:00,22.4575,113.022,7.82 +2016-03-27 07:17:00,23.6712,113.018,7.83 +2016-03-27 07:32:00,22.1725,113.02,7.85 +2016-03-27 07:47:00,22.1237,112.79,7.87 +2016-03-27 08:02:00,22.995,112.817,7.91 +2016-03-27 08:17:00,22.5075,112.68,7.93 +2016-03-27 08:32:00,23.275,112.692,7.96 +2016-03-27 08:47:00,21.1862,112.802,7.96 +2016-03-27 09:02:00,23.5212,112.89,7.95 +2016-03-27 09:17:00,21.1862,112.795,7.95 +2016-03-27 09:32:00,22.5525,112.732,7.97 +2016-03-27 09:47:00,23.5713,112.61,8.01 +2016-03-27 10:02:00,21.2412,112.69,8.08 +2016-03-27 10:17:00,22.6038,112.607,8.14 +2016-03-27 10:32:00,21.9238,112.622,8.21 +2016-03-27 10:47:00,24.6062,112.7,8.22 +2016-03-27 11:02:00,22.265,112.595,8.23 +2016-03-27 11:17:00,21.5737,112.68,8.24 +2016-03-27 11:32:00,22.2175,112.87,8.25 +2016-03-27 11:47:00,22.5037,112.665,8.26 +2016-03-27 12:02:00,23.2325,112.643,8.27 +2016-03-27 12:17:00,22.8438,112.74,8.32 +2016-03-27 12:32:00,21.8787,112.518,8.36 +2016-03-27 12:47:00,22.2612,112.445,8.39 +2016-03-27 13:02:00,22.7513,112.408,8.43 +2016-03-27 13:17:00,22.7988,112.312,8.46 +2016-03-27 13:32:00,22.55,112.147,8.49 +2016-03-27 13:47:00,22.895,112.072,8.51 +2016-03-27 14:02:00,23.135,112.232,8.53 +2016-03-27 14:17:00,22.4538,112.482,8.55 +2016-03-27 14:32:00,22.6513,112.675,8.59 +2016-03-27 14:47:00,21.725,112.567,8.64 +2016-03-27 15:02:00,23.5737,112.6,8.67 +2016-03-27 15:17:00,21.1387,112.557,8.71 +2016-03-27 15:32:00,21.7312,112.467,8.74 +2016-03-27 15:47:00,22.9487,112.505,8.77 +2016-03-27 16:02:00,22.5037,112.442,8.78 +2016-03-27 16:17:00,22.4037,112.425,8.8 +2016-03-27 16:32:00,21.09,112.477,8.81 +2016-03-27 16:47:00,20.89,112.39,8.81 +2016-03-27 17:02:00,21.1362,112.472,8.82 +2016-03-27 17:17:00,23.1325,112.555,8.82 +2016-03-27 17:32:00,24.3575,112.665,8.83 +2016-03-27 17:47:00,23.0875,112.65,8.83 +2016-03-27 18:02:00,23.8613,112.717,8.83 +2016-03-27 18:17:00,22.3087,112.65,8.82 +2016-03-27 18:32:00,21.9762,112.6,8.82 +2016-03-27 18:47:00,22.3063,112.555,8.81 +2016-03-27 19:02:00,22.7475,112.45,8.8 +2016-03-27 19:17:00,22.7487,112.395,8.78 +2016-03-27 19:32:00,22.895,112.182,8.77 +2016-03-27 19:47:00,22.31,112.23,8.76 +2016-03-27 20:02:00,21.97,112.16,8.75 +2016-03-27 20:17:00,22.6025,112.24,8.74 +2016-03-27 20:32:00,21.9737,112.34,8.73 +2016-03-27 20:47:00,23.9575,112.372,8.71 +2016-03-27 21:02:00,22.7025,112.335,8.69 +2016-03-27 21:17:00,22.8988,112.357,8.67 +2016-03-27 21:32:00,23.3763,112.268,8.64 +2016-03-27 21:47:00,22.6975,112.25,8.61 +2016-03-27 22:02:00,21.2862,112.247,8.57 +2016-03-27 22:17:00,22.3075,112.095,8.53 +2016-03-27 22:32:00,22.9925,112.04,8.49 +2016-03-27 22:47:00,23.4238,111.972,8.46 +2016-03-27 23:02:00,22.265,111.965,8.43 +2016-03-27 23:17:00,22.6025,111.972,8.41 +2016-03-27 23:32:00,24.0537,111.962,8.38 +2016-03-27 23:47:00,22.8438,111.957,8.37 +2016-03-28 00:02:00,24.05,112.062,8.36 +2016-03-28 00:17:00,23.3237,112.21,8.36 +2016-03-28 00:32:00,22.8438,112.247,8.35 +2016-03-28 00:47:00,21.485,112.15,8.34 +2016-03-28 01:02:00,22.1712,112.167,8.32 +2016-03-28 01:17:00,21.2887,112.162,8.3 +2016-03-28 01:32:00,24.1537,112.07,8.29 +2016-03-28 01:47:00,23.2712,112.04,8.27 +2016-03-28 02:02:00,23.4262,111.935,8.25 +2016-03-28 02:17:00,22.9425,111.94,8.22 +2016-03-28 02:32:00,21.83,111.792,8.19 +2016-03-28 02:47:00,22.4538,111.757,8.17 +2016-03-28 03:02:00,23.3775,111.677,8.13 +2016-03-28 03:17:00,22.2213,111.805,8.1 +2016-03-28 03:32:00,23.275,111.835,8.07 +2016-03-28 03:47:00,22.75,111.972,8.04 +2016-03-28 04:02:00,23.2275,112.085,8.02 +2016-03-28 04:17:00,21.6825,112.045,7.98 +2016-03-28 04:32:00,23.6188,112.12,7.96 +2016-03-28 04:47:00,21.1912,112.022,7.93 +2016-03-28 05:02:00,23.275,111.98,7.9 +2016-03-28 05:17:00,21.9788,111.962,7.87 +2016-03-28 05:32:00,22.8925,111.977,7.85 +2016-03-28 05:47:00,21.9262,111.957,7.83 +2016-03-28 06:02:00,21.3375,111.932,7.82 +2016-03-28 06:17:00,22.2138,111.977,7.81 +2016-03-28 06:32:00,21.5312,112.065,7.83 +2016-03-28 06:47:00,22.7075,111.985,7.84 +2016-03-28 07:02:00,21.3925,111.927,7.83 +2016-03-28 07:17:00,22.945,112.05,7.84 +2016-03-28 07:32:00,24.605,111.955,7.85 +2016-03-28 07:47:00,23.2262,112.227,7.89 +2016-03-28 08:02:00,24.4075,112.143,7.94 +2016-03-28 08:17:00,22.9437,112.227,8.0 +2016-03-28 08:32:00,24.055,112.095,8.05 +2016-03-28 08:47:00,22.8,112.015,8.1 +2016-03-28 09:02:00,23.5713,112.135,8.16 +2016-03-28 09:17:00,23.665,112.137,8.18 +2016-03-28 09:32:00,22.6513,112.147,8.21 +2016-03-28 09:47:00,22.6987,112.025,8.24 +2016-03-28 10:02:00,23.0825,111.957,8.25 +2016-03-28 10:17:00,22.3538,111.772,8.28 +2016-03-28 10:32:00,20.65,111.72,8.32 +2016-03-28 10:47:00,23.8162,111.81,8.34 +2016-03-28 11:02:00,22.5,111.54,8.35 +2016-03-28 11:17:00,23.0825,111.822,8.38 +2016-03-28 11:32:00,23.5225,111.915,8.41 +2016-03-28 11:47:00,24.905,111.893,8.43 +2016-03-28 12:02:00,21.1387,111.852,8.41 +2016-03-28 12:17:00,22.85,111.677,8.4 +2016-03-28 12:32:00,20.9437,111.607,8.4 +2016-03-28 12:47:00,22.7,111.542,8.4 +2016-03-28 13:02:00,22.455,111.447,8.41 +2016-03-28 13:17:00,21.8288,111.455,8.44 +2016-03-28 13:32:00,22.4525,111.202,8.47 +2016-03-28 13:47:00,23.0812,111.15,8.49 +2016-03-28 14:02:00,22.2162,110.83,8.53 +2016-03-28 14:17:00,23.2825,110.452,8.61 +2016-03-28 14:32:00,22.8025,110.447,8.68 +2016-03-28 14:47:00,22.9925,110.147,8.69 +2016-03-28 15:02:00,23.0825,110.255,8.7 +2016-03-28 15:17:00,23.0362,110.22,8.75 +2016-03-28 15:32:00,22.7,110.277,8.79 +2016-03-28 15:47:00,22.99,109.987,8.82 +2016-03-28 16:02:00,24.5625,109.912,8.84 +2016-03-28 16:17:00,23.28,110.037,8.86 +2016-03-28 16:32:00,22.8925,109.98,8.87 +2016-03-28 16:47:00,22.1725,110.02,8.87 +2016-03-28 17:02:00,22.7988,110.277,8.87 +2016-03-28 17:17:00,22.0713,110.302,8.86 +2016-03-28 17:32:00,21.5287,110.415,8.85 +2016-03-28 17:47:00,21.975,110.402,8.86 +2016-03-28 18:02:00,22.7525,110.42,8.87 +2016-03-28 18:17:00,23.28,110.357,8.86 +2016-03-28 18:32:00,22.6987,110.482,8.85 +2016-03-28 18:47:00,22.8487,110.42,8.84 +2016-03-28 19:02:00,23.4737,110.545,8.84 +2016-03-28 19:17:00,22.8487,110.705,8.83 +2016-03-28 19:32:00,22.8975,110.712,8.82 +2016-03-28 19:47:00,22.9,110.812,8.78 +2016-03-28 20:02:00,22.7525,110.92,8.75 +2016-03-28 20:17:00,23.33,110.975,8.73 +2016-03-28 20:32:00,23.7687,111.02,8.71 +2016-03-28 20:47:00,23.77,111.122,8.68 +2016-03-28 21:02:00,23.4275,111.09,8.65 +2016-03-28 21:17:00,22.9887,111.107,8.6 +2016-03-28 21:32:00,22.7988,111.007,8.56 +2016-03-28 21:47:00,23.4762,110.997,8.53 +2016-03-28 22:02:00,22.1738,110.727,8.49 +2016-03-28 22:17:00,22.6987,110.852,8.45 +2016-03-28 22:32:00,22.02,110.845,8.41 +2016-03-28 22:47:00,22.5013,110.785,8.37 +2016-03-28 23:02:00,23.3213,110.832,8.34 +2016-03-28 23:17:00,22.5488,111.03,8.32 +2016-03-28 23:32:00,23.0375,110.972,8.3 +2016-03-28 23:47:00,23.23,111.037,8.29 +2016-03-29 00:02:00,22.5537,111.08,8.28 +2016-03-29 00:17:00,22.405,111.132,8.26 +2016-03-29 00:32:00,23.1775,111.24,8.26 +2016-03-29 00:47:00,23.7162,111.197,8.26 +2016-03-29 01:02:00,22.0725,111.3,8.25 +2016-03-29 01:17:00,22.7988,111.4,8.24 +2016-03-29 01:32:00,22.315,111.307,8.23 +2016-03-29 01:47:00,23.5275,111.312,8.22 +2016-03-29 02:02:00,22.17,111.235,8.21 +2016-03-29 02:17:00,23.0387,111.247,8.18 +2016-03-29 02:32:00,22.655,111.087,8.15 +2016-03-29 02:47:00,22.31,111.455,8.11 +2016-03-29 03:02:00,22.2162,111.747,8.08 +2016-03-29 03:17:00,23.52,111.923,8.05 +2016-03-29 03:32:00,23.2288,112.067,8.02 +2016-03-29 03:47:00,22.8012,112.022,7.97 +2016-03-29 04:02:00,22.455,112.005,7.9 +2016-03-29 04:17:00,23.8138,111.97,7.84 +2016-03-29 04:32:00,22.2175,111.98,7.81 +2016-03-29 04:47:00,22.6087,111.887,7.79 +2016-03-29 05:02:00,22.3562,111.955,7.76 +2016-03-29 05:17:00,23.7687,112.025,7.73 +2016-03-29 05:32:00,23.0413,111.992,7.71 +2016-03-29 05:47:00,22.8937,111.792,7.68 +2016-03-29 06:02:00,22.55,111.847,7.66 +2016-03-29 06:17:00,22.8438,111.795,7.64 +2016-03-29 06:32:00,23.2262,111.632,7.63 +2016-03-29 06:47:00,22.405,111.737,7.65 +2016-03-29 07:02:00,23.4262,111.8,7.67 +2016-03-29 07:17:00,23.4287,111.822,7.7 +2016-03-29 07:32:00,22.6062,111.802,7.73 +2016-03-29 07:47:00,22.7513,111.83,7.73 +2016-03-29 08:02:00,22.2612,111.935,7.75 +2016-03-29 08:17:00,23.6175,111.732,7.75 +2016-03-29 08:32:00,22.8937,111.76,7.78 +2016-03-29 08:47:00,22.1712,111.66,7.85 +2016-03-29 09:02:00,23.8162,111.643,7.84 +2016-03-29 09:17:00,22.9013,111.66,7.83 +2016-03-29 09:32:00,23.475,111.595,7.84 +2016-03-29 09:47:00,24.0525,111.432,7.86 +2016-03-29 10:02:00,22.75,111.27,7.88 +2016-03-29 10:17:00,23.5713,111.095,7.91 +2016-03-29 10:32:00,23.62,111.005,7.95 +2016-03-29 10:47:00,22.7,111.322,7.96 +2016-03-29 11:02:00,23.6275,111.232,7.98 +2016-03-29 11:17:00,23.6225,111.137,8.01 +2016-03-29 11:32:00,24.4062,111.277,8.02 +2016-03-29 11:47:00,23.765,111.322,8.03 +2016-03-29 12:02:00,22.6513,111.355,8.09 +2016-03-29 12:17:00,22.1212,111.352,8.16 +2016-03-29 12:32:00,21.8787,111.485,8.14 +2016-03-29 12:47:00,22.0775,111.565,8.15 +2016-03-29 13:02:00,22.7038,111.615,8.25 +2016-03-29 13:17:00,23.7175,111.677,8.34 +2016-03-29 13:32:00,23.0338,111.735,8.42 +2016-03-29 13:47:00,23.9075,111.71,8.42 +2016-03-29 14:02:00,22.5037,111.855,8.43 +2016-03-29 14:17:00,22.9875,111.548,8.43 +2016-03-29 14:32:00,23.1287,111.51,8.46 +2016-03-29 14:47:00,22.0788,111.522,8.5 +2016-03-29 15:02:00,23.4262,111.692,8.53 +2016-03-29 15:17:00,25.0537,111.622,8.54 +2016-03-29 15:32:00,24.205,111.77,8.55 +2016-03-29 15:47:00,22.4062,111.67,8.54 +2016-03-29 16:02:00,22.7525,111.84,8.54 +2016-03-29 16:17:00,22.7475,111.905,8.54 +2016-03-29 16:32:00,23.8138,112.035,8.55 +2016-03-29 16:47:00,22.7038,112.237,8.58 +2016-03-29 17:02:00,23.0825,112.315,8.61 +2016-03-29 17:17:00,23.1787,112.482,8.64 +2016-03-29 17:32:00,23.23,112.66,8.67 +2016-03-29 17:47:00,22.5537,112.862,8.71 +2016-03-29 18:02:00,22.8438,112.93,8.75 +2016-03-29 18:17:00,22.4587,112.852,8.78 +2016-03-29 18:32:00,24.0075,112.905,8.78 +2016-03-29 18:47:00,22.6062,113.072,8.77 +2016-03-29 19:02:00,21.83,113.15,8.75 +2016-03-29 19:17:00,23.3262,113.247,8.72 +2016-03-29 19:32:00,23.0362,113.345,8.67 +2016-03-29 19:47:00,22.1738,113.307,8.62 +2016-03-29 20:02:00,22.9938,113.5,8.58 +2016-03-29 20:17:00,23.4775,113.395,8.54 +2016-03-29 20:32:00,22.9525,113.34,8.5 +2016-03-29 20:47:00,23.3237,113.387,8.47 +2016-03-29 21:02:00,22.405,113.522,8.44 +2016-03-29 21:17:00,24.5088,113.427,8.4 +2016-03-29 21:32:00,25.1075,113.335,8.37 +2016-03-29 21:47:00,23.5225,112.952,8.35 +2016-03-29 22:02:00,23.2288,112.865,8.32 +2016-03-29 22:17:00,23.045,112.697,8.29 +2016-03-29 22:32:00,23.185,112.645,8.26 +2016-03-29 22:47:00,24.8512,112.533,8.25 +2016-03-29 23:02:00,22.6038,112.507,8.23 +2016-03-29 23:17:00,23.085,112.425,8.2 +2016-03-29 23:32:00,23.8112,112.457,8.18 +2016-03-29 23:47:00,22.895,112.337,8.15 +2016-03-30 00:02:00,23.575,112.2,8.13 +2016-03-30 00:17:00,23.7213,112.147,8.11 +2016-03-30 00:32:00,22.8487,112.13,8.09 +2016-03-30 00:47:00,23.4225,112.158,8.07 +2016-03-30 01:02:00,24.705,112.027,8.04 +2016-03-30 01:17:00,22.6025,112.012,8.01 +2016-03-30 01:32:00,23.5212,111.753,7.98 +2016-03-30 01:47:00,24.1012,111.542,7.96 +2016-03-30 02:02:00,21.6325,111.327,7.94 +2016-03-30 02:17:00,22.8962,111.253,7.93 +2016-03-30 02:32:00,24.2087,111.31,7.91 +2016-03-30 02:47:00,22.895,111.292,7.91 +2016-03-30 03:02:00,22.1712,111.33,7.9 +2016-03-30 03:17:00,22.5525,111.342,7.88 +2016-03-30 03:32:00,23.2237,111.272,7.86 +2016-03-30 03:47:00,23.3288,111.352,7.84 +2016-03-30 04:02:00,24.6588,111.472,7.83 +2016-03-30 04:17:00,23.8138,111.527,7.81 +2016-03-30 04:32:00,23.1287,111.645,7.79 +2016-03-30 04:47:00,23.8138,111.52,7.78 +2016-03-30 05:02:00,23.4737,111.55,7.76 +2016-03-30 05:17:00,24.7062,111.405,7.72 +2016-03-30 05:32:00,24.0088,111.445,7.69 +2016-03-30 05:47:00,23.9125,111.21,7.69 +2016-03-30 06:02:00,23.0837,111.155,7.69 +2016-03-30 06:17:00,22.265,111.075,7.67 +2016-03-30 06:32:00,23.425,111.143,7.67 +2016-03-30 06:47:00,23.7637,111.212,7.67 +2016-03-30 07:02:00,23.425,111.217,7.68 +2016-03-30 07:17:00,24.2062,111.262,7.7 +2016-03-30 07:32:00,23.72,111.217,7.7 +2016-03-30 07:47:00,23.625,111.307,7.7 +2016-03-30 08:02:00,23.5737,111.38,7.71 +2016-03-30 08:17:00,24.255,111.355,7.72 +2016-03-30 08:32:00,24.0537,111.46,7.7 +2016-03-30 08:47:00,23.8125,111.385,7.7 +2016-03-30 09:02:00,23.375,111.462,7.69 +2016-03-30 09:17:00,22.5025,111.535,7.68 +2016-03-30 09:32:00,22.4088,111.412,7.68 +2016-03-30 09:47:00,22.3125,111.232,7.7 +2016-03-30 10:02:00,23.6687,110.515,7.73 +2016-03-30 10:17:00,25.3925,109.005,7.74 +2016-03-30 10:32:00,24.25,107.235,7.77 +2016-03-30 10:47:00,24.1512,105.555,7.82 +2016-03-30 11:02:00,24.1512,104.117,7.89 +2016-03-30 11:17:00,23.425,102.842,7.97 +2016-03-30 11:32:00,23.8625,100.52,8.04 +2016-03-30 11:47:00,23.5238,97.91,8.09 +2016-03-30 12:02:00,25.1012,95.85,8.15 +2016-03-30 12:17:00,24.3075,94.33,8.2 +2016-03-30 12:32:00,23.1738,93.535,8.25 +2016-03-30 12:47:00,24.0,93.0275,8.29 +2016-03-30 13:02:00,24.0525,93.37,8.32 +2016-03-30 13:17:00,23.67,94.0975,8.34 +2016-03-30 13:32:00,24.155,95.1,8.41 +2016-03-30 13:47:00,23.4725,96.4875,8.44 +2016-03-30 14:02:00,25.4375,97.86,8.45 +2016-03-30 14:17:00,25.345,99.1725,8.46 +2016-03-30 14:32:00,25.0512,100.51,8.46 +2016-03-30 14:47:00,23.7137,101.753,8.48 +2016-03-30 15:02:00,24.0525,102.652,8.51 +2016-03-30 15:17:00,23.6712,103.44,8.53 +2016-03-30 15:32:00,24.51,104.217,8.55 +2016-03-30 15:47:00,24.405,104.885,8.58 +2016-03-30 16:02:00,24.46,105.477,8.6 +2016-03-30 16:17:00,23.57,105.878,8.62 +2016-03-30 16:32:00,24.3538,106.367,8.64 +2016-03-30 16:47:00,23.955,106.932,8.67 +2016-03-30 17:02:00,23.0362,107.14,8.68 +2016-03-30 17:17:00,23.5275,107.395,8.7 +2016-03-30 17:32:00,24.405,107.475,8.71 +2016-03-30 17:47:00,24.2062,107.555,8.7 +2016-03-30 18:02:00,23.2725,107.722,8.69 +2016-03-30 18:17:00,22.65,107.878,8.68 +2016-03-30 18:32:00,23.4725,108.06,8.65 +2016-03-30 18:47:00,24.4587,108.225,8.62 +2016-03-30 19:02:00,24.1062,108.357,8.59 +2016-03-30 19:17:00,22.5512,108.54,8.54 +2016-03-30 19:32:00,25.1012,108.727,8.5 +2016-03-30 19:47:00,23.9562,108.798,8.46 +2016-03-30 20:02:00,23.4725,108.99,8.44 +2016-03-30 20:17:00,24.4562,109.095,8.41 +2016-03-30 20:32:00,24.955,109.242,8.4 +2016-03-30 20:47:00,24.4587,109.283,8.39 +2016-03-30 21:02:00,24.5638,109.49,8.38 +2016-03-30 21:17:00,24.7513,109.515,8.35 +2016-03-30 21:32:00,23.8613,109.677,8.35 +2016-03-30 21:47:00,22.7475,109.505,8.35 +2016-03-30 22:02:00,23.7675,109.557,8.34 +2016-03-30 22:17:00,24.3587,109.577,8.33 +2016-03-30 22:32:00,22.795,109.643,8.31 +2016-03-30 22:47:00,24.3625,109.643,8.3 +2016-03-30 23:02:00,24.6537,109.947,8.3 +2016-03-30 23:17:00,23.4262,109.925,8.3 +2016-03-30 23:32:00,23.715,110.125,8.29 +2016-03-30 23:47:00,23.7175,110.302,8.29 +2016-03-31 00:02:00,23.4725,110.378,8.28 +2016-03-31 00:17:00,24.1,110.585,8.27 +2016-03-31 00:32:00,24.31,110.647,8.27 +2016-03-31 00:47:00,23.1825,110.882,8.28 +2016-03-31 01:02:00,24.7537,110.787,8.27 +2016-03-31 01:17:00,23.3262,111.09,8.26 +2016-03-31 01:32:00,24.6525,111.207,8.25 +2016-03-31 01:47:00,23.7237,111.277,8.24 +2016-03-31 02:02:00,23.7175,111.315,8.23 +2016-03-31 02:17:00,25.0037,111.495,8.22 +2016-03-31 02:32:00,24.31,111.637,8.2 +2016-03-31 02:47:00,22.31,111.66,8.19 +2016-03-31 03:02:00,24.6575,111.783,8.19 +2016-03-31 03:17:00,24.8562,111.717,8.19 +2016-03-31 03:32:00,24.8025,111.58,8.18 +2016-03-31 03:47:00,24.7537,111.597,8.17 +2016-03-31 04:02:00,23.5262,111.695,8.17 +2016-03-31 04:17:00,23.4287,111.717,8.16 +2016-03-31 04:32:00,24.2113,111.87,8.15 +2016-03-31 04:47:00,23.4238,112.1,8.14 +2016-03-31 05:02:00,24.3037,112.177,8.12 +2016-03-31 05:17:00,23.4225,112.4,8.12 +2016-03-31 05:32:00,24.4088,114.617,8.11 +2016-03-31 05:47:00,24.0512,112.923,8.12 +2016-03-31 06:02:00,23.5212,112.275,8.09 +2016-03-31 06:17:00,23.7675,113.965,8.11 +2016-03-31 06:32:00,23.4287,113.452,8.13 +2016-03-31 06:47:00,26.415,112.722,8.13 +2016-03-31 07:02:00,23.9538,112.115,8.14 +2016-03-31 07:17:00,23.67,111.995,8.17 +2016-03-31 07:32:00,24.155,111.96,8.18 +2016-03-31 07:47:00,24.6537,112.17,8.19 +2016-03-31 08:02:00,23.9538,112.232,8.18 +2016-03-31 08:17:00,26.035,112.4,8.17 +2016-03-31 08:32:00,23.3787,112.595,8.16 +2016-03-31 08:47:00,24.2062,112.688,8.16 +2016-03-31 09:02:00,24.205,112.992,8.19 +2016-03-31 09:17:00,23.575,113.115,8.2 +2016-03-31 09:32:00,23.815,113.283,8.22 +2016-03-31 09:47:00,24.5088,113.212,8.26 +2016-03-31 10:02:00,24.8575,113.312,8.27 +2016-03-31 10:17:00,26.275,113.237,8.27 +2016-03-31 10:32:00,23.8112,113.227,8.28 +2016-03-31 10:47:00,23.9587,113.117,8.3 +2016-03-31 11:02:00,23.8587,113.347,8.32 +2016-03-31 11:17:00,25.4425,113.39,8.33 +2016-03-31 11:32:00,23.8125,113.52,8.35 +2016-03-31 11:47:00,23.085,113.582,8.39 +2016-03-31 12:02:00,23.915,113.777,8.45 +2016-03-31 12:17:00,24.3112,113.805,8.49 +2016-03-31 12:32:00,23.6188,113.817,8.51 +2016-03-31 12:47:00,22.8975,113.835,8.54 +2016-03-31 13:02:00,23.3763,114.062,8.56 +2016-03-31 13:17:00,24.56,114.018,8.56 +2016-03-31 13:32:00,23.7712,114.128,8.57 +2016-03-31 13:47:00,22.4562,113.992,8.58 +2016-03-31 14:02:00,24.41,113.787,8.59 +2016-03-31 14:17:00,24.8538,113.675,8.6 +2016-03-31 14:32:00,24.9562,113.658,8.63 +2016-03-31 14:47:00,23.7188,113.685,8.64 +2016-03-31 15:02:00,23.7637,113.777,8.65 +2016-03-31 15:17:00,22.8937,113.975,8.66 +2016-03-31 15:32:00,23.0812,113.98,8.67 +2016-03-31 15:47:00,23.7237,114.077,8.66 +2016-03-31 16:02:00,24.2087,114.072,8.67 +2016-03-31 16:17:00,24.155,114.268,8.67 +2016-03-31 16:32:00,23.5212,114.215,8.67 +2016-03-31 16:47:00,26.1287,114.158,8.67 +2016-03-31 17:02:00,25.3937,114.165,8.66 +2016-03-31 17:17:00,23.8112,114.175,8.66 +2016-03-31 17:32:00,24.16,114.15,8.65 +2016-03-31 17:47:00,24.5638,113.927,8.65 +2016-03-31 18:02:00,22.99,113.792,8.64 +2016-03-31 18:17:00,22.8412,113.832,8.62 +2016-03-31 18:32:00,23.86,113.908,8.62 +2016-03-31 18:47:00,22.7962,113.972,8.6 +2016-03-31 19:02:00,24.205,114.04,8.6 +2016-03-31 19:17:00,25.3475,114.202,8.58 +2016-03-31 19:32:00,23.6225,114.447,8.57 +2016-03-31 19:47:00,24.7575,114.625,8.56 +2016-03-31 20:02:00,24.6537,114.717,8.55 +2016-03-31 20:17:00,24.405,114.753,8.54 +2016-03-31 20:32:00,24.005,114.812,8.53 +2016-03-31 20:47:00,25.9837,115.077,8.52 +2016-03-31 21:02:00,24.3075,114.908,8.51 +2016-03-31 21:17:00,24.2575,114.965,8.5 +2016-03-31 21:32:00,23.9613,115.015,8.5 +2016-03-31 21:47:00,24.705,114.878,8.51 +2016-03-31 22:02:00,26.1775,114.923,8.5 +2016-03-31 22:17:00,23.7663,114.825,8.49 +2016-03-31 22:32:00,24.0025,115.045,8.47 +2016-03-31 22:47:00,24.1537,114.815,8.46 +2016-03-31 23:02:00,24.9025,114.895,8.45 +2016-03-31 23:17:00,24.41,114.852,8.44 +2016-03-31 23:32:00,25.3063,114.827,8.42 +2016-03-31 23:47:00,25.2025,114.795,8.4 +2016-04-01 00:02:00,23.9562,114.817,8.39 +2016-04-01 00:17:00,24.0975,114.742,8.38 +2016-04-01 00:32:00,24.7537,114.695,8.37 +2016-04-01 00:47:00,25.1025,114.712,8.34 +2016-04-01 01:02:00,24.0563,114.7,8.32 +2016-04-01 01:17:00,23.085,114.542,8.3 +2016-04-01 01:32:00,24.2562,114.467,8.29 +2016-04-01 01:47:00,24.9525,114.18,8.28 +2016-04-01 02:02:00,24.6025,114.055,8.26 +2016-04-01 02:17:00,23.2262,114.137,8.24 +2016-04-01 02:32:00,23.6725,114.077,8.24 +2016-04-01 02:47:00,24.4575,114.057,8.22 +2016-04-01 03:02:00,24.105,114.022,8.22 +2016-04-01 03:17:00,23.8162,113.995,8.21 +2016-04-01 03:32:00,23.375,114.042,8.19 +2016-04-01 03:47:00,25.0088,113.902,8.19 +2016-04-01 04:02:00,24.0037,113.89,8.18 +2016-04-01 04:17:00,26.2687,113.93,8.17 +2016-04-01 04:32:00,25.105,113.932,8.16 +2016-04-01 04:47:00,24.1575,113.923,8.14 +2016-04-01 05:02:00,24.1562,113.755,8.13 +2016-04-01 05:17:00,26.4187,113.602,8.13 +2016-04-01 05:32:00,24.2562,113.337,8.13 +2016-04-01 05:47:00,23.905,113.367,8.11 +2016-04-01 06:02:00,25.4412,113.375,8.1 +2016-04-01 06:17:00,26.4175,113.548,8.1 +2016-04-01 06:32:00,25.0563,113.587,8.11 +2016-04-01 06:47:00,23.6738,113.62,8.11 +2016-04-01 07:02:00,26.225,113.607,8.11 +2016-04-01 07:17:00,25.3012,113.387,8.12 +2016-04-01 07:32:00,23.665,113.385,8.13 +2016-04-01 07:47:00,25.0037,113.19,8.17 +2016-04-01 08:02:00,25.3012,113.152,8.22 +2016-04-01 08:17:00,24.3075,113.132,8.25 +2016-04-01 08:32:00,25.3975,113.253,8.29 +2016-04-01 08:47:00,25.4012,113.177,8.33 +2016-04-01 09:02:00,25.205,113.298,8.39 +2016-04-01 09:17:00,25.8312,113.152,8.42 +2016-04-01 09:32:00,26.8637,113.247,8.46 +2016-04-01 09:47:00,23.7663,113.29,8.5 +2016-04-01 10:02:00,24.8037,113.412,8.55 +2016-04-01 10:17:00,24.905,113.315,8.62 +2016-04-01 10:32:00,24.8063,113.315,8.61 +2016-04-01 10:47:00,24.8587,113.345,8.6 +2016-04-01 11:02:00,23.62,113.175,8.71 +2016-04-01 11:17:00,25.3487,112.925,8.81 +2016-04-01 11:32:00,25.055,112.882,8.89 +2016-04-01 11:47:00,23.5713,112.777,8.99 +2016-04-01 12:02:00,24.955,112.952,9.06 +2016-04-01 12:17:00,25.2487,113.02,9.11 +2016-04-01 12:32:00,25.7913,112.952,9.17 +2016-04-01 12:47:00,25.2575,113.147,9.23 +2016-04-01 13:02:00,24.2562,113.097,9.29 +2016-04-01 13:17:00,25.54,113.162,9.35 +2016-04-01 13:32:00,23.5238,113.29,9.43 +2016-04-01 13:47:00,26.6175,113.242,9.49 +2016-04-01 14:02:00,24.3562,113.295,9.54 +2016-04-01 14:17:00,24.2062,113.39,9.58 +2016-04-01 14:32:00,25.1575,113.432,9.64 +2016-04-01 14:47:00,25.055,113.467,9.67 +2016-04-01 15:02:00,25.635,113.33,9.71 +2016-04-01 15:17:00,25.1025,113.167,9.75 +2016-04-01 15:32:00,26.8625,113.227,9.79 +2016-04-01 15:47:00,24.655,113.21,9.81 +2016-04-01 16:02:00,24.8037,113.262,9.82 +2016-04-01 16:17:00,25.8913,113.41,9.85 +2016-04-01 16:32:00,25.8425,113.393,9.9 +2016-04-01 16:47:00,26.6637,113.548,9.95 +2016-04-01 17:02:00,24.155,113.587,9.97 +2016-04-01 17:17:00,26.7625,113.667,9.99 +2016-04-01 17:32:00,25.44,113.615,10.01 +2016-04-01 17:47:00,23.4725,113.768,10.03 +2016-04-01 18:02:00,24.705,113.812,10.05 +2016-04-01 18:17:00,23.91,113.832,10.06 +2016-04-01 18:32:00,25.64,113.932,10.06 +2016-04-01 18:47:00,25.3962,113.89,10.06 +2016-04-01 19:02:00,23.72,113.787,10.06 +2016-04-01 19:17:00,25.2038,113.637,10.05 +2016-04-01 19:32:00,25.9812,113.692,10.04 +2016-04-01 19:47:00,24.8063,113.688,10.02 +2016-04-01 20:02:00,26.1312,113.722,10.0 +2016-04-01 20:17:00,24.2612,113.89,9.97 +2016-04-01 20:32:00,25.4863,113.86,9.94 +2016-04-01 20:47:00,24.155,114.01,9.89 +2016-04-01 21:02:00,26.2188,114.128,9.85 +2016-04-01 21:17:00,24.2062,114.2,9.81 +2016-04-01 21:32:00,25.1525,114.232,9.76 +2016-04-01 21:47:00,25.935,114.35,9.71 +2016-04-01 22:02:00,24.2087,114.36,9.67 +2016-04-01 22:17:00,25.9337,114.425,9.62 +2016-04-01 22:32:00,25.3487,114.272,9.58 +2016-04-01 22:47:00,25.7875,114.315,9.54 +2016-04-01 23:02:00,25.2025,114.152,9.49 +2016-04-01 23:17:00,24.8037,114.162,9.45 +2016-04-01 23:32:00,24.7525,114.257,9.4 +2016-04-01 23:47:00,25.5437,114.307,9.37 +2016-04-02 00:02:00,26.135,114.592,9.33 +2016-04-02 00:17:00,25.2513,114.717,9.29 +2016-04-02 00:32:00,24.705,114.8,9.26 +2016-04-02 00:47:00,24.6038,114.97,9.22 +2016-04-02 01:02:00,24.9562,115.117,9.17 +2016-04-02 01:17:00,25.3025,115.322,9.13 +2016-04-02 01:32:00,24.5125,115.295,9.1 +2016-04-02 01:47:00,26.57,115.41,9.06 +2016-04-02 02:02:00,24.0525,115.505,9.01 +2016-04-02 02:17:00,25.3475,115.452,8.97 +2016-04-02 02:32:00,24.855,115.247,8.93 +2016-04-02 02:47:00,25.6387,115.337,8.88 +2016-04-02 03:02:00,25.59,115.48,8.84 +2016-04-02 03:17:00,26.2712,115.582,8.8 +2016-04-02 03:32:00,25.5925,115.667,8.76 +2016-04-02 03:47:00,26.2712,115.765,8.74 +2016-04-02 04:02:00,24.955,115.89,8.69 +2016-04-02 04:17:00,26.8125,115.982,8.67 +2016-04-02 04:32:00,26.0338,116.245,8.63 +2016-04-02 04:47:00,24.005,116.18,8.6 +2016-04-02 05:02:00,25.8363,116.32,8.59 +2016-04-02 05:17:00,25.1038,116.355,8.54 +2016-04-02 05:32:00,26.1325,116.385,8.5 +2016-04-02 05:47:00,26.2712,116.387,8.49 +2016-04-02 06:02:00,25.0075,116.275,8.49 +2016-04-02 06:17:00,25.4425,116.167,8.46 +2016-04-02 06:32:00,25.8887,116.033,8.45 +2016-04-02 06:47:00,23.6175,115.945,8.44 +2016-04-02 07:02:00,25.98,115.982,8.43 +2016-04-02 07:17:00,26.1813,116.085,8.43 +2016-04-02 07:32:00,25.4,116.257,8.44 +2016-04-02 07:47:00,25.6387,116.325,8.45 +2016-04-02 08:02:00,24.4575,116.26,8.47 +2016-04-02 08:17:00,27.2537,116.285,8.48 +2016-04-02 08:32:00,23.9575,116.08,8.5 +2016-04-02 08:47:00,25.79,116.022,8.48 +2016-04-02 09:02:00,26.5687,115.845,8.47 +2016-04-02 09:17:00,25.9375,115.79,8.5 +2016-04-02 09:32:00,26.27,115.697,8.55 +2016-04-02 09:47:00,25.6413,115.74,8.61 +2016-04-02 10:02:00,25.7387,115.825,8.68 +2016-04-02 10:17:00,25.79,115.885,8.74 +2016-04-02 10:32:00,25.8862,115.887,8.78 +2016-04-02 10:47:00,25.9362,115.717,8.79 +2016-04-02 11:02:00,27.0112,115.652,8.82 +2016-04-02 11:17:00,24.6125,115.78,8.89 +2016-04-02 11:32:00,24.8025,115.798,8.96 +2016-04-02 11:47:00,23.8112,115.702,9.07 +2016-04-02 12:02:00,24.6087,115.602,9.15 +2016-04-02 12:17:00,25.4437,115.415,9.21 +2016-04-02 12:32:00,25.1038,115.26,9.26 +2016-04-02 12:47:00,25.7925,115.257,9.32 +2016-04-02 13:02:00,24.1612,115.022,9.36 +2016-04-02 13:17:00,26.09,115.01,9.4 +2016-04-02 13:32:00,25.5887,115.135,9.45 +2016-04-02 13:47:00,26.0338,115.202,9.49 +2016-04-02 14:02:00,24.6562,115.082,9.52 +2016-04-02 14:17:00,26.1738,115.067,9.57 +2016-04-02 14:32:00,27.4587,115.05,9.62 +2016-04-02 14:47:00,25.94,115.067,9.67 +2016-04-02 15:02:00,26.37,115.19,9.72 +2016-04-02 15:17:00,25.3012,115.048,9.79 +2016-04-02 15:32:00,25.35,114.945,9.84 +2016-04-02 15:47:00,25.5437,114.715,9.87 +2016-04-02 16:02:00,26.52,114.505,9.9 +2016-04-02 16:17:00,26.8662,114.362,9.93 +2016-04-02 16:32:00,24.105,114.277,9.96 +2016-04-02 16:47:00,25.7462,114.122,9.99 +2016-04-02 17:02:00,23.9575,114.143,10.03 +2016-04-02 17:17:00,25.84,114.14,10.05 +2016-04-02 17:32:00,24.6075,114.2,10.07 +2016-04-02 17:47:00,26.8712,114.06,10.08 +2016-04-02 18:02:00,25.8913,114.155,10.09 +2016-04-02 18:17:00,25.7387,114.11,10.1 +2016-04-02 18:32:00,26.7225,114.055,10.09 +2016-04-02 18:47:00,24.1075,113.982,10.09 +2016-04-02 19:02:00,25.8363,113.975,10.08 +2016-04-02 19:17:00,26.8162,113.887,10.07 +2016-04-02 19:32:00,25.155,113.677,10.05 +2016-04-02 19:47:00,25.055,113.487,10.02 +2016-04-02 20:02:00,25.49,113.39,10.0 +2016-04-02 20:17:00,26.32,113.253,9.98 +2016-04-02 20:32:00,26.2312,113.245,9.95 +2016-04-02 20:47:00,24.6588,113.24,9.93 +2016-04-02 21:02:00,25.74,113.268,9.91 +2016-04-02 21:17:00,25.445,113.16,9.89 +2016-04-02 21:32:00,26.4637,113.28,9.86 +2016-04-02 21:47:00,26.2712,113.235,9.85 +2016-04-02 22:02:00,25.4925,113.215,9.83 +2016-04-02 22:17:00,25.0625,113.128,9.81 +2016-04-02 22:32:00,25.7412,113.192,9.8 +2016-04-02 22:47:00,25.3975,113.06,9.76 +2016-04-02 23:02:00,25.7412,112.905,9.73 +2016-04-02 23:17:00,27.0137,112.825,9.71 +2016-04-02 23:32:00,25.74,112.605,9.69 +2016-04-02 23:47:00,25.6925,112.462,9.67 +2016-04-03 00:02:00,24.8063,112.41,9.62 +2016-04-03 00:17:00,25.305,112.452,9.59 +2016-04-03 00:32:00,25.255,112.452,9.56 +2016-04-03 00:47:00,26.7188,112.372,9.55 +2016-04-03 01:02:00,26.8175,112.337,9.52 +2016-04-03 01:17:00,25.4912,112.425,9.45 +2016-04-03 01:32:00,24.06,112.417,9.41 +2016-04-03 01:47:00,24.9575,112.527,9.39 +2016-04-03 02:02:00,26.72,112.602,9.39 +2016-04-03 02:17:00,27.415,112.423,9.36 +2016-04-03 02:32:00,25.1525,112.44,9.32 +2016-04-03 02:47:00,25.2025,112.382,9.3 +2016-04-03 03:02:00,26.665,112.302,9.28 +2016-04-03 03:17:00,25.4925,112.135,9.26 +2016-04-03 03:32:00,25.3988,111.95,9.24 +2016-04-03 03:47:00,26.22,111.93,9.22 +2016-04-03 04:02:00,26.3737,111.915,9.19 +2016-04-03 04:17:00,26.225,112.0,9.18 +2016-04-03 04:32:00,25.49,112.033,9.18 +2016-04-03 04:47:00,27.4175,111.942,9.17 +2016-04-03 05:02:00,24.4562,112.005,9.15 +2016-04-03 05:17:00,26.1762,112.01,9.14 +2016-04-03 05:32:00,26.8662,111.972,9.14 +2016-04-03 05:47:00,25.74,112.052,9.14 +2016-04-03 06:02:00,26.0863,112.137,9.13 +2016-04-03 06:17:00,26.1775,112.14,9.15 +2016-04-03 06:32:00,27.305,111.927,9.17 +2016-04-03 06:47:00,26.9125,111.842,9.21 +2016-04-03 07:02:00,25.1038,111.798,9.25 +2016-04-03 07:17:00,26.0812,111.68,9.27 +2016-04-03 07:32:00,24.46,111.61,9.28 +2016-04-03 07:47:00,27.0587,111.5,9.28 +2016-04-03 08:02:00,26.8675,111.472,9.3 +2016-04-03 08:17:00,25.3913,111.51,9.34 +2016-04-03 08:32:00,26.9575,111.535,9.37 +2016-04-03 08:47:00,25.93,111.38,9.43 +2016-04-03 09:02:00,26.22,111.32,9.45 +2016-04-03 09:17:00,25.7875,111.415,9.47 +2016-04-03 09:32:00,26.7675,111.765,9.52 +2016-04-03 09:47:00,26.5212,111.742,9.55 +2016-04-03 10:02:00,26.0312,111.86,9.6 +2016-04-03 10:17:00,26.1263,111.762,9.66 +2016-04-03 10:32:00,26.08,111.682,9.72 +2016-04-03 10:47:00,26.4125,111.557,9.77 +2016-04-03 11:02:00,27.56,111.505,9.83 +2016-04-03 11:17:00,26.9125,111.477,9.91 +2016-04-03 11:32:00,26.2237,111.327,9.96 +2016-04-03 11:47:00,24.5587,111.415,10.03 +2016-04-03 12:02:00,25.8862,111.36,10.11 +2016-04-03 12:17:00,27.2513,111.307,10.2 +2016-04-03 12:32:00,26.5175,111.277,10.27 +2016-04-03 12:47:00,25.6375,111.227,10.33 +2016-04-03 13:02:00,26.4137,111.337,10.41 +2016-04-03 13:17:00,26.6675,111.14,10.48 +2016-04-03 13:32:00,27.3087,111.107,10.54 +2016-04-03 13:47:00,25.01,111.107,10.62 +2016-04-03 14:02:00,25.9362,111.082,10.68 +2016-04-03 14:17:00,25.0075,111.192,10.74 +2016-04-03 14:32:00,25.9812,111.33,10.8 +2016-04-03 14:47:00,26.3175,111.215,10.84 +2016-04-03 15:02:00,25.7387,111.262,10.89 +2016-04-03 15:17:00,25.7438,111.045,10.92 +2016-04-03 15:32:00,26.6663,111.097,10.97 +2016-04-03 15:47:00,27.8538,110.9,11.02 +2016-04-03 16:02:00,24.6012,110.98,11.07 +2016-04-03 16:17:00,25.0512,110.792,11.11 +2016-04-03 16:32:00,25.635,110.775,11.15 +2016-04-03 16:47:00,25.79,110.83,11.18 +2016-04-03 17:02:00,24.855,110.667,11.19 +2016-04-03 17:17:00,26.8688,110.673,11.21 +2016-04-03 17:32:00,27.3662,110.552,11.23 +2016-04-03 17:47:00,24.4625,110.575,11.22 +2016-04-03 18:02:00,24.0075,110.497,11.24 +2016-04-03 18:17:00,26.7175,110.518,11.24 +2016-04-03 18:32:00,24.855,110.432,11.25 +2016-04-03 18:47:00,28.6987,110.44,11.26 +2016-04-03 19:02:00,25.5925,110.447,11.25 +2016-04-03 19:17:00,25.3575,110.332,11.25 +2016-04-03 19:32:00,27.2075,110.33,11.25 +2016-04-03 19:47:00,25.9837,110.247,11.24 +2016-04-03 20:02:00,25.7887,110.38,11.22 +2016-04-03 20:17:00,26.62,110.452,11.21 +2016-04-03 20:32:00,25.155,110.495,11.18 +2016-04-03 20:47:00,25.64,110.438,11.16 +2016-04-03 21:02:00,26.4713,110.452,11.15 +2016-04-03 21:17:00,26.1775,110.28,11.14 +2016-04-03 21:32:00,27.2575,110.182,11.12 +2016-04-03 21:47:00,25.3,110.283,11.11 +2016-04-03 22:02:00,27.2588,110.062,11.11 +2016-04-03 22:17:00,26.4212,110.205,11.1 +2016-04-03 22:32:00,26.1312,110.077,11.08 +2016-04-03 22:47:00,25.7462,110.06,11.05 +2016-04-03 23:02:00,25.45,109.84,11.04 +2016-04-03 23:17:00,27.4637,109.92,11.03 +2016-04-03 23:32:00,26.865,109.817,11.0 +2016-04-03 23:47:00,25.7875,109.923,10.98 +2016-04-04 00:02:00,25.7925,109.785,10.97 +2016-04-04 00:17:00,24.5575,109.845,10.95 +2016-04-04 00:32:00,26.4625,109.772,10.94 +2016-04-04 00:47:00,26.37,109.775,10.92 +2016-04-04 01:02:00,25.6425,109.71,10.9 +2016-04-04 01:17:00,25.935,109.777,10.88 +2016-04-04 01:32:00,25.495,110.05,10.85 +2016-04-04 01:47:00,25.985,110.173,10.83 +2016-04-04 02:02:00,27.3613,110.19,10.81 +2016-04-04 02:17:00,26.4662,110.272,10.77 +2016-04-04 02:32:00,27.0137,110.033,10.73 +2016-04-04 02:47:00,27.8625,110.055,10.71 +2016-04-04 03:02:00,25.545,109.997,10.67 +2016-04-04 03:17:00,24.0563,109.957,10.64 +2016-04-04 03:32:00,26.2725,109.938,10.62 +2016-04-04 03:47:00,25.1562,109.88,10.59 +2016-04-04 04:02:00,25.5425,109.885,10.57 +2016-04-04 04:17:00,25.695,109.875,10.55 +2016-04-04 04:32:00,26.675,109.79,10.55 +2016-04-04 04:47:00,25.495,109.775,10.54 +2016-04-04 05:02:00,25.4975,109.89,10.52 +2016-04-04 05:17:00,24.3575,109.827,10.51 +2016-04-04 05:32:00,26.1325,109.878,10.5 +2016-04-04 05:47:00,26.8637,109.847,10.5 +2016-04-04 06:02:00,26.465,109.875,10.51 +2016-04-04 06:17:00,26.225,109.972,10.51 +2016-04-04 06:32:00,25.8412,109.93,10.53 +2016-04-04 06:47:00,26.1813,109.742,10.54 +2016-04-04 07:02:00,27.81,109.707,10.55 +2016-04-04 07:17:00,26.0825,109.592,10.57 +2016-04-04 07:32:00,26.4675,109.673,10.57 +2016-04-04 07:47:00,26.5713,109.81,10.64 +2016-04-04 08:02:00,27.715,110.22,10.8 +2016-04-04 08:17:00,26.67,110.212,10.91 +2016-04-04 08:32:00,25.7925,110.31,10.96 +2016-04-04 08:47:00,24.7562,110.34,10.99 +2016-04-04 09:02:00,25.5925,110.277,11.06 +2016-04-04 09:17:00,26.0312,110.285,11.14 +2016-04-04 09:32:00,27.9562,110.265,11.16 +2016-04-04 09:47:00,25.9837,110.33,11.19 +2016-04-04 10:02:00,24.805,110.188,11.29 +2016-04-04 10:17:00,26.965,110.1,11.25 +2016-04-04 10:32:00,25.74,110.08,11.23 +2016-04-04 10:47:00,26.7125,109.857,11.21 +2016-04-04 11:02:00,25.6375,109.777,11.23 +2016-04-04 11:17:00,27.1075,109.71,11.2 +2016-04-04 11:32:00,26.4163,109.822,11.2 +2016-04-04 11:47:00,25.7375,109.85,11.27 +2016-04-04 12:02:00,27.0137,110.037,11.33 +2016-04-04 12:17:00,26.6225,109.99,11.37 +2016-04-04 12:32:00,27.51,109.99,11.42 +2016-04-04 12:47:00,25.155,110.125,11.46 +2016-04-04 13:02:00,26.2738,110.147,11.5 +2016-04-04 13:17:00,26.3688,110.162,11.6 +2016-04-04 13:32:00,25.4437,110.188,11.66 +2016-04-04 13:47:00,26.67,110.21,11.68 +2016-04-04 14:02:00,25.255,110.057,11.73 +2016-04-04 14:17:00,27.365,109.92,11.78 +2016-04-04 14:32:00,25.3025,109.832,11.84 +2016-04-04 14:47:00,25.6413,109.555,11.92 +2016-04-04 15:02:00,26.2237,109.467,11.97 +2016-04-04 15:17:00,27.3075,109.317,11.99 +2016-04-04 15:32:00,26.67,109.322,12.02 +2016-04-04 15:47:00,25.645,109.155,12.07 +2016-04-04 16:02:00,26.4688,109.055,12.1 +2016-04-04 16:17:00,26.6188,108.94,12.11 +2016-04-04 16:32:00,24.5137,108.887,12.12 +2016-04-04 16:47:00,26.2725,108.717,12.13 +2016-04-04 17:02:00,25.1075,108.617,12.12 +2016-04-04 17:17:00,26.6725,108.582,12.12 +2016-04-04 17:32:00,25.89,108.548,12.12 +2016-04-04 17:47:00,25.695,108.457,12.14 +2016-04-04 18:02:00,26.5775,108.452,12.15 +2016-04-04 18:17:00,26.0375,108.357,12.17 +2016-04-04 18:32:00,27.41,108.402,12.2 +2016-04-04 18:47:00,28.0112,108.275,12.22 +2016-04-04 19:02:00,27.715,108.268,12.23 +2016-04-04 19:17:00,26.2237,108.367,12.24 +2016-04-04 19:32:00,25.31,108.235,12.25 +2016-04-04 19:47:00,24.7637,108.27,12.26 +2016-04-04 20:02:00,25.595,108.275,12.26 +2016-04-04 20:17:00,26.1775,108.272,12.26 +2016-04-04 20:32:00,26.1325,108.245,12.25 +2016-04-04 20:47:00,25.6413,108.317,12.25 +2016-04-04 21:02:00,26.2275,108.19,12.24 +2016-04-04 21:17:00,26.5212,108.322,12.23 +2016-04-04 21:32:00,26.325,108.43,12.21 +2016-04-04 21:47:00,25.1087,108.557,12.19 +2016-04-04 22:02:00,26.47,108.637,12.18 +2016-04-04 22:17:00,25.4475,108.677,12.15 +2016-04-04 22:32:00,25.6437,108.68,12.12 +2016-04-04 22:47:00,27.0612,108.64,12.1 +2016-04-04 23:02:00,26.5212,108.58,12.09 +2016-04-04 23:17:00,26.5737,108.555,12.06 +2016-04-04 23:32:00,25.4962,108.522,12.03 +2016-04-04 23:47:00,25.9425,108.507,12.01 +2016-04-05 00:02:00,25.89,108.48,12.0 +2016-04-05 00:17:00,26.32,108.455,11.99 +2016-04-05 00:32:00,24.5638,108.38,11.97 +2016-04-05 00:47:00,26.7188,108.41,11.95 +2016-04-05 01:02:00,26.4225,108.382,11.95 +2016-04-05 01:17:00,26.2288,108.32,11.93 +2016-04-05 01:32:00,25.75,108.302,11.89 +2016-04-05 01:47:00,25.4,108.38,11.89 +2016-04-05 02:02:00,25.6413,108.295,11.88 +2016-04-05 02:17:00,25.3975,108.327,11.85 +2016-04-05 02:32:00,25.4975,108.287,11.83 +2016-04-05 02:47:00,24.3613,108.315,11.8 +2016-04-05 03:02:00,26.04,108.275,11.79 +2016-04-05 03:17:00,25.4987,108.295,11.77 +2016-04-05 03:32:00,25.8962,108.265,11.74 +2016-04-05 03:47:00,24.8063,108.275,11.72 +2016-04-05 04:02:00,25.5938,108.315,11.71 +2016-04-05 04:17:00,27.5125,108.167,11.69 +2016-04-05 04:32:00,26.82,108.065,11.68 +2016-04-05 04:47:00,27.16,108.188,11.67 +2016-04-05 05:02:00,27.0625,108.097,11.64 +2016-04-05 05:17:00,26.3763,108.182,11.63 +2016-04-05 05:32:00,25.0088,108.285,11.63 +2016-04-05 05:47:00,25.685,108.257,11.63 +2016-04-05 06:02:00,25.255,108.317,11.62 +2016-04-05 06:17:00,25.9437,108.397,11.64 +2016-04-05 06:32:00,25.6875,108.435,11.65 +2016-04-05 06:47:00,26.2288,108.452,11.67 +2016-04-05 07:02:00,25.0625,108.423,11.7 +2016-04-05 07:17:00,33.18,108.387,11.11 +2016-04-05 07:32:00,23.23,108.45,11.74 +2016-04-05 07:38:43,23.235,108.372,11.75 +2016-04-05 07:47:00,19.4425,108.402,11.76 +2016-04-05 08:02:00,21.735,108.32,11.79 +2016-04-05 08:17:00,20.0263,108.245,11.8 +2016-04-05 08:32:00,20.7025,108.22,11.85 +2016-04-05 08:47:00,22.3175,108.272,11.88 +2016-04-05 09:02:00,21.5863,108.137,11.89 +2016-04-05 09:17:00,18.6212,108.23,11.89 +2016-04-05 09:32:00,21.4425,108.15,11.98 +2016-04-05 09:47:00,22.0287,108.285,12.07 +2016-04-05 10:02:00,19.9775,108.352,12.17 +2016-04-05 10:17:00,21.5362,108.307,12.2 +2016-04-05 10:32:00,20.2188,108.272,12.3 +2016-04-05 10:47:00,21.9337,108.222,12.4 +2016-04-05 11:02:00,20.9938,108.143,12.45 +2016-04-05 11:17:00,21.7325,107.972,12.52 +2016-04-05 11:32:00,19.9287,108.003,12.58 +2016-04-05 11:47:00,20.9412,107.99,12.6 +2016-04-05 12:02:00,18.4713,108.185,12.62 +2016-04-05 12:17:00,21.7337,108.357,12.66 +2016-04-05 12:32:00,21.6813,108.425,12.74 +2016-04-05 12:47:00,20.7513,108.397,12.84 +2016-04-05 13:02:00,18.8675,108.408,12.91 +2016-04-05 13:17:00,20.3675,108.285,12.98 +2016-04-05 13:32:00,18.6712,108.222,12.99 +2016-04-05 13:47:00,21.585,108.257,13.02 +2016-04-05 14:02:00,22.0287,108.305,13.04 +2016-04-05 14:17:00,19.835,108.41,13.04 +2016-04-05 14:32:00,20.945,108.507,13.07 +2016-04-05 14:47:00,19.885,108.59,13.08 +2016-04-05 15:02:00,20.5088,108.572,13.14 +2016-04-05 15:17:00,20.7025,108.435,13.2 +2016-04-05 15:32:00,21.4837,108.37,13.22 +2016-04-05 15:47:00,19.9775,108.265,13.26 +2016-04-05 16:02:00,19.49,108.255,13.31 +2016-04-05 16:17:00,20.8913,108.197,13.36 +2016-04-05 16:32:00,20.7062,108.22,13.39 +2016-04-05 16:47:00,18.67,108.287,13.4 +2016-04-05 17:02:00,20.17,108.302,13.41 +2016-04-05 17:17:00,19.785,108.362,13.41 +2016-04-05 17:32:00,20.4625,108.53,13.42 +2016-04-05 17:47:00,20.795,108.527,13.42 +2016-04-05 18:02:00,19.5875,108.47,13.41 +2016-04-05 18:17:00,22.66,108.22,13.41 +2016-04-05 18:32:00,20.0762,108.102,13.41 +2016-04-05 18:47:00,19.0563,107.957,13.42 +2016-04-05 19:02:00,19.6888,107.92,13.44 +2016-04-05 19:17:00,20.795,108.03,13.45 +2016-04-05 19:32:00,20.655,108.077,13.45 +2016-04-05 19:47:00,21.6325,108.212,13.42 +2016-04-05 20:02:00,20.2175,108.247,13.4 +2016-04-05 20:17:00,20.3712,108.232,13.38 +2016-04-05 20:32:00,20.8,108.262,13.34 +2016-04-05 20:47:00,21.6325,108.197,13.3 +2016-04-05 21:02:00,19.9775,108.04,13.26 +2016-04-05 21:17:00,20.1712,107.923,13.22 +2016-04-05 21:32:00,22.1287,107.875,13.21 +2016-04-05 21:47:00,17.305,107.91,13.19 +2016-04-05 22:02:00,22.075,107.923,13.17 +2016-04-05 22:17:00,20.9437,108.02,13.16 +2016-04-05 22:32:00,19.8862,108.085,13.14 +2016-04-05 22:47:00,18.8138,108.18,13.11 +2016-04-05 23:02:00,21.78,108.085,13.08 +2016-04-05 23:17:00,21.78,108.102,13.05 +2016-04-05 23:32:00,20.3725,107.98,13.01 +2016-04-05 23:47:00,19.35,107.915,12.96 +2016-04-06 00:02:00,21.4925,107.875,12.93 +2016-04-06 00:17:00,20.995,107.985,12.91 +2016-04-06 00:32:00,21.49,108.048,12.89 +2016-04-06 00:47:00,20.025,108.067,12.85 +2016-04-06 01:02:00,19.5912,108.128,12.81 +2016-04-06 01:17:00,20.9425,108.16,12.79 +2016-04-06 01:32:00,19.445,108.28,12.76 +2016-04-06 01:47:00,22.1762,108.188,12.72 +2016-04-06 02:02:00,19.7925,108.033,12.67 +2016-04-06 02:17:00,20.9925,107.992,12.61 +2016-04-06 02:32:00,18.4238,107.94,12.55 +2016-04-06 02:47:00,19.7375,107.965,12.51 +2016-04-06 03:02:00,21.04,107.902,12.49 +2016-04-06 03:17:00,19.9713,108.1,12.45 +2016-04-06 03:32:00,20.3662,108.107,12.4 +2016-04-06 03:47:00,20.3262,108.26,12.38 +2016-04-06 04:02:00,20.9463,108.337,12.34 +2016-04-06 04:17:00,21.44,108.327,12.31 +2016-04-06 04:32:00,19.11,108.298,12.3 +2016-04-06 04:47:00,20.9388,108.155,12.25 +2016-04-06 05:02:00,19.5413,108.107,12.23 +2016-04-06 05:17:00,20.9887,108.107,12.22 +2016-04-06 05:32:00,21.9325,108.132,12.21 +2016-04-06 05:47:00,21.0437,108.087,12.22 +2016-04-06 06:02:00,19.2962,107.97,12.23 +2016-04-06 06:17:00,21.395,108.067,12.25 +2016-04-06 06:32:00,18.6175,108.17,12.25 +2016-04-06 06:47:00,20.3737,108.272,12.25 +2016-04-06 07:02:00,19.7363,108.425,12.27 +2016-04-06 07:17:00,19.01,108.46,12.26 +2016-04-06 07:32:00,20.0312,108.557,12.27 +2016-04-06 07:47:00,20.3675,108.562,12.29 +2016-04-06 08:02:00,20.8925,108.565,12.33 +2016-04-06 08:17:00,21.6813,108.485,12.35 +2016-04-06 08:32:00,20.4638,108.325,12.36 +2016-04-06 08:47:00,19.9313,108.235,12.38 +2016-04-06 09:02:00,20.4613,108.13,12.35 +2016-04-06 09:17:00,20.6137,108.13,12.35 +2016-04-06 09:32:00,20.1738,108.15,12.43 +2016-04-06 09:47:00,21.3962,108.423,12.49 +2016-04-06 10:02:00,21.5362,108.577,12.53 +2016-04-06 10:17:00,19.1075,108.732,12.58 +2016-04-06 10:32:00,20.9925,108.73,12.6 +2016-04-06 10:47:00,21.735,108.798,12.65 +2016-04-06 11:02:00,20.1237,108.735,12.69 +2016-04-06 11:17:00,21.345,108.615,12.69 +2016-04-06 11:32:00,21.6375,108.682,12.79 +2016-04-06 11:47:00,20.0762,108.737,12.81 +2016-04-06 12:02:00,20.6125,108.77,12.87 +2016-04-06 12:17:00,19.5888,108.83,12.87 +2016-04-06 12:32:00,19.7363,108.832,12.89 +2016-04-06 12:47:00,21.9313,109.018,12.88 +2016-04-06 13:02:00,18.2375,109.01,12.94 +2016-04-06 13:17:00,21.3463,109.0,12.96 +2016-04-06 13:32:00,19.7913,109.072,13.0 +2016-04-06 13:47:00,21.1912,108.962,13.06 +2016-04-06 14:02:00,19.5888,108.942,13.16 +2016-04-06 14:17:00,19.7363,108.893,13.21 +2016-04-06 14:32:00,20.1725,109.03,13.27 +2016-04-06 14:47:00,21.1413,109.033,13.29 +2016-04-06 15:02:00,21.0425,109.185,13.31 +2016-04-06 15:17:00,19.9325,109.268,13.29 +2016-04-06 15:32:00,19.6912,109.342,13.28 +2016-04-06 15:47:00,18.185,109.372,13.28 +2016-04-06 16:02:00,21.6325,109.327,13.29 +2016-04-06 16:17:00,19.3937,109.283,13.28 +2016-04-06 16:32:00,20.2712,109.262,13.26 +2016-04-06 16:47:00,21.0425,109.195,13.28 +2016-04-06 17:02:00,18.965,109.292,13.29 +2016-04-06 17:17:00,20.66,109.38,13.29 +2016-04-06 17:32:00,19.4938,109.61,13.29 +2016-04-06 17:47:00,20.0238,109.602,13.28 +2016-04-06 18:02:00,19.4375,109.732,13.31 +2016-04-06 18:17:00,20.3725,109.895,13.34 +2016-04-06 18:32:00,21.0938,109.923,13.35 +2016-04-06 18:47:00,19.1525,109.85,13.34 +2016-04-06 19:02:00,20.8063,109.755,13.3 +2016-04-06 19:17:00,20.2213,109.688,13.25 +2016-04-06 19:32:00,22.5088,109.632,13.18 +2016-04-06 19:47:00,21.1937,109.69,13.11 +2016-04-06 20:02:00,21.0413,109.695,13.05 +2016-04-06 20:17:00,21.5812,109.785,12.99 +2016-04-06 20:32:00,19.93,109.832,12.94 +2016-04-06 20:47:00,21.49,109.942,12.87 +2016-04-06 21:02:00,20.615,109.997,12.82 +2016-04-06 21:17:00,21.585,109.842,12.77 +2016-04-06 21:32:00,22.61,109.742,12.73 +2016-04-06 21:47:00,20.1225,109.697,12.67 +2016-04-06 22:02:00,18.9125,109.512,12.61 +2016-04-06 22:17:00,20.5163,109.393,12.56 +2016-04-06 22:32:00,21.6325,109.367,12.51 +2016-04-06 22:47:00,20.3213,109.47,12.47 +2016-04-06 23:02:00,21.345,109.49,12.42 +2016-04-06 23:17:00,22.5575,109.7,12.38 +2016-04-06 23:32:00,22.99,109.717,12.33 +2016-04-06 23:47:00,20.7988,109.753,12.3 +2016-04-07 00:02:00,20.32,109.772,12.3 +2016-04-07 00:17:00,21.4388,109.597,12.27 +2016-04-07 00:32:00,21.8825,109.575,12.28 +2016-04-07 00:47:00,20.32,109.455,12.28 +2016-04-07 01:02:00,21.3487,109.442,12.28 +2016-04-07 01:17:00,18.7675,109.515,12.27 +2016-04-07 01:32:00,20.4175,109.61,12.24 +2016-04-07 01:47:00,21.6325,109.697,12.21 +2016-04-07 02:02:00,21.24,109.697,12.19 +2016-04-07 02:17:00,21.63,109.827,12.17 +2016-04-07 02:32:00,18.9175,109.798,12.15 +2016-04-07 02:47:00,21.9325,109.715,12.13 +2016-04-07 03:02:00,19.9287,109.63,12.11 +2016-04-07 03:17:00,18.7162,109.408,12.09 +2016-04-07 03:32:00,20.7537,109.355,12.05 +2016-04-07 03:47:00,20.9912,109.262,12.02 +2016-04-07 04:02:00,20.0263,109.337,11.96 +2016-04-07 04:17:00,21.8312,109.402,11.92 +2016-04-07 04:32:00,21.9825,109.482,11.89 +2016-04-07 04:47:00,21.8887,109.467,11.86 +2016-04-07 05:02:00,20.99,109.447,11.84 +2016-04-07 05:17:00,19.6375,109.393,11.81 +2016-04-07 05:32:00,18.7162,109.425,11.79 +2016-04-07 05:47:00,19.64,109.275,11.78 +2016-04-07 06:02:00,20.0737,109.277,11.77 +2016-04-07 06:17:00,20.37,109.18,11.76 +2016-04-07 06:32:00,20.895,109.052,11.73 +2016-04-07 06:47:00,20.5625,108.945,11.71 +2016-04-07 07:02:00,20.9412,108.977,11.71 +2016-04-07 07:17:00,20.8438,108.912,11.71 +2016-04-07 07:32:00,20.2175,108.985,11.7 +2016-04-07 07:47:00,21.8325,109.022,11.7 +2016-04-07 08:02:00,19.4412,109.005,11.71 +2016-04-07 08:17:00,20.4187,109.055,11.72 +2016-04-07 08:32:00,20.125,108.99,11.74 +2016-04-07 08:47:00,20.945,108.787,11.76 +2016-04-07 09:02:00,20.6113,108.625,11.74 +2016-04-07 09:17:00,20.2162,108.518,11.73 +2016-04-07 09:32:00,21.29,108.357,11.77 +2016-04-07 09:47:00,22.1237,108.342,11.79 +2016-04-07 10:02:00,19.2487,108.277,11.81 +2016-04-07 10:17:00,20.99,108.41,11.82 +2016-04-07 10:32:00,21.7838,108.262,11.81 +2016-04-07 10:47:00,21.1413,108.445,11.83 +2016-04-07 11:02:00,21.8288,108.312,11.86 +2016-04-07 11:17:00,20.9375,108.173,11.87 +2016-04-07 11:32:00,20.5563,107.997,11.86 +2016-04-07 11:47:00,20.1212,107.807,11.95 +2016-04-07 12:02:00,20.215,107.6,12.05 +2016-04-07 12:17:00,21.6837,107.585,12.11 +2016-04-07 12:32:00,22.7012,107.677,12.06 +2016-04-07 12:47:00,20.3175,107.7,12.0 +2016-04-07 13:02:00,20.1212,107.85,12.05 +2016-04-07 13:17:00,22.0275,107.84,12.09 +2016-04-07 13:32:00,20.9875,107.857,12.16 +2016-04-07 13:47:00,20.56,107.85,12.17 +2016-04-07 14:02:00,20.8937,107.707,12.15 +2016-04-07 14:17:00,21.535,107.585,12.12 +2016-04-07 14:32:00,21.0925,107.467,12.11 +2016-04-07 14:47:00,20.07,107.18,12.11 +2016-04-07 15:02:00,21.19,106.962,12.12 +2016-04-07 15:17:00,19.8812,106.99,12.12 +2016-04-07 15:32:00,20.8438,106.897,12.17 +2016-04-07 15:47:00,21.2937,106.807,12.2 +2016-04-07 16:02:00,20.9938,106.757,12.19 +2016-04-07 16:17:00,20.75,106.77,12.19 +2016-04-07 16:32:00,20.8425,106.737,12.19 +2016-04-07 16:47:00,21.44,106.73,12.17 +2016-04-07 17:02:00,22.85,106.57,12.17 +2016-04-07 17:17:00,21.5325,106.347,12.19 +2016-04-07 17:32:00,23.2763,106.237,12.2 +2016-04-07 17:47:00,22.5587,106.003,12.2 +2016-04-07 18:02:00,22.0312,105.945,12.2 +2016-04-07 18:17:00,20.1237,105.897,12.18 +2016-04-07 18:32:00,19.7887,105.887,12.16 +2016-04-07 18:47:00,20.8425,105.92,12.12 +2016-04-07 19:02:00,19.8375,105.915,12.09 +2016-04-07 19:17:00,19.295,105.972,12.04 +2016-04-07 19:32:00,19.545,105.802,11.98 +2016-04-07 19:47:00,20.4187,105.735,11.93 +2016-04-07 20:02:00,21.34,105.537,11.88 +2016-04-07 20:17:00,19.6875,105.347,11.84 +2016-04-07 20:32:00,20.6562,105.262,11.79 +2016-04-07 20:47:00,22.8,105.217,11.75 +2016-04-07 21:02:00,21.8825,105.27,11.7 +2016-04-07 21:17:00,21.195,105.272,11.66 +2016-04-07 21:32:00,22.27,105.307,11.62 +2016-04-07 21:47:00,20.8012,105.302,11.57 +2016-04-07 22:02:00,21.6325,105.362,11.51 +2016-04-07 22:17:00,20.5612,105.375,11.46 +2016-04-07 22:32:00,22.2188,105.17,11.4 +2016-04-07 22:47:00,21.14,105.07,11.36 +2016-04-07 23:02:00,22.4587,104.94,11.32 +2016-04-07 23:17:00,21.2475,104.785,11.3 +2016-04-07 23:32:00,20.8025,104.768,11.24 +2016-04-07 23:47:00,20.2712,104.787,11.21 +2016-04-08 00:02:00,23.1837,104.84,11.18 +2016-04-08 00:17:00,21.585,104.79,11.16 +2016-04-08 00:32:00,21.4875,104.86,11.12 +2016-04-08 00:47:00,21.9287,104.89,11.08 +2016-04-08 01:02:00,21.5812,104.805,11.05 +2016-04-08 01:17:00,20.0737,104.712,11.02 +2016-04-08 01:32:00,18.5725,104.65,10.98 +2016-04-08 01:47:00,23.0375,104.5,10.94 +2016-04-08 02:02:00,21.6287,104.37,10.91 +2016-04-08 02:17:00,23.1338,104.317,10.86 +2016-04-08 02:32:00,22.3575,104.347,10.81 +2016-04-08 02:47:00,20.3175,104.32,10.77 +2016-04-08 03:02:00,21.1888,104.355,10.72 +2016-04-08 03:17:00,21.0925,104.462,10.67 +2016-04-08 03:32:00,21.93,104.45,10.63 +2016-04-08 03:47:00,21.1413,104.38,10.59 +2016-04-08 04:02:00,20.9412,104.352,10.55 +2016-04-08 04:17:00,21.7337,104.19,10.5 +2016-04-08 04:32:00,22.3125,104.065,10.48 +2016-04-08 04:47:00,21.4837,103.923,10.43 +2016-04-08 05:02:00,20.2213,103.975,10.37 +2016-04-08 05:17:00,22.1725,103.962,10.34 +2016-04-08 05:32:00,21.4837,103.938,10.34 +2016-04-08 05:47:00,22.6562,104.065,10.32 +2016-04-08 06:02:00,23.085,104.052,10.27 +2016-04-08 06:17:00,21.0413,104.05,10.25 +2016-04-08 06:32:00,20.8425,104.075,10.24 +2016-04-08 06:47:00,19.88,103.957,10.25 +2016-04-08 07:02:00,22.1263,103.805,10.26 +2016-04-08 07:17:00,18.6687,103.65,10.28 +2016-04-08 07:32:00,21.2337,103.688,10.29 +2016-04-08 07:47:00,22.9463,103.67,10.32 +2016-04-08 08:02:00,19.245,103.682,10.35 +2016-04-08 08:17:00,22.0263,103.682,10.41 +2016-04-08 08:32:00,21.34,103.798,10.45 +2016-04-08 08:47:00,22.3625,103.805,10.48 +2016-04-08 09:02:00,23.23,103.905,10.49 +2016-04-08 09:17:00,22.9475,103.952,10.5 +2016-04-08 09:32:00,22.3562,103.82,10.52 +2016-04-08 09:47:00,20.6513,103.902,10.45 +2016-04-08 10:02:00,21.4837,103.897,10.5 +2016-04-08 10:17:00,21.1825,103.702,10.67 +2016-04-08 10:32:00,20.5587,103.552,10.67 +2016-04-08 10:47:00,23.8187,103.52,10.63 +2016-04-08 11:02:00,21.19,103.585,10.66 +2016-04-08 11:17:00,20.4625,103.522,10.75 +2016-04-08 11:32:00,21.3875,103.518,10.82 +2016-04-08 11:47:00,19.6375,103.4,10.83 +2016-04-08 12:02:00,21.7275,103.197,10.91 +2016-04-08 12:17:00,21.34,102.85,10.99 +2016-04-08 12:32:00,20.99,102.53,11.08 +2016-04-08 12:47:00,21.0925,102.12,11.07 +2016-04-08 13:02:00,20.6537,101.48,11.16 +2016-04-08 13:17:00,21.2862,100.842,11.18 +2016-04-08 13:32:00,20.51,100.485,11.17 +2016-04-08 13:47:00,23.0837,100.28,11.21 +2016-04-08 14:02:00,22.1237,99.8075,11.21 +2016-04-08 14:17:00,22.1738,99.58,11.2 +2016-04-08 14:32:00,23.0,99.32,11.22 +2016-04-08 14:47:00,22.5062,99.1075,11.23 +2016-04-08 15:02:00,22.0238,98.925,11.25 +2016-04-08 15:17:00,23.1837,98.785,11.27 +2016-04-08 15:32:00,20.27,98.625,11.29 +2016-04-08 15:47:00,22.3613,98.455,11.31 +2016-04-08 16:02:00,21.88,98.44,11.34 +2016-04-08 16:17:00,21.4875,98.4925,11.35 +2016-04-08 16:32:00,22.51,98.585,11.36 +2016-04-08 16:47:00,21.2937,98.715,11.37 +2016-04-08 17:02:00,20.4638,98.9525,11.35 +2016-04-08 17:17:00,23.6188,99.1,11.31 +2016-04-08 17:32:00,22.9975,99.29,11.28 +2016-04-08 17:47:00,22.4125,99.4875,11.26 +2016-04-08 18:02:00,22.7025,99.485,11.25 +2016-04-08 18:17:00,21.0475,99.545,11.25 +2016-04-08 18:32:00,22.0775,99.595,11.26 +2016-04-08 18:47:00,21.0375,99.77,11.28 +2016-04-08 19:02:00,21.7325,99.98,11.29 +2016-04-08 19:17:00,21.4837,100.188,11.28 +2016-04-08 19:32:00,20.9875,100.405,11.27 +2016-04-08 19:47:00,21.9287,100.617,11.25 +2016-04-08 20:02:00,20.5612,100.783,11.22 +2016-04-08 20:17:00,22.0312,100.917,11.19 +2016-04-08 20:32:00,21.2913,101.007,11.16 +2016-04-08 20:47:00,21.5825,101.06,11.13 +2016-04-08 21:02:00,22.1225,101.102,11.1 +2016-04-08 21:17:00,20.9875,101.08,11.08 +2016-04-08 21:32:00,21.0425,101.173,11.07 +2016-04-08 21:47:00,19.6888,101.345,11.05 +2016-04-08 22:02:00,21.685,101.477,11.02 +2016-04-08 22:17:00,21.6825,101.647,10.99 +2016-04-08 22:32:00,21.5825,101.798,10.95 +2016-04-08 22:47:00,21.3937,101.938,10.92 +2016-04-08 23:02:00,23.7663,102.037,10.88 +2016-04-08 23:17:00,22.2225,102.003,10.84 +2016-04-08 23:32:00,20.7975,101.99,10.78 +2016-04-08 23:47:00,22.0737,101.897,10.72 +2016-04-09 00:02:00,20.8975,101.832,10.66 +2016-04-09 00:17:00,22.1762,101.865,10.6 +2016-04-09 00:32:00,23.1837,101.945,10.54 +2016-04-09 00:47:00,19.4887,102.082,10.46 +2016-04-09 01:02:00,19.8812,102.18,10.41 +2016-04-09 01:17:00,20.4137,102.257,10.36 +2016-04-09 01:32:00,20.7937,102.295,10.32 +2016-04-09 01:47:00,20.7975,102.402,10.24 +2016-04-09 02:02:00,19.155,102.37,10.18 +2016-04-09 02:17:00,21.0387,102.405,10.13 +2016-04-09 02:32:00,21.2862,102.335,10.09 +2016-04-09 02:47:00,21.035,102.23,10.06 +2016-04-09 03:02:00,20.79,102.155,10.03 +2016-04-09 03:17:00,21.3412,102.147,9.99 +2016-04-09 03:32:00,20.7487,102.253,9.94 +2016-04-09 03:47:00,22.2237,102.287,9.9 +2016-04-09 04:02:00,21.785,102.452,9.86 +2016-04-09 04:17:00,21.9262,102.423,9.84 +2016-04-09 04:32:00,19.9737,102.39,9.8 +2016-04-09 04:47:00,20.0662,102.557,9.76 +2016-04-09 05:02:00,20.7,102.512,9.73 +2016-04-09 05:17:00,20.215,102.637,9.7 +2016-04-09 05:32:00,21.7812,102.735,9.71 +2016-04-09 05:47:00,20.3187,102.602,9.7 +2016-04-09 06:02:00,19.9725,102.442,9.69 +2016-04-09 06:17:00,20.6075,102.325,9.68 +2016-04-09 06:32:00,20.1625,102.268,9.67 +2016-04-09 06:47:00,20.315,102.25,9.68 +2016-04-09 07:02:00,21.775,102.275,9.69 +2016-04-09 07:17:00,20.41,102.36,9.7 +2016-04-09 07:32:00,20.795,102.48,9.72 +2016-04-09 07:47:00,21.73,102.587,9.72 +2016-04-09 08:02:00,20.41,102.602,9.77 +2016-04-09 08:17:00,21.775,102.52,9.81 +2016-04-09 08:32:00,21.7738,102.412,9.84 +2016-04-09 08:47:00,21.6263,102.335,9.88 +2016-04-09 09:02:00,21.1375,102.325,9.92 +2016-04-09 09:17:00,21.0875,102.438,9.99 +2016-04-09 09:32:00,23.2787,102.312,10.0 +2016-04-09 09:47:00,21.6338,102.492,10.05 +2016-04-09 10:02:00,21.78,102.518,10.09 +2016-04-09 10:17:00,18.8138,102.55,10.16 +2016-04-09 10:32:00,20.265,102.545,10.24 +2016-04-09 10:47:00,20.0225,102.605,10.34 +2016-04-09 11:02:00,21.7275,102.605,10.4 +2016-04-09 11:17:00,21.6837,102.582,10.31 +2016-04-09 11:32:00,22.0287,102.545,10.3 +2016-04-09 11:47:00,21.58,102.48,10.26 +2016-04-09 12:02:00,20.1675,102.387,10.37 +2016-04-09 12:17:00,18.9088,102.3,10.42 +2016-04-09 12:32:00,21.285,102.205,10.44 +2016-04-09 12:47:00,21.2913,102.185,10.55 +2016-04-09 13:02:00,20.3625,102.16,10.63 +2016-04-09 13:17:00,19.5387,102.253,10.63 +2016-04-09 13:32:00,22.5062,102.21,10.66 +2016-04-09 13:47:00,19.7825,102.225,10.7 +2016-04-09 14:02:00,21.7312,102.245,10.71 +2016-04-09 14:17:00,20.315,102.272,10.67 +2016-04-09 14:32:00,19.9725,102.277,10.76 +2016-04-09 14:47:00,21.3337,102.285,10.8 +2016-04-09 15:02:00,19.7387,102.337,10.79 +2016-04-09 15:17:00,19.8838,102.327,10.77 +2016-04-09 15:32:00,20.6963,102.2,10.76 +2016-04-09 15:47:00,21.5287,102.11,10.75 +2016-04-09 16:02:00,20.7887,101.927,10.72 +2016-04-09 16:17:00,22.4512,101.938,10.71 +2016-04-09 16:32:00,20.555,101.893,10.71 +2016-04-09 16:47:00,20.4613,101.932,10.71 +2016-04-09 17:02:00,23.2812,101.94,10.73 +2016-04-09 17:17:00,18.1888,102.115,10.75 +2016-04-09 17:32:00,21.5312,102.11,10.77 +2016-04-09 17:47:00,19.735,102.175,10.82 +2016-04-09 18:02:00,20.9388,102.145,10.84 +2016-04-09 18:17:00,22.6588,102.17,10.86 +2016-04-09 18:32:00,20.51,102.2,10.86 +2016-04-09 18:47:00,21.635,102.167,10.89 +2016-04-09 19:02:00,21.885,102.04,10.92 +2016-04-09 19:17:00,21.485,101.905,10.95 +2016-04-09 19:32:00,22.5537,101.802,10.99 +2016-04-09 19:47:00,21.44,101.753,11.04 +2016-04-09 20:02:00,20.985,101.71,11.1 +2016-04-09 20:17:00,21.39,101.775,11.15 +2016-04-09 20:32:00,20.2687,101.795,11.17 +2016-04-09 20:47:00,23.1825,101.817,11.18 +2016-04-09 21:02:00,20.2237,101.92,11.18 +2016-04-09 21:17:00,19.8812,101.923,11.14 +2016-04-09 21:32:00,20.4125,102.012,11.12 +2016-04-09 21:47:00,21.0462,102.015,11.09 +2016-04-09 22:02:00,21.68,101.995,11.04 +2016-04-09 22:17:00,20.8913,101.917,11.0 +2016-04-09 22:32:00,21.4388,101.825,10.96 +2016-04-09 22:47:00,20.3688,101.68,10.92 +2016-04-09 23:02:00,23.18,101.533,10.85 +2016-04-09 23:17:00,23.4225,101.625,10.8 +2016-04-09 23:32:00,22.025,101.63,10.74 +2016-04-09 23:47:00,19.975,101.705,10.68 +2016-04-10 00:02:00,21.5312,101.722,10.63 +2016-04-10 00:17:00,21.5338,101.755,10.56 +2016-04-10 00:32:00,21.3425,101.878,10.51 +2016-04-10 00:47:00,20.8937,101.88,10.45 +2016-04-10 01:02:00,21.6287,101.835,10.39 +2016-04-10 01:17:00,21.2875,101.725,10.35 +2016-04-10 01:32:00,19.105,101.628,10.32 +2016-04-10 01:47:00,21.68,101.57,10.28 +2016-04-10 02:02:00,22.8475,101.565,10.23 +2016-04-10 02:17:00,20.4125,101.565,10.18 +2016-04-10 02:32:00,21.6325,101.545,10.13 +2016-04-10 02:47:00,19.395,101.62,10.08 +2016-04-10 03:02:00,22.1725,101.643,10.04 +2016-04-10 03:17:00,21.2363,101.822,9.99 +2016-04-10 03:32:00,20.8425,101.812,9.94 +2016-04-10 03:47:00,20.1175,101.798,9.9 +2016-04-10 04:02:00,22.3575,101.7,9.87 +2016-04-10 04:17:00,21.6312,101.607,9.84 +2016-04-10 04:32:00,21.485,101.455,9.82 +2016-04-10 04:47:00,21.5812,101.49,9.79 +2016-04-10 05:02:00,21.2387,101.412,9.75 +2016-04-10 05:17:00,19.9737,101.485,9.73 +2016-04-10 05:32:00,21.58,101.465,9.71 +2016-04-10 05:47:00,21.14,101.482,9.71 +2016-04-10 06:02:00,21.5775,101.602,9.65 +2016-04-10 06:17:00,20.1663,101.548,9.62 +2016-04-10 06:32:00,21.0925,101.592,9.61 +2016-04-10 06:47:00,22.8487,101.56,9.61 +2016-04-10 07:02:00,22.3562,101.42,9.63 +2016-04-10 07:17:00,23.3775,101.395,9.65 +2016-04-10 07:32:00,21.7787,101.295,9.65 +2016-04-10 07:47:00,21.4388,101.34,9.67 +2016-04-10 08:02:00,19.7875,101.31,9.69 +2016-04-10 08:17:00,20.895,101.212,9.73 +2016-04-10 08:32:00,22.9463,101.295,9.76 +2016-04-10 08:47:00,22.8988,101.432,9.81 +2016-04-10 09:02:00,22.1212,101.372,9.84 +2016-04-10 09:17:00,21.4825,101.465,9.85 +2016-04-10 09:32:00,22.505,101.48,9.87 +2016-04-10 09:47:00,20.9375,101.552,9.89 +2016-04-10 10:02:00,20.9425,101.595,9.99 +2016-04-10 10:17:00,21.2475,101.592,10.04 +2016-04-10 10:32:00,19.4938,101.622,10.07 +2016-04-10 10:47:00,21.0425,101.477,10.12 +2016-04-10 11:02:00,21.3913,101.36,10.12 +2016-04-10 11:17:00,22.85,101.24,10.15 +2016-04-10 11:32:00,22.2663,101.32,10.2 +2016-04-10 11:47:00,20.9887,101.395,10.24 +2016-04-10 12:02:00,21.6338,101.457,10.37 +2016-04-10 12:17:00,21.8812,101.385,10.42 +2016-04-10 12:32:00,20.3675,101.512,10.47 +2016-04-10 12:47:00,21.04,101.587,10.55 +2016-04-10 13:02:00,21.93,101.57,10.57 +2016-04-10 13:17:00,21.7312,101.587,10.58 +2016-04-10 13:32:00,21.4875,101.57,10.6 +2016-04-10 13:47:00,23.5325,101.472,10.64 +2016-04-10 14:02:00,19.9337,101.255,10.7 +2016-04-10 14:17:00,22.7975,101.185,10.76 +2016-04-10 14:32:00,20.7475,101.1,10.82 +2016-04-10 14:47:00,21.93,101.192,10.87 +2016-04-10 15:02:00,21.5812,101.217,10.92 +2016-04-10 15:17:00,20.9875,101.277,11.0 +2016-04-10 15:32:00,20.565,101.257,11.04 +2016-04-10 15:47:00,20.1738,101.417,11.07 +2016-04-10 16:02:00,21.4887,101.412,11.08 +2016-04-10 16:17:00,21.6813,101.412,11.1 +2016-04-10 16:32:00,22.9938,101.28,11.14 +2016-04-10 16:47:00,20.27,101.235,11.18 +2016-04-10 17:02:00,20.9388,101.105,11.23 +2016-04-10 17:17:00,19.88,101.077,11.27 +2016-04-10 17:32:00,23.0888,101.067,11.32 +2016-04-10 17:47:00,22.1287,101.207,11.36 +2016-04-10 18:02:00,21.4837,101.238,11.39 +2016-04-10 18:17:00,22.0263,101.257,11.4 +2016-04-10 18:32:00,22.075,101.33,11.4 +2016-04-10 18:47:00,22.3112,101.432,11.36 +2016-04-10 19:02:00,21.2875,101.42,11.36 +2016-04-10 19:17:00,21.4388,101.34,11.35 +2016-04-10 19:32:00,19.8875,101.167,11.32 +2016-04-10 19:47:00,20.8512,101.065,11.28 +2016-04-10 20:02:00,21.485,100.992,11.25 +2016-04-10 20:17:00,22.605,101.005,11.2 +2016-04-10 20:32:00,20.1237,100.985,11.17 +2016-04-10 20:47:00,22.0275,101.082,11.14 +2016-04-10 21:02:00,23.6738,101.158,11.12 +2016-04-10 21:17:00,22.0775,101.227,11.1 +2016-04-10 21:32:00,22.0312,101.25,11.09 +2016-04-10 21:47:00,22.8475,101.268,11.06 +2016-04-10 22:02:00,23.38,101.207,11.03 +2016-04-10 22:17:00,22.3575,101.067,10.98 +2016-04-10 22:32:00,23.33,100.94,10.93 +2016-04-10 22:47:00,21.0437,100.855,10.89 +2016-04-10 23:02:00,22.0275,100.817,10.81 +2016-04-10 23:17:00,21.9825,100.872,10.75 +2016-04-10 23:32:00,23.48,100.87,10.67 +2016-04-10 23:47:00,20.3688,100.947,10.6 +2016-04-11 00:02:00,22.9938,100.962,10.54 +2016-04-11 00:17:00,21.3388,101.035,10.46 +2016-04-11 00:32:00,20.89,101.065,10.37 +2016-04-11 00:47:00,20.5088,100.98,10.32 +2016-04-11 01:02:00,19.7862,100.91,10.26 +2016-04-11 01:17:00,21.6325,100.827,10.2 +2016-04-11 01:32:00,23.3825,100.64,10.12 +2016-04-11 01:47:00,22.1712,100.685,10.06 +2016-04-11 02:02:00,23.5225,100.69,10.01 +2016-04-11 02:17:00,21.4388,100.717,9.95 +2016-04-11 02:32:00,20.7012,100.785,9.91 +2016-04-11 02:47:00,22.3562,100.865,9.86 +2016-04-11 03:02:00,23.3838,100.895,9.84 +2016-04-11 03:17:00,22.8037,100.893,9.8 +2016-04-11 03:32:00,22.6087,100.86,9.79 +2016-04-11 03:47:00,22.22,100.732,9.77 +2016-04-11 04:02:00,21.2387,100.582,9.77 +2016-04-11 04:17:00,21.04,100.552,9.75 +2016-04-11 04:32:00,21.0938,100.58,9.75 +2016-04-11 04:47:00,21.2913,100.647,9.73 +2016-04-11 05:02:00,22.9,100.688,9.71 +2016-04-11 05:17:00,22.895,100.707,9.7 +2016-04-11 05:32:00,21.58,100.62,9.7 +2016-04-11 05:47:00,19.88,100.622,9.7 +2016-04-11 06:02:00,21.035,100.49,9.68 +2016-04-11 06:17:00,22.4075,100.445,9.66 +2016-04-11 06:32:00,23.9075,100.395,9.63 +2016-04-11 06:47:00,20.5125,100.52,9.62 +2016-04-11 07:02:00,21.3925,100.688,9.62 +2016-04-11 07:17:00,20.6562,100.787,9.67 +2016-04-11 07:32:00,21.6825,100.885,9.76 +2016-04-11 07:47:00,21.7288,100.875,9.73 +2016-04-11 08:02:00,20.7462,100.817,9.7 +2016-04-11 08:17:00,20.7025,100.807,9.68 +2016-04-11 08:32:00,22.5563,100.62,9.67 +2016-04-11 08:47:00,20.8012,100.52,9.67 +2016-04-11 09:02:00,22.8012,100.34,9.69 +2016-04-11 09:17:00,22.1725,100.292,9.7 +2016-04-11 09:32:00,22.2188,100.238,9.71 +2016-04-11 09:47:00,23.1312,100.205,9.72 +2016-04-11 10:02:00,21.5338,100.143,9.75 +2016-04-11 10:17:00,21.7337,100.15,9.75 +2016-04-11 10:32:00,21.3925,100.26,9.75 +2016-04-11 10:47:00,22.0812,100.28,9.77 +2016-04-11 11:02:00,21.8812,100.405,9.81 +2016-04-11 11:17:00,22.17,100.545,9.83 +2016-04-11 11:32:00,22.4538,100.695,9.88 +2016-04-11 11:47:00,22.655,100.9,9.91 +2016-04-11 12:02:00,22.7513,101.12,9.92 +2016-04-11 12:17:00,22.5563,101.402,9.96 +2016-04-11 12:32:00,22.4125,101.732,10.02 +2016-04-11 12:47:00,20.3213,101.91,10.08 +2016-04-11 13:02:00,22.7012,102.102,10.09 +2016-04-11 13:17:00,21.04,102.235,10.15 +2016-04-11 13:32:00,22.9463,102.27,10.22 +2016-04-11 13:47:00,20.0687,102.285,10.26 +2016-04-11 14:02:00,21.9287,102.405,10.27 +2016-04-11 14:17:00,21.6312,102.432,10.26 +2016-04-11 14:32:00,23.9613,102.537,10.3 +2016-04-11 14:47:00,22.0225,102.575,10.33 +2016-04-11 15:02:00,22.2637,102.57,10.39 +2016-04-11 15:17:00,23.7225,102.445,10.43 +2016-04-11 15:32:00,22.8962,102.117,10.43 +2016-04-11 15:47:00,23.8112,101.915,10.43 +2016-04-11 16:02:00,21.4825,101.715,10.41 +2016-04-11 16:17:00,20.6575,101.515,10.42 +2016-04-11 16:32:00,22.6575,101.432,10.46 +2016-04-11 16:47:00,22.7988,101.4,10.49 +2016-04-11 17:02:00,21.3388,101.295,10.51 +2016-04-11 17:17:00,22.8975,101.342,10.54 +2016-04-11 17:32:00,21.39,101.29,10.57 +2016-04-11 17:47:00,22.99,101.265,10.58 +2016-04-11 18:02:00,23.2288,101.225,10.59 +2016-04-11 18:17:00,22.08,101.135,10.59 +2016-04-11 18:32:00,22.8975,101.005,10.61 +2016-04-11 18:47:00,21.63,100.832,10.62 +2016-04-11 19:02:00,23.8613,100.662,10.64 +2016-04-11 19:17:00,22.2188,100.64,10.64 +2016-04-11 19:32:00,22.6575,100.637,10.66 +2016-04-11 19:47:00,21.9325,100.658,10.69 +2016-04-11 20:02:00,20.8412,100.625,10.69 +2016-04-11 20:17:00,21.9775,100.67,10.69 +2016-04-11 20:32:00,20.415,100.66,10.66 +2016-04-11 20:47:00,23.0837,100.705,10.65 +2016-04-11 21:02:00,21.785,100.715,10.66 +2016-04-11 21:17:00,22.705,100.625,10.66 +2016-04-11 21:32:00,23.0875,100.533,10.65 +2016-04-11 21:47:00,22.9025,100.378,10.62 +2016-04-11 22:02:00,22.9512,100.232,10.61 +2016-04-11 22:17:00,23.72,100.202,10.58 +2016-04-11 22:32:00,20.8937,100.197,10.55 +2016-04-11 22:47:00,22.0275,100.22,10.53 +2016-04-11 23:02:00,22.7537,100.283,10.53 +2016-04-11 23:17:00,19.6875,100.332,10.53 +2016-04-11 23:32:00,23.2787,100.393,10.52 +2016-04-11 23:47:00,20.42,100.46,10.51 +2016-04-12 00:02:00,23.1875,100.397,10.51 +2016-04-12 00:17:00,22.995,100.247,10.5 +2016-04-12 00:32:00,20.475,100.14,10.47 +2016-04-12 00:47:00,24.215,100.057,10.48 +2016-04-12 01:02:00,21.3412,100.065,10.47 +2016-04-12 01:17:00,23.7237,100.085,10.47 +2016-04-12 01:32:00,19.1087,100.085,10.45 +2016-04-12 01:47:00,25.1125,100.15,10.44 +2016-04-12 02:02:00,22.4112,100.222,10.44 +2016-04-12 02:17:00,22.705,100.212,10.41 +2016-04-12 02:32:00,23.1813,100.27,10.38 +2016-04-12 02:47:00,22.3125,100.285,10.37 +2016-04-12 03:02:00,23.0413,100.287,10.37 +2016-04-12 03:17:00,22.7562,100.18,10.36 +2016-04-12 03:32:00,22.1325,100.065,10.35 +2016-04-12 03:47:00,21.7375,99.9425,10.33 +2016-04-12 04:02:00,20.6575,99.9,10.32 +2016-04-12 04:17:00,23.96,99.945,10.29 +2016-04-12 04:32:00,23.3237,100.025,10.25 +2016-04-12 04:47:00,21.8812,100.01,10.23 +2016-04-12 05:02:00,21.5812,100.012,10.21 +2016-04-12 05:17:00,21.3438,100.113,10.2 +2016-04-12 05:32:00,20.1712,99.975,10.2 +2016-04-12 05:47:00,21.7288,100.137,10.2 +2016-04-12 06:02:00,23.6225,100.082,10.19 +2016-04-12 06:17:00,21.6287,100.015,10.19 +2016-04-12 06:32:00,21.8862,99.8875,10.19 +2016-04-12 06:47:00,23.525,99.8075,10.22 +2016-04-12 07:02:00,21.4388,99.735,10.26 +2016-04-12 07:17:00,24.7625,99.7875,10.31 +2016-04-12 07:32:00,21.5837,99.755,10.33 +2016-04-12 07:47:00,23.0362,99.8125,10.38 +2016-04-12 08:02:00,20.0737,99.9725,10.44 +2016-04-12 08:17:00,22.6075,100.085,10.5 +2016-04-12 08:32:00,20.7962,100.225,10.56 +2016-04-12 08:47:00,23.135,100.242,10.62 +2016-04-12 09:02:00,24.6588,100.2,10.7 +2016-04-12 09:17:00,22.4638,99.9725,10.96 +2016-04-12 09:32:00,19.7925,99.9575,10.97 +2016-04-12 09:47:00,23.0888,99.9675,10.87 +2016-04-12 10:02:00,23.1325,100.003,10.88 +2016-04-12 10:17:00,22.8,100.137,10.88 +2016-04-12 10:32:00,22.0737,100.202,10.9 +2016-04-12 10:47:00,24.0088,100.16,11.06 +2016-04-12 11:02:00,21.635,100.04,11.22 +2016-04-12 11:17:00,22.3625,100.16,11.25 +2016-04-12 11:32:00,20.4187,100.212,11.31 +2016-04-12 11:47:00,22.6038,100.285,11.41 +2016-04-12 12:02:00,20.415,100.158,11.49 +2016-04-12 12:17:00,23.18,100.177,11.57 +2016-04-12 12:32:00,22.4112,100.092,11.65 +2016-04-12 12:47:00,21.1912,99.955,11.68 +2016-04-12 13:02:00,22.8525,99.94,11.72 +2016-04-12 13:17:00,21.635,99.985,11.78 +2016-04-12 13:32:00,22.36,99.9875,11.85 +2016-04-12 13:47:00,22.1237,100.045,11.89 +2016-04-12 14:02:00,22.175,100.18,11.94 +2016-04-12 14:17:00,23.1862,100.143,11.98 +2016-04-12 14:32:00,22.8025,100.312,12.04 +2016-04-12 14:47:00,23.7725,100.3,12.06 +2016-04-12 15:02:00,21.5875,100.24,12.1 +2016-04-12 15:17:00,22.6062,100.087,12.13 +2016-04-12 15:32:00,22.5563,99.925,12.15 +2016-04-12 15:47:00,22.27,99.8375,12.16 +2016-04-12 16:02:00,22.3162,99.87,12.21 +2016-04-12 16:17:00,23.68,99.8275,12.26 +2016-04-12 16:32:00,24.0112,99.82,12.31 +2016-04-12 16:47:00,23.9637,99.9825,12.34 +2016-04-12 17:02:00,22.9013,99.8875,12.38 +2016-04-12 17:17:00,23.4313,99.915,12.42 +2016-04-12 17:32:00,20.9375,99.9125,12.46 +2016-04-12 17:47:00,21.5825,99.9675,12.49 +2016-04-12 18:02:00,23.6762,99.8175,12.53 +2016-04-12 18:17:00,23.8637,99.65,12.56 +2016-04-12 18:32:00,23.0912,99.585,12.6 +2016-04-12 18:47:00,22.0788,99.3525,12.63 +2016-04-12 19:02:00,23.1362,99.3375,12.63 +2016-04-12 19:17:00,22.6087,99.3025,12.64 +2016-04-12 19:32:00,22.5563,99.2325,12.63 +2016-04-12 19:47:00,21.1425,99.275,12.62 +2016-04-12 20:02:00,21.49,99.3125,12.62 +2016-04-12 20:17:00,23.3275,99.3175,12.62 +2016-04-12 20:32:00,22.9512,99.4325,12.62 +2016-04-12 20:47:00,23.0,99.415,12.62 +2016-04-12 21:02:00,22.0775,99.36,12.6 +2016-04-12 21:17:00,22.6087,99.2025,12.58 +2016-04-12 21:32:00,21.6837,99.1375,12.56 +2016-04-12 21:47:00,22.6087,98.99,12.55 +2016-04-12 22:02:00,20.2213,98.9725,12.54 +2016-04-12 22:17:00,22.0788,98.8825,12.52 +2016-04-12 22:32:00,21.0963,98.855,12.48 +2016-04-12 22:47:00,20.3712,98.89,12.44 +2016-04-12 23:02:00,24.7612,98.8975,12.4 +2016-04-12 23:17:00,23.0875,99.0,12.37 +2016-04-12 23:32:00,22.9487,98.9725,12.35 +2016-04-12 23:47:00,22.6588,99.02,12.3 +2016-04-13 00:02:00,21.98,98.8875,12.26 +2016-04-13 00:17:00,22.9025,98.73,12.25 +2016-04-13 00:32:00,23.63,98.5325,12.23 +2016-04-13 00:47:00,21.8838,98.455,12.21 +2016-04-13 01:02:00,22.7025,98.4425,12.17 +2016-04-13 01:17:00,24.1625,98.51,12.13 +2016-04-13 01:32:00,22.1287,98.56,12.09 +2016-04-13 01:47:00,23.1837,98.5325,12.06 +2016-04-13 02:02:00,22.7062,98.555,12.03 +2016-04-13 02:17:00,24.165,98.565,11.98 +2016-04-13 02:32:00,21.245,98.52,11.93 +2016-04-13 02:47:00,20.9425,98.3625,11.88 +2016-04-13 03:02:00,21.535,98.3075,11.83 +2016-04-13 03:17:00,22.5137,98.2125,11.78 +2016-04-13 03:32:00,23.3775,98.045,11.74 +2016-04-13 03:47:00,20.9875,98.0525,11.68 +2016-04-13 04:02:00,24.1137,98.09,11.62 +2016-04-13 04:17:00,23.3325,98.185,11.56 +2016-04-13 04:32:00,22.6612,98.1775,11.52 +2016-04-13 04:47:00,23.0875,98.1825,11.48 +2016-04-13 05:02:00,23.135,98.2075,11.44 +2016-04-13 05:17:00,20.6113,98.1975,11.43 +2016-04-13 05:32:00,23.7213,98.2075,11.41 +2016-04-13 05:47:00,22.8988,98.1575,11.4 +2016-04-13 06:02:00,22.2687,98.0125,11.4 +2016-04-13 06:17:00,22.2712,97.9525,11.42 +2016-04-13 06:32:00,22.6562,97.9625,11.45 +2016-04-13 06:47:00,22.9,97.8825,11.49 +2016-04-13 07:02:00,22.2725,97.8625,11.53 +2016-04-13 07:17:00,22.705,97.95,11.57 +2016-04-13 07:32:00,22.4587,97.9625,11.59 +2016-04-13 07:47:00,21.9362,98.0475,11.64 +2016-04-13 08:02:00,20.8962,98.12,11.73 +2016-04-13 08:17:00,22.1212,98.14,11.79 +2016-04-13 08:32:00,21.5338,98.25,11.85 +2016-04-13 08:47:00,24.31,98.2275,11.9 +2016-04-13 09:02:00,23.4788,98.2975,11.92 +2016-04-13 09:17:00,20.845,98.205,11.96 +2016-04-13 09:32:00,20.8438,98.185,12.01 +2016-04-13 09:47:00,23.6275,98.125,12.06 +2016-04-13 10:02:00,22.1312,98.1925,12.05 +2016-04-13 10:17:00,21.2412,98.2125,12.03 +2016-04-13 10:32:00,22.36,98.2525,12.02 +2016-04-13 10:47:00,22.3125,98.3325,12.01 +2016-04-13 11:02:00,22.6562,98.4275,12.0 +2016-04-13 11:17:00,23.435,98.51,11.99 +2016-04-13 11:32:00,22.71,98.585,12.0 +2016-04-13 11:47:00,23.7738,98.505,12.0 +2016-04-13 12:02:00,23.58,98.395,12.01 +2016-04-13 12:17:00,23.1375,98.2575,12.02 +2016-04-13 12:32:00,23.3838,98.195,12.04 +2016-04-13 12:47:00,23.7712,98.0775,12.05 +2016-04-13 13:02:00,22.3625,98.195,12.08 +2016-04-13 13:17:00,23.2812,98.2875,12.13 +2016-04-13 13:32:00,22.5638,98.34,12.17 +2016-04-13 13:47:00,22.1325,98.445,12.2 +2016-04-13 14:02:00,23.4325,98.5125,12.21 +2016-04-13 14:17:00,22.5575,98.55,12.26 +2016-04-13 14:32:00,23.2812,98.4225,12.32 +2016-04-13 14:47:00,21.2438,98.39,12.38 +2016-04-13 15:02:00,23.6275,98.3725,12.43 +2016-04-13 15:17:00,21.2412,98.1675,12.45 +2016-04-13 15:32:00,21.4463,98.1675,12.49 +2016-04-13 15:47:00,21.54,98.275,12.52 +2016-04-13 16:02:00,23.1375,98.355,12.53 +2016-04-13 16:17:00,22.9938,98.4525,12.54 +2016-04-13 16:32:00,23.7288,98.465,12.55 +2016-04-13 16:47:00,21.0425,98.4425,12.56 +2016-04-13 17:02:00,24.1087,98.645,12.58 +2016-04-13 17:17:00,22.32,98.56,12.59 +2016-04-13 17:32:00,23.4837,98.4975,12.62 +2016-04-13 17:47:00,22.27,98.34,12.61 +2016-04-13 18:02:00,21.5387,98.32,12.62 +2016-04-13 18:17:00,22.1762,98.2325,12.63 +2016-04-13 18:32:00,23.3262,98.3,12.65 +2016-04-13 18:47:00,23.0413,98.27,12.68 +2016-04-13 19:02:00,23.4313,98.3925,12.72 +2016-04-13 19:17:00,21.3438,98.395,12.76 +2016-04-13 19:32:00,21.6888,98.4875,12.77 +2016-04-13 19:47:00,22.8012,98.46,12.78 +2016-04-13 20:02:00,23.6775,98.5525,12.79 +2016-04-13 20:17:00,23.6237,98.4375,12.8 +2016-04-13 20:32:00,20.7012,98.3475,12.81 +2016-04-13 20:47:00,22.555,98.185,12.83 +2016-04-13 21:02:00,21.8838,98.0825,12.83 +2016-04-13 21:17:00,22.4613,98.0125,12.82 +2016-04-13 21:32:00,25.1087,97.9375,12.81 +2016-04-13 21:47:00,23.91,98.015,12.8 +2016-04-13 22:02:00,24.055,98.075,12.78 +2016-04-13 22:17:00,22.5088,98.085,12.76 +2016-04-13 22:32:00,20.3662,98.11,12.74 +2016-04-13 22:47:00,24.0075,98.0575,12.71 +2016-04-13 23:02:00,22.27,98.0225,12.67 +2016-04-13 23:17:00,20.9425,98.0725,12.63 +2016-04-13 23:32:00,23.725,97.8325,12.59 +2016-04-13 23:47:00,22.7537,97.69,12.57 +2016-04-14 00:02:00,22.7025,97.59,12.52 +2016-04-14 00:17:00,21.835,97.575,12.49 +2016-04-14 00:32:00,23.7237,97.535,12.45 +2016-04-14 00:47:00,22.5575,97.5225,12.42 +2016-04-14 01:02:00,25.0175,97.6275,12.39 +2016-04-14 01:17:00,22.9025,97.665,12.34 +2016-04-14 01:32:00,22.8988,97.5975,12.3 +2016-04-14 01:47:00,23.0387,97.63,12.26 +2016-04-14 02:02:00,22.075,97.605,12.24 +2016-04-14 02:17:00,24.6075,97.4775,12.22 +2016-04-14 02:32:00,21.4412,97.2925,12.21 +2016-04-14 02:47:00,21.835,97.2425,12.18 +2016-04-14 03:02:00,24.3662,97.195,12.16 +2016-04-14 03:17:00,22.3112,97.2025,12.14 +2016-04-14 03:32:00,22.4575,97.085,12.12 +2016-04-14 03:47:00,24.1075,97.22,12.1 +2016-04-14 04:02:00,23.0888,97.2475,12.09 +2016-04-14 04:17:00,21.4863,97.325,12.09 +2016-04-14 04:32:00,24.2137,97.365,12.09 +2016-04-14 04:47:00,24.105,97.2125,12.05 +2016-04-14 05:02:00,21.6862,97.2175,12.04 +2016-04-14 05:17:00,22.705,97.1075,12.02 +2016-04-14 05:32:00,20.8487,97.0025,12.0 +2016-04-14 05:47:00,23.4788,96.855,12.0 +2016-04-14 06:02:00,22.36,96.785,12.0 +2016-04-14 06:17:00,22.8962,96.605,12.0 +2016-04-14 06:32:00,22.0775,96.49,11.98 +2016-04-14 06:47:00,22.805,96.5425,11.95 +2016-04-14 07:02:00,23.2275,96.6125,11.94 +2016-04-14 07:17:00,23.4275,96.62,11.94 +2016-04-14 07:32:00,22.3112,96.6925,11.97 +2016-04-14 07:47:00,24.7087,96.77,11.96 +2016-04-14 08:02:00,22.5563,96.7725,11.96 +2016-04-14 08:17:00,24.96,96.7775,11.95 +2016-04-14 08:32:00,22.3662,96.9125,11.95 +2016-04-14 08:47:00,22.1312,96.9,12.03 +2016-04-14 09:02:00,23.4775,96.725,12.1 +2016-04-14 09:17:00,23.2288,96.59,12.12 +2016-04-14 09:32:00,22.455,96.4475,12.12 +2016-04-14 09:47:00,22.5525,96.445,12.12 +2016-04-14 10:02:00,23.38,96.4275,12.1 +2016-04-14 10:17:00,23.6762,96.4525,12.1 +2016-04-14 10:32:00,22.225,96.49,12.04 +2016-04-14 10:47:00,23.0863,96.615,12.03 +2016-04-14 11:02:00,22.8988,96.595,12.03 +2016-04-14 11:17:00,22.5075,96.5625,12.03 +2016-04-14 11:32:00,24.5625,96.5675,12.02 +2016-04-14 11:47:00,22.5563,96.625,12.02 +2016-04-14 12:02:00,23.91,96.5625,12.05 +2016-04-14 12:17:00,24.4675,96.3725,12.09 +2016-04-14 12:32:00,23.8187,96.295,12.14 +2016-04-14 12:47:00,22.17,96.1525,12.16 +2016-04-14 13:02:00,24.31,96.1175,12.23 +2016-04-14 13:17:00,25.2038,96.255,12.31 +2016-04-14 13:32:00,22.5563,96.3375,12.37 +2016-04-14 13:47:00,23.28,96.2425,12.35 +2016-04-14 14:02:00,24.1637,96.3125,12.33 +2016-04-14 14:17:00,23.3325,96.3725,12.3 +2016-04-14 14:32:00,26.1338,96.4825,12.31 +2016-04-14 14:47:00,22.125,96.46,12.35 +2016-04-14 15:02:00,24.1113,96.4675,12.41 +2016-04-14 15:17:00,24.2113,96.4,12.44 +2016-04-14 15:32:00,23.28,96.26,12.45 +2016-04-14 15:47:00,21.4863,96.1775,12.47 +2016-04-14 16:02:00,22.32,96.265,12.46 +2016-04-14 16:17:00,22.9538,96.3225,12.43 +2016-04-14 16:32:00,24.3613,96.3425,12.41 +2016-04-14 16:47:00,22.51,96.485,12.38 +2016-04-14 17:02:00,24.3175,96.5425,12.37 +2016-04-14 17:17:00,24.0587,96.6925,12.37 +2016-04-14 17:32:00,24.565,96.7375,12.37 +2016-04-14 17:47:00,21.585,96.7475,12.4 +2016-04-14 18:02:00,23.3862,96.6275,12.4 +2016-04-14 18:17:00,25.26,96.48,12.42 +2016-04-14 18:32:00,24.2625,96.315,12.44 +2016-04-14 18:47:00,24.26,96.265,12.46 +2016-04-14 19:02:00,23.6762,96.28,12.49 +2016-04-14 19:17:00,24.5137,96.23,12.49 +2016-04-14 19:32:00,23.0888,96.1975,12.5 +2016-04-14 19:47:00,23.9163,96.175,12.5 +2016-04-14 20:02:00,23.1862,96.0925,12.49 +2016-04-14 20:17:00,22.75,96.0975,12.47 +2016-04-14 20:32:00,23.48,96.075,12.46 +2016-04-14 20:47:00,23.5287,95.9025,12.44 +2016-04-14 21:02:00,22.4613,95.86,12.41 +2016-04-14 21:17:00,23.9625,95.625,12.38 +2016-04-14 21:32:00,23.4812,95.4225,12.36 +2016-04-14 21:47:00,22.7588,95.4325,12.32 +2016-04-14 22:02:00,23.8675,95.39,12.28 +2016-04-14 22:17:00,23.2775,95.3,12.23 +2016-04-14 22:32:00,25.3037,95.385,12.18 +2016-04-14 22:47:00,22.5075,95.3575,12.14 +2016-04-14 23:02:00,23.135,95.3875,12.09 +2016-04-14 23:17:00,23.4313,95.505,12.04 +2016-04-14 23:32:00,22.0788,95.5025,12.0 +2016-04-14 23:47:00,24.9662,95.4525,11.95 +2016-04-15 00:02:00,22.8487,95.415,11.91 +2016-04-15 00:17:00,23.8613,95.3225,11.88 +2016-04-15 00:32:00,24.0075,95.215,11.82 +2016-04-15 00:47:00,22.555,95.185,11.79 +2016-04-15 01:02:00,23.625,95.2025,11.74 +2016-04-15 01:17:00,22.6525,95.2275,11.7 +2016-04-15 01:32:00,21.0912,95.315,11.67 +2016-04-15 01:47:00,24.1625,95.415,11.65 +2016-04-15 02:02:00,24.66,95.505,11.64 +2016-04-15 02:17:00,22.6575,95.4975,11.63 +2016-04-15 02:32:00,22.1275,95.4275,11.62 +2016-04-15 02:47:00,23.9125,95.4225,11.61 +2016-04-15 03:02:00,22.7038,95.2975,11.6 +2016-04-15 03:17:00,24.16,95.21,11.6 +2016-04-15 03:32:00,24.1637,95.195,11.58 +2016-04-15 03:47:00,24.1062,95.2325,11.54 +2016-04-15 04:02:00,23.0387,95.32,11.51 +2016-04-15 04:17:00,23.9112,95.3625,11.49 +2016-04-15 04:32:00,23.2312,95.4025,11.46 +2016-04-15 04:47:00,23.18,95.4875,11.43 +2016-04-15 05:02:00,24.5112,95.5,11.39 +2016-04-15 05:17:00,21.49,95.6175,11.35 +2016-04-15 05:32:00,22.6588,95.555,11.32 +2016-04-15 05:47:00,22.945,95.4075,11.31 +2016-04-15 06:02:00,25.5413,95.3525,11.28 +2016-04-15 06:17:00,22.1263,95.25,11.25 +2016-04-15 06:32:00,23.7213,95.28,11.22 +2016-04-15 06:47:00,23.0387,95.3425,11.21 +2016-04-15 07:02:00,22.555,95.4075,11.18 +2016-04-15 07:17:00,22.7062,95.5675,11.14 +2016-04-15 07:32:00,22.1263,95.6075,11.11 +2016-04-15 07:47:00,24.2612,95.5325,11.09 +2016-04-15 08:02:00,22.9962,95.5725,11.07 +2016-04-15 08:17:00,24.1525,95.59,11.04 +2016-04-15 08:32:00,23.7663,95.5425,11.07 +2016-04-15 08:47:00,24.5125,95.435,11.16 +2016-04-15 09:02:00,23.6787,95.55,11.16 +2016-04-15 09:17:00,23.045,95.6,11.14 +2016-04-15 09:32:00,23.1862,95.6525,11.15 +2016-04-15 09:47:00,24.515,95.655,11.14 +2016-04-15 10:02:00,23.9575,95.765,11.15 +2016-04-15 10:17:00,23.7175,95.7875,11.25 +2016-04-15 10:32:00,23.475,95.8775,11.36 +2016-04-15 10:47:00,21.8325,95.895,11.38 +2016-04-15 11:02:00,22.8025,95.8575,11.36 +2016-04-15 11:17:00,25.4012,95.7125,11.35 +2016-04-15 11:32:00,23.57,95.68,11.32 +2016-04-15 11:47:00,22.3138,95.7375,11.3 +2016-04-15 12:02:00,24.6537,95.7975,11.32 +2016-04-15 12:17:00,25.3525,95.775,11.42 +2016-04-15 12:32:00,23.8662,95.7275,11.52 +2016-04-15 12:47:00,23.4775,95.6925,11.6 +2016-04-15 13:02:00,22.27,95.545,11.66 +2016-04-15 13:17:00,21.735,95.265,11.66 +2016-04-15 13:32:00,23.7687,94.955,11.69 +2016-04-15 13:47:00,23.4775,94.6575,11.65 +2016-04-15 14:02:00,23.1312,94.2475,11.61 +2016-04-15 14:17:00,24.8075,93.9225,11.57 +2016-04-15 14:32:00,22.175,93.6025,11.56 +2016-04-15 14:47:00,23.6275,93.35,11.62 +2016-04-15 15:02:00,23.6263,93.0775,11.64 +2016-04-15 15:17:00,24.1087,92.9325,11.66 +2016-04-15 15:32:00,22.705,92.845,11.65 +2016-04-15 15:47:00,22.1275,92.645,11.63 +2016-04-15 16:02:00,23.5262,92.6525,11.63 +2016-04-15 16:17:00,23.5762,92.635,11.64 +2016-04-15 16:32:00,23.8688,92.555,11.63 +2016-04-15 16:47:00,22.9487,92.4375,11.62 +2016-04-15 17:02:00,23.8613,92.4125,11.62 +2016-04-15 17:17:00,23.0425,92.2875,11.61 +2016-04-15 17:32:00,25.4012,92.355,11.61 +2016-04-15 17:47:00,20.845,92.3825,11.62 +2016-04-15 18:02:00,22.0275,92.4725,11.63 +2016-04-15 18:17:00,23.915,92.585,11.61 +2016-04-15 18:32:00,21.8875,92.78,11.59 +2016-04-15 18:47:00,22.8562,92.8875,11.6 +2016-04-15 19:02:00,24.9075,93.085,11.61 +2016-04-15 19:17:00,24.3625,93.235,11.62 +2016-04-15 19:32:00,23.9613,93.3325,11.62 +2016-04-15 19:47:00,22.9062,93.37,11.63 +2016-04-15 20:02:00,23.7262,93.415,11.66 +2016-04-15 20:17:00,23.385,93.46,11.68 +2016-04-15 20:32:00,21.5888,93.48,11.7 +2016-04-15 20:47:00,23.6237,93.525,11.71 +2016-04-15 21:02:00,24.5137,93.73,11.7 +2016-04-15 21:17:00,23.0875,93.7525,11.68 +2016-04-15 21:32:00,21.3412,93.975,11.64 +2016-04-15 21:47:00,25.0112,94.1275,11.61 +2016-04-15 22:02:00,24.2637,94.2125,11.56 +2016-04-15 22:17:00,22.6113,94.285,11.53 +2016-04-15 22:32:00,22.6612,94.2975,11.48 +2016-04-15 22:47:00,23.0863,94.22,11.44 +2016-04-15 23:02:00,24.96,94.245,11.41 +2016-04-15 23:17:00,23.2812,94.245,11.38 +2016-04-15 23:32:00,23.5775,94.3025,11.35 +2016-04-15 23:47:00,22.7062,94.355,11.32 +2016-04-16 00:02:00,23.1875,94.46,11.28 +2016-04-16 00:17:00,24.71,94.6125,11.26 +2016-04-16 00:32:00,24.9175,94.595,11.24 +2016-04-16 00:47:00,22.4575,94.65,11.21 +2016-04-16 01:02:00,22.2213,94.76,11.19 +2016-04-16 01:17:00,21.9337,94.7275,11.17 +2016-04-16 01:32:00,25.1038,94.69,11.17 +2016-04-16 01:47:00,22.9475,94.6125,11.18 +2016-04-16 02:02:00,23.96,94.52,11.18 +2016-04-16 02:17:00,24.3637,94.47,11.18 +2016-04-16 02:32:00,25.31,94.49,11.18 +2016-04-16 02:47:00,23.8637,94.56,11.17 +2016-04-16 03:02:00,21.1413,94.7,11.17 +2016-04-16 03:17:00,24.8087,94.685,11.17 +2016-04-16 03:32:00,25.3063,94.81,11.16 +2016-04-16 03:47:00,23.9125,94.895,11.12 +2016-04-16 04:02:00,23.435,94.92,11.09 +2016-04-16 04:17:00,24.165,94.95,11.08 +2016-04-16 04:32:00,24.1087,94.81,11.06 +2016-04-16 04:47:00,23.3812,94.675,11.03 +2016-04-16 05:02:00,23.8662,94.6475,10.99 +2016-04-16 05:17:00,23.1837,94.6275,10.96 +2016-04-16 05:32:00,24.01,94.615,10.93 +2016-04-16 05:47:00,21.9825,94.6325,10.91 +2016-04-16 06:02:00,23.7275,94.6425,10.87 +2016-04-16 06:17:00,24.4175,94.69,10.84 +2016-04-16 06:32:00,24.1075,94.6675,10.81 +2016-04-16 06:47:00,20.6125,94.6375,10.8 +2016-04-16 07:02:00,23.04,94.6625,10.81 +2016-04-16 07:17:00,23.2775,94.59,10.81 +2016-04-16 07:32:00,21.34,94.5825,10.81 +2016-04-16 07:47:00,23.3838,94.455,10.8 +2016-04-16 08:02:00,23.8187,94.53,10.8 +2016-04-16 08:17:00,23.775,94.485,10.8 +2016-04-16 08:32:00,22.705,94.4975,10.8 +2016-04-16 08:47:00,24.6087,94.585,10.82 +2016-04-16 09:02:00,24.4613,94.645,10.8 +2016-04-16 09:17:00,23.23,94.675,10.81 +2016-04-16 09:32:00,22.9025,94.7825,10.82 +2016-04-16 09:47:00,23.2812,94.735,10.8 +2016-04-16 10:02:00,23.4812,94.9125,10.84 +2016-04-16 10:17:00,22.7038,94.875,10.86 +2016-04-16 10:32:00,22.0762,94.775,10.87 +2016-04-16 10:47:00,22.3613,94.64,10.9 +2016-04-16 11:02:00,25.4987,94.575,10.93 +2016-04-16 11:17:00,23.1862,94.5525,10.95 +2016-04-16 11:32:00,22.5612,94.5825,10.94 +2016-04-16 11:47:00,24.57,94.6425,10.96 +2016-04-16 12:02:00,23.9137,94.635,10.97 +2016-04-16 12:17:00,24.8175,94.7675,11.0 +2016-04-16 12:32:00,22.3637,94.675,11.09 +2016-04-16 12:47:00,24.2075,94.8825,11.15 +2016-04-16 13:02:00,22.0312,94.92,11.22 +2016-04-16 13:17:00,22.805,95.0075,11.25 +2016-04-16 13:32:00,22.71,95.03,11.22 +2016-04-16 13:47:00,23.4325,95.015,11.18 +2016-04-16 14:02:00,22.8037,95.0425,11.14 +2016-04-16 14:17:00,21.9313,95.0575,11.12 +2016-04-16 14:32:00,24.4125,95.0925,11.08 +2016-04-16 14:47:00,23.2812,95.1325,11.11 +2016-04-16 15:02:00,23.5737,95.2325,11.22 +2016-04-16 15:17:00,25.1612,95.3075,11.27 +2016-04-16 15:32:00,25.0187,95.3925,11.27 +2016-04-16 15:47:00,24.4125,95.525,11.26 +2016-04-16 16:02:00,22.2237,95.58,11.26 +2016-04-16 16:17:00,23.04,95.6075,11.23 +2016-04-16 16:32:00,24.81,95.47,11.19 +2016-04-16 16:47:00,24.5625,95.43,11.17 +2016-04-16 17:02:00,24.86,95.2775,11.15 +2016-04-16 17:17:00,23.2363,95.335,11.13 +2016-04-16 17:32:00,24.7612,95.3875,11.11 +2016-04-16 17:47:00,24.5125,95.38,11.11 +2016-04-16 18:02:00,24.7575,95.4875,11.11 +2016-04-16 18:17:00,22.225,95.5175,11.1 +2016-04-16 18:32:00,24.1575,95.6375,11.09 +2016-04-16 18:47:00,22.8025,95.695,11.1 +2016-04-16 19:02:00,23.4825,95.675,11.11 +2016-04-16 19:17:00,23.135,95.7075,11.11 +2016-04-16 19:32:00,25.745,95.5925,11.12 +2016-04-16 19:47:00,24.515,95.4875,11.12 +2016-04-16 20:02:00,25.5425,95.4075,11.12 +2016-04-16 20:17:00,23.6775,95.295,11.12 +2016-04-16 20:32:00,24.365,95.2875,11.13 +2016-04-16 20:47:00,21.7838,95.28,11.14 +2016-04-16 21:02:00,23.68,95.4125,11.15 +2016-04-16 21:17:00,24.86,95.3625,11.16 +2016-04-16 21:32:00,23.2787,95.395,11.19 +2016-04-16 21:47:00,23.5312,95.355,11.22 +2016-04-16 22:02:00,24.91,95.31,11.23 +2016-04-16 22:17:00,23.2825,95.32,11.25 +2016-04-16 22:32:00,24.3625,95.1375,11.25 +2016-04-16 22:47:00,22.56,94.995,11.25 +2016-04-16 23:02:00,25.1663,94.865,11.23 +2016-04-16 23:17:00,25.0612,94.8175,11.2 +2016-04-16 23:32:00,24.76,94.77,11.16 +2016-04-16 23:47:00,23.865,94.775,11.11 +2016-04-17 00:02:00,23.575,94.7775,11.07 +2016-04-17 00:17:00,24.4163,94.7775,11.03 +2016-04-17 00:32:00,23.7687,94.8325,11.0 +2016-04-17 00:47:00,25.0163,94.835,10.95 +2016-04-17 01:02:00,24.3637,94.755,10.93 +2016-04-17 01:17:00,24.41,94.7275,10.92 +2016-04-17 01:32:00,24.105,94.65,10.9 +2016-04-17 01:47:00,25.3525,94.6225,10.88 +2016-04-17 02:02:00,22.505,94.5075,10.87 +2016-04-17 02:17:00,26.82,94.5325,10.86 +2016-04-17 02:32:00,24.16,94.5825,10.85 +2016-04-17 02:47:00,22.225,94.6675,10.82 +2016-04-17 03:02:00,22.9938,94.72,10.81 +2016-04-17 03:17:00,25.4463,94.9025,10.78 +2016-04-17 03:32:00,25.21,94.915,10.77 +2016-04-17 03:47:00,23.2325,95.165,10.76 +2016-04-17 04:02:00,25.7937,95.2925,10.75 +2016-04-17 04:17:00,24.6087,95.41,10.75 +2016-04-17 04:32:00,25.5,95.54,10.72 +2016-04-17 04:47:00,22.1787,95.64,10.71 +2016-04-17 05:02:00,24.3112,95.64,10.7 +2016-04-17 05:17:00,22.9962,95.6775,10.69 +2016-04-17 05:32:00,24.7113,95.635,10.67 +2016-04-17 05:47:00,22.5563,95.5775,10.66 +2016-04-17 06:02:00,23.6762,95.565,10.64 +2016-04-17 06:17:00,25.1137,95.6,10.62 +2016-04-17 06:32:00,24.81,95.515,10.6 +2016-04-17 06:47:00,24.7113,95.49,10.58 +2016-04-17 07:02:00,25.7925,95.41,10.59 +2016-04-17 07:17:00,23.1362,95.3425,10.59 +2016-04-17 07:32:00,22.4075,95.2425,10.59 +2016-04-17 07:47:00,24.0075,95.0925,10.6 +2016-04-17 08:02:00,25.745,95.0675,10.59 +2016-04-17 08:17:00,26.2775,95.0025,10.58 +2016-04-17 08:32:00,25.9425,95.0025,10.57 +2016-04-17 08:47:00,25.0125,95.0225,10.59 +2016-04-17 09:02:00,27.1562,95.0875,10.62 +2016-04-17 09:17:00,24.8575,95.1025,10.66 +2016-04-17 09:32:00,25.2062,95.1125,10.68 +2016-04-17 09:47:00,26.77,95.1375,10.7 +2016-04-17 10:02:00,26.2275,95.155,10.75 +2016-04-17 10:17:00,21.5375,95.015,10.77 +2016-04-17 10:32:00,25.0612,94.84,10.82 +2016-04-17 10:47:00,23.135,94.8025,10.91 +2016-04-17 11:02:00,25.4,94.6025,10.97 +2016-04-17 11:17:00,24.9075,94.5625,11.03 +2016-04-17 11:32:00,24.1113,94.545,11.07 +2016-04-17 11:47:00,25.4975,94.57,11.16 +2016-04-17 12:02:00,25.0612,94.605,11.14 +2016-04-17 12:17:00,24.415,94.6975,11.15 +2016-04-17 12:32:00,26.8712,94.7575,11.18 +2016-04-17 12:47:00,25.6437,94.7325,11.2 +2016-04-17 13:02:00,25.2062,94.7125,11.16 +2016-04-17 13:17:00,25.5912,94.645,11.19 +2016-04-17 13:32:00,24.5137,94.445,11.33 +2016-04-17 13:47:00,25.6413,94.3925,11.39 +2016-04-17 14:02:00,24.4175,94.175,11.4 +2016-04-17 14:17:00,23.0888,94.25,11.4 +2016-04-17 14:32:00,23.5262,94.28,11.42 +2016-04-17 14:47:00,21.58,94.2925,11.46 +2016-04-17 15:02:00,23.7237,94.3375,11.47 +2016-04-17 15:17:00,25.3037,94.275,11.45 +2016-04-17 15:32:00,25.4,94.4075,11.46 +2016-04-17 15:47:00,24.215,94.3725,11.44 +2016-04-17 16:02:00,23.675,94.325,11.41 +2016-04-17 16:17:00,25.89,94.2775,11.38 +2016-04-17 16:32:00,24.9587,94.0275,11.37 +2016-04-17 16:47:00,26.7675,93.96,11.37 +2016-04-17 17:02:00,22.8487,93.8725,11.36 +2016-04-17 17:17:00,21.625,93.9225,11.36 +2016-04-17 17:32:00,24.56,94.015,11.38 +2016-04-17 17:47:00,26.04,93.9975,11.39 +2016-04-17 18:02:00,24.2125,94.1275,11.4 +2016-04-17 18:17:00,26.52,94.0875,11.41 +2016-04-17 18:32:00,24.36,94.12,11.42 +2016-04-17 18:47:00,22.8487,94.2175,11.42 +2016-04-17 19:02:00,26.1387,94.105,11.43 +2016-04-17 19:17:00,26.3225,94.0775,11.46 +2016-04-17 19:32:00,24.5163,93.89,11.48 +2016-04-17 19:47:00,24.0137,93.8275,11.51 +2016-04-17 20:02:00,26.2262,93.8675,11.53 +2016-04-17 20:17:00,24.0062,93.865,11.56 +2016-04-17 20:32:00,24.1575,93.9275,11.57 +2016-04-17 20:47:00,24.1588,93.8975,11.58 +2016-04-17 21:02:00,23.4337,93.9075,11.57 +2016-04-17 21:17:00,25.8937,94.0325,11.57 +2016-04-17 21:32:00,23.4775,94.08,11.55 +2016-04-17 21:47:00,24.6125,94.015,11.53 +2016-04-17 22:02:00,25.155,93.9125,11.52 +2016-04-17 22:17:00,23.9112,93.825,11.5 +2016-04-17 22:32:00,25.2038,93.665,11.48 +2016-04-17 22:47:00,26.6712,93.6025,11.46 +2016-04-17 23:02:00,24.5125,93.6275,11.42 +2016-04-17 23:17:00,26.6712,93.65,11.37 +2016-04-17 23:32:00,23.7725,93.7175,11.32 +2016-04-17 23:47:00,24.9125,93.825,11.26 +2016-04-18 00:02:00,24.0088,93.8175,11.22 +2016-04-18 00:17:00,23.1312,93.915,11.18 +2016-04-18 00:32:00,24.3575,93.94,11.16 +2016-04-18 00:47:00,23.3787,93.9425,11.13 +2016-04-18 01:02:00,25.5425,93.8925,11.1 +2016-04-18 01:17:00,23.7262,93.78,11.08 +2016-04-18 01:32:00,24.5163,93.755,11.07 +2016-04-18 01:47:00,25.3025,93.7375,11.07 +2016-04-18 02:02:00,25.3525,93.7125,11.06 +2016-04-18 02:17:00,25.155,93.82,11.04 +2016-04-18 02:32:00,24.8087,93.89,11.02 +2016-04-18 02:47:00,26.0387,93.94,10.97 +2016-04-18 03:02:00,24.1612,93.93,10.93 +2016-04-18 03:17:00,24.0125,94.0025,10.88 +2016-04-18 03:32:00,24.5638,94.055,10.82 +2016-04-18 03:47:00,25.1575,94.04,10.77 +2016-04-18 04:02:00,24.7562,93.995,10.71 +2016-04-18 04:17:00,24.0575,93.8425,10.65 +2016-04-18 04:32:00,24.7062,93.8525,10.59 +2016-04-18 04:47:00,25.9388,93.7925,10.51 +2016-04-18 05:02:00,23.3838,93.8825,10.46 +2016-04-18 05:17:00,25.5925,93.8725,10.4 +2016-04-18 05:32:00,24.5587,93.935,10.34 +2016-04-18 05:47:00,24.755,93.9675,10.31 +2016-04-18 06:02:00,26.3237,94.06,10.28 +2016-04-18 06:17:00,23.425,93.99,10.27 +2016-04-18 06:32:00,25.7925,93.965,10.26 +2016-04-18 06:47:00,26.67,93.9175,10.27 +2016-04-18 07:02:00,24.865,93.875,10.29 +2016-04-18 07:17:00,23.8187,93.76,10.31 +2016-04-18 07:32:00,24.6562,93.825,10.34 +2016-04-18 07:47:00,25.01,93.8825,10.4 +2016-04-18 08:02:00,23.865,93.8475,10.46 +2016-04-18 08:17:00,23.2775,93.925,10.55 +2016-04-18 08:32:00,25.8412,93.97,10.64 +2016-04-18 08:47:00,24.66,94.1,10.65 +2016-04-18 09:02:00,27.6188,94.23,10.73 +2016-04-18 09:17:00,23.9625,94.19,10.76 +2016-04-18 09:32:00,24.6562,94.2875,10.75 +2016-04-18 09:47:00,25.2537,94.375,10.84 +2016-04-18 10:02:00,23.62,94.52,11.05 +2016-04-18 10:17:00,25.1087,94.3925,11.14 +2016-04-18 10:32:00,25.4,94.41,11.26 +2016-04-18 10:47:00,25.6937,94.5025,11.37 +2016-04-18 11:02:00,23.8688,94.4425,11.42 +2016-04-18 11:17:00,25.7925,94.34,11.42 +2016-04-18 11:32:00,27.5638,94.4525,11.47 +2016-04-18 11:47:00,22.2675,94.48,11.35 +2016-04-18 12:02:00,27.81,94.45,11.35 +2016-04-18 12:17:00,24.1075,94.375,11.31 +2016-04-18 12:32:00,26.0375,94.2625,11.32 +2016-04-18 12:47:00,25.3112,94.18,11.37 +2016-04-18 13:02:00,24.7062,94.09,11.38 +2016-04-18 13:17:00,24.0563,94.1,11.46 +2016-04-18 13:32:00,24.4625,93.9975,11.51 +2016-04-18 13:47:00,27.51,94.225,11.5 +2016-04-18 14:02:00,24.3562,94.1875,11.52 +2016-04-18 14:17:00,27.365,94.1625,11.58 +2016-04-18 14:32:00,24.5187,94.2875,11.67 +2016-04-18 14:47:00,24.2113,94.2325,11.75 +2016-04-18 15:02:00,24.8575,94.0925,11.82 +2016-04-18 15:17:00,23.4313,94.09,11.86 +2016-04-18 15:32:00,25.0587,93.925,11.87 +2016-04-18 15:47:00,22.7525,93.9725,11.89 +2016-04-18 16:02:00,22.0788,93.905,11.86 +2016-04-18 16:17:00,24.0563,93.97,11.83 +2016-04-18 16:32:00,24.8087,93.9325,11.81 +2016-04-18 16:47:00,23.8712,93.9225,11.8 +2016-04-18 17:02:00,23.62,93.9625,11.8 +2016-04-18 17:17:00,23.1325,94.055,11.79 +2016-04-18 17:32:00,25.255,94.0225,11.81 +2016-04-18 17:47:00,23.3825,93.9175,11.82 +2016-04-18 18:02:00,23.3775,93.7675,11.84 +2016-04-18 18:17:00,24.76,93.79,11.88 +2016-04-18 18:32:00,23.6775,93.7125,11.93 +2016-04-18 18:47:00,25.3512,93.675,11.96 +2016-04-18 19:02:00,23.43,93.63,11.98 +2016-04-18 19:17:00,24.31,93.685,12.01 +2016-04-18 19:32:00,23.1325,93.635,12.01 +2016-04-18 19:47:00,25.2525,93.7425,12.02 +2016-04-18 20:02:00,23.4775,93.73,12.01 +2016-04-18 20:17:00,24.91,93.765,12.01 +2016-04-18 20:32:00,24.8125,93.7375,12.0 +2016-04-18 20:47:00,24.2588,93.635,11.99 +2016-04-18 21:02:00,23.18,93.475,11.98 +2016-04-18 21:17:00,25.9388,93.385,11.98 +2016-04-18 21:32:00,23.38,93.24,12.0 +2016-04-18 21:47:00,25.94,93.2025,12.01 +2016-04-18 22:02:00,26.3237,93.2175,12.02 +2016-04-18 22:17:00,23.9137,93.275,12.04 +2016-04-18 22:32:00,24.9088,93.285,12.05 +2016-04-18 22:47:00,26.4175,93.33,12.06 +2016-04-18 23:02:00,23.6725,93.3375,12.06 +2016-04-18 23:17:00,27.2575,93.3125,12.06 +2016-04-18 23:32:00,23.23,93.1875,12.05 +2016-04-18 23:47:00,25.5938,93.0925,12.01 +2016-04-19 00:02:00,24.5675,92.9875,11.96 +2016-04-19 00:17:00,25.7513,92.885,11.91 +2016-04-19 00:32:00,23.0387,92.7975,11.86 +2016-04-19 00:47:00,25.31,92.7925,11.81 +2016-04-19 01:02:00,25.4012,92.885,11.77 +2016-04-19 01:17:00,25.2087,92.8875,11.72 +2016-04-19 01:32:00,24.4112,92.8825,11.68 +2016-04-19 01:47:00,24.7612,92.9075,11.62 +2016-04-19 02:02:00,25.7487,92.91,11.57 +2016-04-19 02:17:00,23.4762,92.92,11.53 +2016-04-19 02:32:00,24.0575,92.8575,11.5 +2016-04-19 02:47:00,25.01,92.7475,11.45 +2016-04-19 03:02:00,27.315,92.6325,11.42 +2016-04-19 03:17:00,23.3288,92.6,11.39 +2016-04-19 03:32:00,24.1087,92.6125,11.36 +2016-04-19 03:47:00,25.4962,92.61,11.32 +2016-04-19 04:02:00,27.515,92.625,11.29 +2016-04-19 04:17:00,26.3763,92.6475,11.25 +2016-04-19 04:32:00,28.0112,92.685,11.21 +2016-04-19 04:47:00,26.82,92.7275,11.19 +2016-04-19 05:02:00,24.0575,92.66,11.16 +2016-04-19 05:17:00,25.5963,92.5975,11.12 +2016-04-19 05:32:00,25.2588,92.43,11.08 +2016-04-19 05:47:00,25.11,92.4,11.05 +2016-04-19 06:02:00,25.0112,92.195,11.02 +2016-04-19 06:17:00,24.3613,92.0925,10.98 +2016-04-19 06:32:00,25.5425,92.1125,10.95 +2016-04-19 06:47:00,27.4137,92.1075,10.95 +2016-04-19 07:02:00,25.2,92.1675,10.97 +2016-04-19 07:17:00,25.055,92.175,11.01 +2016-04-19 07:32:00,25.4062,92.2275,11.05 +2016-04-19 07:47:00,28.1175,92.2725,11.08 +2016-04-19 08:02:00,26.525,92.215,11.1 +2016-04-19 08:17:00,24.7075,92.2275,11.14 +2016-04-19 08:32:00,24.055,92.115,11.12 +2016-04-19 08:47:00,24.8063,92.0125,11.15 +2016-04-19 09:02:00,25.0563,91.8925,11.22 +2016-04-19 09:17:00,26.2738,91.83,11.28 +2016-04-19 09:32:00,24.7575,91.7725,11.36 +2016-04-19 09:47:00,24.86,91.82,11.36 +2016-04-19 10:02:00,24.6113,91.8775,11.41 +2016-04-19 10:17:00,28.8538,92.06,11.4 +2016-04-19 10:32:00,25.11,92.0425,11.4 +2016-04-19 10:47:00,25.8887,92.015,11.46 +2016-04-19 11:02:00,26.67,91.795,11.51 +2016-04-19 11:17:00,25.06,91.75,11.54 +2016-04-19 11:32:00,24.6625,91.6575,11.62 +2016-04-19 11:47:00,26.0875,91.7225,11.66 +2016-04-19 12:02:00,24.9575,91.8975,11.63 +2016-04-19 12:17:00,24.6113,91.9,11.68 +2016-04-19 12:32:00,24.5612,91.9325,11.76 +2016-04-19 12:47:00,25.7425,91.92,11.79 +2016-04-19 13:02:00,26.2237,91.8825,11.81 +2016-04-19 13:17:00,25.84,91.9475,11.88 +2016-04-19 13:32:00,27.6212,91.96,11.96 +2016-04-19 13:47:00,23.6738,91.74,11.97 +2016-04-19 14:02:00,25.4475,91.6575,11.96 +2016-04-19 14:17:00,28.365,91.525,11.96 +2016-04-19 14:32:00,23.7675,91.56,12.02 +2016-04-19 14:47:00,27.01,91.495,12.07 +2016-04-19 15:02:00,24.5187,91.5525,12.15 +2016-04-19 15:17:00,27.3637,91.455,12.14 +2016-04-19 15:32:00,27.7162,91.555,12.13 +2016-04-19 15:47:00,26.32,91.4825,12.15 +2016-04-19 16:02:00,25.4938,91.53,12.07 +2016-04-19 16:17:00,28.0125,91.4625,12.01 +2016-04-19 16:32:00,26.32,91.3275,11.95 +2016-04-19 16:47:00,27.1637,91.2025,11.86 +2016-04-19 17:02:00,25.6462,91.0125,11.77 +2016-04-19 17:17:00,25.7988,90.9325,11.7 +2016-04-19 17:32:00,26.8688,90.87,11.65 +2016-04-19 17:47:00,27.7162,90.95,11.63 +2016-04-19 18:02:00,26.82,91.01,11.61 +2016-04-19 18:17:00,26.6225,90.97,11.61 +2016-04-19 18:32:00,26.9613,90.99,11.63 +2016-04-19 18:47:00,27.965,91.0825,11.65 +2016-04-19 19:02:00,27.515,91.035,11.66 +2016-04-19 19:17:00,26.1338,91.1125,11.66 +2016-04-19 19:32:00,28.0638,91.1625,11.64 +2016-04-19 19:47:00,26.2762,91.125,11.63 +2016-04-19 20:02:00,25.3075,91.0325,11.61 +2016-04-19 20:17:00,26.82,90.9075,11.6 +2016-04-19 20:32:00,26.275,90.8025,11.59 +2016-04-19 20:47:00,27.015,90.6975,11.58 +2016-04-19 21:02:00,26.475,90.695,11.58 +2016-04-19 21:17:00,26.4238,90.6075,11.58 +2016-04-19 21:32:00,27.365,90.635,11.58 +2016-04-19 21:47:00,25.9887,90.625,11.58 +2016-04-19 22:02:00,28.9088,90.6725,11.58 +2016-04-19 22:17:00,27.6162,90.685,11.59 +2016-04-19 22:32:00,26.14,90.6875,11.6 +2016-04-19 22:47:00,27.415,90.73,11.59 +2016-04-19 23:02:00,26.3262,90.6675,11.57 +2016-04-19 23:17:00,26.5713,90.6725,11.54 +2016-04-19 23:32:00,27.7625,90.57,11.5 +2016-04-19 23:47:00,27.7612,90.425,11.47 +2016-04-20 00:02:00,27.9075,90.3275,11.42 +2016-04-20 00:17:00,28.4625,90.345,11.36 +2016-04-20 00:32:00,27.6212,90.2925,11.31 +2016-04-20 00:47:00,28.2675,90.3,11.26 +2016-04-20 01:02:00,26.7712,90.24,11.22 +2016-04-20 01:17:00,28.9075,90.3275,11.16 +2016-04-20 01:32:00,27.2588,90.3325,11.11 +2016-04-20 01:47:00,26.67,90.34,11.05 +2016-04-20 02:02:00,27.1113,90.2275,10.99 +2016-04-20 02:17:00,26.8675,90.195,10.93 +2016-04-20 02:32:00,28.56,90.025,10.88 +2016-04-20 02:47:00,27.0625,89.9825,10.84 +2016-04-20 03:02:00,27.3138,89.845,10.79 +2016-04-20 03:17:00,27.6188,89.8575,10.74 +2016-04-20 03:32:00,26.6712,89.8725,10.72 +2016-04-20 03:47:00,26.2712,89.87,10.68 +2016-04-20 04:02:00,27.9125,89.8075,10.65 +2016-04-20 04:17:00,26.4238,89.8425,10.61 +2016-04-20 04:32:00,26.9187,89.83,10.57 +2016-04-20 04:47:00,26.3737,89.78,10.55 +2016-04-20 05:02:00,26.1787,89.725,10.51 +2016-04-20 05:17:00,26.8688,89.6425,10.48 +2016-04-20 05:32:00,27.3125,89.59,10.46 +2016-04-20 05:47:00,27.5112,89.505,10.44 +2016-04-20 06:02:00,28.7537,89.4,10.43 +2016-04-20 06:17:00,26.6225,89.285,10.44 +2016-04-20 06:32:00,25.845,89.305,10.44 +2016-04-20 06:47:00,27.7125,89.255,10.44 +2016-04-20 07:02:00,27.5625,89.86,10.42 +2016-04-20 07:17:00,27.7137,85.905,10.43 +2016-04-20 07:32:00,27.3075,79.6475,10.45 +2016-04-20 07:47:00,29.0512,74.9875,10.46 +2016-04-20 08:02:00,28.4675,72.48,10.48 +2016-04-20 08:17:00,28.1175,71.88,10.59 +2016-04-20 08:32:00,27.31,72.56,10.66 +2016-04-20 08:47:00,29.0537,73.985,10.7 +2016-04-20 09:02:00,28.165,75.6375,10.71 +2016-04-20 09:17:00,27.0125,77.275,10.69 +2016-04-20 09:32:00,27.9613,78.8175,10.66 +2016-04-20 09:47:00,26.0375,80.2575,10.68 +2016-04-20 10:02:00,27.6162,81.5075,10.72 +2016-04-20 10:17:00,28.0125,82.655,10.8 +2016-04-20 10:32:00,27.1113,83.675,10.91 +2016-04-20 10:47:00,27.0125,84.515,10.95 +2016-04-20 11:02:00,27.465,85.18,11.02 +2016-04-20 11:17:00,27.81,85.795,11.12 +2016-04-20 11:32:00,28.6087,86.41,11.2 +2016-04-20 11:47:00,28.6575,86.915,11.27 +2016-04-20 12:02:00,27.965,87.105,11.33 +2016-04-20 12:17:00,26.2262,87.2725,11.44 +2016-04-20 12:32:00,28.8075,87.4875,11.56 +2016-04-20 12:47:00,28.6975,87.535,11.68 +2016-04-20 13:02:00,26.7687,87.67,11.78 +2016-04-20 13:17:00,27.2575,87.79,11.79 +2016-04-20 13:32:00,27.665,87.9275,11.71 +2016-04-20 13:47:00,28.8562,87.9475,11.59 +2016-04-20 14:02:00,26.7225,88.095,11.57 +2016-04-20 14:17:00,28.0075,88.1875,11.57 +2016-04-20 14:30:59,28.0638,88.355,11.61 +2016-04-20 14:47:00,27.7625,88.395,11.62 +2016-04-20 15:02:00,26.3225,88.3025,11.62 +2016-04-20 15:17:00,26.8688,88.1425,11.63 +2016-04-20 15:32:00,28.1675,88.09,11.63 +2016-04-20 15:47:00,26.5212,87.95,11.62 +2016-04-20 16:02:00,27.8125,87.8525,11.63 +2016-04-20 16:17:00,26.4688,88.04,11.62 +2016-04-20 16:32:00,28.1687,88.115,11.58 +2016-04-20 16:47:00,29.3887,88.175,11.56 +2016-04-20 17:02:00,28.3662,88.33,11.57 +2016-04-20 17:17:00,28.51,88.4625,11.57 +2016-04-20 17:32:00,26.7712,88.45,11.56 +2016-04-20 17:47:00,27.6162,88.5575,11.55 +2016-04-20 18:02:00,27.1588,88.64,11.57 +2016-04-20 18:17:00,27.1625,88.7125,11.6 +2016-04-20 18:32:00,25.5963,88.6475,11.63 +2016-04-20 18:47:00,27.1113,88.465,11.65 +2016-04-20 19:02:00,27.5125,88.305,11.66 +2016-04-20 19:17:00,26.82,88.305,11.67 +2016-04-20 19:32:00,28.3112,88.4975,11.69 +2016-04-20 19:47:00,28.0125,88.77,11.71 +2016-04-20 20:02:00,27.9088,89.1325,11.71 +2016-04-20 20:17:00,28.21,89.52,11.71 +2016-04-20 20:32:00,26.965,89.7975,11.72 +2016-04-20 20:47:00,25.405,90.1125,11.71 +2016-04-20 21:02:00,27.3063,90.3525,11.7 +2016-04-20 21:17:00,25.94,90.4325,11.69 +2016-04-20 21:32:00,26.965,90.46,11.68 +2016-04-20 21:47:00,27.3138,90.1725,11.67 +2016-04-20 22:02:00,26.1325,89.9875,11.65 +2016-04-20 22:17:00,26.5275,89.62,11.64 +2016-04-20 22:32:00,27.5175,89.45,11.62 +2016-04-20 22:47:00,27.96,89.215,11.6 +2016-04-20 23:02:00,26.82,89.1625,11.59 +2016-04-20 23:17:00,29.2937,89.0625,11.56 +2016-04-20 23:32:00,29.6325,88.86,11.53 +2016-04-20 23:47:00,29.0037,88.8625,11.5 +2016-04-21 00:02:00,27.76,88.77,11.47 +2016-04-21 00:17:00,28.1125,88.755,11.43 +2016-04-21 00:32:00,26.575,88.615,11.39 +2016-04-21 00:47:00,26.8675,88.4925,11.34 +2016-04-21 01:02:00,30.61,88.3175,11.31 +2016-04-21 01:17:00,27.5625,88.11,11.27 +2016-04-21 01:32:00,26.62,87.855,11.23 +2016-04-21 01:47:00,28.3125,87.8125,11.2 +2016-04-21 02:02:00,28.3662,87.8125,11.17 +2016-04-21 02:17:00,28.3662,87.9125,11.13 +2016-04-21 02:32:00,29.0025,87.975,11.1 +2016-04-21 02:47:00,29.5312,87.9975,11.07 +2016-04-21 03:02:00,25.9412,88.025,11.03 +2016-04-21 03:17:00,28.9587,88.11,11.0 +2016-04-21 03:32:00,27.76,88.215,10.96 +2016-04-21 03:47:00,28.605,88.3325,10.94 +2016-04-21 04:02:00,28.3162,88.245,10.9 +2016-04-21 04:17:00,28.3637,88.1875,10.86 +2016-04-21 04:32:00,28.46,88.02,10.81 +2016-04-21 04:47:00,27.46,87.81,10.76 +2016-04-21 05:02:00,28.6075,87.69,10.73 +2016-04-21 05:17:00,29.7288,87.6875,10.7 +2016-04-21 05:32:00,26.7162,87.7075,10.69 +2016-04-21 05:47:00,28.1687,87.89,10.67 +2016-04-21 06:02:00,28.9088,88.025,10.66 +2016-04-21 06:17:00,30.3637,88.0875,10.65 +2016-04-21 06:32:00,28.7025,88.16,10.64 +2016-04-21 06:47:00,29.7288,88.25,10.64 +2016-04-21 07:02:00,29.2925,88.185,10.64 +2016-04-21 07:17:00,27.5112,88.1125,10.66 +2016-04-21 07:32:00,27.6637,88.0875,10.72 +2016-04-21 07:47:00,28.1675,87.8875,10.78 +2016-04-21 08:02:00,29.7337,87.7925,10.82 +2016-04-21 08:17:00,27.9625,87.82,10.85 +2016-04-21 08:32:00,27.6113,87.695,10.89 +2016-04-21 08:47:00,28.1137,87.7475,10.94 +2016-04-21 09:02:00,29.93,87.7725,11.0 +2016-04-21 09:17:00,28.1675,87.9925,11.04 +2016-04-21 09:32:00,29.7775,88.1075,11.08 +2016-04-21 09:47:00,28.8575,88.2125,11.13 +2016-04-21 10:02:00,28.9613,88.2475,11.21 +2016-04-21 10:17:00,29.3862,88.3225,11.28 +2016-04-21 10:32:00,28.8063,88.47,11.36 +2016-04-21 10:47:00,29.0013,88.45,11.41 +2016-04-21 11:02:00,30.9475,88.27,11.44 +2016-04-21 11:17:00,29.8775,88.135,11.5 +2016-04-21 11:32:00,29.585,87.9775,11.58 +2016-04-21 11:47:00,29.6825,87.895,11.66 +2016-04-21 12:02:00,29.6775,87.87,11.7 +2016-04-21 12:17:00,30.31,87.8775,11.76 +2016-04-21 12:32:00,29.8262,88.025,11.82 +2016-04-21 12:47:00,30.705,87.9925,11.85 +2016-04-21 13:02:00,29.145,88.195,11.89 +2016-04-21 13:17:00,28.5563,88.225,11.92 +2016-04-21 13:32:00,29.8825,88.34,11.95 +2016-04-21 13:47:00,28.2637,88.37,11.97 +2016-04-21 14:02:00,30.4587,88.305,12.01 +2016-04-21 14:17:00,27.66,88.1525,12.05 +2016-04-21 14:32:00,29.7787,88.0475,12.07 +2016-04-21 14:47:00,28.9037,87.9225,12.09 +2016-04-21 15:02:00,28.21,87.87,12.1 +2016-04-21 15:17:00,30.4112,87.96,12.1 +2016-04-21 15:32:00,30.5638,88.005,12.1 +2016-04-21 15:47:00,30.3575,88.065,12.09 +2016-04-21 16:02:00,29.875,88.2125,12.07 +2016-04-21 16:17:00,31.6462,88.2625,12.06 +2016-04-21 16:32:00,29.0975,88.34,12.08 +2016-04-21 16:47:00,28.1137,88.365,12.1 +2016-04-21 17:02:00,31.1413,88.29,12.11 +2016-04-21 17:17:00,31.4,88.22,12.12 +2016-04-21 17:32:00,31.3487,88.035,12.12 +2016-04-21 17:47:00,32.6738,88.03,12.12 +2016-04-21 18:02:00,32.6725,88.0475,12.13 +2016-04-21 18:17:00,30.995,88.125,12.15 +2016-04-21 18:32:00,30.9975,88.2525,12.16 +2016-04-21 18:47:00,31.645,88.415,12.17 +2016-04-21 19:02:00,30.6137,88.5275,12.18 +2016-04-21 19:17:00,27.715,88.64,12.2 +2016-04-21 19:32:00,33.61,88.69,12.23 +2016-04-21 19:47:00,29.3375,88.6625,12.26 +2016-04-21 20:02:00,32.19,88.535,12.28 +2016-04-21 20:17:00,32.4812,88.42,12.28 +2016-04-21 20:32:00,33.555,88.3575,12.31 +2016-04-21 20:47:00,30.9487,88.3975,12.33 +2016-04-21 21:02:00,32.3913,88.475,12.35 +2016-04-21 21:17:00,34.0437,88.57,12.36 +2016-04-21 21:32:00,33.1188,88.6925,12.35 +2016-04-21 21:47:00,32.1912,88.75,12.34 +2016-04-21 22:02:00,33.0225,88.7875,12.32 +2016-04-21 22:17:00,30.4587,88.955,12.31 +2016-04-21 22:32:00,32.2425,88.8575,12.31 +2016-04-21 22:47:00,31.7937,88.755,12.31 +2016-04-21 23:02:00,30.4112,88.66,12.28 +2016-04-21 23:17:00,32.6775,88.46,12.28 +2016-04-21 23:32:00,32.3862,88.3575,12.26 +2016-04-21 23:47:00,29.7787,88.355,12.25 +2016-04-22 00:02:00,34.0925,88.4325,12.19 +2016-04-22 00:17:00,34.1862,88.5275,12.15 +2016-04-22 00:32:00,31.8937,88.65,12.12 +2016-04-22 00:47:00,31.7438,88.7125,12.06 +2016-04-22 01:02:00,34.4825,88.8875,12.0 +2016-04-22 01:17:00,33.2188,89.0375,11.98 +2016-04-22 01:32:00,34.1375,89.135,11.99 +2016-04-22 01:47:00,33.0737,89.1275,11.98 +2016-04-22 02:02:00,34.9587,89.1025,11.94 +2016-04-22 02:17:00,32.8775,88.9525,11.91 +2016-04-22 02:32:00,32.6775,88.8675,11.88 +2016-04-22 02:47:00,33.0287,88.79,11.82 +2016-04-22 03:02:00,33.1263,88.9225,11.79 +2016-04-22 03:17:00,33.5625,89.0225,11.75 +2016-04-22 03:32:00,33.9975,89.125,11.74 +2016-04-22 03:47:00,35.6475,89.225,11.69 +2016-04-22 04:02:00,33.6113,89.3175,11.66 +2016-04-22 04:17:00,34.8625,89.3775,11.62 +2016-04-22 04:32:00,33.125,89.425,11.58 +2016-04-22 04:47:00,33.6612,89.41,11.55 +2016-04-22 05:02:00,33.5125,89.245,11.5 +2016-04-22 05:17:00,32.925,89.1025,11.47 +2016-04-22 05:32:00,35.0088,88.8925,11.44 +2016-04-22 05:47:00,34.0475,88.8175,11.41 +2016-04-22 06:02:00,32.0437,88.7775,11.4 +2016-04-22 06:17:00,33.755,88.695,11.39 +2016-04-22 06:32:00,34.4362,88.5925,11.38 +2016-04-22 06:47:00,33.86,88.74,11.39 +2016-04-22 07:02:00,34.5825,88.8275,11.37 +2016-04-22 07:17:00,33.8037,88.935,11.37 +2016-04-22 07:32:00,33.9025,88.9675,11.34 +2016-04-22 07:47:00,33.3625,89.0775,11.35 +2016-04-22 08:02:00,34.8187,89.0225,11.34 +2016-04-22 08:17:00,33.61,89.1075,11.37 +2016-04-22 08:32:00,33.5125,89.0825,11.41 +2016-04-22 08:47:00,35.355,88.9825,11.43 +2016-04-22 09:02:00,34.6275,88.8075,11.47 +2016-04-22 09:17:00,35.845,88.68,11.56 +2016-04-22 09:32:00,34.285,88.5675,11.63 +2016-04-22 09:47:00,33.46,88.5125,11.72 +2016-04-22 10:02:00,35.8438,88.55,11.78 +2016-04-22 10:17:00,34.0013,88.665,11.83 +2016-04-22 10:32:00,33.7612,88.71,11.88 +2016-04-22 10:47:00,34.9637,88.7825,11.94 +2016-04-22 11:02:00,33.4613,88.8175,12.01 +2016-04-22 11:17:00,31.6975,88.8425,12.08 +2016-04-22 11:32:00,32.9737,88.875,12.11 +2016-04-22 11:47:00,33.8562,88.78,12.13 +2016-04-22 12:02:00,33.71,88.63,12.17 +2016-04-22 12:17:00,34.8662,88.6325,12.22 +2016-04-22 12:32:00,33.4125,88.5175,12.27 +2016-04-22 12:47:00,32.9238,88.4375,12.35 +2016-04-22 13:02:00,35.0575,88.41,12.41 +2016-04-22 13:17:00,35.5537,88.4925,12.45 +2016-04-22 13:32:00,34.1387,88.5425,12.45 +2016-04-22 13:47:00,35.0575,88.7025,12.47 +2016-04-22 14:02:00,35.9987,88.8575,12.48 +2016-04-22 14:17:00,34.3325,88.9675,12.49 +2016-04-22 14:32:00,35.6512,89.1,12.48 +2016-04-22 14:47:00,34.9112,89.1625,12.48 +2016-04-22 15:02:00,35.6475,89.1,12.47 +2016-04-22 15:17:00,34.1862,88.9875,12.47 +2016-04-22 15:32:00,34.3375,88.83,12.49 +2016-04-22 15:47:00,34.9613,88.7475,12.51 +2016-04-22 16:02:00,36.1488,88.7425,12.51 +2016-04-22 16:17:00,35.16,88.7925,12.51 +2016-04-22 16:32:00,34.1413,88.91,12.5 +2016-04-22 16:47:00,36.3375,88.9225,12.49 +2016-04-22 17:02:00,35.5062,89.0275,12.51 +2016-04-22 17:17:00,35.7,89.105,12.51 +2016-04-22 17:32:00,35.6987,89.235,12.51 +2016-04-22 17:47:00,36.8262,89.2475,12.5 +2016-04-22 18:02:00,35.2125,89.13,12.52 +2016-04-22 18:17:00,36.2425,89.0,12.55 +2016-04-22 18:32:00,37.0713,88.8275,12.58 +2016-04-22 18:47:00,35.0088,88.7175,12.61 +2016-04-22 19:02:00,36.1937,88.745,12.62 +2016-04-22 19:17:00,36.245,88.8475,12.65 +2016-04-22 19:32:00,36.34,88.935,12.69 +2016-04-22 19:47:00,34.0475,89.0,12.71 +2016-04-22 20:02:00,35.36,89.0975,12.74 +2016-04-22 20:17:00,35.7,89.1575,12.76 +2016-04-22 20:32:00,35.7962,89.26,12.77 +2016-04-22 20:47:00,33.7562,89.2525,12.78 +2016-04-22 21:02:00,35.9987,89.2275,12.79 +2016-04-22 21:17:00,35.895,89.1475,12.81 +2016-04-22 21:32:00,34.3375,88.98,12.8 +2016-04-22 21:47:00,36.2937,88.82,12.78 +2016-04-22 22:02:00,34.8637,88.835,12.78 +2016-04-22 22:17:00,35.8463,88.86,12.8 +2016-04-22 22:32:00,35.2575,88.965,12.79 +2016-04-22 22:47:00,35.5563,88.9875,12.77 +2016-04-22 23:02:00,35.9987,89.0925,12.76 +2016-04-22 23:17:00,36.9712,89.1075,12.75 +2016-04-22 23:32:00,34.39,89.1575,12.72 +2016-04-22 23:47:00,35.01,89.1775,12.69 +2016-04-23 00:02:00,34.095,89.115,12.64 +2016-04-23 00:17:00,36.0462,88.9675,12.61 +2016-04-23 00:32:00,35.7487,88.83,12.57 +2016-04-23 00:47:00,33.705,88.6375,12.54 +2016-04-23 01:02:00,35.7975,88.625,12.51 +2016-04-23 01:17:00,36.6775,88.675,12.49 +2016-04-23 01:32:00,36.2438,88.7375,12.45 +2016-04-23 01:47:00,35.1075,88.87,12.41 +2016-04-23 02:02:00,37.26,88.855,12.39 +2016-04-23 02:17:00,35.6975,88.9675,12.37 +2016-04-23 02:32:00,35.9437,89.0575,12.33 +2016-04-23 02:47:00,35.4075,89.095,12.3 +2016-04-23 03:02:00,36.525,89.07,12.26 +2016-04-23 03:17:00,35.2113,88.9325,12.23 +2016-04-23 03:32:00,36.8275,88.8375,12.21 +2016-04-23 03:47:00,37.6075,88.6125,12.15 +2016-04-23 04:02:00,36.9225,88.575,12.13 +2016-04-23 04:17:00,35.7487,88.57,12.11 +2016-04-23 04:32:00,36.8275,88.715,12.08 +2016-04-23 04:47:00,34.82,88.9375,12.05 +2016-04-23 05:02:00,36.3862,88.8725,11.99 +2016-04-23 05:17:00,36.5837,88.8425,11.95 +2016-04-23 05:32:00,37.1212,88.8275,11.89 +2016-04-23 05:47:00,37.0713,88.745,11.86 +2016-04-23 06:02:00,37.31,88.645,11.83 +2016-04-23 06:17:00,35.5075,88.6325,11.81 +2016-04-23 06:32:00,34.8637,88.6275,11.78 +2016-04-23 06:47:00,35.9962,88.745,11.77 +2016-04-23 07:02:00,37.765,88.8075,11.77 +2016-04-23 07:17:00,37.5137,88.8925,11.76 +2016-04-23 07:32:00,37.2625,88.905,11.73 +2016-04-23 07:47:00,37.3613,88.78,11.73 +2016-04-23 08:02:00,36.7738,88.7975,11.73 +2016-04-23 08:17:00,37.4062,88.7625,11.7 +2016-04-23 08:32:00,35.1025,88.9225,11.69 +2016-04-23 08:47:00,35.6987,88.92,11.68 +2016-04-23 09:02:00,37.8175,89.03,11.68 +2016-04-23 09:17:00,38.2588,89.0,11.7 +2016-04-23 09:32:00,37.4575,89.0575,11.75 +2016-04-23 09:47:00,37.9112,89.1475,11.74 +2016-04-23 10:02:00,36.8237,89.0725,11.74 +2016-04-23 10:17:00,36.3838,88.9975,11.72 +2016-04-23 10:32:00,37.0238,88.845,11.73 +2016-04-23 10:47:00,37.2637,88.565,11.72 +2016-04-23 11:02:00,36.43,88.5375,11.73 +2016-04-23 11:17:00,36.3812,88.5825,11.7 +2016-04-23 11:32:00,35.995,88.6375,11.71 +2016-04-23 11:47:00,36.8237,88.6875,11.76 +2016-04-23 12:02:00,37.2612,88.7425,11.82 +2016-04-23 12:17:00,37.46,88.84,11.86 +2016-04-23 12:32:00,35.5075,88.815,11.91 +2016-04-23 12:47:00,36.5262,88.8775,11.89 +2016-04-23 13:02:00,34.6813,88.8775,11.92 +2016-04-23 13:17:00,35.4562,88.7675,11.93 +2016-04-23 13:32:00,34.5762,88.5325,11.94 +2016-04-23 13:47:00,35.895,88.3775,11.94 +2016-04-23 14:02:00,35.6937,88.17,11.9 +2016-04-23 14:17:00,36.0437,88.2025,11.94 +2016-04-23 14:32:00,35.9987,88.21,11.98 +2016-04-23 14:47:00,36.5312,88.3125,11.93 +2016-04-23 15:02:00,35.1,88.3725,11.89 +2016-04-23 15:17:00,37.7075,88.43,11.84 +2016-04-23 15:32:00,36.0413,88.4075,11.82 +2016-04-23 15:47:00,35.7412,88.465,11.8 +2016-04-23 16:02:00,30.755,88.4575,11.77 +2016-04-23 16:17:00,33.9512,88.285,11.75 +2016-04-23 16:32:00,34.4362,88.145,11.7 +2016-04-23 16:47:00,33.5112,87.845,11.69 +2016-04-23 17:02:00,33.4125,87.7075,11.68 +2016-04-23 17:17:00,34.0925,87.735,11.65 +2016-04-23 17:32:00,33.46,87.7775,11.63 +2016-04-23 17:47:00,33.85,87.9725,11.6 +2016-04-23 18:02:00,33.3613,87.93,11.56 +2016-04-23 18:17:00,33.1738,87.9825,11.51 +2016-04-23 18:32:00,32.3412,88.0275,11.48 +2016-04-23 18:47:00,33.0225,88.0325,11.45 +2016-04-23 19:02:00,32.3412,87.98,11.43 +2016-04-23 19:17:00,31.4987,88.0125,11.41 +2016-04-23 19:32:00,34.9088,87.82,11.39 +2016-04-23 19:47:00,33.51,87.6625,11.38 +2016-04-23 20:02:00,31.0425,87.4175,11.36 +2016-04-23 20:17:00,32.7762,87.3375,11.35 +2016-04-23 20:32:00,31.4525,87.3275,11.35 +2016-04-23 20:47:00,31.645,87.33,11.36 +2016-04-23 21:02:00,30.8525,87.4875,11.35 +2016-04-23 21:17:00,31.39,87.4825,11.35 +2016-04-23 21:32:00,31.2937,87.53,11.32 +2016-04-23 21:47:00,32.48,87.6175,11.28 +2016-04-23 22:02:00,33.3112,87.7425,11.23 +2016-04-23 22:17:00,32.0963,87.75,11.21 +2016-04-23 22:32:00,30.8538,87.6925,11.19 +2016-04-23 22:47:00,32.4362,87.485,11.16 +2016-04-23 23:02:00,33.0175,87.385,11.13 +2016-04-23 23:17:00,33.3087,87.3425,11.07 +2016-04-23 23:32:00,30.31,87.42,11.03 +2016-04-23 23:47:00,30.61,87.4575,11.0 +2016-04-24 00:02:00,30.6588,87.555,10.94 +2016-04-24 00:17:00,31.4475,87.565,10.9 +2016-04-24 00:32:00,32.1375,87.6925,10.86 +2016-04-24 00:47:00,31.3962,87.7925,10.82 +2016-04-24 01:02:00,32.4313,87.9425,10.78 +2016-04-24 01:17:00,30.4613,87.9775,10.76 +2016-04-24 01:32:00,31.6937,87.96,10.73 +2016-04-24 01:47:00,30.6075,87.8425,10.7 +2016-04-24 02:02:00,32.53,87.76,10.66 +2016-04-24 02:17:00,31.0975,87.7725,10.63 +2016-04-24 02:32:00,31.3962,87.8375,10.6 +2016-04-24 02:47:00,31.8387,87.955,10.55 +2016-04-24 03:02:00,29.775,88.0625,10.51 +2016-04-24 03:17:00,33.3613,88.2,10.51 +2016-04-24 03:32:00,33.265,88.3725,10.47 +2016-04-24 03:47:00,29.73,88.355,10.43 +2016-04-24 04:02:00,32.1425,88.42,10.4 +2016-04-24 04:17:00,32.0912,88.3925,10.37 +2016-04-24 04:32:00,30.7525,88.43,10.34 +2016-04-24 04:47:00,31.5475,88.4625,10.28 +2016-04-24 05:02:00,31.445,88.6525,10.27 +2016-04-24 05:17:00,32.29,88.92,10.25 +2016-04-24 05:32:00,30.8525,89.2625,10.23 +2016-04-24 05:47:00,31.6925,89.56,10.21 +2016-04-24 06:02:00,30.46,89.795,10.21 +2016-04-24 06:17:00,31.5925,89.81,10.22 +2016-04-24 06:32:00,31.9887,89.7775,10.19 +2016-04-24 06:47:00,31.595,89.66,10.15 +2016-04-24 07:02:00,31.2913,89.7025,10.13 +2016-04-24 07:17:00,32.9675,89.8,10.11 +2016-04-24 07:32:00,30.4587,90.07,10.07 +2016-04-24 07:47:00,31.8425,90.21,10.03 +2016-04-24 08:02:00,31.2887,90.4,10.01 +2016-04-24 08:17:00,31.545,90.55,10.01 +2016-04-24 08:32:00,30.9425,90.6125,10.01 +2016-04-24 08:47:00,32.1375,90.7425,10.03 +2016-04-24 09:02:00,31.14,90.92,10.05 +2016-04-24 09:17:00,32.525,90.91,10.01 +2016-04-24 09:32:00,32.2913,90.915,10.09 +2016-04-24 09:47:00,32.3387,90.8325,10.03 +2016-04-24 10:02:00,32.135,90.77,9.98 +2016-04-24 10:17:00,31.8875,90.745,10.04 +2016-04-24 10:32:00,31.2412,90.8375,10.0 +2016-04-24 10:47:00,32.3838,90.905,10.14 +2016-04-24 11:02:00,33.5512,90.895,10.11 +2016-04-24 11:17:00,32.7225,91.1025,10.15 +2016-04-24 11:32:00,30.8525,91.05,10.27 +2016-04-24 11:47:00,30.61,91.185,10.41 +2016-04-24 12:02:00,30.9938,91.175,10.37 +2016-04-24 12:17:00,31.29,91.0975,10.41 +2016-04-24 12:32:00,29.7225,91.0125,10.5 +2016-04-24 12:47:00,31.7862,90.9525,10.6 +2016-04-24 13:02:00,32.67,90.87,10.57 +2016-04-24 13:17:00,31.5488,90.9125,10.65 +2016-04-24 13:32:00,29.8262,90.97,10.7 +2016-04-24 13:47:00,30.8512,91.1575,10.71 +2016-04-24 14:02:00,32.4287,91.25,10.65 +2016-04-24 14:17:00,29.5788,91.4325,10.64 +2016-04-24 14:32:00,30.6012,91.57,10.52 +2016-04-24 14:47:00,32.0425,91.5325,10.42 +2016-04-24 15:02:00,31.8887,91.5975,10.35 +2016-04-24 15:17:00,30.8512,91.42,10.4 +2016-04-24 15:32:00,33.12,91.2475,10.47 +2016-04-24 15:47:00,30.11,91.0025,10.5 +2016-04-24 16:02:00,32.035,90.9775,10.49 +2016-04-24 16:17:00,30.9912,90.9875,10.48 +2016-04-24 16:32:00,31.9875,91.1275,10.49 +2016-04-24 16:47:00,32.58,91.2775,10.53 +2016-04-24 17:02:00,32.04,91.3275,10.54 +2016-04-24 17:17:00,31.9388,91.5,10.47 +2016-04-24 17:32:00,30.7012,91.5825,10.43 +2016-04-24 17:47:00,31.8363,91.68,10.42 +2016-04-24 18:02:00,30.4037,91.6725,10.42 +2016-04-24 18:17:00,30.505,91.6,10.41 +2016-04-24 18:32:00,31.8387,91.4525,10.44 +2016-04-24 18:47:00,32.335,91.1275,10.43 +2016-04-24 19:02:00,31.84,91.09,10.44 +2016-04-24 19:17:00,32.19,91.0875,10.47 +2016-04-24 19:32:00,30.5537,91.215,10.49 +2016-04-24 19:47:00,30.8988,91.1925,10.49 +2016-04-24 20:02:00,31.2962,91.25,10.5 +2016-04-24 20:17:00,31.1425,91.3075,10.5 +2016-04-24 20:32:00,31.2937,91.4375,10.5 +2016-04-24 20:47:00,32.0938,91.4275,10.48 +2016-04-24 21:02:00,30.8075,91.425,10.47 +2016-04-24 21:17:00,32.72,91.2875,10.44 +2016-04-24 21:32:00,32.335,91.09,10.37 +2016-04-24 21:47:00,31.2925,90.8675,10.31 +2016-04-24 22:02:00,32.4313,90.765,10.26 +2016-04-24 22:17:00,32.1875,90.7725,10.22 +2016-04-24 22:32:00,33.1188,90.7225,10.19 +2016-04-24 22:47:00,32.9737,90.75,10.13 +2016-04-24 23:02:00,31.145,90.68,10.1 +2016-04-24 23:17:00,30.66,90.72,10.05 +2016-04-24 23:32:00,31.24,90.7525,10.02 +2016-04-24 23:47:00,31.8337,90.7075,9.99 +2016-04-25 00:02:00,31.5437,90.65,9.96 +2016-04-25 00:17:00,31.5462,90.4475,9.94 +2016-04-25 00:32:00,30.7062,90.2875,9.9 +2016-04-25 00:47:00,31.4962,89.9875,9.89 +2016-04-25 01:02:00,31.9875,89.78,9.86 +2016-04-25 01:17:00,33.0175,89.695,9.81 +2016-04-25 01:32:00,30.7513,89.6325,9.77 +2016-04-25 01:47:00,31.3387,89.615,9.73 +2016-04-25 02:02:00,32.2838,89.665,9.68 +2016-04-25 02:17:00,31.99,89.64,9.63 +2016-04-25 02:32:00,31.6912,89.5825,9.59 +2016-04-25 02:47:00,32.09,89.5275,9.54 +2016-04-25 03:02:00,31.8875,89.4625,9.51 +2016-04-25 03:17:00,30.8913,89.29,9.45 +2016-04-25 03:32:00,31.2387,89.0025,9.43 +2016-04-25 03:47:00,32.3325,88.8625,9.4 +2016-04-25 04:02:00,31.7375,88.7725,9.36 +2016-04-25 04:17:00,31.5437,88.6125,9.35 +2016-04-25 04:32:00,33.41,88.55,9.35 +2016-04-25 04:47:00,31.9337,88.5075,9.31 +2016-04-25 05:02:00,32.1862,88.565,9.24 +2016-04-25 05:17:00,32.1862,88.645,9.17 +2016-04-25 05:32:00,32.3838,88.725,9.13 +2016-04-25 05:47:00,33.1175,88.75,9.16 +2016-04-25 06:02:00,32.1837,88.7075,9.2 +2016-04-25 06:17:00,31.9362,88.5475,9.26 +2016-04-25 06:32:00,32.14,88.4125,9.26 +2016-04-25 06:47:00,32.97,88.2625,9.26 +2016-04-25 07:02:00,31.6387,88.2125,9.25 +2016-04-25 07:17:00,32.3838,87.985,9.29 +2016-04-25 07:32:00,33.455,87.9825,9.32 +2016-04-25 07:47:00,32.0925,87.8675,9.34 +2016-04-25 08:02:00,30.8988,87.8925,9.36 +2016-04-25 08:17:00,30.51,87.9875,9.39 +2016-04-25 08:32:00,32.3812,87.955,9.32 +2016-04-25 08:47:00,31.1875,88.02,9.27 +2016-04-25 09:02:00,31.29,88.0475,9.27 +2016-04-25 09:17:00,32.57,88.08,9.37 +2016-04-25 09:32:00,30.8475,88.125,9.36 +2016-04-25 09:47:00,31.5425,88.115,9.37 +2016-04-25 10:02:00,31.8862,88.0925,9.42 +2016-04-25 10:17:00,31.9875,87.9875,9.58 +2016-04-25 10:32:00,31.1862,87.7125,9.65 +2016-04-25 10:47:00,31.5437,87.865,9.72 +2016-04-25 11:02:00,32.7188,87.9875,9.71 +2016-04-25 11:17:00,31.9375,88.14,9.74 +2016-04-25 11:32:00,32.5675,88.445,9.68 +2016-04-25 11:47:00,31.2425,88.755,9.69 +2016-04-25 12:02:00,32.185,89.145,9.86 +2016-04-25 12:17:00,31.5987,89.225,9.93 +2016-04-25 12:32:00,31.2925,89.4225,9.87 +2016-04-25 12:47:00,30.4512,89.375,9.88 +2016-04-25 13:02:00,31.5938,89.2225,9.93 +2016-04-25 13:17:00,29.9688,88.825,10.02 +2016-04-25 13:32:00,32.1362,88.5175,10.09 +2016-04-25 13:47:00,31.7412,88.2175,10.14 +2016-04-25 14:02:00,32.2363,88.0625,10.11 +2016-04-25 14:17:00,32.7687,87.9125,10.03 +2016-04-25 14:32:00,30.8475,87.78,9.98 +2016-04-25 14:47:00,32.62,87.7125,9.95 +2016-04-25 15:02:00,31.4412,87.6275,9.96 +2016-04-25 15:17:00,33.505,87.6225,9.96 +2016-04-25 15:32:00,31.6437,87.58,9.93 +2016-04-25 15:47:00,31.9912,87.3875,9.91 +2016-04-25 16:02:00,32.4375,87.12,10.03 +2016-04-25 16:17:00,32.14,86.695,10.1 +2016-04-25 16:32:00,32.4762,86.425,9.99 +2016-04-25 16:47:00,34.1825,86.3075,9.91 +2016-04-25 17:02:00,33.2125,86.375,9.85 +2016-04-25 17:17:00,32.0925,86.4975,9.81 +2016-04-25 17:32:00,31.7925,86.5875,9.82 +2016-04-25 17:47:00,30.7025,86.745,9.86 +2016-04-25 18:02:00,30.8512,86.885,9.86 +2016-04-25 18:17:00,31.7913,86.89,9.84 +2016-04-25 18:32:00,32.335,86.825,9.83 +2016-04-25 18:47:00,33.0238,86.68,9.8 +2016-04-25 19:02:00,32.3825,86.6,9.79 +2016-04-25 19:17:00,31.0375,86.515,9.82 +2016-04-25 19:32:00,32.09,86.4225,9.85 +2016-04-25 19:47:00,30.85,86.49,9.87 +2016-04-25 20:02:00,31.2925,86.5975,9.85 +2016-04-25 20:17:00,32.4725,86.6575,9.85 +2016-04-25 20:32:00,32.4725,86.7525,9.86 +2016-04-25 20:47:00,32.0387,86.7525,9.87 +2016-04-25 21:02:00,30.9425,86.8175,9.9 +2016-04-25 21:17:00,32.1375,86.73,9.91 +2016-04-25 21:32:00,31.4437,86.6375,9.93 +2016-04-25 21:47:00,32.8187,86.5175,9.94 +2016-04-25 22:02:00,31.1888,86.49,9.95 +2016-04-25 22:17:00,33.6575,86.4925,9.95 +2016-04-25 22:32:00,31.69,86.6425,9.96 +2016-04-25 22:47:00,32.1862,86.7175,9.95 +2016-04-25 23:02:00,31.7387,86.91,9.92 +2016-04-25 23:17:00,30.3587,86.9375,9.86 +2016-04-25 23:32:00,32.3412,87.0625,9.83 +2016-04-25 23:47:00,31.595,87.0425,9.83 +2016-04-26 00:02:00,32.6188,86.9975,9.82 +2016-04-26 00:17:00,31.2913,86.84,9.79 +2016-04-26 00:32:00,31.4388,86.7525,9.76 +2016-04-26 00:47:00,31.9875,86.595,9.75 +2016-04-26 01:02:00,31.7937,86.6275,9.73 +2016-04-26 01:17:00,31.935,86.83,9.71 +2016-04-26 01:32:00,32.7213,87.015,9.7 +2016-04-26 01:47:00,32.6212,87.0825,9.69 +2016-04-26 02:02:00,31.2887,87.26,9.69 +2016-04-26 02:17:00,33.8512,87.28,9.69 +2016-04-26 02:32:00,31.2887,87.315,9.69 +2016-04-26 02:47:00,32.5262,87.235,9.68 +2016-04-26 03:02:00,34.3312,87.0725,9.63 +2016-04-26 03:17:00,32.8763,86.94,9.6 +2016-04-26 03:32:00,33.1675,86.7375,9.59 +2016-04-26 03:47:00,32.4737,86.7175,9.58 +2016-04-26 04:02:00,33.5537,86.7025,9.57 +2016-04-26 04:17:00,31.5938,86.6525,9.53 +2016-04-26 04:32:00,30.8512,86.7825,9.5 +2016-04-26 04:47:00,32.4812,86.86,9.48 +2016-04-26 05:02:00,32.4788,86.9325,9.44 +2016-04-26 05:17:00,30.8463,87.125,9.41 +2016-04-26 05:32:00,32.67,87.2925,9.4 +2016-04-26 05:47:00,31.0925,87.2125,9.47 +2016-04-26 06:02:00,31.7387,87.175,9.51 +2016-04-26 06:17:00,33.07,87.045,9.49 +2016-04-26 06:32:00,32.5713,87.0125,9.49 +2016-04-26 06:47:00,33.1675,86.9625,9.5 +2016-04-26 07:02:00,31.6937,86.905,9.51 +2016-04-26 07:17:00,32.6675,86.83,9.52 +2016-04-26 07:32:00,32.67,86.8375,9.49 +2016-04-26 07:47:00,31.3925,87.045,9.54 +2016-04-26 08:02:00,30.6512,87.0925,9.56 +2016-04-26 08:17:00,31.6413,87.185,9.52 +2016-04-26 08:32:00,31.595,87.2475,9.5 +2016-04-26 08:47:00,31.14,87.26,9.54 +2016-04-26 09:02:00,32.5713,87.13,9.64 +2016-04-26 09:17:00,31.7387,87.295,9.64 +2016-04-26 09:32:00,31.5925,87.24,9.71 +2016-04-26 09:47:00,31.8412,87.4425,9.71 +2016-04-26 10:02:00,31.3412,87.2725,9.72 +2016-04-26 10:17:00,31.4938,87.3525,9.78 +2016-04-26 10:32:00,33.07,87.2875,9.85 +2016-04-26 10:47:00,32.92,87.1475,9.85 +2016-04-26 11:02:00,32.6687,86.87,9.89 +2016-04-26 11:17:00,32.4825,86.74,9.87 +2016-04-26 11:32:00,33.2175,86.535,10.01 +2016-04-26 11:47:00,32.0413,86.67,10.06 +2016-04-26 12:02:00,33.605,86.64,10.05 +2016-04-26 12:17:00,33.2175,86.65,10.11 +2016-04-26 12:32:00,32.6237,86.535,10.18 +2016-04-26 12:47:00,32.4375,86.5925,10.16 +2016-04-26 13:02:00,32.5225,86.62,10.01 +2016-04-26 13:17:00,33.3575,86.59,9.89 +2016-04-26 13:32:00,34.9062,86.455,9.99 +2016-04-26 13:47:00,32.335,86.405,10.02 +2016-04-26 14:02:00,33.355,86.37,9.97 +2016-04-26 14:17:00,33.12,86.2125,9.95 +2016-04-26 14:32:00,31.0425,86.0575,9.91 +2016-04-26 14:47:00,33.655,85.965,9.89 +2016-04-26 15:02:00,31.79,85.865,9.89 +2016-04-26 15:17:00,32.67,85.8125,9.91 +2016-04-26 15:32:00,32.2387,85.75,9.96 +2016-04-26 15:47:00,32.285,85.74,9.99 +2016-04-26 16:02:00,32.92,85.9075,9.96 +2016-04-26 16:17:00,32.3438,85.965,9.88 +2016-04-26 16:32:00,32.5287,86.0625,9.85 +2016-04-26 16:47:00,32.7162,86.04,9.84 +2016-04-26 17:02:00,32.6712,86.18,9.82 +2016-04-26 17:17:00,33.4075,86.23,9.78 +2016-04-26 17:32:00,34.6725,86.1075,9.76 +2016-04-26 17:47:00,32.1862,85.9975,9.75 +2016-04-26 18:02:00,32.825,85.69,9.76 +2016-04-26 18:17:00,31.89,85.6975,9.75 +2016-04-26 18:32:00,31.985,85.6225,9.74 +2016-04-26 18:47:00,33.1687,85.71,9.74 +2016-04-26 19:02:00,32.6188,85.815,9.74 +2016-04-26 19:17:00,33.1687,85.8975,9.75 +2016-04-26 19:32:00,32.135,86.0325,9.76 +2016-04-26 19:47:00,33.0187,86.14,9.76 +2016-04-26 20:02:00,33.1237,86.19,9.76 +2016-04-26 20:17:00,32.4325,86.1225,9.76 +2016-04-26 20:32:00,32.4762,86.0175,9.79 +2016-04-26 20:47:00,32.5725,85.9575,9.79 +2016-04-26 21:02:00,33.215,85.8125,9.78 +2016-04-26 21:17:00,33.1188,85.8625,9.77 +2016-04-26 21:32:00,33.3112,85.98,9.75 +2016-04-26 21:47:00,31.045,86.1225,9.74 +2016-04-26 22:02:00,32.4825,86.345,9.74 +2016-04-26 22:17:00,31.8375,86.47,9.74 +2016-04-26 22:32:00,34.9112,86.6025,9.73 +2016-04-26 22:47:00,32.5275,86.655,9.71 +2016-04-26 23:02:00,32.5275,86.7475,9.68 +2016-04-26 23:17:00,32.1387,86.765,9.69 +2016-04-26 23:32:00,35.4012,86.735,9.7 +2016-04-26 23:47:00,31.8925,86.6475,9.72 +2016-04-27 00:02:00,31.3962,86.6425,9.71 +2016-04-27 00:17:00,32.0387,86.73,9.7 +2016-04-27 00:32:00,33.9525,87.0475,9.7 +2016-04-27 00:47:00,32.6738,87.1825,9.65 +2016-04-27 01:02:00,32.6275,87.3725,9.62 +2016-04-27 01:17:00,32.4788,87.5175,9.58 +2016-04-27 01:32:00,31.9875,87.7275,9.54 +2016-04-27 01:47:00,32.6725,87.8975,9.51 +2016-04-27 02:02:00,33.3063,87.895,9.5 +2016-04-27 02:17:00,33.405,87.95,9.47 +2016-04-27 02:32:00,32.095,87.865,9.43 +2016-04-27 02:47:00,31.985,87.7425,9.4 +2016-04-27 03:02:00,33.0662,87.635,9.37 +2016-04-27 03:17:00,31.1425,87.645,9.35 +2016-04-27 03:32:00,32.975,87.665,9.34 +2016-04-27 03:47:00,33.41,87.7425,9.32 +2016-04-27 04:02:00,32.0925,87.89,9.28 +2016-04-27 04:17:00,32.335,88.0725,9.23 +2016-04-27 04:32:00,31.0912,88.1575,9.19 +2016-04-27 04:47:00,31.7862,88.2175,9.15 +2016-04-27 05:02:00,31.5437,88.275,9.12 +2016-04-27 05:17:00,31.8925,88.25,9.11 +2016-04-27 05:32:00,31.6025,88.16,9.07 +2016-04-27 05:47:00,33.4562,88.0875,9.04 +2016-04-27 06:02:00,33.6075,88.0325,9.01 +2016-04-27 06:17:00,31.835,88.205,8.96 +2016-04-27 06:32:00,32.2862,88.32,8.93 +2016-04-27 06:47:00,31.3937,88.475,8.93 +2016-04-27 07:02:00,33.8463,88.6475,8.92 +2016-04-27 07:17:00,32.3887,88.7075,8.88 +2016-04-27 07:32:00,34.86,88.6125,8.81 +2016-04-27 07:47:00,31.4925,88.5675,8.78 +2016-04-27 08:02:00,33.0187,88.6375,8.75 +2016-04-27 08:17:00,32.3838,88.5625,8.76 +2016-04-27 08:32:00,32.385,88.5475,8.87 +2016-04-27 08:47:00,32.2875,88.635,8.94 +2016-04-27 09:02:00,32.0413,88.54,8.99 +2016-04-27 09:17:00,32.9737,88.8575,8.99 +2016-04-27 09:32:00,31.6888,88.8925,9.02 +2016-04-27 09:47:00,33.0163,88.92,9.06 +2016-04-27 10:02:00,31.7387,88.96,9.08 +2016-04-27 10:17:00,32.9187,88.9375,9.08 +2016-04-27 10:32:00,34.085,88.7375,9.05 +2016-04-27 10:47:00,31.6425,88.6325,9.03 +2016-04-27 11:02:00,33.9012,88.3525,9.07 +2016-04-27 11:17:00,32.575,88.3175,9.11 +2016-04-27 11:32:00,33.9475,88.5025,9.21 +2016-04-27 11:47:00,33.9487,88.6225,9.34 +2016-04-27 12:02:00,33.2637,88.6425,9.45 +2016-04-27 12:17:00,32.4788,88.76,9.48 +2016-04-27 12:32:00,33.7525,88.7975,9.48 +2016-04-27 12:47:00,33.855,88.87,9.41 +2016-04-27 13:02:00,33.3112,88.8825,9.37 +2016-04-27 13:17:00,34.1862,88.8375,9.43 +2016-04-27 13:32:00,32.235,88.7775,9.41 +2016-04-27 13:47:00,32.435,88.685,9.42 +2016-04-27 14:02:00,31.3438,88.6775,9.44 +2016-04-27 14:17:00,32.6188,88.7575,9.47 +2016-04-27 14:32:00,33.0725,88.78,9.48 +2016-04-27 14:47:00,31.1437,88.9075,9.44 +2016-04-27 15:02:00,31.5488,89.0475,9.39 +2016-04-27 15:17:00,31.9388,89.03,9.4 +2016-04-27 15:32:00,32.335,89.24,9.37 +2016-04-27 15:47:00,33.4062,89.0775,9.32 +2016-04-27 16:02:00,32.1912,88.9825,9.31 +2016-04-27 16:17:00,33.355,88.915,9.37 +2016-04-27 16:32:00,32.0938,88.8675,9.39 +2016-04-27 16:47:00,32.0425,88.75,9.36 +2016-04-27 17:02:00,34.2838,88.8425,9.35 +2016-04-27 17:17:00,34.7225,89.09,9.33 +2016-04-27 17:32:00,33.3125,89.2225,9.27 +2016-04-27 17:47:00,32.8725,89.4125,9.23 +2016-04-27 18:02:00,32.0387,89.465,9.21 +2016-04-27 18:17:00,31.89,89.4525,9.21 +2016-04-27 18:32:00,33.755,89.43,9.2 +2016-04-27 18:47:00,33.6075,89.4225,9.19 +2016-04-27 19:02:00,34.0837,89.2625,9.18 +2016-04-27 19:17:00,33.8512,89.235,9.21 +2016-04-27 19:32:00,33.9475,89.3125,9.22 +2016-04-27 19:47:00,34.5725,89.4075,9.22 +2016-04-27 20:02:00,33.455,89.5775,9.21 +2016-04-27 20:17:00,32.8712,89.7625,9.16 +2016-04-27 20:32:00,33.5537,89.9725,9.13 +2016-04-27 20:47:00,32.04,89.9625,9.11 +2016-04-27 21:02:00,31.6862,89.925,9.09 +2016-04-27 21:17:00,32.4737,89.8875,9.04 +2016-04-27 21:32:00,34.1375,89.7725,9.0 +2016-04-27 21:47:00,35.2562,89.7075,8.98 +2016-04-27 22:02:00,32.7675,89.7775,8.96 +2016-04-27 22:17:00,33.605,89.805,8.93 +2016-04-27 22:32:00,33.5112,89.96,8.91 +2016-04-27 22:47:00,33.6062,90.01,8.88 +2016-04-27 23:02:00,31.9375,90.125,8.84 +2016-04-27 23:17:00,32.1875,90.2175,8.82 +2016-04-27 23:32:00,33.9925,90.065,8.81 +2016-04-27 23:47:00,35.4987,89.9875,8.78 +2016-04-28 00:02:00,33.5525,89.915,8.72 +2016-04-28 00:17:00,33.9975,89.7225,8.68 +2016-04-28 00:32:00,33.9525,89.5875,8.64 +2016-04-28 00:47:00,34.0387,89.5675,8.59 +2016-04-28 01:02:00,34.2337,89.64,8.54 +2016-04-28 01:17:00,31.8337,89.805,8.49 +2016-04-28 01:32:00,34.1325,89.835,8.47 +2016-04-28 01:47:00,33.5013,89.97,8.44 +2016-04-28 02:02:00,33.07,90.0275,8.44 +2016-04-28 02:17:00,33.7525,89.995,8.43 +2016-04-28 02:32:00,33.7525,89.8275,8.41 +2016-04-28 02:47:00,33.3087,89.695,8.42 +2016-04-28 03:02:00,32.4762,89.5325,8.4 +2016-04-28 03:17:00,31.34,89.4,8.38 +2016-04-28 03:32:00,33.5512,89.405,8.37 +2016-04-28 03:47:00,34.2787,89.485,8.36 +2016-04-28 04:02:00,31.6437,89.5075,8.33 +2016-04-28 04:17:00,32.1912,89.6525,8.31 +2016-04-28 04:32:00,32.4337,89.7425,8.3 +2016-04-28 04:47:00,33.5512,89.72,8.3 +2016-04-28 05:02:00,34.4725,89.6675,8.29 +2016-04-28 05:17:00,33.5075,89.5425,8.3 +2016-04-28 05:32:00,33.1212,89.48,8.32 +2016-04-28 05:47:00,33.805,89.3375,8.35 +2016-04-28 06:02:00,32.3363,89.25,8.37 +2016-04-28 06:17:00,33.7025,89.23,8.37 +2016-04-28 06:32:00,32.235,89.1725,8.4 +2016-04-28 06:47:00,34.5725,89.2725,8.41 +2016-04-28 07:02:00,32.8712,89.385,8.41 +2016-04-28 07:17:00,33.2137,89.5375,8.41 +2016-04-28 07:32:00,32.7687,89.6025,8.42 +2016-04-28 07:47:00,32.4337,89.4375,8.44 +2016-04-28 08:02:00,33.4613,89.3775,8.42 +2016-04-28 08:17:00,31.4412,89.2325,8.48 +2016-04-28 08:32:00,32.1362,89.045,8.55 +2016-04-28 08:47:00,31.5912,89.2275,8.54 +2016-04-28 09:02:00,33.85,89.35,8.53 +2016-04-28 09:17:00,32.0912,89.4175,8.52 +2016-04-28 09:32:00,33.8512,89.5525,8.54 +2016-04-28 09:47:00,34.0912,89.695,8.67 +2016-04-28 10:02:00,32.6212,89.8,8.8 +2016-04-28 10:17:00,32.475,89.6625,8.79 +2016-04-28 10:32:00,32.92,89.6025,8.88 +2016-04-28 10:47:00,32.915,89.44,9.0 +2016-04-28 11:02:00,33.6975,89.4075,9.06 +2016-04-28 11:17:00,31.6425,89.5225,8.98 +2016-04-28 11:32:00,32.9737,89.63,8.97 +2016-04-28 11:47:00,33.0713,89.655,9.13 +2016-04-28 12:02:00,32.62,89.875,9.23 +2016-04-28 12:17:00,31.5462,89.9725,9.34 +2016-04-28 12:32:00,33.0662,90.0725,9.4 +2016-04-28 12:47:00,33.455,90.095,9.47 +2016-04-28 13:02:00,33.6525,90.0975,9.57 +2016-04-28 13:17:00,33.5537,90.04,9.61 +2016-04-28 13:32:00,34.9538,90.075,9.61 +2016-04-28 13:47:00,33.795,90.1825,9.62 +2016-04-28 14:02:00,32.7675,90.4175,9.66 +2016-04-28 14:17:00,33.9,90.5975,9.67 +2016-04-28 14:32:00,33.165,90.7825,9.64 +2016-04-28 14:47:00,33.9463,91.185,9.66 +2016-04-28 15:02:00,34.7213,91.385,9.68 +2016-04-28 15:17:00,33.7575,91.5075,9.67 +2016-04-28 15:32:00,33.8,91.505,9.64 +2016-04-28 15:47:00,33.2175,91.5625,9.68 +2016-04-28 16:02:00,33.5062,91.515,9.7 +2016-04-28 16:17:00,33.8487,91.6,9.65 +2016-04-28 16:32:00,33.555,91.6775,9.64 +2016-04-28 16:47:00,33.4562,91.9275,9.66 +2016-04-28 17:02:00,33.0187,92.1625,9.66 +2016-04-28 17:17:00,31.9388,92.375,9.64 +2016-04-28 17:32:00,33.4075,92.6475,9.62 +2016-04-28 17:47:00,34.7687,92.9,9.61 +2016-04-28 18:02:00,32.77,92.93,9.61 +2016-04-28 18:17:00,35.3025,92.9425,9.64 +2016-04-28 18:32:00,33.1175,92.9575,9.68 +2016-04-28 18:47:00,34.1387,92.9075,9.71 +2016-04-28 19:02:00,33.9525,92.9675,9.74 +2016-04-28 19:17:00,33.17,93.1625,9.76 +2016-04-28 19:32:00,33.9938,93.2975,9.79 +2016-04-28 19:47:00,32.14,93.6075,9.8 +2016-04-28 20:02:00,34.1825,93.6925,9.84 +2016-04-28 20:17:00,32.8213,93.88,9.85 +2016-04-28 20:32:00,32.4313,93.93,9.86 +2016-04-28 20:47:00,33.2188,93.93,9.9 +2016-04-28 21:02:00,33.1212,93.7625,9.89 +2016-04-28 21:17:00,33.3575,93.6825,9.9 +2016-04-28 21:32:00,32.6738,93.61,9.9 +2016-04-28 21:47:00,33.0687,93.6825,9.89 +2016-04-28 22:02:00,33.7975,93.71,9.88 +2016-04-28 22:17:00,35.2537,93.7975,9.86 +2016-04-28 22:32:00,33.7012,93.9075,9.82 +2016-04-28 22:47:00,34.1862,94.0775,9.78 +2016-04-28 23:02:00,32.4325,94.1175,9.71 +2016-04-28 23:17:00,33.36,94.0775,9.67 +2016-04-28 23:32:00,34.2787,94.015,9.63 +2016-04-28 23:47:00,33.26,93.8025,9.56 +2016-04-29 00:02:00,34.28,93.6225,9.52 +2016-04-29 00:17:00,33.4512,93.5325,9.46 +2016-04-29 00:32:00,34.43,93.4725,9.41 +2016-04-29 00:47:00,32.5737,93.6175,9.36 +2016-04-29 01:02:00,34.1362,93.785,9.33 +2016-04-29 01:17:00,34.0387,93.94,9.28 +2016-04-29 01:32:00,34.0375,94.0075,9.25 +2016-04-29 01:47:00,34.6725,94.0725,9.21 +2016-04-29 02:02:00,34.04,93.915,9.2 +2016-04-29 02:17:00,33.5525,93.7875,9.19 +2016-04-29 02:32:00,34.7288,93.62,9.16 +2016-04-29 02:47:00,34.9088,93.5425,9.15 +2016-04-29 03:02:00,35.1025,93.4275,9.12 +2016-04-29 03:17:00,32.2838,93.355,9.11 +2016-04-29 03:32:00,33.4025,93.4875,9.09 +2016-04-29 03:47:00,32.14,93.5025,9.06 +2016-04-29 04:02:00,33.2162,93.6175,9.04 +2016-04-29 04:17:00,34.0925,93.6225,9.01 +2016-04-29 04:32:00,34.4812,93.585,8.98 +2016-04-29 04:47:00,35.055,93.465,8.95 +2016-04-29 05:02:00,35.5938,93.34,8.92 +2016-04-29 05:17:00,34.09,93.29,8.88 +2016-04-29 05:32:00,34.1362,93.1975,8.86 +2016-04-29 05:47:00,33.7513,93.0675,8.83 +2016-04-29 06:02:00,34.8613,92.9825,8.8 +2016-04-29 06:17:00,33.02,92.9025,8.77 +2016-04-29 06:32:00,32.725,92.8175,8.74 +2016-04-29 06:47:00,34.3288,92.7375,8.74 +2016-04-29 07:02:00,34.0413,92.7525,8.76 +2016-04-29 07:17:00,34.3325,92.725,8.77 +2016-04-29 07:32:00,35.5938,92.7575,8.79 +2016-04-29 07:47:00,34.6712,92.865,8.82 +2016-04-29 08:02:00,35.9925,92.8675,8.85 +2016-04-29 08:17:00,32.6275,92.8375,8.86 +2016-04-29 08:32:00,34.4775,92.68,8.89 +2016-04-29 08:47:00,35.2025,92.55,8.94 +2016-04-29 09:02:00,35.6,92.3325,8.97 +2016-04-29 09:17:00,33.9475,92.235,9.02 +2016-04-29 09:32:00,34.1825,92.0975,9.1 +2016-04-29 09:47:00,33.66,91.8625,9.15 +2016-04-29 10:02:00,34.96,91.9075,9.15 +2016-04-29 10:17:00,32.6225,91.835,9.08 +2016-04-29 10:32:00,34.6738,91.83,9.05 +2016-04-29 10:47:00,34.5762,91.7925,9.09 +2016-04-29 11:02:00,32.145,91.765,9.12 +2016-04-29 11:17:00,34.185,91.905,9.13 +2016-04-29 11:32:00,34.8125,91.865,9.13 +2016-04-29 11:47:00,34.7225,92.15,9.17 +2016-04-29 12:02:00,32.77,92.035,9.19 +2016-04-29 12:17:00,33.5575,91.985,9.19 +2016-04-29 12:32:00,35.505,92.155,9.23 +2016-04-29 12:47:00,34.7262,91.995,9.26 +2016-04-29 13:02:00,35.7913,92.0025,9.36 +2016-04-29 13:17:00,35.6937,91.9125,9.42 +2016-04-29 13:32:00,32.575,91.9075,9.46 +2016-04-29 13:47:00,34.2375,91.8875,9.45 +2016-04-29 14:02:00,35.305,91.9375,9.44 +2016-04-29 14:17:00,34.67,92.0475,9.48 +2016-04-29 14:32:00,34.8112,92.075,9.57 +2016-04-29 14:47:00,34.28,92.1125,9.66 +2016-04-29 15:02:00,35.4525,92.03,9.73 +2016-04-29 15:17:00,34.5287,91.93,9.77 +2016-04-29 15:32:00,33.7062,91.6925,9.78 +2016-04-29 15:47:00,32.8213,91.4625,9.79 +2016-04-29 16:02:00,31.0413,91.1175,9.81 +2016-04-29 16:17:00,33.9987,90.875,9.81 +2016-04-29 16:32:00,33.605,90.71,9.78 +2016-04-29 16:47:00,34.3825,90.7825,9.77 +2016-04-29 17:02:00,35.2537,90.6925,9.77 +2016-04-29 17:17:00,34.5312,90.73,9.75 +2016-04-29 17:32:00,34.0462,90.745,9.72 +2016-04-29 17:47:00,34.8162,90.6825,9.67 +2016-04-29 18:02:00,33.9962,90.5,9.64 +2016-04-29 18:17:00,33.5537,90.4025,9.61 +2016-04-29 18:32:00,35.1025,90.175,9.61 +2016-04-29 18:47:00,33.455,89.9825,9.61 +2016-04-29 19:02:00,32.0887,89.8475,9.61 +2016-04-29 19:17:00,34.6712,89.815,9.62 +2016-04-29 19:32:00,34.8637,89.8475,9.62 +2016-04-29 19:47:00,33.7087,89.8925,9.62 +2016-04-29 20:02:00,33.7962,90.0475,9.67 +2016-04-29 20:17:00,34.1362,90.0575,9.74 +2016-04-29 20:32:00,34.33,89.975,9.82 +2016-04-29 20:47:00,34.575,89.9175,9.9 +2016-04-29 21:02:00,33.995,89.8425,9.95 +2016-04-29 21:17:00,34.8613,89.62,10.02 +2016-04-29 21:32:00,33.9525,89.5625,10.08 +2016-04-29 21:47:00,32.8737,89.465,10.09 +2016-04-29 22:02:00,34.5262,89.5775,10.04 +2016-04-29 22:17:00,34.815,89.76,10.04 +2016-04-29 22:32:00,32.0925,89.88,10.09 +2016-04-29 22:47:00,33.6062,89.9275,10.15 +2016-04-29 23:02:00,33.4088,90.065,10.15 +2016-04-29 23:17:00,33.5112,89.98,10.13 +2016-04-29 23:32:00,35.0537,89.835,10.11 +2016-04-29 23:47:00,34.235,89.6775,10.07 +2016-04-30 00:02:00,34.8575,89.505,10.02 +2016-04-30 00:17:00,34.4775,89.425,9.96 +2016-04-30 00:32:00,33.5537,89.4075,9.89 +2016-04-30 00:47:00,34.4325,89.4875,9.85 +2016-04-30 01:02:00,33.265,89.4725,9.8 +2016-04-30 01:17:00,33.3125,89.695,9.75 +2016-04-30 01:32:00,32.825,89.7475,9.7 +2016-04-30 01:47:00,35.4025,89.8225,9.65 +2016-04-30 02:02:00,34.3312,89.7125,9.62 +2016-04-30 02:17:00,34.1338,89.61,9.58 +2016-04-30 02:32:00,33.8475,89.5125,9.55 +2016-04-30 02:47:00,33.6575,89.3225,9.53 +2016-04-30 03:02:00,34.9062,89.2925,9.49 +2016-04-30 03:17:00,33.1712,89.3775,9.47 +2016-04-30 03:32:00,33.5575,89.44,9.46 +2016-04-30 03:47:00,34.525,89.535,9.45 +2016-04-30 04:02:00,36.8725,89.6225,9.45 +2016-04-30 04:17:00,35.0025,89.6575,9.45 +2016-04-30 04:32:00,34.72,89.5925,9.45 +2016-04-30 04:47:00,33.555,89.55,9.46 +2016-04-30 05:02:00,35.2537,89.465,9.46 +2016-04-30 05:17:00,32.9688,89.2975,9.47 +2016-04-30 05:32:00,35.35,89.2675,9.49 +2016-04-30 05:47:00,34.7175,89.21,9.5 +2016-04-30 06:02:00,35.4025,89.215,9.52 +2016-04-30 06:17:00,35.6425,89.28,9.53 +2016-04-30 06:32:00,34.28,89.39,9.53 +2016-04-30 06:47:00,33.4613,89.5325,9.55 +2016-04-30 07:02:00,36.3812,89.6275,9.56 +2016-04-30 07:17:00,35.0037,89.61,9.57 +2016-04-30 07:32:00,36.5238,89.515,9.6 +2016-04-30 07:47:00,35.5975,89.52,9.65 +2016-04-30 08:02:00,34.1813,89.4675,9.71 +2016-04-30 08:17:00,33.6525,89.3625,9.78 +2016-04-30 08:32:00,36.335,89.2375,9.85 +2016-04-30 08:47:00,32.9713,89.2475,9.9 +2016-04-30 09:02:00,34.5312,89.1975,9.94 +2016-04-30 09:17:00,35.005,89.24,9.97 +2016-04-30 09:32:00,34.9037,89.34,10.03 +2016-04-30 09:47:00,34.6712,89.3775,10.13 +2016-04-30 10:02:00,35.3487,89.4525,10.21 +2016-04-30 10:17:00,34.1375,89.55,10.27 +2016-04-30 10:32:00,34.2363,89.5125,10.3 +2016-04-30 10:47:00,34.5287,89.4175,10.29 +2016-04-30 11:02:00,35.8463,89.2775,10.36 +2016-04-30 11:17:00,32.6263,89.1925,10.48 +2016-04-30 11:32:00,34.3787,89.0775,10.59 +2016-04-30 11:47:00,34.8162,88.9625,10.67 +2016-04-30 12:02:00,34.0413,89.0075,10.74 +2016-04-30 12:17:00,35.2525,89.035,10.81 +2016-04-30 12:32:00,35.31,89.025,10.8 +2016-04-30 12:47:00,33.85,89.1225,10.79 +2016-04-30 13:02:00,34.675,89.115,10.86 +2016-04-30 13:17:00,36.4725,89.13,10.86 +2016-04-30 13:32:00,35.6437,89.0075,10.84 +2016-04-30 13:47:00,33.2137,88.96,10.93 +2016-04-30 14:02:00,34.9088,88.8175,10.92 +2016-04-30 14:17:00,33.3625,88.7875,10.92 +2016-04-30 14:32:00,34.8125,88.7125,10.97 +2016-04-30 14:47:00,33.1188,88.82,11.01 +2016-04-30 15:02:00,34.4812,88.955,11.04 +2016-04-30 15:17:00,34.955,88.9825,11.05 +2016-04-30 15:32:00,34.2288,89.0275,11.05 +2016-04-30 15:47:00,35.4525,89.0175,11.08 +2016-04-30 16:02:00,32.7225,88.9425,11.13 +2016-04-30 16:17:00,35.1562,88.705,11.16 +2016-04-30 16:32:00,34.0013,88.42,11.13 +2016-04-30 16:47:00,35.0525,88.2175,11.1 +2016-04-30 17:02:00,34.3862,87.995,11.09 +2016-04-30 17:17:00,34.7213,87.9625,11.12 +2016-04-30 17:32:00,36.4262,87.9,11.15 +2016-04-30 17:47:00,34.3312,87.92,11.17 +2016-04-30 18:02:00,34.0462,87.88,11.18 +2016-04-30 18:17:00,34.2363,87.8075,11.16 +2016-04-30 18:32:00,35.9925,87.66,11.16 +2016-04-30 18:47:00,35.3063,87.46,11.19 +2016-04-30 19:02:00,33.6075,87.245,11.2 +2016-04-30 19:17:00,34.48,87.0275,11.2 +2016-04-30 19:32:00,35.205,86.74,11.21 +2016-04-30 19:47:00,34.235,86.7175,11.19 +2016-04-30 20:02:00,35.5975,86.6875,11.19 +2016-04-30 20:17:00,35.255,86.695,11.19 +2016-04-30 20:32:00,32.57,86.755,11.16 +2016-04-30 20:47:00,34.4337,86.795,11.14 +2016-04-30 21:02:00,36.4713,86.7975,11.13 +2016-04-30 21:17:00,36.2387,86.7625,11.1 +2016-04-30 21:32:00,34.33,86.71,11.09 +2016-04-30 21:47:00,35.01,86.605,11.06 +2016-04-30 22:02:00,35.1588,86.4,11.02 +2016-04-30 22:17:00,33.5088,86.43,10.99 +2016-04-30 22:32:00,35.5025,86.535,10.99 +2016-04-30 22:47:00,34.7675,86.5475,10.98 +2016-04-30 23:02:00,34.04,86.68,10.96 +2016-04-30 23:17:00,37.5037,86.7375,10.93 +2016-04-30 23:32:00,35.2038,86.8775,10.91 +2016-04-30 23:47:00,33.3613,86.9475,10.91 +2016-05-01 00:02:00,34.8662,86.8,10.9 +2016-05-01 00:17:00,34.09,86.7725,10.89 +2016-05-01 00:32:00,34.1387,86.6625,10.87 +2016-05-01 00:47:00,33.0175,86.5075,10.86 +2016-05-01 01:02:00,36.0912,86.4975,10.87 +2016-05-01 01:17:00,35.5537,86.585,10.86 +2016-05-01 01:32:00,35.1038,86.7625,10.86 +2016-05-01 01:47:00,33.66,86.92,10.84 +2016-05-01 02:02:00,33.51,87.0075,10.81 +2016-05-01 02:17:00,35.35,87.1625,10.82 +2016-05-01 02:32:00,32.7712,87.1825,10.8 +2016-05-01 02:47:00,35.9925,87.03,10.79 +2016-05-01 03:02:00,34.91,87.02,10.76 +2016-05-01 03:17:00,35.0075,86.8375,10.74 +2016-05-01 03:32:00,35.3575,86.77,10.72 +2016-05-01 03:47:00,34.3862,86.725,10.69 +2016-05-01 04:02:00,34.865,86.8025,10.66 +2016-05-01 04:17:00,33.6562,86.8275,10.63 +2016-05-01 04:32:00,36.3763,87.01,10.61 +2016-05-01 04:47:00,36.5737,87.095,10.58 +2016-05-01 05:02:00,35.4012,87.2825,10.57 +2016-05-01 05:17:00,34.3337,87.305,10.56 +2016-05-01 05:32:00,35.6488,87.205,10.55 +2016-05-01 05:47:00,36.3875,87.25,10.53 +2016-05-01 06:02:00,34.905,87.17,10.53 +2016-05-01 06:17:00,33.1675,87.2075,10.54 +2016-05-01 06:32:00,36.4762,87.2725,10.53 +2016-05-01 06:47:00,36.0425,87.29,10.53 +2016-05-01 07:02:00,36.285,87.3125,10.55 +2016-05-01 07:17:00,35.16,87.3275,10.57 +2016-05-01 07:32:00,34.7275,87.365,10.61 +2016-05-01 07:47:00,33.0225,87.405,10.65 +2016-05-01 08:02:00,33.5062,87.43,10.68 +2016-05-01 08:17:00,33.9987,87.3625,10.75 +2016-05-01 08:32:00,33.6062,87.295,10.81 +2016-05-01 08:47:00,34.9062,87.38,10.87 +2016-05-01 09:02:00,34.625,87.595,10.92 +2016-05-01 09:17:00,33.6113,87.71,10.99 +2016-05-01 09:32:00,34.5312,87.8575,11.08 +2016-05-01 09:47:00,35.795,87.8325,11.15 +2016-05-01 10:02:00,34.86,88.0225,11.25 +2016-05-01 10:17:00,35.6925,88.025,11.33 +2016-05-01 10:32:00,34.0425,88.055,11.42 +2016-05-01 10:47:00,34.9062,87.8275,11.45 +2016-05-01 11:02:00,34.335,87.6775,11.52 +2016-05-01 11:17:00,34.77,87.475,11.64 +2016-05-01 11:32:00,35.2562,87.3725,11.72 +2016-05-01 11:47:00,34.2312,87.395,11.76 +2016-05-01 12:02:00,35.7875,87.5275,11.8 +2016-05-01 12:17:00,34.235,87.555,11.83 +2016-05-01 12:32:00,33.4562,87.675,11.89 +2016-05-01 12:47:00,34.6762,87.575,11.93 +2016-05-01 13:02:00,33.8988,87.715,11.97 +2016-05-01 13:17:00,34.5788,87.585,12.03 +2016-05-01 13:32:00,33.7012,87.57,12.09 +2016-05-01 13:47:00,34.7225,87.3825,12.1 +2016-05-01 14:02:00,34.0887,87.27,12.13 +2016-05-01 14:17:00,33.36,87.1475,12.18 +2016-05-01 14:32:00,34.8187,87.3125,12.24 +2016-05-01 14:47:00,34.9587,87.3525,12.27 +2016-05-01 15:02:00,34.24,87.31,12.28 +2016-05-01 15:17:00,35.4088,87.3825,12.3 +2016-05-01 15:32:00,33.9487,87.3225,12.29 +2016-05-01 15:47:00,33.4088,87.305,12.27 +2016-05-01 16:02:00,35.8913,87.1675,12.28 +2016-05-01 16:17:00,36.3363,86.9775,12.28 +2016-05-01 16:32:00,36.4275,86.83,12.28 +2016-05-01 16:47:00,36.6287,86.7625,12.27 +2016-05-01 17:02:00,35.9012,86.6625,12.26 +2016-05-01 17:17:00,37.3562,86.825,12.26 +2016-05-01 17:32:00,37.1612,86.925,12.26 +2016-05-01 17:47:00,36.0413,87.0725,12.25 +2016-05-01 18:02:00,34.6275,87.17,12.25 +2016-05-01 18:17:00,34.9587,87.14,12.27 +2016-05-01 18:32:00,35.1537,87.09,12.29 +2016-05-01 18:47:00,36.1912,87.0075,12.32 +2016-05-01 19:02:00,35.555,86.8775,12.36 +2016-05-01 19:17:00,35.9962,86.6775,12.39 +2016-05-01 19:32:00,34.0875,86.6125,12.41 +2016-05-01 19:47:00,36.2425,86.64,12.44 +2016-05-01 20:02:00,33.755,86.7025,12.46 +2016-05-01 20:17:00,34.7237,86.87,12.49 +2016-05-01 20:32:00,35.1087,86.955,12.49 +2016-05-01 20:47:00,35.4025,86.965,12.49 +2016-05-01 21:02:00,33.7025,86.915,12.52 +2016-05-01 21:17:00,36.5225,86.7975,12.54 +2016-05-01 21:32:00,36.4313,86.74,12.6 +2016-05-01 21:47:00,35.4525,86.5825,12.65 +2016-05-01 22:02:00,35.455,86.5675,12.67 +2016-05-01 22:17:00,36.14,86.555,12.68 +2016-05-01 22:32:00,35.7487,86.625,12.68 +2016-05-01 22:47:00,34.14,86.71,12.68 +2016-05-01 23:02:00,35.505,86.8025,12.65 +2016-05-01 23:17:00,35.995,86.8375,12.62 +2016-05-01 23:32:00,35.7962,86.75,12.6 +2016-05-01 23:47:00,34.5737,86.565,12.59 +2016-05-02 00:02:00,34.9125,86.425,12.58 +2016-05-02 00:17:00,33.6625,86.2725,12.55 +2016-05-02 00:32:00,35.1588,86.12,12.54 +2016-05-02 00:47:00,35.8412,86.0975,12.52 +2016-05-02 01:02:00,36.0925,86.1875,12.48 +2016-05-02 01:17:00,34.2825,86.29,12.47 +2016-05-02 01:32:00,35.555,86.3875,12.43 +2016-05-02 01:47:00,35.895,86.47,12.36 +2016-05-02 02:02:00,35.355,86.56,12.32 +2016-05-02 02:17:00,35.41,86.47,12.28 +2016-05-02 02:32:00,35.0625,86.345,12.26 +2016-05-02 02:47:00,35.2525,86.175,12.21 +2016-05-02 03:02:00,35.8463,85.985,12.17 +2016-05-02 03:17:00,35.8913,85.8675,12.13 +2016-05-02 03:32:00,35.0062,85.84,12.08 +2016-05-02 03:47:00,36.14,85.89,12.05 +2016-05-02 04:02:00,34.58,85.9825,12.01 +2016-05-02 04:17:00,35.945,86.0075,11.96 +2016-05-02 04:32:00,34.1387,86.01,11.92 +2016-05-02 04:47:00,33.5537,85.935,11.89 +2016-05-02 05:02:00,33.7038,85.8425,11.9 +2016-05-02 05:17:00,36.2412,85.72,11.89 +2016-05-02 05:32:00,35.6475,85.66,11.87 +2016-05-02 05:47:00,34.7225,85.6525,11.89 +2016-05-02 06:02:00,34.4825,85.675,11.94 +2016-05-02 06:17:00,32.6738,85.67,11.98 +2016-05-02 06:32:00,32.335,85.6875,12.0 +2016-05-02 06:47:00,35.1,85.635,12.03 +2016-05-02 07:02:00,36.7237,85.575,12.06 +2016-05-02 07:17:00,33.555,85.47,12.08 +2016-05-02 07:32:00,34.1837,85.55,12.12 +2016-05-02 07:47:00,34.0887,85.5175,12.16 +2016-05-02 08:02:00,34.8637,85.6275,12.27 +2016-05-02 08:17:00,34.2363,85.595,12.43 +2016-05-02 08:32:00,36.1862,85.6,12.55 +2016-05-02 08:47:00,34.38,85.5475,12.67 +2016-05-02 09:02:00,36.92,85.635,12.72 +2016-05-02 09:17:00,36.4762,85.6175,12.74 +2016-05-02 09:32:00,34.575,85.545,12.79 +2016-05-02 09:47:00,36.5262,85.6625,12.74 +2016-05-02 10:02:00,32.5812,85.7925,12.67 +2016-05-02 10:17:00,35.3512,85.98,12.67 +2016-05-02 10:32:00,35.3037,85.93,12.73 +2016-05-02 10:47:00,36.2375,85.9675,13.04 +2016-05-02 11:02:00,35.4025,85.9325,13.28 +2016-05-02 11:17:00,35.595,85.8525,13.4 +2016-05-02 11:32:00,35.55,85.69,13.49 +2016-05-02 11:47:00,35.4562,85.7275,13.57 +2016-05-02 12:02:00,35.6038,85.5025,13.64 +2016-05-02 12:17:00,34.77,85.445,13.72 +2016-05-02 12:32:00,35.8913,85.3625,13.77 +2016-05-02 12:47:00,34.04,85.2375,13.82 +2016-05-02 13:02:00,34.7637,85.195,13.84 +2016-05-02 13:17:00,34.8625,85.1175,13.84 +2016-05-02 13:32:00,34.6287,85.08,13.86 +2016-05-02 13:47:00,35.3538,85.035,13.97 +2016-05-02 14:02:00,33.9463,84.97,14.05 +2016-05-02 14:17:00,36.3363,84.9325,14.11 +2016-05-02 14:32:00,34.5775,84.845,14.14 +2016-05-02 14:47:00,38.36,84.87,14.14 +2016-05-02 15:02:00,36.0925,84.9425,14.1 +2016-05-02 15:17:00,34.5287,85.0425,14.09 +2016-05-02 15:32:00,36.19,85.185,14.11 +2016-05-02 15:47:00,37.4075,85.275,14.14 +2016-05-02 16:02:00,36.8725,85.4375,13.98 +2016-05-02 16:17:00,19.5387,85.325,14.13 +2016-05-02 16:25:23,19.535,85.33,14.11 +2016-05-02 16:32:00,19.3875,85.185,14.11 +2016-05-02 16:47:00,17.8363,85.03,14.13 +2016-05-02 17:02:00,20.1113,84.925,14.15 +2016-05-02 17:17:00,18.7125,84.88,14.15 +2016-05-02 17:32:00,18.6637,84.78,14.15 +2016-05-02 17:47:00,18.515,84.7425,14.14 +2016-05-02 18:02:00,17.7363,84.69,14.14 +2016-05-02 18:17:00,20.4587,84.6525,14.18 +2016-05-02 18:32:00,19.6813,84.635,14.19 +2016-05-02 18:47:00,18.2312,84.7375,14.21 +2016-05-02 19:02:00,18.5625,84.7675,14.23 +2016-05-02 19:17:00,17.155,84.9725,14.24 +2016-05-02 19:32:00,18.815,85.0575,14.25 +2016-05-02 19:47:00,20.3138,85.0825,14.29 +2016-05-02 20:02:00,18.9062,85.08,14.31 +2016-05-02 20:17:00,19.5362,85.06,14.28 +2016-05-02 20:32:00,19.9713,85.0275,14.26 +2016-05-02 20:47:00,17.985,85.0175,14.34 +2016-05-02 21:02:00,21.4825,84.8075,14.42 +2016-05-02 21:17:00,18.1362,84.78,14.46 +2016-05-02 21:32:00,18.8075,84.7325,14.46 +2016-05-02 21:47:00,18.6137,84.5875,14.42 +2016-05-02 22:02:00,19.7288,84.61,14.41 +2016-05-02 22:17:00,19.9225,84.5175,14.4 +2016-05-02 22:32:00,18.76,84.4825,14.41 +2016-05-02 22:47:00,19.6362,84.4625,14.42 +2016-05-02 23:02:00,19.44,84.4925,14.43 +2016-05-02 23:17:00,19.5387,84.5975,14.45 +2016-05-02 23:32:00,16.8587,84.8,14.43 +2016-05-02 23:47:00,19.3875,84.9575,14.42 +2016-05-03 00:02:00,19.6825,84.9775,14.42 +2016-05-03 00:17:00,18.4688,84.995,14.39 +2016-05-03 00:32:00,19.4362,84.9675,14.37 +2016-05-03 00:47:00,19.3913,84.8525,14.34 +2016-05-03 01:02:00,18.765,84.75,14.31 +2016-05-03 01:17:00,19.0075,84.6325,14.31 +2016-05-03 01:32:00,20.8875,84.51,14.27 +2016-05-03 01:47:00,17.0013,84.4125,14.2 +2016-05-03 02:02:00,17.6413,84.35,14.13 +2016-05-03 02:17:00,18.665,84.275,14.1 +2016-05-03 02:32:00,19.145,84.2175,14.08 +2016-05-03 02:47:00,18.235,84.175,14.05 +2016-05-03 03:02:00,19.59,84.195,14.03 +2016-05-03 03:17:00,19.5387,84.43,13.99 +2016-05-03 03:32:00,20.5587,84.5575,13.96 +2016-05-03 03:47:00,19.4875,84.56,13.93 +2016-05-03 04:02:00,18.86,84.6025,13.9 +2016-05-03 04:17:00,21.135,84.68,13.87 +2016-05-03 04:32:00,20.4625,84.5775,13.84 +2016-05-03 04:47:00,17.7925,84.505,13.82 +2016-05-03 05:02:00,18.8613,84.395,13.82 +2016-05-03 05:17:00,18.4675,84.2925,13.82 +2016-05-03 05:32:00,19.5362,84.195,13.81 +2016-05-03 05:47:00,18.9062,84.2025,13.81 +2016-05-03 06:02:00,18.7125,84.2525,13.82 +2016-05-03 06:17:00,18.86,84.3975,13.84 +2016-05-03 06:32:00,18.7138,84.395,13.91 +2016-05-03 06:47:00,19.7862,84.3475,13.95 +2016-05-03 07:02:00,17.2,84.275,13.94 +2016-05-03 07:17:00,18.7637,84.25,13.95 +2016-05-03 07:32:00,20.5075,84.165,13.99 +2016-05-03 07:47:00,18.955,84.1,14.03 +2016-05-03 08:02:00,17.1525,84.1325,14.07 +2016-05-03 08:17:00,18.1813,84.2025,14.14 +2016-05-03 08:32:00,17.5,84.255,14.27 +2016-05-03 08:47:00,17.6925,84.175,14.47 +2016-05-03 09:02:00,17.3962,84.1725,14.58 +2016-05-03 09:17:00,19.7312,84.1175,14.6 +2016-05-03 09:32:00,17.6413,84.1175,14.61 +2016-05-03 09:47:00,21.3887,84.115,14.53 +2016-05-03 10:02:00,18.1325,84.2075,14.42 +2016-05-03 10:17:00,18.4713,84.115,14.36 +2016-05-03 10:32:00,16.4825,84.1775,14.4 +2016-05-03 10:47:00,18.0863,83.99,14.44 +2016-05-03 11:02:00,18.035,83.955,14.53 +2016-05-03 11:17:00,17.205,83.895,14.63 +2016-05-03 11:32:00,19.2913,83.7925,14.72 +2016-05-03 11:47:00,19.5888,83.625,14.77 +2016-05-03 12:02:00,20.2625,83.5825,14.75 +2016-05-03 12:17:00,18.6663,83.5925,14.7 +2016-05-03 12:32:00,17.1537,83.59,14.64 +2016-05-03 12:47:00,19.735,83.5775,14.63 +2016-05-03 13:02:00,19.54,83.4575,14.63 +2016-05-03 13:17:00,20.2125,83.45,14.62 +2016-05-03 13:32:00,17.9375,83.4925,14.62 +2016-05-03 13:47:00,18.9075,83.4225,14.6 +2016-05-03 14:02:00,19.9775,83.5375,14.57 +2016-05-03 14:17:00,19.5888,83.5425,14.52 +2016-05-03 14:32:00,17.6437,83.54,14.48 +2016-05-03 14:47:00,19.97,83.54,14.38 +2016-05-03 15:02:00,19.485,83.725,14.22 +2016-05-03 15:17:00,19.6312,83.9875,14.18 +2016-05-03 15:32:00,19.68,83.935,14.23 +2016-05-03 15:47:00,19.1,83.8825,14.28 +2016-05-03 16:02:00,21.035,83.6875,14.32 +2016-05-03 16:17:00,19.5863,83.5775,14.34 +2016-05-03 16:32:00,20.2162,83.3775,14.36 +2016-05-03 16:47:00,19.6813,83.2975,14.37 +2016-05-03 17:02:00,18.6612,83.2525,14.35 +2016-05-03 17:17:00,18.81,83.145,14.33 +2016-05-03 17:32:00,18.765,83.0625,14.32 +2016-05-03 17:47:00,17.5963,83.1975,14.32 +2016-05-03 18:02:00,19.245,83.34,14.32 +2016-05-03 18:17:00,19.3913,83.3875,14.31 +2016-05-03 18:32:00,18.1813,83.44,14.28 +2016-05-03 18:47:00,20.3213,83.55,14.25 +2016-05-03 19:02:00,19.4375,83.4775,14.21 +2016-05-03 19:17:00,19.385,83.33,14.2 +2016-05-03 19:32:00,19.6338,83.2575,14.18 +2016-05-03 19:47:00,19.2,83.145,14.15 +2016-05-03 20:02:00,20.2188,83.0825,14.14 +2016-05-03 20:17:00,18.81,82.9725,14.13 +2016-05-03 20:32:00,19.9725,82.905,14.09 +2016-05-03 20:47:00,19.2438,82.7875,14.05 +2016-05-03 21:02:00,20.2188,82.75,14.01 +2016-05-03 21:17:00,19.88,82.7075,13.98 +2016-05-03 21:32:00,19.875,82.6775,13.95 +2016-05-03 21:47:00,18.4737,82.7275,13.93 +2016-05-03 22:02:00,19.0088,82.88,13.91 +2016-05-03 22:17:00,19.8337,82.9575,13.91 +2016-05-03 22:32:00,19.88,83.1875,13.9 +2016-05-03 22:47:00,18.0825,83.23,13.86 +2016-05-03 23:02:00,19.2937,83.2925,13.85 +2016-05-03 23:17:00,20.5575,83.2775,13.82 +2016-05-03 23:32:00,18.8125,83.2,13.81 +2016-05-03 23:47:00,17.9962,83.035,13.79 +2016-05-04 00:02:00,19.0563,82.9575,13.78 +2016-05-04 00:17:00,18.9562,82.845,13.78 +2016-05-04 00:32:00,21.3875,82.7675,13.78 +2016-05-04 00:47:00,19.3388,82.5975,13.79 +2016-05-04 01:02:00,19.1937,82.5125,13.79 +2016-05-04 01:17:00,18.6188,82.465,13.77 +2016-05-04 01:32:00,20.1212,82.31,13.77 +2016-05-04 01:47:00,18.5187,82.4625,13.76 +2016-05-04 02:02:00,18.3288,82.495,13.75 +2016-05-04 02:17:00,18.7625,82.5725,13.72 +2016-05-04 02:32:00,20.0212,82.7075,13.71 +2016-05-04 02:47:00,18.9062,82.8425,13.67 +2016-05-04 03:02:00,19.54,82.93,13.63 +2016-05-04 03:17:00,18.2363,82.81,13.6 +2016-05-04 03:32:00,18.0875,82.83,13.56 +2016-05-04 03:47:00,19.7875,82.6725,13.51 +2016-05-04 04:02:00,19.6825,82.4975,13.45 +2016-05-04 04:17:00,19.0537,82.375,13.41 +2016-05-04 04:32:00,19.15,82.2325,13.35 +2016-05-04 04:47:00,19.34,82.1025,13.31 +2016-05-04 05:02:00,19.5362,82.0225,13.27 +2016-05-04 05:17:00,18.7188,81.935,13.23 +2016-05-04 05:32:00,19.2475,81.97,13.23 +2016-05-04 05:47:00,18.4187,81.9725,13.27 +2016-05-04 06:02:00,20.6975,82.005,13.24 +2016-05-04 06:17:00,19.4875,82.1225,13.2 +2016-05-04 06:32:00,20.4562,82.1525,13.21 +2016-05-04 06:47:00,20.2637,82.2675,13.22 +2016-05-04 07:02:00,19.5375,82.22,13.25 +2016-05-04 07:17:00,20.6075,82.3975,13.23 +2016-05-04 07:32:00,19.9275,82.3875,13.21 +2016-05-04 07:47:00,18.9075,82.3575,13.21 +2016-05-04 08:02:00,18.9562,82.3775,13.24 +2016-05-04 08:17:00,20.84,82.3425,13.24 +2016-05-04 08:32:00,20.2625,82.225,13.27 +2016-05-04 08:47:00,20.1625,82.19,13.31 +2016-05-04 09:02:00,19.3412,82.2475,13.34 +2016-05-04 09:17:00,18.3737,82.1075,13.4 +2016-05-04 09:32:00,20.9375,82.04,13.48 +2016-05-04 09:47:00,18.2288,82.05,13.61 +2016-05-04 10:02:00,18.81,82.07,13.73 +2016-05-04 10:17:00,18.515,81.985,13.86 +2016-05-04 10:32:00,18.3763,82.1425,13.98 +2016-05-04 10:47:00,19.6338,82.035,14.05 +2016-05-04 11:02:00,19.3412,82.1625,14.13 +2016-05-04 11:17:00,20.7462,82.1525,14.19 +2016-05-04 11:32:00,18.5662,82.2275,14.29 +2016-05-04 11:47:00,18.4662,82.2625,14.32 +2016-05-04 12:02:00,17.4487,82.2725,14.35 +2016-05-04 12:17:00,20.5075,82.4075,14.32 +2016-05-04 12:32:00,18.2288,82.5375,14.35 +2016-05-04 12:47:00,19.1062,82.8425,14.34 +2016-05-04 13:02:00,18.2787,82.9975,14.35 +2016-05-04 13:17:00,18.4662,83.13,14.41 +2016-05-04 13:32:00,20.2663,83.1375,14.51 +2016-05-04 13:47:00,20.1175,83.1025,14.6 +2016-05-04 14:02:00,19.4863,82.845,14.55 +2016-05-04 14:17:00,20.6087,82.57,14.5 +2016-05-04 14:32:00,18.7125,82.23,14.49 +2016-05-04 14:47:00,17.4987,81.77,14.51 +2016-05-04 15:02:00,20.1663,81.2825,14.56 +2016-05-04 15:17:00,20.1137,80.795,14.5 +2016-05-04 15:32:00,17.7875,80.2075,14.42 +2016-05-04 15:47:00,19.145,79.74,14.34 +2016-05-04 16:02:00,19.4337,79.21,14.36 +2016-05-04 16:17:00,18.4675,78.8725,14.36 +2016-05-04 16:32:00,20.27,78.5125,14.37 +2016-05-04 16:47:00,19.93,78.1175,14.35 +2016-05-04 17:02:00,18.4675,77.8775,14.31 +2016-05-04 17:17:00,20.115,77.645,14.29 +2016-05-04 17:32:00,19.4362,77.545,14.26 +2016-05-04 17:47:00,18.0812,77.475,14.23 +2016-05-04 18:02:00,18.33,77.5075,14.21 +2016-05-04 18:17:00,19.78,77.56,14.21 +2016-05-04 18:32:00,18.7612,77.5225,14.23 +2016-05-04 18:47:00,20.3625,77.6525,14.26 +2016-05-04 19:02:00,18.5163,77.785,14.28 +2016-05-04 19:17:00,16.9062,77.9475,14.3 +2016-05-04 19:32:00,19.7787,78.1375,14.29 +2016-05-04 19:47:00,18.5163,78.24,14.29 +2016-05-04 20:02:00,21.5263,78.4475,14.29 +2016-05-04 20:17:00,19.925,78.6075,14.26 +2016-05-04 20:32:00,19.735,78.79,14.24 +2016-05-04 20:47:00,18.5175,78.96,14.24 +2016-05-04 21:02:00,18.8087,79.1275,14.24 +2016-05-04 21:17:00,18.3275,79.29,14.26 +2016-05-04 21:32:00,20.0212,79.42,14.26 +2016-05-04 21:47:00,19.485,79.62,14.27 +2016-05-04 22:02:00,18.9037,79.7925,14.29 +2016-05-04 22:17:00,19.1488,79.885,14.31 +2016-05-04 22:32:00,18.7138,80.0125,14.34 +2016-05-04 22:47:00,19.7825,80.1825,14.33 +2016-05-04 23:02:00,18.5163,80.32,14.32 +2016-05-04 23:17:00,18.7625,80.295,14.31 +2016-05-04 23:32:00,20.6038,80.425,14.29 +2016-05-04 23:47:00,20.6525,80.5675,14.26 +2016-05-05 00:02:00,18.8538,80.5825,14.24 +2016-05-05 00:17:00,19.7337,80.735,14.2 +2016-05-05 00:32:00,19.9238,80.8775,14.17 +2016-05-05 00:47:00,20.0212,81.1825,14.13 +2016-05-05 01:02:00,19.0563,81.44,14.11 +2016-05-05 01:17:00,20.41,81.7225,14.07 +2016-05-05 01:32:00,18.76,81.9575,14.01 +2016-05-05 01:47:00,19.1462,82.085,13.96 +2016-05-05 02:02:00,18.9625,82.19,13.93 +2016-05-05 02:17:00,20.0725,82.19,13.9 +2016-05-05 02:32:00,19.5362,82.1625,13.85 +2016-05-05 02:47:00,20.5112,82.0675,13.79 +2016-05-05 03:02:00,18.6625,82.0425,13.75 +2016-05-05 03:17:00,18.5662,82.09,13.71 +2016-05-05 03:32:00,18.0375,82.025,13.68 +2016-05-05 03:47:00,20.12,82.0075,13.67 +2016-05-05 04:02:00,17.8438,82.0125,13.62 +2016-05-05 04:17:00,19.9262,82.13,13.61 +2016-05-05 04:32:00,18.86,82.2425,13.6 +2016-05-05 04:47:00,17.4962,82.345,13.59 +2016-05-05 05:02:00,19.6825,82.4925,13.58 +2016-05-05 05:17:00,21.5812,82.6725,13.57 +2016-05-05 05:32:00,19.29,82.72,13.59 +2016-05-05 05:47:00,19.5875,82.7775,13.63 +2016-05-05 06:02:00,20.94,82.7175,13.65 +2016-05-05 06:17:00,18.8625,82.675,13.68 +2016-05-05 06:32:00,20.4112,82.62,13.7 +2016-05-05 06:47:00,18.3712,82.5575,13.75 +2016-05-05 07:02:00,20.6062,82.49,13.78 +2016-05-05 07:17:00,20.7,82.535,13.79 +2016-05-05 07:32:00,19.635,82.71,13.83 +2016-05-05 07:47:00,18.665,82.7025,13.84 +2016-05-05 08:02:00,17.9412,82.8025,13.88 +2016-05-05 08:17:00,18.8613,82.91,13.92 +2016-05-05 08:32:00,18.8562,82.765,13.94 +2016-05-05 08:47:00,20.315,82.8025,13.98 +2016-05-05 09:02:00,18.085,82.7425,14.0 +2016-05-05 09:17:00,19.68,82.505,14.02 +2016-05-05 09:32:00,18.905,82.5675,14.07 +2016-05-05 09:47:00,20.22,82.455,14.11 +2016-05-05 10:02:00,19.7838,82.38,14.16 +2016-05-05 10:17:00,21.1338,82.46,14.19 +2016-05-05 10:32:00,18.8587,82.535,14.26 +2016-05-05 10:47:00,20.84,82.6725,14.31 +2016-05-05 11:02:00,19.785,82.885,14.36 +2016-05-05 11:17:00,19.8787,82.9225,14.42 +2016-05-05 11:32:00,18.9587,83.1675,14.47 +2016-05-05 11:47:00,19.88,83.1725,14.54 +2016-05-05 12:02:00,19.1912,82.9925,14.6 +2016-05-05 12:17:00,18.955,82.95,14.65 +2016-05-05 12:32:00,20.0675,82.84,14.71 +2016-05-05 12:47:00,17.9388,82.6475,14.73 +2016-05-05 13:02:00,19.5325,82.5825,14.78 +2016-05-05 13:17:00,18.18,82.56,14.84 +2016-05-05 13:32:00,21.2387,82.645,14.88 +2016-05-05 13:47:00,19.39,82.5075,14.93 +2016-05-05 14:02:00,19.7812,82.4525,14.95 +2016-05-05 14:17:00,19.6362,82.4475,14.99 +2016-05-05 14:32:00,18.2787,82.495,15.02 +2016-05-05 14:47:00,19.2387,82.2375,15.03 +2016-05-05 15:02:00,18.375,82.185,15.05 +2016-05-05 15:17:00,18.3325,82.23,15.07 +2016-05-05 15:32:00,19.59,82.36,15.07 +2016-05-05 15:47:00,18.8587,82.3325,15.07 +2016-05-05 16:02:00,19.6338,82.525,15.06 +2016-05-05 16:17:00,19.6362,82.6425,15.06 +2016-05-05 16:32:00,20.745,82.6975,15.07 +2016-05-05 16:47:00,17.735,82.755,15.07 +2016-05-05 17:02:00,19.63,82.64,15.08 +2016-05-05 17:17:00,18.52,82.79,15.1 +2016-05-05 17:32:00,17.6437,82.5425,15.1 +2016-05-05 17:47:00,19.6312,82.585,15.11 +2016-05-05 18:02:00,19.6837,82.45,15.1 +2016-05-05 18:17:00,17.8825,82.4725,15.11 +2016-05-05 18:32:00,18.91,82.3375,15.13 +2016-05-05 18:47:00,17.25,82.36,15.14 +2016-05-05 19:02:00,18.6175,82.22,15.17 +2016-05-05 19:17:00,20.1725,82.265,15.17 +2016-05-05 19:32:00,20.27,82.2325,15.19 +2016-05-05 19:47:00,18.3288,82.185,15.21 +2016-05-05 20:02:00,19.3425,82.1675,15.24 +2016-05-05 20:17:00,20.0212,82.0475,15.28 +2016-05-05 20:32:00,17.7438,82.0975,15.29 +2016-05-05 20:47:00,19.055,82.075,15.3 +2016-05-05 21:02:00,18.3325,82.1,15.33 +2016-05-05 21:17:00,19.15,82.285,15.37 +2016-05-05 21:32:00,18.47,82.545,15.42 +2016-05-05 21:47:00,20.7913,82.6125,15.44 +2016-05-05 22:02:00,20.6513,82.7475,15.44 +2016-05-05 22:17:00,20.4613,82.72,15.44 +2016-05-05 22:32:00,19.6375,82.7825,15.44 +2016-05-05 22:47:00,18.9575,82.7325,15.35 +2016-05-05 23:02:00,19.0088,82.5675,15.36 +2016-05-05 23:17:00,17.7412,82.4725,15.38 +2016-05-05 23:32:00,17.6912,82.4525,15.35 +2016-05-05 23:47:00,18.81,82.3425,15.29 +2016-05-06 00:02:00,17.7375,82.2375,15.26 +2016-05-06 00:17:00,19.435,82.1425,15.24 +2016-05-06 00:32:00,19.8838,82.015,15.18 +2016-05-06 00:47:00,21.2862,81.92,15.14 +2016-05-06 01:02:00,20.3675,81.8275,15.09 +2016-05-06 01:17:00,19.9737,81.775,15.02 +2016-05-06 01:32:00,18.0863,81.7925,14.97 +2016-05-06 01:47:00,19.6387,81.785,14.95 +2016-05-06 02:02:00,20.415,81.7275,14.92 +2016-05-06 02:17:00,18.18,81.67,14.89 +2016-05-06 02:32:00,18.085,81.64,14.86 +2016-05-06 02:47:00,19.5925,81.5475,14.83 +2016-05-06 03:02:00,17.4525,81.4625,14.8 +2016-05-06 03:17:00,20.2675,81.5775,14.76 +2016-05-06 03:32:00,19.4863,81.5475,14.73 +2016-05-06 03:47:00,17.4,81.825,14.7 +2016-05-06 04:02:00,17.7913,81.73,14.67 +2016-05-06 04:17:00,18.665,81.8125,14.62 +2016-05-06 04:32:00,20.7012,81.7075,14.58 +2016-05-06 04:47:00,19.8337,81.6925,14.56 +2016-05-06 05:02:00,18.9062,81.565,14.55 +2016-05-06 05:17:00,19.1,81.5075,14.55 +2016-05-06 05:32:00,20.8412,81.5,14.56 +2016-05-06 05:47:00,20.795,81.395,14.56 +2016-05-06 06:02:00,19.39,81.4375,14.58 +2016-05-06 06:17:00,19.8325,81.33,14.59 +2016-05-06 06:32:00,21.7312,81.36,14.6 +2016-05-06 06:47:00,20.5088,81.2475,14.6 +2016-05-06 07:02:00,19.7288,81.15,14.57 +2016-05-06 07:17:00,18.42,81.0725,14.55 +2016-05-06 07:32:00,19.3388,81.0575,14.59 +2016-05-06 07:47:00,17.4962,81.0725,14.64 +2016-05-06 08:02:00,19.78,81.0725,14.71 +2016-05-06 08:17:00,18.7138,80.8525,14.79 +2016-05-06 08:32:00,19.0075,80.8375,14.85 +2016-05-06 08:47:00,21.3388,80.9125,14.9 +2016-05-06 09:02:00,19.8312,80.7875,14.97 +2016-05-06 09:17:00,19.6837,80.7575,15.03 +2016-05-06 09:32:00,19.835,80.795,15.08 +2016-05-06 09:47:00,19.5888,80.77,15.14 +2016-05-06 10:02:00,17.6425,80.8125,15.2 +2016-05-06 10:17:00,19.6862,80.7925,15.24 +2016-05-06 10:32:00,20.2687,80.94,15.32 +2016-05-06 10:47:00,18.5638,80.93,15.39 +2016-05-06 11:02:00,19.4388,80.8975,15.42 +2016-05-06 11:17:00,19.685,80.9875,15.49 +2016-05-06 11:32:00,18.47,80.935,15.56 +2016-05-06 11:47:00,19.6375,80.9325,15.63 +2016-05-06 12:02:00,20.4125,81.1075,15.68 +2016-05-06 12:17:00,19.0612,81.1725,15.73 +2016-05-06 12:32:00,18.9638,81.335,15.76 +2016-05-06 12:47:00,19.39,81.48,15.79 +2016-05-06 13:02:00,20.5587,81.595,15.82 +2016-05-06 13:17:00,19.585,81.545,15.87 +2016-05-06 13:32:00,18.8613,81.5425,15.93 +2016-05-06 13:47:00,19.635,81.2875,15.98 +2016-05-06 14:02:00,20.025,81.305,16.04 +2016-05-06 14:17:00,19.25,81.315,16.08 +2016-05-06 14:32:00,18.7125,81.1675,16.11 +2016-05-06 14:47:00,18.7162,81.09,16.14 +2016-05-06 15:02:00,19.7337,80.95,16.16 +2016-05-06 15:17:00,20.6075,80.865,16.18 +2016-05-06 15:32:00,18.6125,80.89,16.21 +2016-05-06 15:47:00,19.4375,80.9475,16.22 +2016-05-06 16:02:00,18.6175,80.8525,16.23 +2016-05-06 16:17:00,20.7962,80.795,16.23 +2016-05-06 16:32:00,18.57,80.8275,16.24 +2016-05-06 16:47:00,18.33,80.84,16.25 +2016-05-06 17:02:00,17.94,80.8075,16.27 +2016-05-06 17:17:00,18.9075,80.9125,16.27 +2016-05-06 17:32:00,18.4725,80.87,16.28 +2016-05-06 17:47:00,19.105,80.91,16.29 +2016-05-06 18:02:00,19.5912,80.935,16.3 +2016-05-06 18:17:00,18.3775,81.005,16.3 +2016-05-06 18:32:00,18.5675,81.0625,16.31 +2016-05-06 18:47:00,20.6987,81.235,16.33 +2016-05-06 19:02:00,18.665,81.335,16.35 +2016-05-06 19:17:00,19.585,81.5975,16.35 +2016-05-06 19:32:00,19.5413,81.7225,16.36 +2016-05-06 19:47:00,19.6413,81.7525,16.38 +2016-05-06 20:02:00,18.6675,81.755,16.39 +2016-05-06 20:17:00,20.8425,81.715,16.4 +2016-05-06 20:32:00,17.2513,81.67,16.42 +2016-05-06 20:47:00,19.8337,81.5375,16.44 +2016-05-06 21:02:00,18.7675,81.52,16.44 +2016-05-06 21:17:00,18.1338,81.5375,16.45 +2016-05-06 21:32:00,18.9137,81.455,16.45 +2016-05-06 21:47:00,20.0775,81.4625,16.45 +2016-05-06 22:02:00,18.335,81.34,16.45 +2016-05-06 22:17:00,20.795,81.3225,16.45 +2016-05-06 22:32:00,20.6537,81.3675,16.45 +2016-05-06 22:47:00,19.1062,81.345,16.46 +2016-05-06 23:02:00,19.39,81.3125,16.48 +2016-05-06 23:17:00,18.1362,81.2925,16.49 +2016-05-06 23:32:00,18.7712,81.345,16.48 +2016-05-06 23:47:00,18.1888,81.2875,16.47 +2016-05-07 00:02:00,18.6188,81.345,16.45 +2016-05-07 00:17:00,20.3225,81.31,16.43 +2016-05-07 00:32:00,19.1975,81.2575,16.41 +2016-05-07 00:47:00,18.8138,81.225,16.39 +2016-05-07 01:02:00,19.5425,81.2675,16.33 +2016-05-07 01:17:00,19.2475,81.4,16.28 +2016-05-07 01:32:00,19.3937,81.57,16.23 +2016-05-07 01:47:00,18.7725,81.9,16.18 +2016-05-07 02:02:00,18.3288,82.005,16.13 +2016-05-07 02:17:00,19.8363,81.9875,16.07 +2016-05-07 02:32:00,20.0225,81.9475,16.02 +2016-05-07 02:47:00,19.5888,81.95,15.98 +2016-05-07 03:02:00,20.1663,81.83,15.94 +2016-05-07 03:17:00,19.5925,81.755,15.9 +2016-05-07 03:32:00,20.4662,81.6525,15.85 +2016-05-07 03:47:00,21.0925,81.605,15.82 +2016-05-07 04:02:00,18.8138,81.4975,15.79 +2016-05-07 04:17:00,19.6875,81.525,15.77 +2016-05-07 04:32:00,18.6162,81.3875,15.75 +2016-05-07 04:47:00,18.8138,81.3475,15.73 +2016-05-07 05:02:00,18.0362,81.42,15.72 +2016-05-07 05:17:00,20.945,81.2925,15.72 +2016-05-07 05:32:00,20.325,81.3575,15.73 +2016-05-07 05:47:00,19.34,81.3325,15.75 +2016-05-07 06:02:00,19.835,81.34,15.75 +2016-05-07 06:17:00,20.2188,81.305,15.77 +2016-05-07 06:32:00,19.1537,81.36,15.79 +2016-05-07 06:47:00,20.6987,81.3875,15.8 +2016-05-07 07:02:00,17.5037,81.395,15.83 +2016-05-07 07:17:00,19.49,81.56,15.84 +2016-05-07 07:32:00,19.8838,81.555,15.88 +2016-05-07 07:47:00,19.785,81.565,15.92 +2016-05-07 08:02:00,20.0687,81.5625,15.95 +2016-05-07 08:17:00,21.0938,81.5325,16.0 +2016-05-07 08:32:00,18.91,81.575,16.04 +2016-05-07 08:47:00,18.2838,81.5075,16.09 +2016-05-07 09:02:00,20.3675,81.6575,16.15 +2016-05-07 09:17:00,19.6888,81.635,16.22 +2016-05-07 09:32:00,20.17,81.79,16.28 +2016-05-07 09:47:00,19.6375,81.5725,16.34 +2016-05-07 10:02:00,21.4388,81.57,16.38 +2016-05-07 10:17:00,20.6588,81.515,16.45 +2016-05-07 10:32:00,19.59,81.39,16.51 +2016-05-07 10:47:00,18.96,81.47,16.58 +2016-05-07 11:02:00,19.345,81.3575,16.61 +2016-05-07 11:17:00,21.7337,81.185,16.66 +2016-05-07 11:32:00,18.67,81.165,16.71 +2016-05-07 11:47:00,19.4375,81.0625,16.77 +2016-05-07 12:02:00,20.22,80.935,16.79 +2016-05-07 12:17:00,19.4875,80.7975,16.84 +2016-05-07 12:32:00,18.42,80.6875,16.87 +2016-05-07 12:47:00,20.75,80.785,16.92 +2016-05-07 13:02:00,19.1075,80.5525,16.97 +2016-05-07 13:17:00,20.1687,80.6375,17.01 +2016-05-07 13:32:00,20.6987,80.6725,17.06 +2016-05-07 13:47:00,17.8913,80.56,17.08 +2016-05-07 14:02:00,19.2937,80.5125,17.12 +2016-05-07 14:17:00,20.12,80.4375,17.15 +2016-05-07 14:32:00,18.9587,80.45,17.18 +2016-05-07 14:47:00,19.2975,80.4725,17.19 +2016-05-07 15:02:00,19.395,80.4825,17.17 +2016-05-07 15:17:00,20.99,80.5525,17.19 +2016-05-07 15:32:00,20.4137,80.7,17.21 +2016-05-07 15:47:00,19.44,80.815,17.18 +2016-05-07 16:02:00,19.0125,80.8825,17.12 +2016-05-07 16:17:00,18.04,80.915,17.12 +2016-05-07 16:32:00,19.1987,80.78,17.17 +2016-05-07 16:47:00,19.0137,80.7375,17.22 +2016-05-07 17:02:00,17.65,80.65,17.24 +2016-05-07 17:17:00,20.9437,80.565,17.27 +2016-05-07 17:32:00,18.0888,80.5575,17.27 +2016-05-07 17:47:00,18.9575,80.6,17.29 +2016-05-07 18:02:00,19.7387,80.4775,17.31 +2016-05-07 18:17:00,17.5013,80.5225,17.33 +2016-05-07 18:32:00,17.8463,80.5475,17.36 +2016-05-07 18:47:00,21.3388,80.525,17.37 +2016-05-07 19:02:00,18.915,80.5575,17.39 +2016-05-07 19:17:00,20.6137,80.4575,17.39 +2016-05-07 19:32:00,18.0925,80.495,17.4 +2016-05-07 19:47:00,19.2012,80.475,17.41 +2016-05-07 20:02:00,19.8363,80.415,17.43 +2016-05-07 20:17:00,18.9125,80.495,17.43 +2016-05-07 20:32:00,21.2425,80.6125,17.43 +2016-05-07 20:47:00,20.4713,80.725,17.43 +2016-05-07 21:02:00,20.8487,80.8825,17.45 +2016-05-07 21:17:00,20.0725,80.95,17.46 +2016-05-07 21:32:00,19.4388,81.0075,17.46 +2016-05-07 21:47:00,20.9412,80.9225,17.46 +2016-05-07 22:02:00,20.5112,80.9425,17.45 +2016-05-07 22:17:00,18.6212,80.8825,17.47 +2016-05-07 22:32:00,18.5238,80.7675,17.47 +2016-05-07 22:47:00,18.9613,80.7675,17.47 +2016-05-07 23:02:00,17.1038,80.67,17.45 +2016-05-07 23:17:00,19.9313,80.6425,17.44 +2016-05-07 23:32:00,19.5888,80.5025,17.43 +2016-05-07 23:47:00,20.0762,80.5025,17.42 +2016-05-08 00:02:00,20.0238,80.455,17.4 +2016-05-08 00:17:00,20.5175,80.3525,17.38 +2016-05-08 00:32:00,19.8388,80.2475,17.34 +2016-05-08 00:47:00,19.4887,80.1975,17.3 +2016-05-08 01:02:00,20.37,80.1125,17.27 +2016-05-08 01:17:00,18.5225,80.085,17.22 +2016-05-08 01:32:00,20.8937,80.175,17.19 +2016-05-08 01:47:00,21.3937,80.14,17.12 +2016-05-08 02:02:00,20.175,80.205,17.05 +2016-05-08 02:17:00,20.7513,80.33,16.98 +2016-05-08 02:32:00,20.075,80.54,16.91 +2016-05-08 02:47:00,20.2712,80.6325,16.85 +2016-05-08 03:02:00,19.0112,80.7425,16.81 +2016-05-08 03:17:00,18.1413,80.71,16.77 +2016-05-08 03:32:00,20.1237,80.595,16.71 +2016-05-08 03:47:00,19.1987,80.425,16.66 +2016-05-08 04:02:00,18.4313,80.2625,16.63 +2016-05-08 04:17:00,21.4912,80.075,16.51 +2016-05-08 04:32:00,19.7363,80.0225,16.37 +2016-05-08 04:47:00,20.1263,79.9925,16.33 +2016-05-08 05:02:00,20.6562,79.9225,16.36 +2016-05-08 05:17:00,21.785,79.9225,16.4 +2016-05-08 05:32:00,18.57,79.795,16.42 +2016-05-08 05:47:00,21.4375,79.87,16.43 +2016-05-08 06:02:00,20.3688,79.82,16.45 +2016-05-08 06:17:00,19.8375,79.865,16.46 +2016-05-08 06:32:00,20.655,79.8275,16.48 +2016-05-08 06:47:00,18.8175,79.925,16.5 +2016-05-08 07:02:00,20.5125,80.0225,16.52 +2016-05-08 07:17:00,19.3438,80.085,16.55 +2016-05-08 07:32:00,18.9587,80.1275,16.59 +2016-05-08 07:47:00,20.2725,80.21,16.64 +2016-05-08 08:02:00,19.4962,80.2625,16.71 +2016-05-08 08:17:00,20.0713,80.2475,16.78 +2016-05-08 08:32:00,17.94,80.1275,16.82 +2016-05-08 08:47:00,19.4388,80.24,16.85 +2016-05-08 09:02:00,21.29,80.21,16.83 +2016-05-08 09:17:00,18.52,80.3825,16.83 +2016-05-08 09:32:00,18.6663,80.4675,16.88 +2016-05-08 09:47:00,19.3962,80.5825,16.91 +2016-05-08 10:02:00,19.5462,80.565,16.98 +2016-05-08 10:17:00,21.3388,80.46,17.05 +2016-05-08 10:32:00,19.2937,80.4325,17.13 +2016-05-08 10:47:00,19.105,80.4075,17.17 +2016-05-08 11:02:00,20.9388,80.265,17.24 +2016-05-08 11:17:00,20.4662,80.125,17.29 +2016-05-08 11:32:00,18.7663,79.9375,17.32 +2016-05-08 11:47:00,19.8838,79.885,17.37 +2016-05-08 12:02:00,19.54,79.7725,17.42 +2016-05-08 12:17:00,19.735,79.775,17.47 +2016-05-08 12:32:00,18.3737,79.6575,17.52 +2016-05-08 12:47:00,19.835,79.475,17.53 +2016-05-08 13:02:00,20.2175,79.675,17.56 +2016-05-08 13:17:00,21.3887,79.735,17.55 +2016-05-08 13:32:00,19.8388,79.93,17.58 +2016-05-08 13:47:00,20.8512,80.0775,17.57 +2016-05-08 14:02:00,17.7937,80.075,17.58 +2016-05-08 14:17:00,20.4163,79.96,17.62 +2016-05-08 14:32:00,19.64,79.87,17.6 +2016-05-08 14:47:00,19.39,79.885,17.66 +2016-05-08 15:02:00,21.5362,79.59,17.73 +2016-05-08 15:17:00,19.2462,79.4725,17.78 +2016-05-08 15:32:00,17.695,79.425,17.8 +2016-05-08 15:47:00,20.845,79.11,17.82 +2016-05-08 16:02:00,18.8613,79.0575,17.83 +2016-05-08 16:17:00,18.7663,78.8275,17.88 +2016-05-08 16:32:00,19.9775,78.755,17.91 +2016-05-08 16:47:00,19.6875,78.695,17.92 +2016-05-08 17:02:00,21.0413,78.695,17.94 +2016-05-08 17:17:00,19.2525,78.735,17.96 +2016-05-08 17:32:00,18.8175,78.7925,18.01 +2016-05-08 17:47:00,20.7962,78.83,18.03 +2016-05-08 18:02:00,19.4938,79.005,18.03 +2016-05-08 18:17:00,19.2462,79.175,18.03 +2016-05-08 18:32:00,20.705,79.1725,18.04 +2016-05-08 18:47:00,19.1087,79.155,18.06 +2016-05-08 19:02:00,20.4638,79.0325,18.07 +2016-05-08 19:17:00,20.6162,78.915,18.08 +2016-05-08 19:32:00,19.79,78.8325,18.11 +2016-05-08 19:47:00,21.835,78.775,18.13 +2016-05-08 20:02:00,19.0125,78.6975,18.13 +2016-05-08 20:17:00,20.9425,78.55,18.15 +2016-05-08 20:32:00,21.3438,78.4775,18.16 +2016-05-08 20:47:00,18.6175,78.4125,18.16 +2016-05-08 21:02:00,19.395,78.3825,18.19 +2016-05-08 21:17:00,21.1937,78.2975,18.22 +2016-05-08 21:32:00,21.485,78.2775,18.25 +2016-05-08 21:47:00,21.0413,78.2875,18.26 +2016-05-08 22:02:00,20.7962,78.195,18.26 +2016-05-08 22:17:00,22.1263,78.23,18.26 +2016-05-08 22:32:00,20.8463,78.2475,18.26 +2016-05-08 22:47:00,17.795,78.42,18.26 +2016-05-08 23:02:00,18.3337,78.4925,18.25 +2016-05-08 23:17:00,20.9463,78.6975,18.23 +2016-05-08 23:32:00,19.8363,78.895,18.2 +2016-05-08 23:47:00,21.0437,78.795,18.15 +2016-05-09 00:02:00,20.0713,78.72,18.11 +2016-05-09 00:17:00,21.6862,78.6325,18.08 +2016-05-09 00:32:00,20.75,78.475,18.03 +2016-05-09 00:47:00,17.5987,78.425,18.0 +2016-05-09 01:02:00,19.205,78.2475,17.95 +2016-05-09 01:17:00,22.2687,78.295,17.91 +2016-05-09 01:32:00,18.525,78.2175,17.86 +2016-05-09 01:47:00,19.1537,78.18,17.83 +2016-05-09 02:02:00,18.96,78.155,17.78 +2016-05-09 02:17:00,20.4675,78.08,17.74 +2016-05-09 02:32:00,21.7312,78.1375,17.69 +2016-05-09 02:47:00,19.6425,78.1025,17.65 +2016-05-09 03:02:00,21.9337,78.0725,17.59 +2016-05-09 03:17:00,19.4912,78.0525,17.56 +2016-05-09 03:32:00,21.6312,78.0425,17.51 +2016-05-09 03:47:00,21.3425,78.0175,17.47 +2016-05-09 04:02:00,19.8375,78.0175,17.44 +2016-05-09 04:17:00,22.4062,77.9225,17.41 +2016-05-09 04:32:00,21.9313,77.99,17.39 +2016-05-09 04:47:00,18.7712,77.9725,17.35 +2016-05-09 05:02:00,19.345,77.955,17.35 +2016-05-09 05:17:00,19.34,78.04,17.37 +2016-05-09 05:32:00,20.9875,78.0225,17.4 +2016-05-09 05:47:00,20.4163,78.15,17.43 +2016-05-09 06:02:00,20.1212,78.2275,17.47 +2016-05-09 06:17:00,21.6312,78.3625,17.47 +2016-05-09 06:32:00,20.9437,78.345,17.48 +2016-05-09 06:47:00,18.9675,78.355,17.5 +2016-05-09 07:02:00,18.8138,78.385,17.53 +2016-05-09 07:17:00,20.4163,78.385,17.57 +2016-05-09 07:32:00,19.5888,78.305,17.62 +2016-05-09 07:47:00,20.75,78.11,17.66 +2016-05-09 08:02:00,20.94,78.17,17.72 +2016-05-09 08:17:00,21.885,78.34,17.77 +2016-05-09 08:32:00,21.8862,78.4,17.82 +2016-05-09 08:47:00,20.5163,78.485,17.87 +2016-05-09 09:02:00,22.6525,78.575,17.93 +2016-05-09 09:17:00,20.9463,78.5925,17.99 +2016-05-09 09:32:00,18.1375,78.655,18.03 +2016-05-09 09:47:00,19.8325,78.625,18.06 +2016-05-09 10:02:00,20.27,78.7425,18.12 +2016-05-09 10:17:00,21.44,78.805,18.15 +2016-05-09 10:32:00,18.525,79.1225,18.19 +2016-05-09 10:47:00,20.3737,79.2975,18.27 +2016-05-09 11:02:00,22.4587,79.42,18.32 +2016-05-09 11:17:00,20.94,79.58,18.35 +2016-05-09 11:32:00,18.7675,79.8375,18.39 +2016-05-09 11:47:00,20.5625,80.08,18.42 +2016-05-09 12:02:00,19.98,80.36,18.47 +2016-05-09 12:17:00,22.2225,80.53,18.48 +2016-05-09 12:32:00,21.2438,80.4925,18.45 +2016-05-09 12:47:00,22.8962,80.46,18.47 +2016-05-09 13:02:00,20.465,80.2675,18.43 +2016-05-09 13:17:00,21.7325,80.0925,18.44 +2016-05-09 13:32:00,20.6075,79.9275,18.43 +2016-05-09 13:47:00,20.4163,79.5425,18.42 +2016-05-09 14:02:00,22.0812,79.2075,18.47 +2016-05-09 14:17:00,21.1462,79.0,18.54 +2016-05-09 14:32:00,21.0963,78.8425,18.67 +2016-05-09 14:47:00,20.5112,78.4675,18.72 +2016-05-09 15:02:00,20.4163,78.285,18.71 +2016-05-09 15:17:00,21.29,78.025,18.69 +2016-05-09 15:32:00,19.9788,77.93,18.71 +2016-05-09 15:47:00,20.415,77.79,18.77 +2016-05-09 16:02:00,20.7988,77.67,18.78 +2016-05-09 16:17:00,20.9925,77.54,18.78 +2016-05-09 16:32:00,20.7062,77.4425,18.8 +2016-05-09 16:47:00,20.7988,77.475,18.79 +2016-05-09 17:02:00,20.0713,77.34,18.81 +2016-05-09 17:17:00,21.8838,77.2475,18.83 +2016-05-09 17:32:00,22.1263,77.3225,18.86 +2016-05-09 17:47:00,22.0263,77.4325,18.87 +2016-05-09 18:02:00,20.565,77.5975,18.87 +2016-05-09 18:17:00,19.3475,77.825,18.87 +2016-05-09 18:32:00,21.345,78.0275,18.91 +2016-05-09 18:47:00,21.34,78.19,18.95 +2016-05-09 19:02:00,20.5112,78.2,18.95 +2016-05-09 19:17:00,20.9887,78.0925,18.94 +2016-05-09 19:32:00,21.0462,78.0725,18.94 +2016-05-09 19:47:00,20.945,77.9425,18.96 +2016-05-09 20:02:00,19.2025,77.95,18.96 +2016-05-09 20:17:00,21.045,77.855,18.98 +2016-05-09 20:32:00,18.8187,77.78,18.98 +2016-05-09 20:47:00,20.99,77.795,19.0 +2016-05-09 21:02:00,19.4388,77.7375,19.02 +2016-05-09 21:17:00,20.415,77.7025,19.03 +2016-05-09 21:32:00,21.3425,77.69,19.06 +2016-05-09 21:47:00,19.89,77.5925,19.05 +2016-05-09 22:02:00,18.9688,77.6675,19.05 +2016-05-09 22:17:00,20.565,77.615,19.07 +2016-05-09 22:32:00,21.7825,77.6525,19.05 +2016-05-09 22:47:00,22.6562,77.6175,19.05 +2016-05-09 23:02:00,20.2763,77.6475,19.03 +2016-05-09 23:17:00,21.8875,77.565,19.03 +2016-05-09 23:32:00,20.6137,77.545,19.02 +2016-05-09 23:47:00,21.14,77.5075,19.0 +2016-05-10 00:02:00,21.6875,77.4775,18.99 +2016-05-10 00:17:00,18.6675,77.41,18.97 +2016-05-10 00:32:00,19.93,77.3875,18.93 +2016-05-10 00:47:00,22.8,77.34,18.9 +2016-05-10 01:02:00,21.9287,77.24,18.86 +2016-05-10 01:17:00,21.3425,77.24,18.83 +2016-05-10 01:32:00,21.49,77.2175,18.77 +2016-05-10 01:47:00,20.5175,77.28,18.72 +2016-05-10 02:02:00,20.2738,77.2825,18.66 +2016-05-10 02:17:00,22.0788,77.3325,18.6 +2016-05-10 02:32:00,20.6125,77.3125,18.57 +2016-05-10 02:47:00,22.5075,77.2925,18.51 +2016-05-10 03:02:00,21.0437,77.3425,18.48 +2016-05-10 03:17:00,21.7838,77.4725,18.42 +2016-05-10 03:32:00,21.1975,77.6575,18.37 +2016-05-10 03:47:00,22.7087,77.8175,18.33 +2016-05-10 04:02:00,20.2225,77.825,18.3 +2016-05-10 04:17:00,21.5863,77.715,18.26 +2016-05-10 04:32:00,22.315,77.6475,18.22 +2016-05-10 04:47:00,22.945,77.5575,18.2 +2016-05-10 05:02:00,20.9425,77.3575,18.18 +2016-05-10 05:17:00,20.755,77.3225,18.2 +2016-05-10 05:32:00,23.0413,77.2525,18.21 +2016-05-10 05:47:00,20.8475,77.2525,18.23 +2016-05-10 06:02:00,23.3275,77.205,18.26 +2016-05-10 06:17:00,21.585,77.2075,18.27 +2016-05-10 06:32:00,21.39,77.1025,18.32 +2016-05-10 06:47:00,20.8913,77.225,18.4 +2016-05-10 07:02:00,22.2188,77.215,18.47 +2016-05-10 07:17:00,23.965,77.2375,18.52 +2016-05-10 07:32:00,20.3712,77.3425,18.56 +2016-05-10 07:47:00,23.38,77.3525,18.61 +2016-05-10 08:02:00,21.3913,77.4375,18.67 +2016-05-10 08:17:00,20.5125,77.365,18.73 +2016-05-10 08:32:00,20.6975,77.3225,18.77 +2016-05-10 08:47:00,23.8637,77.26,18.79 +2016-05-10 09:02:00,21.9812,77.0875,18.83 +2016-05-10 09:17:00,21.2975,76.97,18.89 +2016-05-10 09:32:00,21.785,77.04,18.95 +2016-05-10 09:47:00,20.94,76.9275,19.0 +2016-05-10 10:02:00,21.3937,76.99,19.05 +2016-05-10 10:17:00,21.0938,76.935,19.08 +2016-05-10 10:32:00,23.9625,76.9725,19.12 +2016-05-10 10:47:00,23.23,76.7725,19.15 +2016-05-10 11:02:00,20.755,76.7325,19.2 +2016-05-10 11:17:00,20.3275,76.6775,19.21 +2016-05-10 11:32:00,20.94,76.6975,19.25 +2016-05-10 11:47:00,20.99,76.5875,19.29 +2016-05-10 12:02:00,22.2175,76.5775,19.32 +2016-05-10 12:17:00,21.8337,76.5575,19.34 +2016-05-10 12:32:00,22.8025,76.585,19.33 +2016-05-10 12:47:00,20.1687,76.495,19.34 +2016-05-10 13:02:00,19.8875,76.5875,19.32 +2016-05-10 13:17:00,20.2725,76.48,19.31 +2016-05-10 13:32:00,22.3125,76.54,19.36 +2016-05-10 13:47:00,22.8487,76.375,19.38 +2016-05-10 14:02:00,20.6125,76.385,19.38 +2016-05-10 14:17:00,20.7012,76.3675,19.37 +2016-05-10 14:32:00,20.7962,76.31,19.38 +2016-05-10 14:47:00,22.08,76.2175,19.39 +2016-05-10 15:02:00,22.9962,76.16,19.39 +2016-05-10 15:17:00,21.4425,76.22,19.41 +2016-05-10 15:32:00,19.84,76.0125,19.41 +2016-05-10 15:47:00,23.5238,76.0975,19.39 +2016-05-10 16:02:00,22.8988,75.9625,19.38 +2016-05-10 16:17:00,22.5075,75.8825,19.35 +2016-05-10 16:32:00,21.5837,75.9225,19.35 +2016-05-10 16:47:00,19.1087,76.0075,19.35 +2016-05-10 17:02:00,21.4037,76.0575,19.34 +2016-05-10 17:17:00,20.3675,76.065,19.35 +2016-05-10 17:32:00,22.7537,76.1275,19.38 +2016-05-10 17:47:00,20.9887,76.275,19.43 +2016-05-10 18:02:00,23.0888,76.3975,19.42 +2016-05-10 18:17:00,23.7725,76.575,19.42 +2016-05-10 18:32:00,20.0263,76.6375,19.45 +2016-05-10 18:47:00,22.175,76.7975,19.48 +2016-05-10 19:02:00,19.8913,76.925,19.44 +2016-05-10 19:17:00,23.7712,76.93,19.27 +2016-05-10 19:32:00,22.8988,76.845,19.31 +2016-05-10 19:47:00,23.77,76.8325,19.39 +2016-05-10 20:02:00,20.515,76.77,19.44 +2016-05-10 20:17:00,22.8525,76.55,19.47 +2016-05-10 20:32:00,22.4187,76.4725,19.49 +2016-05-10 20:47:00,22.855,76.295,19.51 +2016-05-10 21:02:00,22.4137,76.245,19.52 +2016-05-10 21:17:00,21.6875,76.2275,19.46 +2016-05-10 21:32:00,20.515,76.1475,19.38 +2016-05-10 21:47:00,23.4812,76.2225,19.35 +2016-05-10 22:02:00,20.565,76.1375,19.36 +2016-05-10 22:17:00,23.7738,76.0875,19.39 +2016-05-10 22:32:00,22.9062,75.9675,19.4 +2016-05-10 22:47:00,21.295,75.9125,19.41 +2016-05-10 23:02:00,23.0888,75.845,19.4 +2016-05-10 23:17:00,23.1837,75.7575,19.39 +2016-05-10 23:32:00,23.4337,75.66,19.39 +2016-05-10 23:47:00,23.1375,75.5925,19.38 +2016-05-11 00:02:00,22.3112,75.3525,19.37 +2016-05-11 00:17:00,23.7725,75.26,19.34 +2016-05-11 00:32:00,22.9538,75.2,19.3 +2016-05-11 00:47:00,24.47,75.2575,19.27 +2016-05-11 01:02:00,21.2438,75.275,19.24 +2016-05-11 01:17:00,21.095,75.42,19.2 +2016-05-11 01:32:00,24.66,75.51,19.15 +2016-05-11 01:47:00,23.1837,75.515,19.09 +2016-05-11 02:02:00,22.7513,75.51,19.04 +2016-05-11 02:17:00,23.045,75.3425,18.98 +2016-05-11 02:32:00,22.755,75.3225,18.93 +2016-05-11 02:47:00,22.4587,75.165,18.87 +2016-05-11 03:02:00,23.0875,75.145,18.82 +2016-05-11 03:17:00,22.2275,75.045,18.78 +2016-05-11 03:32:00,20.9425,74.9125,18.73 +2016-05-11 03:47:00,20.8438,74.915,18.68 +2016-05-11 04:02:00,21.8825,74.865,18.64 +2016-05-11 04:17:00,25.0112,74.81,18.58 +2016-05-11 04:32:00,20.0287,74.7525,18.56 +2016-05-11 04:47:00,21.5325,74.8275,18.52 +2016-05-11 05:02:00,22.6062,74.6725,18.51 +2016-05-11 05:17:00,20.7487,74.7625,18.51 +2016-05-11 05:32:00,21.9812,74.8975,18.52 +2016-05-11 05:47:00,24.6612,74.9375,18.53 +2016-05-11 06:02:00,21.6413,74.95,18.56 +2016-05-11 06:17:00,20.8475,75.01,18.6 +2016-05-11 06:32:00,23.23,74.99,18.65 +2016-05-11 06:47:00,21.6862,74.8825,18.68 +2016-05-11 07:02:00,23.2787,74.85,18.72 +2016-05-11 07:17:00,21.0938,74.9775,18.77 +2016-05-11 07:32:00,21.63,74.88,18.85 +2016-05-11 07:47:00,23.6225,74.715,18.9 +2016-05-11 08:02:00,24.265,74.6675,18.95 +2016-05-11 08:17:00,22.7075,74.6525,19.01 +2016-05-11 08:32:00,22.8487,74.585,19.07 +2016-05-11 08:47:00,20.5137,74.6225,19.15 +2016-05-11 09:02:00,21.93,74.515,19.21 +2016-05-11 09:17:00,23.7712,74.3875,19.25 +2016-05-11 09:32:00,21.8337,74.2725,19.3 +2016-05-11 09:47:00,22.0812,74.325,19.35 +2016-05-11 10:02:00,22.6113,74.42,19.4 +2016-05-11 10:17:00,25.2062,74.15,19.46 +2016-05-11 10:32:00,21.5325,74.0275,19.48 +2016-05-11 10:47:00,20.8425,73.925,19.46 +2016-05-11 11:02:00,22.3138,73.8025,19.51 +2016-05-11 11:17:00,21.7838,73.615,19.61 +2016-05-11 11:32:00,23.0875,73.5425,19.67 +2016-05-11 11:47:00,20.8975,73.615,19.7 +2016-05-11 12:02:00,23.4812,73.545,19.71 +2016-05-11 12:17:00,22.8487,73.81,19.71 +2016-05-11 12:32:00,20.27,73.935,19.74 +2016-05-11 12:47:00,22.9487,74.145,19.76 +2016-05-11 13:02:00,21.19,74.36,19.78 +2016-05-11 13:17:00,20.7487,74.685,19.79 +2016-05-11 13:32:00,20.2162,74.9425,19.81 +2016-05-11 13:47:00,24.8112,75.025,19.79 +2016-05-11 14:02:00,25.7462,75.405,19.77 +2016-05-11 14:17:00,23.0,75.525,19.76 +2016-05-11 14:32:00,24.21,75.8575,19.72 +2016-05-11 14:47:00,24.6087,76.0475,19.68 +2016-05-11 15:02:00,23.53,76.265,19.65 +2016-05-11 15:17:00,22.95,76.305,19.62 +2016-05-11 15:32:00,23.1362,76.3375,19.57 +2016-05-11 15:47:00,24.315,76.37,19.47 +2016-05-11 16:02:00,22.8962,76.5175,19.4 +2016-05-11 16:17:00,23.1862,76.31,19.42 +2016-05-11 16:32:00,20.8937,76.365,19.47 +2016-05-11 16:47:00,24.265,76.2425,19.46 +2016-05-11 17:02:00,21.7875,76.0375,19.45 +2016-05-11 17:17:00,23.1362,75.88,19.46 +2016-05-11 17:32:00,22.8125,75.6325,19.49 +2016-05-11 17:47:00,21.985,75.26,19.54 +2016-05-11 18:02:00,22.95,74.96,19.57 +2016-05-11 18:17:00,23.28,74.62,19.59 +2016-05-11 18:32:00,21.685,74.265,19.44 +2016-05-11 18:47:00,24.415,73.9675,19.34 +2016-05-11 19:02:00,23.38,73.74,19.34 +2016-05-11 19:17:00,21.5338,73.5575,19.39 +2016-05-11 19:32:00,22.855,73.39,19.56 +2016-05-11 19:47:00,26.6212,73.2425,19.66 +2016-05-11 20:02:00,22.4088,73.1725,19.74 +2016-05-11 20:17:00,22.1787,72.8825,19.78 +2016-05-11 20:32:00,20.47,72.6975,19.81 +2016-05-11 20:47:00,23.6275,72.4475,19.84 +2016-05-11 21:02:00,22.4638,72.2625,19.87 +2016-05-11 21:17:00,25.4075,72.1475,19.9 +2016-05-11 21:32:00,22.6612,72.0025,19.92 +2016-05-11 21:47:00,21.6875,72.0525,19.92 +2016-05-11 22:02:00,22.9962,72.115,19.91 +2016-05-11 22:17:00,22.3162,72.2225,19.91 +2016-05-11 22:32:00,23.6263,72.3075,19.91 +2016-05-11 22:47:00,26.1825,72.5525,19.91 +2016-05-11 23:02:00,23.33,72.77,19.91 +2016-05-11 23:17:00,22.2712,73.01,19.89 +2016-05-11 23:32:00,24.47,73.235,19.86 +2016-05-11 23:47:00,21.8337,73.41,19.83 +2016-05-12 00:02:00,23.28,73.6525,19.8 +2016-05-12 00:17:00,24.4125,73.8725,19.78 +2016-05-12 00:32:00,22.4613,74.1,19.73 +2016-05-12 00:47:00,23.4337,74.31,19.69 +2016-05-12 01:02:00,23.9613,74.385,19.64 +2016-05-12 01:17:00,22.8538,74.5525,19.59 +2016-05-12 01:32:00,24.31,74.62,19.53 +2016-05-12 01:47:00,22.27,74.7175,19.48 +2016-05-12 02:02:00,25.94,74.795,19.42 +2016-05-12 02:17:00,24.2113,74.8825,19.36 +2016-05-12 02:32:00,23.285,74.8825,19.3 +2016-05-12 02:47:00,22.0762,74.9275,19.24 +2016-05-12 03:02:00,24.6162,74.97,19.19 +2016-05-12 03:17:00,22.6612,75.06,19.14 +2016-05-12 03:32:00,24.465,75.155,19.08 +2016-05-12 03:47:00,24.115,75.165,19.03 +2016-05-12 04:02:00,25.8438,75.14,18.99 +2016-05-12 04:17:00,23.7738,75.135,18.96 +2016-05-12 04:32:00,24.415,75.185,18.92 +2016-05-12 04:47:00,24.0625,75.105,18.89 +2016-05-12 05:02:00,23.485,74.9825,18.87 +2016-05-12 05:17:00,22.905,75.245,18.86 +2016-05-12 05:32:00,25.015,75.4025,18.87 +2016-05-12 05:47:00,24.465,75.4725,18.87 +2016-05-12 06:02:00,22.9512,75.5625,18.87 +2016-05-12 06:17:00,25.99,75.605,18.88 +2016-05-12 06:32:00,24.365,75.6475,18.91 +2016-05-12 06:47:00,21.9362,75.5525,18.96 +2016-05-12 07:02:00,22.1762,75.51,18.97 +2016-05-12 07:17:00,22.8988,75.3125,18.99 +2016-05-12 07:32:00,23.2363,75.3275,19.03 +2016-05-12 07:47:00,25.545,75.185,19.07 +2016-05-12 08:02:00,23.0425,75.31,19.14 +2016-05-12 08:17:00,23.8175,75.1225,19.19 +2016-05-12 08:32:00,24.6113,75.0925,19.22 +2016-05-12 08:47:00,24.7137,75.0675,19.14 +2016-05-12 09:02:00,24.8112,75.165,19.12 +2016-05-12 09:17:00,25.3562,75.0275,19.16 +2016-05-12 09:32:00,23.5287,74.995,19.2 +2016-05-12 09:47:00,23.96,75.0225,19.24 +2016-05-12 10:02:00,21.3412,75.125,19.3 +2016-05-12 10:17:00,25.0612,75.1025,19.33 +2016-05-12 10:32:00,25.4037,75.11,19.38 +2016-05-12 10:47:00,24.965,75.15,19.42 +2016-05-12 11:02:00,24.3637,75.13,19.46 +2016-05-12 11:17:00,24.4625,75.0975,19.52 +2016-05-12 11:32:00,26.4713,75.0525,19.52 +2016-05-12 11:47:00,24.9662,75.06,19.56 +2016-05-12 12:02:00,24.4125,75.0475,19.62 +2016-05-12 12:17:00,21.4412,75.1275,19.67 +2016-05-12 12:32:00,22.8538,74.9825,19.7 +2016-05-12 12:47:00,26.4762,74.98,19.65 +2016-05-12 13:02:00,23.9163,74.94,19.56 +2016-05-12 13:17:00,26.7738,74.7875,19.56 +2016-05-12 13:32:00,24.36,74.745,19.6 +2016-05-12 13:47:00,26.325,74.635,19.59 +2016-05-12 14:02:00,27.3138,74.625,19.48 +2016-05-12 14:17:00,24.6137,74.475,19.39 +2016-05-12 14:32:00,25.2137,74.285,19.38 +2016-05-12 14:47:00,26.2288,74.17,19.39 +2016-05-12 15:02:00,25.4962,73.945,19.32 +2016-05-12 15:17:00,24.0125,73.8775,19.29 +2016-05-12 15:32:00,23.675,73.7425,19.24 +2016-05-12 15:47:00,25.545,73.685,19.27 +2016-05-12 16:02:00,25.7438,73.6175,19.24 +2016-05-12 16:17:00,26.7225,73.43,19.19 +2016-05-12 16:32:00,25.0625,73.4325,19.18 +2016-05-12 16:47:00,25.3075,73.16,19.17 +2016-05-12 17:02:00,26.0413,73.14,19.17 +2016-05-12 17:17:00,24.4637,73.0275,19.15 +2016-05-12 17:32:00,23.9163,72.885,19.15 +2016-05-12 17:47:00,23.8637,72.8475,19.14 +2016-05-12 18:02:00,24.3637,72.695,19.15 +2016-05-12 18:17:00,24.5187,72.5325,19.15 +2016-05-12 18:32:00,23.3825,72.5075,19.16 +2016-05-12 18:47:00,27.3125,72.4675,19.17 +2016-05-12 19:02:00,29.5338,72.3775,19.19 +2016-05-12 19:17:00,24.7087,72.3875,19.22 +2016-05-12 19:32:00,26.6275,72.3575,19.24 +2016-05-12 19:47:00,24.8112,72.49,19.27 +2016-05-12 20:02:00,25.2137,72.615,19.29 +2016-05-12 20:17:00,22.3262,72.795,19.32 +2016-05-12 20:32:00,25.0612,72.9275,19.35 +2016-05-12 20:47:00,26.6738,73.095,19.38 +2016-05-12 21:02:00,25.1113,73.0525,19.39 +2016-05-12 21:17:00,24.4625,73.09,19.4 +2016-05-12 21:32:00,25.94,73.055,19.4 +2016-05-12 21:47:00,25.3575,73.0475,19.4 +2016-05-12 22:02:00,25.895,73.0125,19.4 +2016-05-12 22:17:00,24.7637,73.035,19.39 +2016-05-12 22:32:00,24.5137,72.93,19.39 +2016-05-12 22:47:00,26.375,73.045,19.39 +2016-05-12 23:02:00,25.405,73.0025,19.38 +2016-05-12 23:17:00,26.135,73.055,19.36 +2016-05-12 23:32:00,27.0612,73.03,19.34 +2016-05-12 23:47:00,24.47,73.0125,19.32 +2016-05-13 00:02:00,25.6012,73.0175,19.31 +2016-05-13 00:17:00,25.7487,73.0975,19.3 +2016-05-13 00:32:00,25.7925,73.1125,19.29 +2016-05-13 00:47:00,25.9912,73.075,19.29 +2016-05-13 01:02:00,26.3237,73.09,19.25 +2016-05-13 01:17:00,26.3262,73.085,19.24 +2016-05-13 01:32:00,25.9425,73.1675,19.23 +2016-05-13 01:47:00,26.1375,73.1075,19.22 +2016-05-13 02:02:00,25.8012,73.1275,19.2 +2016-05-13 02:17:00,25.21,73.095,19.18 +2016-05-13 02:32:00,26.475,73.1275,19.15 +2016-05-13 02:47:00,26.825,73.175,19.11 +2016-05-13 03:02:00,25.9425,73.1425,19.08 +2016-05-13 03:17:00,27.2625,73.14,19.05 +2016-05-13 03:32:00,26.6237,73.155,19.02 +2016-05-13 03:47:00,25.02,73.2725,18.98 +2016-05-13 04:02:00,26.0462,73.215,18.94 +2016-05-13 04:17:00,26.2775,73.2775,18.9 +2016-05-13 04:32:00,25.89,73.2525,18.87 +2016-05-13 04:47:00,25.7487,73.265,18.83 +2016-05-13 05:02:00,27.1113,73.29,18.81 +2016-05-13 05:17:00,26.7188,73.325,18.8 +2016-05-13 05:32:00,26.2812,73.46,18.76 +2016-05-13 05:47:00,27.2625,73.48,18.78 +2016-05-13 06:02:00,25.6937,73.6125,18.79 +2016-05-13 06:17:00,27.1625,73.6975,18.76 +2016-05-13 06:32:00,26.1813,73.83,18.76 +2016-05-13 06:47:00,27.67,73.995,18.77 +2016-05-13 07:02:00,27.5175,74.075,18.82 +2016-05-13 07:17:00,26.8213,74.0525,18.87 +2016-05-13 07:32:00,28.2675,73.955,18.89 +2016-05-13 07:47:00,26.5775,74.065,18.93 +2016-05-13 08:02:00,27.2625,73.9275,19.0 +2016-05-13 08:17:00,26.5212,73.87,19.08 +2016-05-13 08:32:00,28.1663,73.805,19.02 +2016-05-13 08:47:00,30.0775,73.78,18.97 +2016-05-13 09:02:00,28.1687,73.645,19.07 +2016-05-13 09:17:00,28.3187,73.6425,19.15 +2016-05-13 09:32:00,27.915,73.76,19.23 +2016-05-13 09:47:00,29.0587,73.77,19.27 +2016-05-13 10:02:00,26.0925,73.7175,19.31 +2016-05-13 10:17:00,28.2663,73.825,19.35 +2016-05-13 10:32:00,27.315,73.715,19.4 +2016-05-13 10:47:00,25.745,73.7025,19.46 +2016-05-13 11:02:00,28.1175,73.7475,19.51 +2016-05-13 11:17:00,28.9088,73.9675,19.54 +2016-05-13 11:32:00,27.415,74.145,19.56 +2016-05-13 11:47:00,27.5125,74.495,19.53 +2016-05-13 12:02:00,27.5137,74.9025,19.53 +2016-05-13 12:17:00,27.2625,75.4825,19.52 +2016-05-13 12:32:00,27.565,76.0775,19.51 +2016-05-13 12:47:00,27.5137,76.4325,19.48 +2016-05-13 13:02:00,27.4675,76.86,19.43 +2016-05-13 13:17:00,29.635,77.3725,19.39 +2016-05-13 13:32:00,28.8063,77.56,19.36 +2016-05-13 13:47:00,27.8587,77.695,19.3 +2016-05-13 14:02:00,27.8125,77.73,19.27 +2016-05-13 14:17:00,27.7175,77.7625,19.23 +2016-05-13 14:32:00,27.0675,77.7475,19.18 +2016-05-13 14:47:00,29.0037,77.655,19.14 +2016-05-13 15:02:00,30.6675,77.565,19.09 +2016-05-13 15:17:00,27.065,77.52,19.05 +2016-05-13 15:32:00,30.6137,77.4925,19.01 +2016-05-13 15:47:00,29.1525,77.4275,18.98 +2016-05-13 16:02:00,26.7738,77.515,18.96 +2016-05-13 16:17:00,28.265,77.5275,18.95 +2016-05-13 16:32:00,29.435,77.4475,18.93 +2016-05-13 16:47:00,28.1675,77.5775,18.93 +2016-05-13 17:02:00,28.7087,77.6325,18.93 +2016-05-13 17:17:00,29.7862,77.6075,18.95 +2016-05-13 17:32:00,27.7188,77.5025,18.96 +2016-05-13 17:47:00,29.2475,77.655,18.99 +2016-05-13 18:02:00,28.165,77.545,19.01 +2016-05-13 18:17:00,28.8012,77.55,19.02 +2016-05-13 18:32:00,26.92,77.355,19.05 +2016-05-13 18:47:00,28.7575,77.315,19.09 +2016-05-13 19:02:00,28.52,77.2275,19.12 +2016-05-13 19:17:00,29.0062,76.965,19.14 +2016-05-13 19:32:00,27.6687,77.0125,19.15 +2016-05-13 19:47:00,28.515,76.795,19.17 +2016-05-13 20:02:00,29.39,76.7275,19.21 +2016-05-13 20:17:00,30.1687,76.5825,19.24 +2016-05-13 20:32:00,28.5137,76.5775,19.26 +2016-05-13 20:47:00,31.2537,76.345,19.28 +2016-05-13 21:02:00,28.8063,76.215,19.31 +2016-05-13 21:17:00,29.3925,76.12,19.32 +2016-05-13 21:32:00,29.63,75.9,19.34 +2016-05-13 21:47:00,30.95,75.815,19.34 +2016-05-13 22:02:00,29.15,75.68,19.34 +2016-05-13 22:17:00,29.4837,75.77,19.34 +2016-05-13 22:32:00,28.6087,75.805,19.33 +2016-05-13 22:47:00,28.9137,75.8175,19.31 +2016-05-13 23:02:00,31.4525,75.7325,19.28 +2016-05-13 23:17:00,29.5863,75.6075,19.26 +2016-05-13 23:32:00,29.8325,75.5175,19.24 +2016-05-13 23:47:00,29.105,75.39,19.2 +2016-05-14 00:02:00,29.485,75.3,19.16 +2016-05-14 00:17:00,27.1625,75.0425,19.13 +2016-05-14 00:32:00,30.6162,75.01,19.08 +2016-05-14 00:47:00,29.3425,74.8275,19.04 +2016-05-14 01:02:00,30.7087,74.77,18.97 +2016-05-14 01:17:00,30.6113,74.73,18.9 +2016-05-14 01:32:00,29.8312,74.5175,18.86 +2016-05-14 01:47:00,28.96,74.3375,18.77 +2016-05-14 02:02:00,30.4125,74.295,18.69 +2016-05-14 02:17:00,30.1188,74.13,18.61 +2016-05-14 02:32:00,31.5525,74.05,18.54 +2016-05-14 02:47:00,31.0037,74.0175,18.49 +2016-05-14 03:02:00,32.0938,73.91,18.41 +2016-05-14 03:17:00,29.4825,73.895,18.34 +2016-05-14 03:32:00,30.5587,73.9025,18.27 +2016-05-14 03:47:00,28.2162,73.9225,18.21 +2016-05-14 04:02:00,29.3425,73.97,18.15 +2016-05-14 04:17:00,28.7075,73.9275,18.09 +2016-05-14 04:32:00,28.515,73.9525,18.04 +2016-05-14 04:47:00,31.6537,73.8775,17.97 +2016-05-14 05:02:00,31.4975,73.945,17.92 +2016-05-14 05:17:00,30.8063,73.9425,17.89 +2016-05-14 05:32:00,31.7425,73.935,17.84 +2016-05-14 05:47:00,29.7275,73.825,17.78 +2016-05-14 06:02:00,29.5775,73.7925,17.77 +2016-05-14 06:17:00,29.8312,73.6825,17.73 +2016-05-14 06:32:00,30.7625,73.7575,17.68 +2016-05-14 06:47:00,29.8775,73.7025,17.65 +2016-05-14 07:02:00,32.1925,73.735,17.59 +2016-05-14 07:17:00,30.4125,73.79,17.58 +2016-05-14 07:32:00,30.3125,73.8275,17.58 +2016-05-14 07:47:00,29.3838,73.835,17.56 +2016-05-14 08:02:00,30.2612,73.89,17.57 +2016-05-14 08:17:00,29.44,73.7625,17.59 +2016-05-14 08:32:00,31.2513,73.755,17.65 +2016-05-14 08:47:00,29.5325,73.66,17.66 +2016-05-14 09:02:00,29.385,73.645,17.65 +2016-05-14 09:17:00,29.4825,73.5875,17.67 +2016-05-14 09:32:00,30.265,73.6125,17.66 +2016-05-14 09:47:00,29.1987,73.545,17.66 +2016-05-14 10:02:00,31.35,73.575,17.58 +2016-05-14 10:17:00,29.055,73.52,17.57 +2016-05-14 10:32:00,30.26,73.555,17.66 +2016-05-14 10:47:00,28.4613,73.4725,17.58 +2016-05-14 11:02:00,30.2625,73.3975,17.53 +2016-05-14 11:17:00,28.41,73.4525,17.47 +2016-05-14 11:32:00,29.5825,73.445,17.46 +2016-05-14 11:47:00,30.9025,73.425,17.46 +2016-05-14 12:02:00,29.0062,73.27,17.37 +2016-05-14 12:17:00,31.6537,73.4675,17.31 +2016-05-14 12:32:00,30.95,73.3525,17.22 +2016-05-14 12:47:00,31.6937,73.2325,17.2 +2016-05-14 13:02:00,29.58,73.3875,17.13 +2016-05-14 13:17:00,29.1975,73.3925,17.06 +2016-05-14 13:32:00,32.77,73.2825,17.11 +2016-05-14 13:47:00,31.0963,73.3225,17.06 +2016-05-14 14:02:00,30.3637,73.3325,16.98 +2016-05-14 14:17:00,28.805,73.3225,16.91 +2016-05-14 14:32:00,32.6775,73.2375,16.81 +2016-05-14 14:47:00,31.145,73.22,16.77 +2016-05-14 15:02:00,30.7562,73.185,16.74 +2016-05-14 15:17:00,31.195,73.2225,16.72 +2016-05-14 15:32:00,29.58,73.33,16.67 +2016-05-14 15:47:00,32.8288,73.525,16.62 +2016-05-14 16:02:00,28.1162,73.8075,16.55 +2016-05-14 16:17:00,30.4088,73.8425,16.51 +2016-05-14 16:32:00,29.5325,73.8375,16.46 +2016-05-14 16:47:00,29.48,73.8525,16.44 +2016-05-14 17:02:00,30.3112,73.7675,16.41 +2016-05-14 17:17:00,31.3962,73.8725,16.4 +2016-05-14 17:32:00,30.705,73.75,16.35 +2016-05-14 17:47:00,31.5987,73.6075,16.37 +2016-05-14 18:02:00,29.4362,73.6125,16.37 +2016-05-14 18:17:00,31.345,73.3825,16.31 +2016-05-14 18:32:00,29.7288,73.4025,16.31 +2016-05-14 18:47:00,30.7562,73.34,16.32 +2016-05-14 19:02:00,32.77,73.315,16.34 +2016-05-14 19:17:00,30.2588,73.35,16.36 +2016-05-14 19:32:00,30.4125,73.3325,16.34 +2016-05-14 19:47:00,31.9425,73.4025,16.32 +2016-05-14 20:02:00,28.1125,73.3525,16.28 +2016-05-14 20:17:00,29.8812,73.3175,16.31 +2016-05-14 20:32:00,31.99,73.3375,16.27 +2016-05-14 20:47:00,31.4487,73.44,16.26 +2016-05-14 21:02:00,30.3587,73.3825,16.24 +2016-05-14 21:17:00,31.1912,73.37,16.22 +2016-05-14 21:32:00,30.95,73.37,16.21 +2016-05-14 21:47:00,30.075,73.2725,16.2 +2016-05-14 22:02:00,30.8525,73.295,16.17 +2016-05-14 22:17:00,29.385,73.31,16.13 +2016-05-14 22:32:00,32.3363,73.245,16.09 +2016-05-14 22:47:00,31.6475,73.3325,16.03 +2016-05-14 23:02:00,31.345,73.33,16.0 +2016-05-14 23:17:00,29.6825,73.335,15.95 +2016-05-14 23:32:00,29.4837,73.3375,15.9 +2016-05-14 23:47:00,33.66,73.4675,15.84 +2016-05-15 00:02:00,28.8525,73.5775,15.8 +2016-05-15 00:17:00,30.9463,73.7225,15.77 +2016-05-15 00:32:00,28.9025,73.82,15.73 +2016-05-15 00:47:00,31.5938,73.995,15.66 +2016-05-15 01:02:00,33.4062,73.9675,15.59 +2016-05-15 01:17:00,31.3,73.915,15.54 +2016-05-15 01:32:00,30.7625,73.8425,15.47 +2016-05-15 01:47:00,32.4325,73.7975,15.41 +2016-05-15 02:02:00,31.6925,73.625,15.37 +2016-05-15 02:17:00,30.3087,73.595,15.33 +2016-05-15 02:32:00,28.555,73.5625,15.28 +2016-05-15 02:47:00,29.7275,73.465,15.25 +2016-05-15 03:02:00,30.4613,73.445,15.2 +2016-05-15 03:17:00,31.8913,73.3875,15.15 +2016-05-15 03:32:00,30.075,73.4675,15.11 +2016-05-15 03:47:00,33.1712,73.3625,15.07 +2016-05-15 04:02:00,30.1663,73.32,15.03 +2016-05-15 04:17:00,30.5088,73.29,15.0 +2016-05-15 04:32:00,30.995,73.3475,14.95 +2016-05-15 04:47:00,33.8025,73.265,14.92 +2016-05-15 05:02:00,32.2887,73.245,14.88 +2016-05-15 05:17:00,31.5462,73.2725,14.86 +2016-05-15 05:32:00,30.2075,73.275,14.83 +2016-05-15 05:47:00,31.1862,73.21,14.82 +2016-05-15 06:02:00,31.4437,73.24,14.79 +2016-05-15 06:17:00,30.3587,73.18,14.77 +2016-05-15 06:32:00,30.4075,73.03,14.77 +2016-05-15 06:47:00,28.7038,73.23,14.78 +2016-05-15 07:02:00,31.9975,73.2525,14.77 +2016-05-15 07:17:00,30.71,73.2775,14.76 +2016-05-15 07:32:00,31.6462,73.3875,14.75 +2016-05-15 07:47:00,31.545,73.3575,14.76 +2016-05-15 08:02:00,29.4812,73.5425,14.78 +2016-05-15 08:17:00,29.875,73.395,14.85 +2016-05-15 08:32:00,32.435,73.4625,14.84 +2016-05-15 08:47:00,30.6625,73.4825,14.85 +2016-05-15 09:02:00,31.3,73.39,14.9 +2016-05-15 09:17:00,31.3962,73.3175,14.85 +2016-05-15 09:32:00,31.095,73.385,14.96 +2016-05-15 09:47:00,32.04,73.365,14.91 +2016-05-15 10:02:00,31.4475,73.235,14.86 +2016-05-15 10:17:00,29.7288,73.245,14.95 +2016-05-15 10:32:00,30.945,73.195,14.82 +2016-05-15 10:47:00,30.2125,73.315,14.83 +2016-05-15 11:02:00,32.19,73.265,14.89 +2016-05-15 11:17:00,32.6712,73.2825,14.95 +2016-05-15 11:32:00,31.4437,73.49,14.78 +2016-05-15 11:47:00,31.7375,73.72,14.83 +2016-05-15 12:02:00,31.7887,73.8975,14.74 +2016-05-15 12:17:00,29.285,74.0175,14.69 +2016-05-15 12:32:00,30.6087,74.115,14.78 +2016-05-15 12:47:00,30.6113,74.2975,14.64 +2016-05-15 13:02:00,31.5462,74.41,14.54 +2016-05-15 13:17:00,30.9938,74.675,14.51 +2016-05-15 13:32:00,32.435,74.6325,14.56 +2016-05-15 13:47:00,32.4788,74.61,14.66 +2016-05-15 14:02:00,31.3425,74.425,14.66 +2016-05-15 14:17:00,31.345,74.455,14.59 +2016-05-15 14:32:00,32.6263,74.4225,14.54 +2016-05-15 14:47:00,30.2125,74.475,14.57 +2016-05-15 15:02:00,32.5287,74.315,14.59 +2016-05-15 15:17:00,30.8962,74.315,14.59 +2016-05-15 15:32:00,31.295,74.345,14.54 +2016-05-15 15:47:00,33.605,74.445,14.38 +2016-05-15 16:02:00,30.8037,74.7225,14.34 +2016-05-15 16:17:00,33.5563,74.8775,14.35 +2016-05-15 16:32:00,30.7562,74.7825,14.37 +2016-05-15 16:47:00,31.1975,74.7175,14.43 +2016-05-15 17:02:00,32.3425,74.525,14.39 +2016-05-15 17:17:00,31.1413,74.41,14.33 +2016-05-15 17:32:00,31.4425,74.295,14.31 +2016-05-15 17:47:00,32.1888,74.1775,14.32 +2016-05-15 18:02:00,30.5088,74.1,14.29 +2016-05-15 18:17:00,33.465,73.915,14.27 +2016-05-15 18:32:00,31.7438,73.86,14.23 +2016-05-15 18:47:00,34.575,73.83,14.23 +2016-05-15 19:02:00,33.8037,73.79,14.22 +2016-05-15 19:17:00,31.7387,73.81,14.21 +2016-05-15 19:32:00,33.265,73.93,14.18 +2016-05-15 19:47:00,32.3875,74.0875,14.15 +2016-05-15 20:02:00,30.6062,74.2,14.12 +2016-05-15 20:17:00,34.185,74.1825,14.07 +2016-05-15 20:32:00,33.0225,74.1475,14.04 +2016-05-15 20:47:00,31.295,74.135,14.02 +2016-05-15 21:02:00,31.0938,73.995,13.98 +2016-05-15 21:17:00,33.7012,73.92,13.96 +2016-05-15 21:32:00,32.6725,73.8625,13.94 +2016-05-15 21:47:00,29.6725,73.7175,13.93 +2016-05-15 22:02:00,33.41,73.665,13.91 +2016-05-15 22:17:00,31.8937,73.57,13.88 +2016-05-15 22:32:00,33.0225,73.4425,13.86 +2016-05-15 22:47:00,31.4475,73.3775,13.85 +2016-05-15 23:02:00,32.9225,73.365,13.84 +2016-05-15 23:17:00,31.2462,73.3025,13.83 +2016-05-15 23:32:00,32.2387,73.255,13.82 +2016-05-15 23:47:00,32.8775,73.315,13.81 +2016-05-16 00:02:00,32.7787,73.255,13.79 +2016-05-16 00:17:00,35.055,73.2325,13.75 +2016-05-16 00:32:00,34.525,73.275,13.72 +2016-05-16 00:47:00,33.9487,73.1825,13.69 +2016-05-16 01:02:00,32.62,73.225,13.67 +2016-05-16 01:17:00,30.9437,73.31,13.64 +2016-05-16 01:32:00,33.355,73.5,13.63 +2016-05-16 01:47:00,32.9212,73.64,13.6 +2016-05-16 02:02:00,33.36,73.7675,13.58 +2016-05-16 02:17:00,32.2875,73.7125,13.55 +2016-05-16 02:32:00,32.525,73.735,13.53 +2016-05-16 02:47:00,32.09,73.6975,13.5 +2016-05-16 03:02:00,31.8337,73.6925,13.47 +2016-05-16 03:17:00,31.935,73.6475,13.42 +2016-05-16 03:32:00,32.7687,73.61,13.39 +2016-05-16 03:47:00,31.3475,73.585,13.35 +2016-05-16 04:02:00,33.1188,73.6425,13.34 +2016-05-16 04:17:00,31.5437,73.555,13.31 +2016-05-16 04:32:00,33.6575,73.58,13.32 +2016-05-16 04:47:00,30.5062,73.53,13.32 +2016-05-16 05:02:00,31.7363,73.665,13.31 +2016-05-16 05:17:00,32.2337,73.715,13.31 +2016-05-16 05:32:00,31.8875,73.6775,13.3 +2016-05-16 05:47:00,31.345,73.705,13.28 +2016-05-16 06:02:00,33.9025,73.8875,13.26 +2016-05-16 06:17:00,30.6525,73.835,13.3 +2016-05-16 06:32:00,32.1387,73.99,13.31 +2016-05-16 06:47:00,33.7038,73.905,13.27 +2016-05-16 07:02:00,33.6575,73.91,13.26 +2016-05-16 07:17:00,33.7038,73.9225,13.25 +2016-05-16 07:32:00,32.5775,73.8825,13.29 +2016-05-16 07:47:00,32.435,73.88,13.33 +2016-05-16 08:02:00,33.4075,73.925,13.39 +2016-05-16 08:17:00,33.5037,73.8,13.47 +2016-05-16 08:32:00,32.5262,73.815,13.47 +2016-05-16 08:47:00,34.0887,73.8275,13.44 +2016-05-16 09:02:00,33.9938,73.71,13.44 +2016-05-16 09:17:00,33.3562,73.67,13.43 +2016-05-16 09:32:00,32.82,73.63,13.38 +2016-05-16 09:47:00,33.9987,73.695,13.37 +2016-05-16 10:02:00,31.49,73.6325,13.39 +2016-05-16 10:17:00,34.1312,73.6825,13.44 +2016-05-16 10:32:00,32.4325,73.625,13.5 +2016-05-16 10:47:00,33.7988,73.68,13.69 +2016-05-16 11:02:00,32.1862,73.635,13.77 +2016-05-16 11:17:00,33.2162,73.5875,13.78 +2016-05-16 11:32:00,33.2175,73.7975,13.76 +2016-05-16 11:47:00,32.235,73.97,13.82 +2016-05-16 12:02:00,34.525,74.0775,13.85 +2016-05-16 12:17:00,33.455,74.265,13.79 +2016-05-16 12:32:00,32.6712,74.43,13.77 +2016-05-16 12:47:00,32.7188,74.45,13.79 +2016-05-16 13:02:00,31.9388,74.31,13.76 +2016-05-16 13:17:00,33.2637,74.1175,13.74 +2016-05-16 13:32:00,31.8425,74.0975,13.76 +2016-05-16 13:47:00,32.82,73.965,13.78 +2016-05-16 14:02:00,33.02,73.9175,13.81 +2016-05-16 14:17:00,32.97,73.8075,13.74 +2016-05-16 14:32:00,31.2913,73.805,13.68 +2016-05-16 14:47:00,34.1825,73.88,13.63 +2016-05-16 15:02:00,33.6525,73.8625,13.62 +2016-05-16 15:17:00,32.72,73.9325,13.6 +2016-05-16 15:32:00,32.4788,73.885,13.61 +2016-05-16 15:47:00,32.9675,73.955,13.64 +2016-05-16 16:02:00,35.4987,74.045,13.66 +2016-05-16 16:17:00,31.74,74.175,13.69 +2016-05-16 16:32:00,33.2588,74.2575,13.69 +2016-05-16 16:47:00,34.2775,74.4625,13.64 +2016-05-16 17:02:00,33.4613,74.6525,13.6 +2016-05-16 17:17:00,32.5262,74.5975,13.59 +2016-05-16 17:32:00,32.7712,74.545,13.59 +2016-05-16 17:47:00,33.3063,74.4775,13.6 +2016-05-16 18:02:00,33.355,74.3375,13.61 +2016-05-16 18:17:00,33.8463,74.125,13.61 +2016-05-16 18:32:00,33.7012,73.9975,13.61 +2016-05-16 18:47:00,33.9,73.65,13.6 +2016-05-16 19:02:00,33.7537,73.5225,13.62 +2016-05-16 19:17:00,32.72,73.2825,13.63 +2016-05-16 19:32:00,34.6725,73.07,13.65 +2016-05-16 19:47:00,33.505,72.9075,13.66 +2016-05-16 20:02:00,31.7862,72.7625,13.66 +2016-05-16 20:17:00,32.8213,72.6475,13.66 +2016-05-16 20:32:00,32.9737,72.57,13.65 +2016-05-16 20:47:00,32.0437,72.4825,13.67 +2016-05-16 21:02:00,33.61,72.47,13.68 +2016-05-16 21:17:00,33.4088,72.34,13.7 +2016-05-16 21:32:00,34.955,72.3925,13.7 +2016-05-16 21:47:00,34.72,72.41,13.71 +2016-05-16 22:02:00,34.1312,72.4625,13.73 +2016-05-16 22:17:00,34.375,72.5325,13.74 +2016-05-16 22:32:00,34.5225,72.5575,13.76 +2016-05-16 22:47:00,33.8975,72.705,13.75 +2016-05-16 23:02:00,33.995,72.8175,13.75 +2016-05-16 23:17:00,35.1525,72.7525,13.75 +2016-05-16 23:32:00,34.6162,72.92,13.74 +2016-05-16 23:47:00,33.7038,73.1325,13.74 +2016-05-17 00:02:00,33.8,73.25,13.73 +2016-05-17 00:17:00,34.6762,73.4925,13.71 +2016-05-17 00:32:00,34.0387,73.7725,13.69 +2016-05-17 00:47:00,34.2363,73.9325,13.67 +2016-05-17 01:02:00,34.48,74.0125,13.63 +2016-05-17 01:17:00,34.475,74.0725,13.58 +2016-05-17 01:32:00,33.7475,74.12,13.54 +2016-05-17 01:47:00,34.6175,74.115,13.51 +2016-05-17 02:02:00,32.4762,74.075,13.51 +2016-05-17 02:17:00,34.0863,74.0925,13.5 +2016-05-17 02:32:00,33.3587,74.0825,13.49 +2016-05-17 02:47:00,35.0088,74.0275,13.47 +2016-05-17 03:02:00,34.8587,74.055,13.45 +2016-05-17 03:17:00,34.57,74.07,13.44 +2016-05-17 03:32:00,34.765,74.055,13.42 +2016-05-17 03:47:00,34.18,74.0425,13.39 +2016-05-17 04:02:00,33.55,74.0425,13.37 +2016-05-17 04:17:00,34.085,74.06,13.35 +2016-05-17 04:32:00,34.1825,74.0475,13.32 +2016-05-17 04:47:00,34.6738,74.005,13.3 +2016-05-17 05:02:00,34.7175,74.0575,13.27 +2016-05-17 05:17:00,34.23,74.025,13.26 +2016-05-17 05:32:00,34.72,74.0725,13.24 +2016-05-17 05:47:00,33.8988,74.0925,13.24 +2016-05-17 06:02:00,33.1162,74.2125,13.24 +2016-05-17 06:17:00,33.7075,74.1575,13.24 +2016-05-17 06:32:00,32.9225,74.2975,13.24 +2016-05-17 06:47:00,33.655,74.2475,13.26 +2016-05-17 07:02:00,33.2588,74.3025,13.28 +2016-05-17 07:17:00,33.1237,74.29,13.28 +2016-05-17 07:32:00,34.5262,74.33,13.29 +2016-05-17 07:47:00,35.2,74.265,13.33 +2016-05-17 08:02:00,33.2137,74.2425,13.38 +2016-05-17 08:17:00,33.405,76.0425,13.43 +2016-05-17 08:32:00,34.6237,74.4575,13.41 +2016-05-17 08:47:00,35.4463,74.085,13.42 +2016-05-17 09:02:00,34.4762,74.2625,13.41 +2016-05-17 09:17:00,35.1987,74.1425,13.42 +2016-05-17 09:32:00,33.165,74.135,13.42 +2016-05-17 09:47:00,35.0025,74.3375,13.43 +2016-05-17 10:02:00,35.0587,74.15,13.39 +2016-05-17 10:17:00,34.3838,74.0075,13.35 +2016-05-17 10:32:00,34.2337,74.115,13.36 +2016-05-17 10:47:00,34.905,73.9075,13.38 +2016-05-17 11:02:00,34.8138,73.9275,13.35 +2016-05-17 11:17:00,34.085,73.8325,13.37 +2016-05-17 11:32:00,35.0512,73.7375,13.37 +2016-05-17 11:47:00,34.4313,73.71,13.39 +2016-05-17 12:02:00,34.625,73.6225,13.4 +2016-05-17 12:17:00,33.1712,73.5625,13.41 +2016-05-17 12:32:00,33.26,73.5775,13.45 +2016-05-17 12:47:00,32.9187,73.6925,13.56 +2016-05-17 13:02:00,33.75,73.355,13.63 +2016-05-17 13:17:00,34.8613,73.41,13.58 +2016-05-17 13:32:00,34.38,73.395,13.58 +2016-05-17 13:47:00,33.8962,73.265,13.57 +2016-05-17 14:02:00,32.6725,73.2625,13.55 +2016-05-17 14:17:00,34.2825,73.48,13.55 +2016-05-17 14:32:00,33.1188,73.36,13.51 +2016-05-17 14:47:00,32.9225,73.4025,13.48 +2016-05-17 15:02:00,33.7475,73.3625,13.46 +2016-05-17 15:17:00,33.5525,73.595,13.42 +2016-05-17 15:32:00,34.0375,73.775,13.4 +2016-05-17 15:47:00,33.6038,73.79,13.36 +2016-05-17 16:02:00,32.9725,73.69,13.34 +2016-05-17 16:17:00,32.8162,73.665,13.33 +2016-05-17 16:32:00,33.8975,73.6225,13.32 +2016-05-17 16:47:00,33.75,73.3975,13.32 +2016-05-17 17:02:00,32.9163,73.59,13.3 +2016-05-17 17:17:00,34.135,73.545,13.29 +2016-05-17 17:32:00,34.7175,73.355,13.29 +2016-05-17 17:47:00,33.1675,73.095,13.29 +2016-05-17 18:02:00,33.9975,73.2025,13.3 +2016-05-17 18:17:00,33.5037,73.1475,13.32 +2016-05-17 18:32:00,33.7462,73.1575,13.33 +2016-05-17 18:47:00,33.9463,72.9125,13.34 +2016-05-17 19:02:00,34.9538,73.145,13.34 +2016-05-17 19:17:00,34.475,72.95,13.35 +2016-05-17 19:32:00,33.6075,72.87,13.35 +2016-05-17 19:47:00,32.9212,72.9225,13.33 +2016-05-17 20:02:00,34.1338,72.875,13.32 +2016-05-17 20:17:00,30.895,72.8775,13.33 +2016-05-17 20:32:00,32.7188,72.9125,13.33 +2016-05-17 20:47:00,32.5225,73.07,13.32 +2016-05-17 21:02:00,33.405,73.2475,13.3 +2016-05-17 21:17:00,31.9375,73.345,13.29 +2016-05-17 21:32:00,33.0687,73.5975,13.29 +2016-05-17 21:47:00,32.625,73.6625,13.26 +2016-05-17 22:02:00,33.6525,73.65,13.25 +2016-05-17 22:17:00,34.3262,73.7775,13.23 +2016-05-17 22:32:00,33.3575,73.5325,13.23 +2016-05-17 22:47:00,33.1188,73.625,13.23 +2016-05-17 23:02:00,33.5512,73.6725,13.24 +2016-05-17 23:17:00,33.6038,73.4525,13.23 +2016-05-17 23:32:00,33.12,73.2975,13.2 +2016-05-17 23:47:00,33.9475,73.465,13.19 +2016-05-18 00:02:00,32.92,73.19,13.19 +2016-05-18 00:17:00,33.5512,73.23,13.19 +2016-05-18 00:32:00,32.1375,73.2025,13.19 +2016-05-18 00:47:00,33.4075,73.1475,13.19 +2016-05-18 01:02:00,31.5912,73.2025,13.17 +2016-05-18 01:17:00,31.7887,73.21,13.16 +2016-05-18 01:32:00,32.1387,73.1,13.15 +2016-05-18 01:47:00,32.8237,72.9925,13.13 +2016-05-18 02:02:00,33.26,72.9475,13.11 +2016-05-18 02:17:00,32.57,72.9575,13.08 +2016-05-18 02:32:00,33.6038,73.0025,13.04 +2016-05-18 02:47:00,30.7513,73.105,13.03 +2016-05-18 03:02:00,33.0675,72.92,13.02 +2016-05-18 03:17:00,34.1862,73.1875,13.01 +2016-05-18 03:32:00,32.5762,72.8725,12.98 +2016-05-18 03:47:00,31.7337,72.82,12.96 +2016-05-18 04:02:00,33.0675,73.145,12.94 +2016-05-18 04:17:00,32.5713,72.9775,12.92 +2016-05-18 04:32:00,32.6188,73.12,12.9 +2016-05-18 04:47:00,32.5275,73.085,12.89 +2016-05-18 05:02:00,32.39,73.2,12.87 +2016-05-18 05:17:00,32.8262,73.24,12.87 +2016-05-18 05:32:00,32.385,73.28,12.9 +2016-05-18 05:47:00,31.5425,73.095,12.91 +2016-05-18 06:02:00,34.6225,73.0425,12.91 +2016-05-18 06:17:00,31.4925,72.665,12.91 +2016-05-18 06:32:00,32.285,72.7475,12.92 +2016-05-18 06:47:00,32.6212,72.725,12.95 +2016-05-18 07:02:00,33.7075,72.765,12.99 +2016-05-18 07:17:00,31.3438,72.4525,13.01 +2016-05-18 07:32:00,31.7412,72.515,13.06 +2016-05-18 07:47:00,33.5537,72.515,13.06 +2016-05-18 08:02:00,33.165,72.47,13.07 +2016-05-18 08:17:00,32.0387,72.4025,13.09 +2016-05-18 08:32:00,31.54,72.69,13.16 +2016-05-18 08:47:00,33.8037,72.465,13.21 +2016-05-18 09:02:00,31.8363,72.2975,13.25 +2016-05-18 09:17:00,31.935,72.4475,13.3 +2016-05-18 09:32:00,32.725,72.3975,13.36 +2016-05-18 09:47:00,32.87,72.49,13.44 +2016-05-18 10:02:00,33.3562,72.505,13.53 +2016-05-18 10:17:00,32.5262,72.56,13.66 +2016-05-18 10:32:00,33.2137,72.62,13.69 +2016-05-18 10:47:00,33.9987,72.6475,13.71 +2016-05-18 11:02:00,30.9437,72.6675,13.71 +2016-05-18 11:17:00,33.9487,72.9325,13.7 +2016-05-18 11:32:00,33.0175,72.6825,13.7 +2016-05-18 11:47:00,34.2325,73.04,13.7 +2016-05-18 12:02:00,33.2562,72.9375,13.7 +2016-05-18 12:17:00,34.085,72.7925,13.69 +2016-05-18 12:32:00,33.5037,72.98,13.7 +2016-05-18 12:47:00,35.0525,72.8775,13.72 +2016-05-18 13:02:00,32.92,72.865,13.73 +2016-05-18 13:17:00,32.8187,72.8875,13.71 +2016-05-18 13:32:00,32.1888,72.805,13.7 +2016-05-18 13:47:00,32.8688,72.65,13.68 +2016-05-18 14:02:00,33.8463,72.57,13.67 +2016-05-18 14:17:00,33.5037,72.6225,13.64 +2016-05-18 14:32:00,34.9562,72.44,13.65 +2016-05-18 14:47:00,33.0225,72.2775,13.65 +2016-05-18 15:02:00,32.8187,72.33,13.74 +2016-05-18 15:17:00,33.2575,72.425,13.79 +2016-05-18 15:32:00,34.135,72.25,13.78 +2016-05-18 15:47:00,33.845,72.3575,13.77 +2016-05-18 16:02:00,32.675,72.135,13.74 +2016-05-18 16:17:00,33.8037,72.2275,13.74 +2016-05-18 16:32:00,32.6762,72.3625,13.76 +2016-05-18 16:47:00,33.1188,72.0425,13.77 +2016-05-18 17:02:00,33.0675,72.3175,13.76 +2016-05-18 17:17:00,33.5525,72.4275,13.75 +2016-05-18 17:32:00,32.9175,72.5125,13.76 +2016-05-18 17:47:00,33.1175,72.8025,13.77 +2016-05-18 18:02:00,32.7175,72.9025,13.77 +2016-05-18 18:17:00,33.17,73.04,13.77 +2016-05-18 18:32:00,33.2162,72.835,13.77 +2016-05-18 18:47:00,32.135,72.8425,13.77 +2016-05-18 19:02:00,32.8213,72.8325,13.78 +2016-05-18 19:17:00,32.1387,72.7625,13.79 +2016-05-18 19:32:00,32.04,72.6125,13.8 +2016-05-18 19:47:00,32.6225,72.4575,13.81 +2016-05-18 20:02:00,32.77,72.2325,13.82 +2016-05-18 20:17:00,33.315,72.565,13.84 +2016-05-18 20:32:00,32.285,72.405,13.85 +2016-05-18 20:47:00,32.5775,72.33,13.87 +2016-05-18 21:02:00,32.6712,72.395,13.89 +2016-05-18 21:17:00,32.48,72.425,13.91 +2016-05-18 21:32:00,33.31,72.265,13.94 +2016-05-18 21:47:00,33.455,72.145,13.95 +2016-05-18 22:02:00,32.4825,72.2375,13.96 +2016-05-18 22:17:00,34.8637,72.0,13.95 +2016-05-18 22:32:00,32.9713,72.215,13.94 +2016-05-18 22:47:00,33.7988,72.0125,13.92 +2016-05-18 23:02:00,31.8375,72.2,13.89 +2016-05-18 23:17:00,31.24,72.1575,13.85 +2016-05-18 23:32:00,33.2637,72.38,13.82 +2016-05-18 23:47:00,33.6087,72.505,13.8 +2016-05-19 00:02:00,35.5563,72.8975,13.77 +2016-05-19 00:17:00,34.2337,72.6275,13.75 +2016-05-19 00:32:00,32.4775,72.755,13.73 +2016-05-19 00:47:00,30.995,72.7225,13.7 +2016-05-19 01:02:00,34.4775,72.7825,13.68 +2016-05-19 01:17:00,31.8375,72.5875,13.66 +2016-05-19 01:32:00,33.8975,72.7225,13.65 +2016-05-19 01:47:00,34.5737,72.635,13.64 +2016-05-19 02:02:00,33.1725,72.4375,13.63 +2016-05-19 02:17:00,32.7738,72.375,13.62 +2016-05-19 02:32:00,35.555,72.435,13.61 +2016-05-19 02:47:00,33.0713,72.345,13.61 +2016-05-19 03:02:00,32.3838,72.5125,13.6 +2016-05-19 03:17:00,33.3575,72.43,13.61 +2016-05-19 03:32:00,31.8375,72.27,13.61 +2016-05-19 03:47:00,33.85,72.3825,13.62 +2016-05-19 04:02:00,33.8525,72.2775,13.63 +2016-05-19 04:17:00,32.4775,72.105,13.65 +2016-05-19 04:32:00,32.9675,72.2375,13.67 +2016-05-19 04:47:00,31.69,72.3675,13.7 +2016-05-19 05:02:00,32.0925,72.2025,13.73 +2016-05-19 05:17:00,33.3562,72.1875,13.74 +2016-05-19 05:32:00,32.14,72.2975,13.76 +2016-05-19 05:47:00,33.2663,72.305,13.8 +2016-05-19 06:02:00,31.9938,72.3725,13.84 +2016-05-19 06:17:00,33.0175,72.37,13.89 +2016-05-19 06:32:00,34.1825,72.5175,13.92 +2016-05-19 06:47:00,32.235,72.7,13.96 +2016-05-19 07:02:00,32.7162,72.54,14.04 +2016-05-19 07:17:00,33.1188,72.7675,14.1 +2016-05-19 07:32:00,33.22,72.92,14.18 +2016-05-19 07:47:00,32.9238,72.775,14.24 +2016-05-19 08:02:00,31.9863,72.81,14.32 +2016-05-19 08:17:00,31.5912,72.9725,14.37 +2016-05-19 08:32:00,33.2175,73.1625,14.42 +2016-05-19 08:47:00,33.8,73.0625,14.45 +2016-05-19 09:02:00,33.0638,73.23,14.55 +2016-05-19 09:17:00,32.7712,73.4025,14.58 +2016-05-19 09:32:00,32.5762,73.185,14.57 +2016-05-19 09:47:00,34.5312,73.1175,14.56 +2016-05-19 10:02:00,31.7412,72.9425,14.62 +2016-05-19 10:17:00,32.8225,73.415,14.72 +2016-05-19 10:32:00,33.7525,73.1,14.79 +2016-05-19 10:47:00,34.58,73.085,14.78 +2016-05-19 11:02:00,33.9525,73.18,14.74 +2016-05-19 11:17:00,33.4613,72.995,14.73 +2016-05-19 11:32:00,33.4112,73.1375,14.73 +2016-05-19 11:47:00,33.3125,72.925,14.72 +2016-05-19 12:02:00,32.7225,73.1425,14.68 +2016-05-19 12:17:00,32.675,72.6075,14.67 +2016-05-19 12:32:00,33.8,72.995,14.67 +2016-05-19 12:47:00,33.0187,72.96,14.75 +2016-05-19 13:02:00,32.2412,72.64,14.75 +2016-05-19 13:17:00,32.3425,72.8025,14.75 +2016-05-19 13:32:00,34.4362,73.125,14.84 +2016-05-19 13:47:00,33.5525,72.7575,14.97 +2016-05-19 14:02:00,31.9412,72.58,15.07 +2016-05-19 14:17:00,33.0238,72.7325,15.12 +2016-05-19 14:32:00,33.1212,72.66,15.16 +2016-05-19 14:47:00,31.7387,72.6225,15.19 +2016-05-19 15:02:00,34.2312,72.7575,15.18 +2016-05-19 15:17:00,32.9737,72.955,15.14 +2016-05-19 15:32:00,34.19,73.05,15.14 +2016-05-19 15:47:00,32.6712,73.3425,15.14 +2016-05-19 16:02:00,33.9487,73.2825,15.14 +2016-05-19 16:17:00,33.26,73.3025,15.14 +2016-05-19 16:32:00,33.2175,73.125,15.14 +2016-05-19 16:47:00,32.3387,73.3325,15.09 +2016-05-19 17:02:00,33.3637,73.105,15.04 +2016-05-19 17:17:00,32.5287,73.0475,15.04 +2016-05-19 17:32:00,33.5088,73.18,15.08 +2016-05-19 17:47:00,33.75,73.0125,15.11 +2016-05-19 18:02:00,32.9187,72.7125,15.15 +2016-05-19 18:17:00,33.8025,73.18,15.18 +2016-05-19 18:32:00,34.04,73.035,15.21 +2016-05-19 18:47:00,33.9475,72.7525,15.24 +2016-05-19 19:02:00,31.695,72.7475,15.27 +2016-05-19 19:17:00,32.7762,72.7875,15.3 +2016-05-19 19:32:00,34.7687,72.745,15.32 +2016-05-19 19:47:00,32.8688,72.81,15.34 +2016-05-19 20:02:00,32.4325,72.94,15.36 +2016-05-19 20:17:00,32.3325,72.9025,15.38 +2016-05-19 20:32:00,34.7213,72.8875,15.39 +2016-05-19 20:47:00,32.9737,72.8375,15.41 +2016-05-19 21:02:00,33.5587,73.0075,15.42 +2016-05-19 21:17:00,34.185,72.9075,15.44 +2016-05-19 21:32:00,33.4587,73.1025,15.46 +2016-05-19 21:47:00,33.9475,73.1875,15.46 +2016-05-19 22:02:00,33.6075,73.3625,15.47 +2016-05-19 22:17:00,32.62,73.435,15.48 +2016-05-19 22:32:00,33.8,73.7125,15.49 +2016-05-19 22:47:00,33.5125,73.54,15.5 +2016-05-19 23:02:00,33.5575,73.63,15.51 +2016-05-19 23:17:00,33.605,73.4975,15.52 +2016-05-19 23:32:00,34.38,73.5075,15.54 +2016-05-19 23:47:00,33.3075,73.4825,15.57 +2016-05-20 00:02:00,32.525,73.49,15.58 +2016-05-20 00:17:00,32.48,73.3825,15.6 +2016-05-20 00:32:00,34.185,73.3725,15.6 +2016-05-20 00:47:00,33.56,73.1875,15.6 +2016-05-20 01:02:00,33.1263,73.2075,15.58 +2016-05-20 01:17:00,35.4538,73.3775,15.56 +2016-05-20 01:32:00,32.77,73.235,15.54 +2016-05-20 01:47:00,33.02,73.34,15.54 +2016-05-20 02:02:00,32.9212,73.165,15.53 +2016-05-20 02:17:00,34.1837,73.1175,15.53 +2016-05-20 02:32:00,34.5325,72.9775,15.52 +2016-05-20 02:47:00,33.025,73.11,15.5 +2016-05-20 03:02:00,33.4062,73.2325,15.46 +2016-05-20 03:17:00,34.3825,72.97,15.43 +2016-05-20 03:32:00,34.2838,73.205,15.39 +2016-05-20 03:47:00,32.9212,73.4425,15.37 +2016-05-20 04:02:00,33.7025,73.4475,15.34 +2016-05-20 04:17:00,33.4075,73.765,15.32 +2016-05-20 04:32:00,32.3913,73.7425,15.3 +2016-05-20 04:47:00,33.46,73.8025,15.29 +2016-05-20 05:02:00,34.0413,73.8025,15.3 +2016-05-20 05:17:00,32.9212,73.935,15.34 +2016-05-20 05:32:00,34.6725,73.6425,15.38 +2016-05-20 05:47:00,32.1912,73.6725,15.43 +2016-05-20 06:02:00,33.4075,73.865,15.44 +2016-05-20 06:17:00,33.9525,73.6675,15.46 +2016-05-20 06:32:00,32.9737,73.62,15.47 +2016-05-20 06:47:00,33.4088,73.78,15.53 +2016-05-20 07:02:00,33.6562,73.7175,15.63 +2016-05-20 07:17:00,32.1387,73.7275,15.72 +2016-05-20 07:32:00,33.5575,73.385,15.81 +2016-05-20 07:47:00,32.9187,73.3975,15.91 +2016-05-20 08:02:00,33.0212,73.4025,16.0 +2016-05-20 08:17:00,34.5762,73.535,16.08 +2016-05-20 08:32:00,33.6625,73.6075,16.08 +2016-05-20 08:47:00,33.215,73.63,16.15 +2016-05-20 09:02:00,35.55,73.645,16.24 +2016-05-20 09:17:00,33.7025,73.7725,16.33 +2016-05-20 09:32:00,33.845,74.165,16.48 +2016-05-20 09:47:00,34.2775,74.735,16.58 +2016-05-20 10:02:00,34.8138,74.9575,16.57 +2016-05-20 10:17:00,34.8175,75.39,16.58 +2016-05-20 10:32:00,34.0425,75.8775,16.46 +2016-05-20 10:47:00,33.12,76.495,16.5 +2016-05-20 11:02:00,33.1675,76.46,16.58 +2016-05-20 11:17:00,35.005,76.42,16.6 +2016-05-20 11:32:00,35.0525,76.815,16.5 +2016-05-20 11:47:00,35.2537,77.035,16.43 +2016-05-20 12:02:00,34.3862,76.9975,16.36 +2016-05-20 12:17:00,33.51,76.9325,16.36 +2016-05-20 12:32:00,33.8487,77.0525,16.47 +2016-05-20 12:47:00,34.7675,77.03,16.53 +2016-05-20 13:02:00,34.6725,76.8725,16.48 +2016-05-20 13:17:00,34.7225,76.665,16.46 +2016-05-20 13:32:00,34.955,76.7625,16.38 +2016-05-20 13:47:00,34.5725,76.4775,16.32 +2016-05-20 14:02:00,33.0737,76.6375,16.28 +2016-05-20 14:17:00,33.7075,76.1525,16.2 +2016-05-20 14:32:00,35.6462,76.08,16.12 +2016-05-20 14:47:00,34.4313,76.045,16.06 +2016-05-20 15:02:00,35.1537,76.1,15.99 +2016-05-20 15:17:00,35.0537,76.1075,15.97 +2016-05-20 15:32:00,34.6225,75.9125,15.96 +2016-05-20 15:47:00,34.3337,75.7575,15.94 +2016-05-20 16:02:00,33.8538,75.8375,15.91 +2016-05-20 16:17:00,33.605,75.695,15.9 +2016-05-20 16:32:00,34.6687,75.2675,15.9 +2016-05-20 16:47:00,33.0662,75.395,15.93 +2016-05-20 17:02:00,33.95,75.225,15.95 +2016-05-20 17:17:00,33.95,75.2575,15.99 +2016-05-20 17:32:00,34.6738,75.2625,16.04 +2016-05-20 17:47:00,34.5775,74.985,16.09 +2016-05-20 18:02:00,34.8662,75.1425,16.15 +2016-05-20 18:17:00,33.3087,75.03,16.21 +2016-05-20 18:32:00,32.3337,75.2125,16.25 +2016-05-20 18:47:00,32.9725,75.01,16.29 +2016-05-20 19:02:00,34.3812,74.95,16.33 +2016-05-20 19:17:00,35.1038,75.0825,16.37 +2016-05-20 19:32:00,34.2387,75.1225,16.39 +2016-05-20 19:47:00,34.955,74.9975,16.41 +2016-05-20 20:02:00,35.7487,75.21,16.43 +2016-05-20 20:17:00,34.7687,75.3575,16.47 +2016-05-20 20:32:00,34.235,75.4075,16.51 +2016-05-20 20:47:00,36.04,75.3775,16.54 +2016-05-20 21:02:00,33.9987,75.635,16.57 +2016-05-20 21:17:00,35.3063,75.5,16.6 +2016-05-20 21:32:00,35.7475,75.47,16.63 +2016-05-20 21:47:00,34.1387,75.24,16.66 +2016-05-20 22:02:00,33.9512,75.02,16.68 +2016-05-20 22:17:00,33.3075,75.015,16.7 +2016-05-20 22:32:00,33.6075,74.92,16.71 +2016-05-20 22:47:00,34.1837,74.8625,16.7 +2016-05-20 23:02:00,34.9562,74.7725,16.7 +2016-05-20 23:17:00,34.9562,74.65,16.7 +2016-05-20 23:32:00,33.905,74.5175,16.69 +2016-05-20 23:47:00,35.1562,74.515,16.67 +2016-05-21 00:02:00,33.8487,74.2875,16.66 +2016-05-21 00:17:00,34.4287,74.28,16.65 +2016-05-21 00:32:00,35.0537,74.305,16.62 +2016-05-21 00:47:00,35.3,74.0625,16.6 +2016-05-21 01:02:00,34.39,74.03,16.56 +2016-05-21 01:17:00,33.2637,73.9275,16.53 +2016-05-21 01:32:00,35.255,73.7825,16.49 +2016-05-21 01:47:00,35.3025,73.8075,16.46 +2016-05-21 02:02:00,35.5013,73.6325,16.43 +2016-05-21 02:17:00,33.2137,73.69,16.38 +2016-05-21 02:32:00,33.5525,73.59,16.35 +2016-05-21 02:47:00,34.2812,73.5325,16.32 +2016-05-21 03:02:00,34.7213,73.58,16.3 +2016-05-21 03:17:00,34.045,73.73,16.29 +2016-05-21 03:32:00,35.01,73.7775,16.27 +2016-05-21 03:47:00,35.7412,74.0675,16.24 +2016-05-21 04:02:00,34.6225,73.8825,16.24 +2016-05-21 04:17:00,34.2325,73.825,16.23 +2016-05-21 04:32:00,35.1537,73.705,16.22 +2016-05-21 04:47:00,35.4525,73.5925,16.22 +2016-05-21 05:02:00,34.675,73.625,16.26 +2016-05-21 05:17:00,35.1612,73.6625,16.32 +2016-05-21 05:32:00,34.5287,73.45,16.38 +2016-05-21 05:47:00,35.2562,73.455,16.43 +2016-05-21 06:02:00,35.3562,73.405,16.47 +2016-05-21 06:17:00,34.9562,73.6225,16.52 +2016-05-21 06:32:00,33.7062,73.585,16.56 +2016-05-21 06:47:00,35.2537,73.5725,16.6 +2016-05-21 07:02:00,35.0587,73.58,16.64 +2016-05-21 07:17:00,35.4075,73.57,16.7 +2016-05-21 07:32:00,34.9075,73.41,16.78 +2016-05-21 07:47:00,34.9587,73.3725,16.86 +2016-05-21 08:02:00,33.995,73.375,16.97 +2016-05-21 08:17:00,34.4788,73.4125,17.06 +2016-05-21 08:32:00,34.5762,72.97,17.1 +2016-05-21 08:47:00,33.505,72.96,17.18 +2016-05-21 09:02:00,34.7288,73.2,17.27 +2016-05-21 09:17:00,35.305,72.8425,17.36 +2016-05-21 09:32:00,35.8913,72.9025,17.43 +2016-05-21 09:47:00,35.5013,72.735,17.5 +2016-05-21 10:02:00,33.9487,72.67,17.53 +2016-05-21 10:17:00,34.33,72.6425,17.59 +2016-05-21 10:32:00,34.3775,72.7125,17.6 +2016-05-21 10:47:00,34.9112,72.4675,17.61 +2016-05-21 11:02:00,34.7275,72.43,17.49 +2016-05-21 11:17:00,35.3538,72.4975,17.43 +2016-05-21 11:32:00,34.0875,72.51,17.47 +2016-05-21 11:47:00,34.9088,72.4575,17.5 +2016-05-21 12:02:00,34.6725,72.205,17.6 +2016-05-21 12:17:00,35.2025,72.145,17.6 +2016-05-21 12:32:00,34.955,72.0175,17.5 +2016-05-21 12:47:00,34.3862,72.06,17.49 +2016-05-21 13:02:00,35.7962,71.93,17.49 +2016-05-21 13:17:00,36.0387,71.7125,17.52 +2016-05-21 13:32:00,32.1375,71.6875,17.57 +2016-05-21 13:47:00,37.5563,71.765,17.7 +2016-05-21 14:02:00,34.8112,71.7475,17.66 +2016-05-21 14:17:00,34.8587,71.625,17.58 +2016-05-21 14:32:00,34.0,71.63,17.55 +2016-05-21 14:47:00,35.36,71.735,17.55 +2016-05-21 15:02:00,35.3562,71.655,17.62 +2016-05-21 15:17:00,34.7725,71.5525,17.67 +2016-05-21 15:32:00,35.5987,71.5825,17.67 +2016-05-21 15:47:00,34.33,71.5275,17.67 +2016-05-21 16:02:00,34.7213,71.6225,17.66 +2016-05-21 16:17:00,35.055,71.905,17.64 +2016-05-21 16:32:00,34.0925,71.94,17.62 +2016-05-21 16:47:00,35.3087,72.14,17.62 +2016-05-21 17:02:00,33.5037,72.3775,17.61 +2016-05-21 17:17:00,35.2012,72.3075,17.59 +2016-05-21 17:32:00,34.33,72.2475,17.59 +2016-05-21 17:47:00,35.9912,72.2925,17.58 +2016-05-21 18:02:00,32.9187,72.1325,17.59 +2016-05-21 18:17:00,34.2825,72.14,17.6 +2016-05-21 18:32:00,33.6075,72.125,17.62 +2016-05-21 18:47:00,34.6762,72.045,17.64 +2016-05-21 19:02:00,33.3613,71.765,17.67 +2016-05-21 19:17:00,34.5275,71.8775,17.69 +2016-05-21 19:32:00,34.09,71.99,17.72 +2016-05-21 19:47:00,35.4025,72.015,17.74 +2016-05-21 20:02:00,34.135,72.0375,17.76 +2016-05-21 20:17:00,34.1888,71.77,17.77 +2016-05-21 20:32:00,33.075,71.9675,17.78 +2016-05-21 20:47:00,35.5025,71.7925,17.79 +2016-05-21 21:02:00,34.7725,71.9,17.8 +2016-05-21 21:17:00,35.4538,71.925,17.79 +2016-05-21 21:32:00,35.9437,71.9575,17.8 +2016-05-21 21:47:00,36.7225,71.975,17.82 +2016-05-21 22:02:00,35.3525,71.9725,17.83 +2016-05-21 22:17:00,35.8962,71.935,17.84 +2016-05-21 22:32:00,34.8162,72.0025,17.85 +2016-05-21 22:47:00,35.3025,71.8425,17.86 +2016-05-21 23:02:00,36.285,72.0575,17.87 +2016-05-21 23:17:00,35.3063,71.91,17.88 +2016-05-21 23:32:00,33.7513,71.985,17.88 +2016-05-21 23:47:00,36.475,72.09,17.89 +2016-05-22 00:02:00,33.4137,72.1975,17.88 +2016-05-22 00:17:00,35.8937,72.3325,17.88 +2016-05-22 00:32:00,34.3862,72.495,17.89 +2016-05-22 00:47:00,33.0737,72.62,17.89 +2016-05-22 01:02:00,34.0413,72.63,17.87 +2016-05-22 01:17:00,34.625,72.67,17.84 +2016-05-22 01:32:00,35.3538,72.625,17.82 +2016-05-22 01:47:00,35.4,72.4875,17.81 +2016-05-22 02:02:00,34.6775,72.6075,17.78 +2016-05-22 02:17:00,34.4863,72.335,17.76 +2016-05-22 02:32:00,35.9987,72.4925,17.74 +2016-05-22 02:47:00,36.6237,72.4125,17.71 +2016-05-22 03:02:00,37.4562,72.3225,17.69 +2016-05-22 03:17:00,36.2913,72.2725,17.67 +2016-05-22 03:32:00,35.8475,72.135,17.64 +2016-05-22 03:47:00,36.725,72.2225,17.62 +2016-05-22 04:02:00,35.5112,72.0475,17.59 +2016-05-22 04:17:00,36.0912,72.26,17.58 +2016-05-22 04:32:00,35.26,72.095,17.57 +2016-05-22 04:47:00,35.6488,72.285,17.56 +2016-05-22 05:02:00,34.9562,72.2525,17.56 +2016-05-22 05:17:00,36.8225,72.2525,17.57 +2016-05-22 05:32:00,38.0563,72.3825,17.61 +2016-05-22 05:47:00,36.8725,72.5825,17.67 +2016-05-22 06:02:00,36.34,72.4875,17.71 +2016-05-22 06:17:00,35.3512,72.3875,17.74 +2016-05-22 06:32:00,35.505,72.42,17.77 +2016-05-22 06:47:00,35.255,72.4125,17.83 +2016-05-22 07:02:00,35.4037,72.555,17.9 +2016-05-22 07:17:00,36.575,72.3,17.95 +2016-05-22 07:32:00,35.5525,72.3,18.08 +2016-05-22 07:47:00,35.4538,72.29,18.15 +2016-05-22 08:02:00,36.045,72.43,18.23 +2016-05-22 08:17:00,35.1575,72.2275,18.32 +2016-05-22 08:32:00,35.8937,72.1775,18.43 +2016-05-22 08:47:00,36.6263,72.4475,18.53 +2016-05-22 09:02:00,36.2887,72.1275,18.6 +2016-05-22 09:17:00,36.9725,72.0425,18.7 +2016-05-22 09:32:00,36.5275,72.1425,18.78 +2016-05-22 09:47:00,36.9712,72.055,18.87 +2016-05-22 10:02:00,34.1375,72.025,18.98 +2016-05-22 10:17:00,35.3538,72.2025,19.03 +2016-05-22 10:32:00,34.9637,72.1125,19.04 +2016-05-22 10:47:00,36.34,71.92,19.11 +2016-05-22 11:02:00,35.8925,72.16,19.21 +2016-05-22 11:17:00,33.5587,72.12,19.27 +2016-05-22 11:32:00,35.845,71.935,19.23 +2016-05-22 11:47:00,35.6012,72.2075,19.24 +2016-05-22 12:02:00,34.8175,72.2875,19.28 +2016-05-22 12:17:00,35.945,71.9175,19.35 +2016-05-22 12:32:00,37.4562,72.47,19.41 +2016-05-22 12:47:00,35.5525,72.7325,19.45 +2016-05-22 13:02:00,35.1562,72.65,19.47 +2016-05-22 13:17:00,35.2588,72.725,19.46 +2016-05-22 13:32:00,36.9737,72.59,19.42 +2016-05-22 13:47:00,37.1663,72.7325,19.36 +2016-05-22 14:02:00,34.725,72.595,19.28 +2016-05-22 14:17:00,36.1888,72.7775,19.23 +2016-05-22 14:32:00,36.19,72.6175,19.2 +2016-05-22 14:47:00,34.9587,72.56,19.21 +2016-05-22 15:02:00,34.2337,72.5125,19.22 +2016-05-22 15:17:00,34.5312,72.4675,19.22 +2016-05-22 15:32:00,34.68,72.3825,19.15 +2016-05-22 15:47:00,37.56,72.585,19.09 +2016-05-22 16:02:00,35.8463,72.5825,19.11 +2016-05-22 16:17:00,35.555,72.315,19.16 +2016-05-22 16:32:00,35.2525,72.6475,19.19 +2016-05-22 16:47:00,36.3363,72.71,19.2 +2016-05-22 17:02:00,37.4613,72.485,19.2 +2016-05-22 17:17:00,37.5125,72.5825,19.17 +2016-05-22 17:32:00,37.9613,72.4575,19.16 +2016-05-22 17:47:00,36.3875,72.54,19.14 +2016-05-22 18:02:00,36.045,72.49,19.12 +2016-05-22 18:17:00,34.0,72.56,19.11 +2016-05-22 18:32:00,35.7038,72.705,19.1 +2016-05-22 18:47:00,35.255,72.5875,19.1 +2016-05-22 19:02:00,35.7487,72.62,19.1 +2016-05-22 19:17:00,38.0612,72.6675,19.1 +2016-05-22 19:32:00,36.43,72.55,19.11 +2016-05-22 19:47:00,36.5775,72.8325,19.12 +2016-05-22 20:02:00,36.4287,72.695,19.13 +2016-05-22 20:17:00,36.0938,72.85,19.16 +2016-05-22 20:32:00,36.1925,73.1025,19.19 +2016-05-22 20:47:00,34.96,73.175,19.23 +2016-05-22 21:02:00,34.915,73.36,19.28 +2016-05-22 21:17:00,35.36,73.355,19.31 +2016-05-22 21:32:00,37.3125,73.405,19.35 +2016-05-22 21:47:00,36.3825,73.4875,19.36 +2016-05-22 22:02:00,37.12,73.6875,19.38 +2016-05-22 22:17:00,35.06,73.63,19.42 +2016-05-22 22:32:00,32.6775,73.5025,19.46 +2016-05-22 22:47:00,34.4362,73.42,19.49 +2016-05-22 23:02:00,36.0,73.5425,19.52 +2016-05-22 23:17:00,37.7137,73.5925,19.54 +2016-05-22 23:32:00,36.0462,73.5075,19.55 +2016-05-22 23:47:00,36.4837,73.3725,19.6 +2016-05-23 00:02:00,35.5563,73.36,19.64 +2016-05-23 00:17:00,37.5638,73.2725,19.67 +2016-05-23 00:32:00,36.4313,73.275,19.69 +2016-05-23 00:47:00,35.7,73.5525,19.68 +2016-05-23 01:02:00,36.9788,73.93,19.65 +2016-05-23 01:17:00,38.06,74.045,19.6 +2016-05-23 01:32:00,38.0088,73.9625,19.58 +2016-05-23 01:47:00,38.2087,73.9775,19.59 +2016-05-23 02:02:00,36.975,74.0175,19.58 +2016-05-23 02:17:00,36.875,74.0375,19.55 +2016-05-23 02:32:00,37.4075,73.925,19.52 +2016-05-23 02:47:00,37.2663,74.06,19.51 +2016-05-23 03:02:00,36.4837,74.0975,19.5 +2016-05-23 03:17:00,37.165,73.9075,19.48 +2016-05-23 03:32:00,38.0112,73.8925,19.46 +2016-05-23 03:47:00,39.785,74.0125,19.44 +2016-05-23 04:02:00,38.1075,74.1625,19.43 +2016-05-23 04:17:00,38.5013,74.265,19.42 +2016-05-23 04:32:00,37.3112,74.5425,19.4 +2016-05-23 04:47:00,38.5062,74.5825,19.36 +2016-05-23 05:02:00,38.2562,74.665,19.34 +2016-05-23 05:17:00,37.165,74.365,19.37 +2016-05-23 05:32:00,37.5625,74.36,19.39 +2016-05-23 05:47:00,36.7762,74.35,19.45 +2016-05-23 06:02:00,36.775,74.3475,19.47 +2016-05-23 06:17:00,37.46,74.3825,19.48 +2016-05-23 06:32:00,36.0488,74.3775,19.5 +2016-05-23 06:47:00,36.975,74.4,19.5 +2016-05-23 07:02:00,36.43,74.29,19.51 +2016-05-23 07:17:00,37.0687,74.1775,19.53 +2016-05-23 07:32:00,38.1062,74.1925,19.55 +2016-05-23 07:47:00,37.8187,74.245,19.56 +2016-05-23 08:02:00,36.2913,74.15,19.56 +2016-05-23 08:17:00,36.775,73.9475,19.64 +2016-05-23 08:32:00,36.7775,74.1075,19.76 +2016-05-23 08:47:00,37.6125,74.01,19.82 +2016-05-23 09:02:00,36.4788,74.165,19.86 +2016-05-23 09:17:00,36.9238,73.91,19.93 +2016-05-23 09:32:00,36.9225,73.9575,19.96 +2016-05-23 09:47:00,38.505,74.2425,20.01 +2016-05-23 10:02:00,35.6462,74.13,20.01 +2016-05-23 10:17:00,36.8787,74.225,19.96 +2016-05-23 10:32:00,36.5825,74.45,20.03 +2016-05-23 10:47:00,36.2962,74.4875,20.11 +2016-05-23 11:02:00,35.945,74.2575,20.15 +2016-05-23 11:17:00,37.455,74.3325,20.17 +2016-05-23 11:32:00,37.0225,74.235,20.17 +2016-05-23 11:47:00,37.0725,73.895,20.16 +2016-05-23 12:02:00,35.1588,73.5325,20.21 +2016-05-23 12:17:00,35.46,73.195,20.26 +2016-05-23 12:32:00,35.6525,72.69,20.24 +2016-05-23 12:47:00,37.0225,72.3775,20.22 +2016-05-23 13:02:00,37.0225,71.77,20.31 +2016-05-23 13:17:00,36.7262,71.16,20.36 +2016-05-23 13:32:00,36.8237,70.505,20.36 +2016-05-23 13:47:00,37.2612,69.87,20.32 +2016-05-23 14:02:00,35.8487,69.1725,20.33 +2016-05-23 14:17:00,36.8775,68.465,20.51 +2016-05-23 14:32:00,36.3387,68.0025,20.55 +2016-05-23 14:47:00,36.6762,67.45,20.6 +2016-05-23 15:02:00,35.7425,66.7975,20.69 +2016-05-23 15:17:00,36.9725,66.22,20.67 +2016-05-23 15:32:00,36.4337,65.61,20.62 +2016-05-23 15:47:00,37.12,65.085,20.28 +2016-05-23 16:02:00,36.3412,64.62,19.03 +2016-05-23 16:17:00,35.11,64.1075,18.73 +2016-05-23 16:32:00,36.63,63.6425,18.66 +2016-05-23 16:47:00,36.4812,63.3475,18.38 +2016-05-23 17:02:00,35.5563,62.8925,18.15 +2016-05-23 17:17:00,35.1062,62.5875,18.02 +2016-05-23 17:32:00,36.3862,62.4625,17.87 +2016-05-23 17:47:00,35.2113,62.345,17.98 +2016-05-23 18:02:00,35.2175,62.2075,17.97 +2016-05-23 18:17:00,36.0975,62.21,17.92 +2016-05-23 18:32:00,37.5112,62.3175,18.21 +2016-05-23 18:47:00,35.75,62.2675,17.79 +2016-05-23 19:02:00,36.1462,62.4425,17.36 +2016-05-23 19:17:00,36.5262,62.595,17.51 +2016-05-23 19:32:00,35.3087,62.8325,17.35 +2016-05-23 19:47:00,40.6012,63.0675,17.3 +2016-05-23 20:02:00,36.78,63.4075,17.37 +2016-05-23 20:17:00,35.9,63.8175,17.5 +2016-05-23 20:32:00,36.0437,64.1525,18.05 +2016-05-23 20:47:00,37.165,64.4825,18.21 +2016-05-23 21:02:00,36.9238,65.4675,19.91 +2016-05-23 21:17:00,36.7775,66.9175,19.82 +2016-05-23 21:32:00,37.91,68.675,19.76 +2016-05-23 21:47:00,37.7137,71.035,19.72 +2016-05-23 22:02:00,36.6287,73.505,19.53 +2016-05-23 22:17:00,39.285,75.9425,19.64 +2016-05-23 22:32:00,38.7425,78.18,19.52 +2016-05-23 22:47:00,39.3862,79.1275,19.43 +2016-05-23 23:02:00,42.7975,79.5375,19.49 +2016-05-23 23:17:00,40.895,80.525,19.43 +2016-05-23 23:32:00,42.415,81.7775,19.28 +2016-05-23 23:47:00,41.8312,82.9225,19.22 +2016-05-24 00:02:00,40.1738,83.38,19.31 +2016-05-24 00:17:00,39.9762,83.8925,19.34 +2016-05-24 00:32:00,40.1687,83.1175,19.31 +2016-05-24 00:47:00,40.545,83.1775,19.3 +2016-05-24 01:02:00,40.5025,82.9075,19.29 +2016-05-24 01:17:00,41.0387,82.7075,19.28 +2016-05-24 01:32:00,40.65,82.4125,19.32 +2016-05-24 01:47:00,41.3812,82.1775,19.34 +2016-05-24 02:02:00,40.9938,82.1775,19.38 +2016-05-24 02:17:00,39.8838,82.3575,19.38 +2016-05-24 02:32:00,40.6475,82.515,19.38 +2016-05-24 02:47:00,41.5775,82.3925,19.38 +2016-05-24 03:02:00,41.7275,82.485,19.35 +2016-05-24 03:17:00,42.7988,82.4475,19.35 +2016-05-24 03:32:00,41.5337,82.4475,19.34 +2016-05-24 03:47:00,42.3162,82.54,19.33 +2016-05-24 04:02:00,42.015,82.2775,19.3 +2016-05-24 04:17:00,41.2762,82.31,19.26 +2016-05-24 04:32:00,41.915,82.1525,19.22 +2016-05-24 04:47:00,43.2825,82.215,19.18 +2016-05-24 05:02:00,42.5125,81.8325,19.13 +2016-05-24 05:17:00,41.9662,82.105,19.08 +2016-05-24 05:32:00,42.1687,81.9925,19.03 +2016-05-24 05:47:00,41.0863,81.7875,18.98 +2016-05-24 06:02:00,43.1375,82.01,18.91 +2016-05-24 06:17:00,39.8812,81.8975,18.85 +2016-05-24 06:32:00,43.6512,82.06,18.81 +2016-05-24 06:47:00,42.0163,81.855,18.75 +2016-05-24 07:02:00,41.0875,81.855,18.71 +2016-05-24 07:17:00,41.3812,82.14,18.68 +2016-05-24 07:32:00,42.0675,82.1375,18.67 +2016-05-24 07:47:00,41.4812,82.3225,18.69 +2016-05-24 08:02:00,43.09,82.3725,18.7 +2016-05-24 08:17:00,43.3763,82.385,18.71 +2016-05-24 08:32:00,41.375,82.61,18.7 +2016-05-24 08:47:00,40.745,82.735,18.72 +2016-05-24 09:02:00,40.3613,82.675,18.75 +2016-05-24 09:17:00,42.07,82.7325,18.78 +2016-05-24 09:32:00,42.4587,82.855,18.79 +2016-05-24 09:47:00,41.6263,82.855,18.79 +2016-05-24 10:02:00,42.5612,82.9075,18.77 +2016-05-24 10:17:00,42.3112,83.2075,18.76 +2016-05-24 10:32:00,42.27,83.26,18.75 +2016-05-24 10:47:00,40.8425,83.575,18.74 +2016-05-24 11:02:00,40.1712,83.635,18.75 +2016-05-24 11:17:00,41.4313,84.075,18.76 +2016-05-24 11:32:00,40.8462,84.2,18.58 +2016-05-24 11:47:00,41.0387,84.4775,18.64 +2016-05-24 12:02:00,42.0175,84.77,18.69 +2016-05-24 12:17:00,41.0837,84.885,18.69 +2016-05-24 12:32:00,41.3237,84.9825,18.64 +2016-05-24 12:47:00,40.995,85.3175,18.61 +2016-05-24 13:02:00,41.7262,85.295,18.56 +2016-05-24 13:17:00,42.265,85.4475,18.54 +2016-05-24 13:32:00,41.725,85.8525,18.5 +2016-05-24 13:47:00,43.3262,85.9975,18.44 +2016-05-24 14:02:00,41.3275,86.39,18.37 +2016-05-24 14:17:00,39.8337,86.465,18.29 +2016-05-24 14:32:00,42.115,86.915,18.22 +2016-05-24 14:47:00,40.3138,87.26,18.16 +2016-05-24 15:02:00,40.8475,87.8275,18.1 +2016-05-24 15:17:00,41.04,88.195,18.04 +2016-05-24 15:32:00,39.195,88.39,17.98 +2016-05-24 15:47:00,41.3763,89.0025,17.91 +2016-05-24 16:02:00,41.475,89.0425,17.86 +2016-05-24 16:17:00,40.545,89.4,17.8 +2016-05-24 16:32:00,41.23,90.15,17.76 +2016-05-24 16:47:00,40.9975,90.385,17.72 +2016-05-24 17:02:00,41.1825,90.75,17.69 +2016-05-24 17:17:00,42.46,91.2675,17.67 +2016-05-24 17:32:00,41.575,91.8925,17.65 +2016-05-24 17:47:00,42.1625,92.13,17.64 +2016-05-24 18:02:00,40.075,92.425,17.64 +2016-05-24 18:17:00,43.5112,92.745,17.62 +2016-05-24 18:32:00,41.7275,93.275,17.62 +2016-05-24 18:47:00,41.7775,93.485,17.6 +2016-05-24 19:02:00,42.8462,94.035,17.6 +2016-05-24 19:17:00,41.625,94.215,17.59 +2016-05-24 19:32:00,41.7712,94.52,17.58 +2016-05-24 19:47:00,40.99,94.825,17.57 +2016-05-24 20:02:00,41.5775,95.3625,17.56 +2016-05-24 20:17:00,42.2637,95.555,17.55 +2016-05-24 20:32:00,42.1663,95.7275,17.54 +2016-05-24 20:47:00,42.0187,96.0425,17.53 +2016-05-24 21:02:00,42.4587,96.4075,17.54 +2016-05-24 21:17:00,41.6263,96.8575,17.53 +2016-05-24 21:32:00,40.89,97.095,17.51 +2016-05-24 21:47:00,42.5062,97.42,17.49 +2016-05-24 22:02:00,40.5013,97.5175,17.48 +2016-05-24 22:17:00,40.31,97.765,17.45 +2016-05-24 22:32:00,41.2325,98.1425,17.44 +2016-05-24 22:47:00,41.1825,98.27,17.41 +2016-05-24 23:02:00,41.375,98.575,17.39 +2016-05-24 23:17:00,41.5287,98.7225,17.36 +2016-05-24 23:32:00,42.2188,99.0025,17.33 +2016-05-24 23:47:00,42.0137,99.3075,17.3 +2016-05-25 00:02:00,41.0887,99.5825,17.27 +2016-05-25 00:17:00,40.1237,99.865,17.24 +2016-05-25 00:32:00,41.0875,99.835,17.19 +2016-05-25 00:47:00,40.8412,100.042,17.15 +2016-05-25 01:02:00,42.6075,100.235,17.12 +2016-05-25 01:17:00,41.0375,100.185,17.08 +2016-05-25 01:32:00,42.165,100.072,17.04 +2016-05-25 01:47:00,41.04,100.012,17.01 +2016-05-25 02:02:00,42.16,100.382,16.98 +2016-05-25 02:17:00,40.8937,100.175,16.95 +2016-05-25 02:32:00,41.63,100.003,16.92 +2016-05-25 02:47:00,43.04,100.145,16.88 +2016-05-25 03:02:00,41.3725,99.895,16.85 +2016-05-25 03:17:00,41.9675,99.78,16.81 +2016-05-25 03:32:00,41.2262,99.7525,16.77 +2016-05-25 03:47:00,40.1162,99.315,16.76 +2016-05-25 04:02:00,41.5788,99.4775,16.72 +2016-05-25 04:17:00,41.5775,99.3875,16.7 +2016-05-25 04:32:00,40.075,99.255,16.68 +2016-05-25 04:47:00,41.8675,98.9775,16.65 +2016-05-25 05:02:00,40.695,99.035,16.63 +2016-05-25 05:17:00,41.2262,98.8075,16.61 +2016-05-25 05:32:00,42.6488,98.8275,16.6 +2016-05-25 05:47:00,40.6937,98.7475,16.61 +2016-05-25 06:02:00,42.8462,98.075,16.6 +2016-05-25 06:17:00,42.0163,98.225,16.62 +2016-05-25 06:32:00,41.37,98.0675,16.64 +2016-05-25 06:47:00,42.455,98.235,16.67 +2016-05-25 07:02:00,41.085,97.875,16.68 +2016-05-25 07:17:00,41.9613,97.81,16.68 +2016-05-25 07:32:00,41.72,97.75,16.69 +2016-05-25 07:47:00,43.8475,97.75,16.7 +2016-05-25 08:02:00,42.265,97.665,16.72 +2016-05-25 08:17:00,43.8,97.5125,16.72 +2016-05-25 08:32:00,41.525,97.4725,16.71 +2016-05-25 08:47:00,42.065,97.05,16.7 +2016-05-25 09:02:00,41.8662,96.9675,16.71 +2016-05-25 09:17:00,42.1087,96.745,16.71 +2016-05-25 09:32:00,40.5462,96.7975,16.71 +2016-05-25 09:47:00,42.3112,96.5925,16.73 +2016-05-25 10:02:00,43.375,96.6275,16.74 +2016-05-25 10:17:00,42.8425,96.9125,16.74 +2016-05-25 10:32:00,41.5725,97.465,16.73 +2016-05-25 10:47:00,41.4238,98.04,16.72 +2016-05-25 11:02:00,42.1075,98.4075,16.72 +2016-05-25 11:17:00,42.555,99.2625,16.72 +2016-05-25 11:32:00,42.555,101.378,16.73 +2016-05-25 11:47:00,39.935,104.537,16.77 +2016-05-25 12:02:00,41.575,107.85,16.76 +2016-05-25 12:17:00,42.9912,110.55,16.72 +2016-05-25 12:32:00,40.695,112.217,16.69 +2016-05-25 12:47:00,42.9362,111.582,16.64 +2016-05-25 13:02:00,41.2762,110.02,16.63 +2016-05-25 13:17:00,42.3112,108.102,16.65 +2016-05-25 13:32:00,43.4212,105.612,16.7 +2016-05-25 13:47:00,41.6275,103.39,16.76 +2016-05-25 14:02:00,42.5575,101.25,16.82 +2016-05-25 14:17:00,41.2787,99.5775,16.85 +2016-05-25 14:32:00,44.425,97.9425,16.89 +2016-05-25 14:47:00,42.5575,96.83,16.93 +2016-05-25 15:02:00,41.67,95.7825,16.95 +2016-05-25 15:17:00,41.9625,95.175,16.97 +2016-05-25 15:32:00,42.46,94.665,16.98 +2016-05-25 15:47:00,41.3712,94.0425,17.0 +2016-05-25 16:02:00,41.58,93.74,17.01 +2016-05-25 16:17:00,42.3087,93.4975,17.02 +2016-05-25 16:32:00,42.4575,93.215,17.02 +2016-05-25 16:47:00,43.0387,92.895,17.02 +2016-05-25 17:02:00,41.6738,92.96,17.0 +2016-05-25 17:17:00,41.9137,92.965,16.97 +2016-05-25 17:32:00,42.56,92.7825,16.96 +2016-05-25 17:47:00,42.94,92.8375,16.94 +2016-05-25 18:02:00,41.5187,92.685,16.93 +2016-05-25 18:17:00,40.4487,92.8,16.91 +2016-05-25 18:32:00,41.8637,92.6025,16.89 +2016-05-25 18:47:00,41.865,92.35,16.87 +2016-05-25 19:02:00,40.2175,92.425,16.86 +2016-05-25 19:17:00,41.675,92.335,16.84 +2016-05-25 19:32:00,41.6287,92.265,16.83 +2016-05-25 19:47:00,43.3237,92.1075,16.81 +2016-05-25 20:02:00,42.36,92.13,16.79 +2016-05-25 20:17:00,41.2787,92.0725,16.79 +2016-05-25 20:32:00,41.4762,92.1025,16.81 +2016-05-25 20:47:00,41.8662,92.0375,16.8 +2016-05-25 21:02:00,43.945,92.0175,16.8 +2016-05-25 21:17:00,41.965,92.07,16.81 +2016-05-25 21:32:00,42.1175,92.01,16.81 +2016-05-25 21:47:00,41.2262,91.97,16.82 +2016-05-25 22:02:00,41.7738,91.87,16.82 +2016-05-25 22:17:00,42.7975,91.5575,16.82 +2016-05-25 22:32:00,43.1325,91.615,16.83 +2016-05-25 22:47:00,42.2075,91.4725,16.84 +2016-05-25 23:02:00,41.6787,91.1675,16.83 +2016-05-25 23:17:00,41.1813,91.0725,16.81 +2016-05-25 23:32:00,42.6987,90.8875,16.79 +2016-05-25 23:47:00,41.4262,90.79,16.77 +2016-05-26 00:02:00,41.2787,90.5175,16.75 +2016-05-26 00:17:00,42.5563,90.5175,16.75 +2016-05-26 00:32:00,43.6537,90.395,16.75 +2016-05-26 00:47:00,40.7438,90.2125,16.75 +2016-05-26 01:02:00,42.9425,90.14,16.74 +2016-05-26 01:17:00,43.5587,90.165,16.73 +2016-05-26 01:32:00,40.8937,89.8775,16.71 +2016-05-26 01:47:00,42.5563,89.765,16.67 +2016-05-26 02:02:00,41.1762,89.6975,16.62 +2016-05-26 02:17:00,42.6975,89.6225,16.58 +2016-05-26 02:32:00,41.6237,89.5625,16.56 +2016-05-26 02:47:00,41.6263,89.565,16.53 +2016-05-26 03:02:00,41.28,89.575,16.49 +2016-05-26 03:17:00,42.16,89.485,16.46 +2016-05-26 03:32:00,42.3575,89.745,16.41 +2016-05-26 03:47:00,42.1587,89.5275,16.37 +2016-05-26 04:02:00,42.2637,89.5275,16.34 +2016-05-26 04:17:00,42.0125,89.4625,16.31 +2016-05-26 04:32:00,42.2588,89.2175,16.3 +2016-05-26 04:47:00,41.625,89.0175,16.29 +2016-05-26 05:02:00,41.3763,88.8,16.27 +2016-05-26 05:17:00,40.7425,88.755,16.24 +2016-05-26 05:32:00,42.945,88.565,16.28 +2016-05-26 05:47:00,41.8637,88.5425,16.33 +2016-05-26 06:02:00,41.5275,88.52,16.38 +2016-05-26 06:17:00,42.8425,88.4125,16.42 +2016-05-26 06:32:00,42.6987,88.39,16.46 +2016-05-26 06:47:00,42.3112,88.615,16.49 +2016-05-26 07:02:00,41.92,88.66,16.51 +2016-05-26 07:17:00,42.6512,88.5425,16.53 +2016-05-26 07:32:00,41.8213,88.52,16.58 +2016-05-26 07:47:00,40.84,88.58,16.63 +2016-05-26 08:02:00,41.7738,88.86,16.67 +2016-05-26 08:17:00,43.605,88.9375,16.73 +2016-05-26 08:32:00,41.4287,88.935,16.73 +2016-05-26 08:47:00,40.795,88.9875,16.71 +2016-05-26 09:02:00,42.2625,88.885,16.74 +2016-05-26 09:17:00,41.865,88.7375,16.83 +2016-05-26 09:32:00,41.6712,88.595,16.89 +2016-05-26 09:47:00,41.1312,88.14,16.94 +2016-05-26 10:02:00,40.0713,87.8675,16.9 +2016-05-26 10:17:00,41.7738,87.8775,16.85 +2016-05-26 10:32:00,42.6562,87.66,16.88 +2016-05-26 10:47:00,42.2162,87.6575,16.89 +2016-05-26 11:02:00,42.1612,87.82,16.98 +2016-05-26 11:17:00,41.5238,87.7875,17.06 +2016-05-26 11:32:00,43.1837,87.8,16.99 +2016-05-26 11:47:00,41.9163,87.84,16.95 +2016-05-26 12:02:00,42.51,87.5475,16.98 +2016-05-26 12:17:00,43.6087,87.6225,16.99 +2016-05-26 12:32:00,42.9987,87.05,17.02 +2016-05-26 12:47:00,41.625,86.7775,17.08 +2016-05-26 13:02:00,43.5525,86.7425,17.08 +2016-05-26 13:17:00,40.1687,86.165,17.08 +2016-05-26 13:32:00,41.5737,85.715,17.05 +2016-05-26 13:47:00,42.56,85.46,17.07 +2016-05-26 14:02:00,43.9925,85.32,17.07 +2016-05-26 14:17:00,42.115,84.9475,17.09 +2016-05-26 14:32:00,42.605,84.645,17.1 +2016-05-26 14:47:00,42.6025,84.2825,17.1 +2016-05-26 15:02:00,43.0375,84.045,17.12 +2016-05-26 15:17:00,41.525,83.7125,17.11 +2016-05-26 15:32:00,41.4775,83.745,17.11 +2016-05-26 15:47:00,41.1775,83.84,17.14 +2016-05-26 16:02:00,43.1375,83.75,17.15 +2016-05-26 16:17:00,41.965,83.72,17.17 +2016-05-26 16:32:00,42.2175,83.5425,17.19 +2016-05-26 16:47:00,42.0675,83.5375,17.22 +2016-05-26 17:02:00,42.5088,83.395,17.21 +2016-05-26 17:17:00,42.51,83.295,17.19 +2016-05-26 17:32:00,41.8688,83.2025,17.19 +2016-05-26 17:47:00,42.1125,83.41,17.2 +2016-05-26 18:02:00,43.4675,83.385,17.22 +2016-05-26 18:17:00,42.7513,83.22,17.23 +2016-05-26 18:32:00,41.6762,83.145,17.23 +2016-05-26 18:47:00,44.475,83.09,17.23 +2016-05-26 19:02:00,42.265,83.2675,17.22 +2016-05-26 19:17:00,43.2787,83.1925,17.22 +2016-05-26 19:32:00,42.8962,83.2375,17.2 +2016-05-26 19:47:00,41.6263,83.2,17.19 +2016-05-26 20:02:00,42.4137,83.42,17.18 +2016-05-26 20:17:00,43.3325,83.515,17.19 +2016-05-26 20:32:00,42.6075,83.7675,17.18 +2016-05-26 20:47:00,43.3262,83.8825,17.17 +2016-05-26 21:02:00,44.38,83.9075,17.17 +2016-05-26 21:17:00,43.9475,84.015,17.16 +2016-05-26 21:32:00,43.4187,84.0925,17.18 +2016-05-26 21:47:00,43.0912,84.015,17.17 +2016-05-26 22:02:00,42.8487,83.9925,17.17 +2016-05-26 22:17:00,43.1387,84.0,17.17 +2016-05-26 22:32:00,42.99,84.0575,17.16 +2016-05-26 22:47:00,44.2762,83.995,17.15 +2016-05-26 23:02:00,44.4737,84.0075,17.14 +2016-05-26 23:17:00,43.3237,84.0775,17.12 +2016-05-26 23:32:00,43.4175,84.0975,17.1 +2016-05-26 23:47:00,42.2712,84.09,17.09 +2016-05-27 00:02:00,41.9225,84.0375,17.07 +2016-05-27 00:17:00,45.145,84.1425,17.05 +2016-05-27 00:32:00,42.0112,84.3525,17.02 +2016-05-27 00:47:00,42.7,84.245,17.0 +2016-05-27 01:02:00,41.5262,84.535,16.97 +2016-05-27 01:17:00,41.8225,84.5825,16.95 +2016-05-27 01:32:00,43.0875,84.4825,16.92 +2016-05-27 01:47:00,42.3637,84.445,16.91 +2016-05-27 02:02:00,43.3312,84.46,16.88 +2016-05-27 02:17:00,43.7012,84.3075,16.86 +2016-05-27 02:32:00,43.9025,84.2925,16.84 +2016-05-27 02:47:00,44.0925,84.225,16.82 +2016-05-27 03:02:00,43.2288,84.2375,16.81 +2016-05-27 03:17:00,42.46,84.1375,16.8 +2016-05-27 03:32:00,-0.12875,84.19,16.81 +2016-05-27 03:47:00,37.815,84.2175,16.8 +2016-05-27 04:02:00,37.4087,84.25,16.81 +2016-05-27 04:17:00,37.7087,84.075,16.8 +2016-05-27 04:32:00,38.0088,84.035,16.8 +2016-05-27 04:47:00,38.985,84.055,16.8 +2016-05-27 05:02:00,100.349,84.215,16.79 +2016-05-27 05:17:00,-0.137501,84.085,16.8 +2016-05-27 05:32:00,-0.1325,84.1075,16.82 +2016-05-27 05:47:00,-0.1325,83.9975,16.85 +2016-05-27 06:02:00,-0.1325,83.9425,16.87 +2016-05-27 06:17:00,38.1575,84.0425,16.89 +2016-05-27 06:32:00,35.2087,84.1025,16.9 +2016-05-27 06:47:00,35.0537,84.2375,16.92 +2016-05-27 07:02:00,36.19,84.1775,16.96 +2016-05-27 07:17:00,36.7762,84.4175,16.98 +2016-05-27 07:32:00,36.2412,84.38,17.05 +2016-05-27 07:47:00,37.4587,84.2675,17.12 +2016-05-27 08:02:00,34.8613,84.2625,17.19 +2016-05-27 08:17:00,35.555,84.315,17.22 +2016-05-27 08:32:00,34.2838,84.1675,17.21 +2016-05-27 08:47:00,35.795,84.11,17.21 +2016-05-27 09:02:00,32.7725,84.0,17.23 +2016-05-27 09:17:00,34.2887,83.8725,17.27 +2016-05-27 09:32:00,34.5837,83.8475,17.33 +2016-05-27 09:47:00,33.17,83.85,17.35 +2016-05-27 10:02:00,34.9088,83.9775,17.36 +2016-05-27 10:17:00,34.1375,84.1225,17.38 +2016-05-27 10:32:00,34.0425,84.1025,17.37 +2016-05-27 10:47:00,34.1362,84.2325,17.32 +2016-05-27 11:02:00,34.1362,84.26,17.28 +2016-05-27 11:17:00,34.1912,84.055,17.24 +2016-05-27 11:32:00,32.2425,84.1425,17.22 +2016-05-27 11:47:00,34.9088,83.885,17.2 +2016-05-27 12:02:00,34.9112,83.8125,17.17 +2016-05-27 12:17:00,34.6725,83.7475,17.12 +2016-05-27 12:32:00,32.9225,83.64,17.09 +2016-05-27 12:47:00,34.6225,83.5675,17.06 +2016-05-27 13:02:00,31.7438,83.62,17.04 +2016-05-27 13:17:00,32.0437,83.52,17.03 +2016-05-27 13:32:00,32.92,83.53,17.03 +2016-05-27 13:47:00,32.6762,83.4375,17.03 +2016-05-27 14:02:00,34.1862,83.415,17.05 +2016-05-27 14:17:00,33.265,83.2525,17.05 +2016-05-27 14:32:00,35.3525,83.26,17.05 +2016-05-27 14:47:00,34.5287,83.2825,17.05 +2016-05-27 15:02:00,32.8325,83.265,17.05 +2016-05-27 15:17:00,33.9037,83.34,17.07 +2016-05-27 15:32:00,32.7725,83.5025,17.1 +2016-05-27 15:47:00,35.305,83.62,17.13 +2016-05-27 16:02:00,32.14,83.565,17.17 +2016-05-27 16:17:00,33.8525,83.595,17.19 +2016-05-27 16:32:00,35.6975,83.7225,17.18 +2016-05-27 16:47:00,32.9313,83.4725,17.2 +2016-05-27 17:02:00,33.5125,83.455,17.2 +2016-05-27 17:17:00,34.7738,83.4575,17.18 +2016-05-27 17:32:00,33.4088,83.3575,17.16 +2016-05-27 17:47:00,33.9025,83.245,17.13 +2016-05-27 18:02:00,34.7712,83.3775,17.11 +2016-05-27 18:17:00,35.1537,83.24,17.1 +2016-05-27 18:32:00,35.255,83.155,17.09 +2016-05-27 18:47:00,32.7275,83.1775,17.09 +2016-05-27 19:02:00,34.4863,83.0975,17.09 +2016-05-27 19:17:00,34.3812,83.11,17.08 +2016-05-27 19:32:00,31.84,83.15,17.1 +2016-05-27 19:47:00,30.9962,83.0825,17.1 +2016-05-27 20:02:00,34.2325,83.155,17.11 +2016-05-27 20:17:00,34.6237,83.2275,17.11 +2016-05-27 20:32:00,34.3838,83.2925,17.1 +2016-05-27 20:47:00,35.2588,83.365,17.08 +2016-05-27 21:02:00,33.6125,83.3575,17.07 +2016-05-27 21:17:00,33.6575,83.275,17.07 +2016-05-27 21:32:00,33.5088,83.22,17.06 +2016-05-27 21:47:00,33.8512,83.17,17.06 +2016-05-27 22:02:00,34.9587,83.065,17.05 +2016-05-27 22:17:00,33.8525,83.055,17.04 +2016-05-27 22:32:00,34.3913,83.105,17.03 +2016-05-27 22:47:00,36.625,82.9875,17.02 +2016-05-27 23:02:00,34.7687,83.125,17.01 +2016-05-27 23:17:00,33.9037,82.9525,17.0 +2016-05-27 23:32:00,34.135,82.94,16.97 +2016-05-27 23:47:00,34.3812,82.8825,16.95 +2016-05-28 00:02:00,35.505,82.8875,16.94 +2016-05-28 00:17:00,34.2862,82.8775,16.93 +2016-05-28 00:32:00,34.7775,82.86,16.93 +2016-05-28 00:47:00,33.7562,82.8375,16.91 +2016-05-28 01:02:00,35.1062,82.845,16.91 +2016-05-28 01:17:00,33.6075,82.9,16.92 +2016-05-28 01:32:00,36.4287,82.705,16.91 +2016-05-28 01:47:00,35.3538,82.7725,16.9 +2016-05-28 02:02:00,35.2062,82.7525,16.87 +2016-05-28 02:17:00,33.6612,82.8175,16.85 +2016-05-28 02:32:00,33.4625,82.9175,16.83 +2016-05-28 02:47:00,35.46,82.995,16.8 +2016-05-28 03:02:00,32.8763,83.0,16.77 +2016-05-28 03:17:00,32.4825,83.0,16.75 +2016-05-28 03:32:00,33.5563,82.9175,16.73 +2016-05-28 03:47:00,35.0587,82.9375,16.73 +2016-05-28 04:02:00,34.7738,82.8125,16.71 +2016-05-28 04:17:00,35.51,82.71,16.7 +2016-05-28 04:32:00,35.1588,82.535,16.68 +2016-05-28 04:47:00,33.9512,82.4975,16.65 +2016-05-28 05:02:00,34.5762,82.5925,16.63 +2016-05-28 05:17:00,33.1212,82.595,16.6 +2016-05-28 05:32:00,34.9587,82.77,16.58 +2016-05-28 05:47:00,33.9512,82.7975,16.55 +2016-05-28 06:02:00,35.5037,82.785,16.54 +2016-05-28 06:17:00,34.2838,82.865,16.53 +2016-05-28 06:32:00,36.0938,82.705,16.55 +2016-05-28 06:47:00,35.2075,82.8025,16.58 +2016-05-28 07:02:00,34.285,82.575,16.61 +2016-05-28 07:17:00,33.2175,82.5475,16.65 +2016-05-28 07:32:00,33.6062,82.715,16.75 +2016-05-28 07:47:00,34.3337,82.665,16.88 +2016-05-28 08:02:00,36.2875,82.8,17.03 +2016-05-28 08:17:00,34.1925,82.91,17.13 +2016-05-28 08:32:00,33.17,82.8975,17.2 +2016-05-28 08:47:00,34.8175,82.945,17.25 +2016-05-28 09:02:00,35.0575,82.8925,17.35 +2016-05-28 09:17:00,34.7275,82.6625,17.45 +2016-05-28 09:32:00,34.0462,82.7825,17.45 +2016-05-28 09:47:00,32.7762,82.76,17.54 +2016-05-28 10:02:00,36.1462,82.75,17.65 +2016-05-28 10:17:00,34.0025,82.715,17.77 +2016-05-28 10:32:00,35.6512,82.665,17.82 +2016-05-28 10:47:00,34.8625,82.85,17.88 +2016-05-28 11:02:00,33.7062,83.05,18.0 +2016-05-28 11:17:00,34.0912,83.075,18.09 +2016-05-28 11:32:00,32.7687,83.155,18.18 +2016-05-28 11:47:00,35.3075,82.9775,18.3 +2016-05-28 12:02:00,35.9975,82.785,18.31 +2016-05-28 12:17:00,34.4337,82.7975,18.35 +2016-05-28 12:32:00,33.8,82.6575,18.36 +2016-05-28 12:47:00,34.4337,82.6275,18.38 +2016-05-28 13:02:00,35.7925,82.7175,18.26 +2016-05-28 13:17:00,35.6937,82.89,18.32 +2016-05-28 13:32:00,34.7712,82.865,18.32 +2016-05-28 13:47:00,34.4388,82.9875,18.29 +2016-05-28 14:02:00,35.4587,82.99,18.24 +2016-05-28 14:17:00,34.6725,83.035,18.29 +2016-05-28 14:32:00,36.2363,82.9775,18.29 +2016-05-28 14:47:00,35.9938,82.88,18.24 +2016-05-28 15:02:00,35.6963,82.71,18.24 +2016-05-28 15:17:00,34.1387,82.775,18.26 +2016-05-28 15:32:00,34.235,82.705,18.23 +2016-05-28 15:47:00,34.3312,82.765,18.17 +2016-05-28 16:02:00,35.8962,83.07,18.15 +2016-05-28 16:17:00,34.335,82.91,18.12 +2016-05-28 16:32:00,35.2562,83.02,18.11 +2016-05-28 16:47:00,33.8037,83.0875,18.1 +2016-05-28 17:02:00,35.995,83.0625,18.09 +2016-05-28 17:17:00,35.355,82.9875,18.06 +2016-05-28 17:32:00,34.87,82.9675,18.04 +2016-05-28 17:47:00,33.6125,82.9275,18.03 +2016-05-28 18:02:00,34.8662,82.795,18.03 +2016-05-28 18:17:00,34.0912,82.8675,18.03 +2016-05-28 18:32:00,34.095,82.9,18.02 +2016-05-28 18:47:00,36.0925,82.9875,18.03 +2016-05-28 19:02:00,33.955,83.0825,18.05 +2016-05-28 19:17:00,35.1575,83.15,18.08 +2016-05-28 19:32:00,33.2213,83.1275,18.09 +2016-05-28 19:47:00,34.4875,83.11,18.11 +2016-05-28 20:02:00,35.8975,83.085,18.14 +2016-05-28 20:17:00,36.1462,83.1075,18.18 +2016-05-28 20:32:00,35.2575,82.8825,18.21 +2016-05-28 20:47:00,35.1087,83.0,18.23 +2016-05-28 21:02:00,36.0462,82.935,18.26 +2016-05-28 21:17:00,37.075,82.8625,18.3 +2016-05-28 21:32:00,34.9637,82.9125,18.35 +2016-05-28 21:47:00,35.0563,82.9875,18.39 +2016-05-28 22:02:00,35.4112,83.21,18.41 +2016-05-28 22:17:00,35.2087,83.2025,18.42 +2016-05-28 22:32:00,34.9125,83.325,18.44 +2016-05-28 22:47:00,33.465,83.19,18.46 +2016-05-28 23:02:00,36.0963,83.195,18.48 +2016-05-28 23:17:00,33.365,83.065,18.5 +2016-05-28 23:32:00,34.0938,82.92,18.52 +2016-05-28 23:47:00,33.5088,82.805,18.56 +2016-05-29 00:02:00,34.235,83.005,18.58 +2016-05-29 00:17:00,34.33,82.9525,18.63 +2016-05-29 00:32:00,34.8162,82.9,18.67 +2016-05-29 00:47:00,35.455,82.9725,18.69 +2016-05-29 01:02:00,34.9575,83.14,18.7 +2016-05-29 01:17:00,34.0,83.0925,18.72 +2016-05-29 01:32:00,35.16,83.06,18.73 +2016-05-29 01:47:00,33.1225,83.03,18.73 +2016-05-29 02:02:00,33.075,82.985,18.72 +2016-05-29 02:17:00,35.745,82.8275,18.69 +2016-05-29 02:32:00,33.6588,82.825,18.66 +2016-05-29 02:47:00,35.0537,82.9875,18.65 +2016-05-29 03:02:00,35.7012,83.105,18.61 +2016-05-29 03:17:00,34.435,83.33,18.58 +2016-05-29 03:32:00,35.36,83.3725,18.54 +2016-05-29 03:47:00,34.4362,83.475,18.49 +2016-05-29 04:02:00,34.4337,83.4825,18.46 +2016-05-29 04:17:00,36.1888,83.46,18.45 +2016-05-29 04:32:00,34.4337,83.31,18.43 +2016-05-29 04:47:00,34.045,83.11,18.4 +2016-05-29 05:02:00,35.1087,83.255,18.35 +2016-05-29 05:17:00,34.0,83.1875,18.3 +2016-05-29 05:32:00,32.2425,83.36,18.28 +2016-05-29 05:47:00,34.1475,83.4425,18.3 +2016-05-29 06:02:00,35.2062,83.5025,18.35 +2016-05-29 06:17:00,33.7525,83.6425,18.39 +2016-05-29 06:32:00,36.5762,83.885,18.42 +2016-05-29 06:47:00,35.1087,83.8,18.47 +2016-05-29 07:02:00,35.46,83.9325,18.52 +2016-05-29 07:17:00,36.24,83.915,18.6 +2016-05-29 07:32:00,36.5737,83.85,18.63 +2016-05-29 07:47:00,33.6075,83.7375,18.69 +2016-05-29 08:02:00,34.8637,83.7425,18.69 +2016-05-29 08:17:00,34.91,83.9475,18.7 +2016-05-29 08:32:00,35.6462,83.805,18.78 +2016-05-29 08:47:00,35.1113,83.885,18.99 +2016-05-29 09:02:00,34.0963,84.0325,19.18 +2016-05-29 09:17:00,32.9275,84.1025,19.36 +2016-05-29 09:32:00,34.3375,84.205,19.47 +2016-05-29 09:47:00,35.055,84.2325,19.49 +2016-05-29 10:02:00,35.8475,84.1725,19.46 +2016-05-29 10:17:00,35.305,83.985,19.51 +2016-05-29 10:32:00,34.6787,83.9725,19.5 +2016-05-29 10:47:00,32.7787,84.0875,19.47 +2016-05-29 11:02:00,36.3862,83.985,19.43 +2016-05-29 11:17:00,34.0,84.1675,19.5 +2016-05-29 11:32:00,35.8975,84.2175,19.65 +2016-05-29 11:47:00,35.305,84.3575,19.77 +2016-05-29 12:02:00,35.0075,84.4975,19.83 +2016-05-29 12:17:00,36.0437,84.5775,19.85 +2016-05-29 12:32:00,35.0587,84.7425,19.86 +2016-05-29 12:47:00,36.4337,84.6875,19.83 +2016-05-29 13:02:00,31.845,84.6975,19.8 +2016-05-29 13:17:00,32.5762,84.5325,19.85 +2016-05-29 13:32:00,32.3913,84.7825,19.83 +2016-05-29 13:47:00,35.6012,84.8,19.82 +2016-05-29 14:02:00,36.5788,84.89,19.84 +2016-05-29 14:17:00,33.7075,85.2075,19.9 +2016-05-29 14:32:00,36.8775,85.2,19.9 +2016-05-29 14:47:00,35.5587,85.2725,19.86 +2016-05-29 15:02:00,33.955,85.665,19.78 +2016-05-29 15:17:00,36.34,85.6025,19.72 +2016-05-29 15:32:00,36.6275,85.5775,19.67 +2016-05-29 15:47:00,33.075,85.8,19.58 +2016-05-29 16:02:00,34.28,85.89,19.53 +2016-05-29 16:17:00,35.1087,86.0875,19.49 +2016-05-29 16:32:00,32.5837,86.3825,19.45 +2016-05-29 16:47:00,32.5825,86.66,19.42 +2016-05-29 17:02:00,32.8275,87.005,19.37 +2016-05-29 17:17:00,33.125,87.43,19.3 +2016-05-29 17:32:00,35.1075,87.8775,19.27 +2016-05-29 17:47:00,37.3587,88.09,19.25 +2016-05-29 18:02:00,36.4325,88.45,19.25 +2016-05-29 18:17:00,37.4137,88.8125,19.23 +2016-05-29 18:32:00,34.8675,89.115,19.24 +2016-05-29 18:47:00,36.095,89.5325,19.27 +2016-05-29 19:02:00,36.4825,90.0325,19.32 +2016-05-29 19:17:00,34.8675,90.595,19.37 +2016-05-29 19:32:00,34.2425,91.1675,19.42 +2016-05-29 19:47:00,35.5575,91.785,19.49 +2016-05-29 20:02:00,36.58,92.4525,19.56 +2016-05-29 20:17:00,34.44,92.89,19.62 +2016-05-29 20:32:00,34.3375,93.4325,19.68 +2016-05-29 20:47:00,34.7738,94.02,19.77 +2016-05-29 21:02:00,32.8812,94.4975,19.82 +2016-05-29 21:17:00,35.11,95.1275,19.89 +2016-05-29 21:32:00,36.925,95.73,19.95 +2016-05-29 21:47:00,34.3387,96.5225,20.01 +2016-05-29 22:02:00,35.0125,97.025,20.04 +2016-05-29 22:17:00,34.0088,97.9275,20.08 +2016-05-29 22:32:00,35.355,98.4775,20.11 +2016-05-29 22:47:00,35.9463,99.13,20.14 +2016-05-29 23:02:00,34.9613,99.6675,20.15 +2016-05-29 23:17:00,35.8,100.265,20.13 +2016-05-29 23:32:00,34.77,100.735,20.11 +2016-05-29 23:47:00,34.19,101.283,20.1 +2016-05-30 00:02:00,33.9562,101.77,20.08 +2016-05-30 00:17:00,35.3662,102.247,20.05 +2016-05-30 00:32:00,36.625,102.94,20.01 +2016-05-30 00:47:00,35.36,103.525,19.95 +2016-05-30 01:02:00,35.2625,104.135,19.89 +2016-05-30 01:17:00,36.2975,104.492,19.83 +2016-05-30 01:32:00,33.7125,105.135,19.78 +2016-05-30 01:47:00,35.7012,105.46,19.7 +2016-05-30 02:02:00,33.1325,105.652,19.64 +2016-05-30 02:17:00,34.5375,105.955,19.58 +2016-05-30 02:32:00,33.3138,106.247,19.53 +2016-05-30 02:47:00,35.4562,106.597,19.49 +2016-05-30 03:02:00,35.1075,107.03,19.44 +2016-05-30 03:17:00,36.6287,107.227,19.41 +2016-05-30 03:32:00,35.4037,107.645,19.39 +2016-05-30 03:47:00,34.1875,108.027,19.37 +2016-05-30 04:02:00,35.3138,108.475,19.35 +2016-05-30 04:17:00,33.61,108.557,19.36 +2016-05-30 04:32:00,36.0925,108.677,19.35 +2016-05-30 04:47:00,35.055,109.115,19.35 +2016-05-30 05:02:00,36.0488,109.132,19.35 +2016-05-30 05:17:00,35.1075,109.445,19.35 +2016-05-30 05:32:00,33.9538,109.61,19.34 +2016-05-30 05:47:00,34.9625,109.798,19.34 +2016-05-30 06:02:00,36.0512,112.147,19.34 +2016-05-30 06:17:00,37.1675,114.375,19.32 +2016-05-30 06:32:00,34.1387,115.967,19.29 +2016-05-30 06:47:00,36.48,116.702,19.22 +2016-05-30 07:02:00,34.915,117.085,19.15 +2016-05-30 07:17:00,35.46,117.345,19.12 +2016-05-30 07:32:00,33.32,117.432,19.08 +2016-05-30 07:47:00,35.655,117.322,19.04 +2016-05-30 08:02:00,37.5163,117.24,19.0 +2016-05-30 08:17:00,34.2363,117.275,18.99 +2016-05-30 08:32:00,35.505,117.262,19.0 +2016-05-30 08:47:00,34.6813,117.092,19.02 +2016-05-30 09:02:00,34.535,117.305,19.08 +2016-05-30 09:17:00,35.3562,117.277,19.11 +2016-05-30 09:32:00,34.9175,117.3,19.15 +2016-05-30 09:47:00,36.34,117.312,19.2 +2016-05-30 10:02:00,37.26,117.26,19.23 +2016-05-30 10:17:00,35.5575,117.423,19.25 +2016-05-30 10:32:00,34.9625,117.845,19.29 +2016-05-30 10:47:00,36.2475,118.557,19.4 +2016-05-30 11:02:00,36.3838,119.15,19.49 +2016-05-30 11:17:00,35.8975,120.115,19.47 +2016-05-30 11:32:00,35.2612,120.658,19.43 +2016-05-30 11:47:00,36.9225,121.707,19.52 +2016-05-30 12:02:00,37.1675,122.432,19.52 +2016-05-30 12:17:00,37.41,123.03,19.45 +2016-05-30 12:32:00,36.825,123.457,19.4 +2016-05-30 12:47:00,36.2975,123.975,19.38 +2016-05-30 13:02:00,35.8962,124.347,19.41 +2016-05-30 13:17:00,36.9775,124.677,19.49 +2016-05-30 13:32:00,37.03,125.112,19.49 +2016-05-30 13:47:00,36.5788,125.382,19.6 +2016-05-30 14:02:00,36.8787,125.572,19.71 +2016-05-30 14:17:00,37.2113,125.495,19.77 +2016-05-30 14:32:00,37.4112,125.315,19.8 +2016-05-30 14:47:00,36.19,124.98,19.83 +2016-05-30 15:02:00,36.6725,124.945,19.87 +2016-05-30 15:17:00,36.675,124.84,19.91 +2016-05-30 15:32:00,37.915,124.452,19.93 +2016-05-30 15:47:00,37.4062,124.412,19.93 +2016-05-30 16:02:00,36.92,123.98,19.88 +2016-05-30 16:17:00,36.0963,123.78,19.89 +2016-05-30 16:32:00,37.3575,123.503,19.9 +2016-05-30 16:47:00,36.525,123.048,19.92 +2016-05-30 17:02:00,37.7625,122.912,19.94 +2016-05-30 17:17:00,36.0963,122.635,19.94 +2016-05-30 17:32:00,37.9575,122.45,19.94 +2016-05-30 17:47:00,36.9725,122.11,19.94 +2016-05-30 18:02:00,37.1637,121.765,19.94 +2016-05-30 18:17:00,37.4062,121.507,19.95 +2016-05-30 18:32:00,37.265,121.027,19.95 +2016-05-30 18:47:00,37.0713,120.692,19.95 +2016-05-30 19:02:00,35.95,120.322,19.94 +2016-05-30 19:17:00,37.2625,120.147,19.94 +2016-05-30 19:32:00,36.7738,119.7,19.94 +2016-05-30 19:47:00,37.2125,119.317,19.93 +2016-05-30 20:02:00,37.5625,119.087,19.93 +2016-05-30 20:17:00,36.9238,118.845,19.93 +2016-05-30 20:32:00,36.6738,118.557,19.94 +2016-05-30 20:47:00,37.4112,118.325,19.94 +2016-05-30 21:02:00,36.485,118.192,19.95 +2016-05-30 21:17:00,36.5725,117.91,19.96 +2016-05-30 21:32:00,36.5762,117.67,19.96 +2016-05-30 21:47:00,38.555,117.445,19.96 +2016-05-30 22:02:00,36.5238,117.107,19.95 +2016-05-30 22:17:00,37.0225,116.908,19.94 +2016-05-30 22:32:00,37.5638,116.63,19.9 +2016-05-30 22:47:00,38.2675,116.362,19.87 +2016-05-30 23:02:00,38.3125,116.14,19.83 +2016-05-30 23:17:00,37.7637,115.772,19.79 +2016-05-30 23:32:00,38.505,115.587,19.74 +2016-05-30 23:47:00,38.3087,115.302,19.69 +2016-05-31 00:02:00,38.36,115.077,19.63 +2016-05-31 00:17:00,38.7025,114.73,19.57 +2016-05-31 00:32:00,36.925,114.617,19.52 +2016-05-31 00:47:00,37.8175,114.495,19.45 +2016-05-31 01:02:00,36.925,114.38,19.39 +2016-05-31 01:17:00,38.1537,114.095,19.32 +2016-05-31 01:32:00,37.2137,114.033,19.27 +2016-05-31 01:47:00,38.0088,113.822,19.21 +2016-05-31 02:02:00,37.5112,113.655,19.16 +2016-05-31 02:17:00,37.5125,113.402,19.13 +2016-05-31 02:32:00,37.7625,113.232,19.11 +2016-05-31 02:47:00,36.9737,112.935,19.1 +2016-05-31 03:02:00,38.9362,112.927,19.08 +2016-05-31 03:17:00,37.7125,112.717,19.05 +2016-05-31 03:32:00,37.865,112.45,19.03 +2016-05-31 03:47:00,38.5525,112.342,19.01 +2016-05-31 04:02:00,37.61,112.245,18.99 +2016-05-31 04:17:00,38.655,112.155,18.98 +2016-05-31 04:32:00,38.3625,112.09,18.98 +2016-05-31 04:47:00,39.735,111.915,18.98 +2016-05-31 05:02:00,37.31,110.577,19.0 +2016-05-31 05:17:00,39.8325,110.31,19.02 +2016-05-31 05:32:00,37.66,107.56,19.03 +2016-05-31 05:47:00,38.6038,105.65,19.08 +2016-05-31 06:02:00,37.5112,104.55,19.12 +2016-05-31 06:17:00,38.845,103.82,19.19 +2016-05-31 06:32:00,38.7487,103.63,19.28 +2016-05-31 06:47:00,38.2562,103.673,19.36 +2016-05-31 07:02:00,38.01,103.787,19.39 +2016-05-31 07:17:00,38.5537,103.842,19.42 +2016-05-31 07:32:00,36.0437,104.315,16.8 +2016-05-31 07:47:00,15.9525,104.445,19.47 +2016-05-31 08:02:00,17.9575,104.822,19.51 +2016-05-31 08:07:59,-0.0637512,104.962,19.51 +2016-05-31 08:17:00,18.8325,104.875,19.54 +2016-05-31 08:32:00,19.0125,105.272,19.58 +2016-05-31 08:47:00,18.72,105.067,19.61 +2016-05-31 09:02:00,18.2862,105.075,19.64 +2016-05-31 09:17:00,18.0413,104.85,19.7 +2016-05-31 09:32:00,18.5212,104.567,19.74 +2016-05-31 09:47:00,18.8162,104.385,19.8 +2016-05-31 10:02:00,21.1,103.88,19.83 +2016-05-31 10:17:00,18.865,103.247,19.86 +2016-05-31 10:32:00,17.945,102.775,19.91 +2016-05-31 10:47:00,19.98,101.98,19.98 +2016-05-31 11:02:00,17.5963,101.332,20.07 +2016-05-31 11:17:00,18.7675,100.48,20.15 +2016-05-31 11:32:00,18.3337,99.68,20.23 +2016-05-31 11:47:00,17.9475,98.7175,20.33 +2016-05-31 12:02:00,17.9475,98.045,20.45 +2016-05-31 12:17:00,19.5925,97.1475,20.54 +2016-05-31 12:32:00,16.6787,96.4175,20.66 +2016-05-31 12:47:00,16.44,95.77,20.72 +2016-05-31 13:02:00,19.8838,94.9475,20.83 +2016-05-31 13:17:00,16.8675,94.545,20.92 +2016-05-31 13:32:00,17.695,94.085,20.99 +2016-05-31 13:47:00,18.5225,93.4825,21.06 +2016-05-31 14:02:00,21.2913,93.115,20.9 +2016-05-31 14:17:00,17.8925,92.65,20.78 +2016-05-31 14:32:00,17.555,92.1875,20.7 +2016-05-31 14:47:00,18.1888,91.8125,20.74 +2016-05-31 15:02:00,15.6637,91.53,20.81 +2016-05-31 15:17:00,18.0437,91.255,20.84 +2016-05-31 15:32:00,19.3962,91.2025,20.8 +2016-05-31 15:47:00,17.8463,90.9925,20.71 +2016-05-31 16:02:00,17.6,90.78,20.63 +2016-05-31 16:17:00,16.9638,90.84,20.56 +2016-05-31 16:32:00,17.7962,90.765,20.53 +2016-05-31 16:47:00,16.0488,90.79,20.53 +2016-05-31 17:02:00,19.0638,91.0275,20.53 +2016-05-31 17:17:00,16.6813,91.2475,20.53 +2016-05-31 17:32:00,16.6813,91.6975,20.52 +2016-05-31 17:47:00,18.9175,92.0325,20.5 +2016-05-31 18:02:00,18.6712,91.955,20.47 +2016-05-31 18:17:00,18.0963,92.26,20.46 +2016-05-31 18:32:00,18.2412,92.625,20.46 +2016-05-31 18:47:00,19.11,92.785,20.47 +2016-05-31 19:02:00,18.1837,93.1025,20.47 +2016-05-31 19:17:00,17.9437,93.3975,20.49 +2016-05-31 19:32:00,17.9437,93.7175,20.5 +2016-05-31 19:47:00,20.1712,94.17,20.51 +2016-05-31 20:02:00,17.505,94.415,20.49 +2016-05-31 20:17:00,19.3463,94.65,20.49 +2016-05-31 20:32:00,16.77,94.9925,20.5 +2016-05-31 20:47:00,17.895,95.4675,20.51 +2016-05-31 21:02:00,19.495,95.8575,20.51 +2016-05-31 21:17:00,17.36,96.115,20.51 +2016-05-31 21:32:00,19.0625,96.41,20.51 +2016-05-31 21:47:00,17.4575,96.675,20.53 +2016-05-31 22:02:00,19.1537,96.8125,20.58 +2016-05-31 22:17:00,21.4437,97.0775,20.6 +2016-05-31 22:32:00,18.3787,97.26,20.63 +2016-05-31 22:47:00,18.7687,97.335,20.66 +2016-05-31 23:02:00,19.3475,97.57,20.67 +2016-05-31 23:17:00,17.4575,97.8675,20.68 +2016-05-31 23:32:00,19.7387,97.9775,20.69 +2016-05-31 23:47:00,18.525,98.195,20.67 +2016-06-01 00:02:00,17.2087,98.5175,20.66 +2016-06-01 00:17:00,19.8412,98.845,20.64 +2016-06-01 00:32:00,15.3662,98.825,20.62 +2016-06-01 00:47:00,20.0788,99.075,20.62 +2016-06-01 01:02:00,18.525,99.1625,20.6 +2016-06-01 01:17:00,18.67,99.2225,20.61 +2016-06-01 01:32:00,19.2462,99.4675,20.61 +2016-06-01 01:47:00,19.3025,99.4525,20.6 +2016-06-01 02:02:00,19.35,99.5,20.59 +2016-06-01 02:17:00,18.14,99.6175,20.57 +2016-06-01 02:32:00,17.5537,99.835,20.53 +2016-06-01 02:47:00,18.67,99.7225,20.49 +2016-06-01 03:02:00,18.2375,99.9275,20.46 +2016-06-01 03:17:00,19.1562,99.9525,20.43 +2016-06-01 03:32:00,19.3913,99.9625,20.4 +2016-06-01 03:47:00,19.25,100.36,20.41 +2016-06-01 04:02:00,19.3463,100.35,20.41 +2016-06-01 04:17:00,18.9163,100.488,20.42 +2016-06-01 04:32:00,19.205,100.522,20.44 +2016-06-01 04:47:00,15.86,100.497,20.47 +2016-06-01 05:02:00,18.8175,100.562,20.49 +2016-06-01 05:17:00,18.4287,100.577,20.52 +2016-06-01 05:32:00,18.5287,100.732,20.54 +2016-06-01 05:47:00,18.0925,100.592,20.57 +2016-06-01 06:02:00,17.6987,100.757,20.58 +2016-06-01 06:17:00,18.8688,100.562,20.59 +2016-06-01 06:32:00,17.1038,100.81,20.58 +2016-06-01 06:47:00,18.4287,100.567,20.55 +2016-06-01 07:02:00,17.1062,100.56,20.53 +2016-06-01 07:17:00,20.4187,100.46,20.5 +2016-06-01 07:32:00,18.87,100.5,20.44 +2016-06-01 07:47:00,18.9675,100.4,20.39 +2016-06-01 08:02:00,18.9638,100.382,20.34 +2016-06-01 08:17:00,18.625,100.402,20.31 +2016-06-01 08:32:00,21.195,100.768,20.27 +2016-06-01 08:47:00,17.6963,101.285,20.21 +2016-06-01 09:02:00,21.3937,102.125,20.08 +2016-06-01 09:17:00,20.9975,102.812,20.02 +2016-06-01 09:32:00,19.84,103.378,20.01 +2016-06-01 09:47:00,18.965,103.777,20.0 +2016-06-01 10:02:00,20.37,104.087,19.99 +2016-06-01 10:17:00,19.445,104.012,19.97 +2016-06-01 10:32:00,19.2038,104.112,19.94 +2016-06-01 10:47:00,21.0475,104.188,19.9 +2016-06-01 11:02:00,20.0263,106.882,19.89 +2016-06-01 11:17:00,21.6837,109.225,19.91 +2016-06-01 11:32:00,18.4275,110.85,19.92 +2016-06-01 11:47:00,18.6687,111.667,19.86 +2016-06-01 12:02:00,19.5938,112.335,19.84 +2016-06-01 12:17:00,20.2213,112.495,19.87 +2016-06-01 12:32:00,18.6263,112.812,19.87 +2016-06-01 12:47:00,19.0112,112.777,19.86 +2016-06-01 13:02:00,19.495,112.735,19.95 +2016-06-01 13:17:00,18.7188,112.577,20.05 +2016-06-01 13:32:00,18.2887,112.283,20.13 +2016-06-01 13:47:00,18.6225,112.01,20.29 +2016-06-01 14:02:00,19.0137,111.932,20.37 +2016-06-01 14:17:00,21.6875,111.885,20.36 +2016-06-01 14:32:00,18.475,111.957,20.42 +2016-06-01 14:47:00,17.8975,111.658,20.46 +2016-06-01 15:02:00,19.8862,111.64,20.43 +2016-06-01 15:17:00,19.6888,111.495,20.43 +2016-06-01 15:32:00,19.3475,111.412,20.48 +2016-06-01 15:47:00,17.75,111.587,20.48 +2016-06-01 16:02:00,19.2513,111.51,20.48 +2016-06-01 16:17:00,17.4575,111.36,20.49 +2016-06-01 16:32:00,20.3725,111.477,20.47 +2016-06-01 16:47:00,18.9163,111.285,20.43 +2016-06-01 17:02:00,17.3587,111.302,20.41 +2016-06-01 17:17:00,21.2425,111.472,20.39 +2016-06-01 17:32:00,19.3925,111.48,20.38 +2016-06-01 17:47:00,16.8225,111.85,20.37 +2016-06-01 18:02:00,18.3375,112.115,20.35 +2016-06-01 18:17:00,19.9788,112.435,20.32 +2016-06-01 18:32:00,18.57,112.897,20.3 +2016-06-01 18:47:00,19.8375,113.29,20.3 +2016-06-01 19:02:00,18.8675,113.82,20.29 +2016-06-01 19:17:00,20.5662,114.512,20.28 +2016-06-01 19:32:00,19.4962,115.135,20.26 +2016-06-01 19:47:00,18.8213,116.003,20.24 +2016-06-01 20:02:00,18.6712,116.795,20.21 +2016-06-01 20:17:00,18.575,117.872,20.2 +2016-06-01 20:32:00,19.2988,119.152,20.19 +2016-06-01 20:47:00,20.5137,120.262,20.17 +2016-06-01 21:02:00,18.1912,121.495,20.16 +2016-06-01 21:17:00,18.1437,122.72,20.16 +2016-06-01 21:32:00,20.5675,123.91,20.15 +2016-06-01 21:47:00,19.595,125.033,20.13 +2016-06-01 22:02:00,17.2125,126.128,20.12 +2016-06-01 22:17:00,19.4475,127.188,20.11 +2016-06-01 22:32:00,21.2925,128.503,20.06 +2016-06-01 22:47:00,19.7387,129.65,20.0 +2016-06-01 23:02:00,20.6137,130.695,19.92 +2016-06-01 23:17:00,20.0275,131.827,19.82 +2016-06-01 23:32:00,21.4912,132.772,19.72 +2016-06-01 23:47:00,19.6937,133.905,19.61 +2016-06-02 00:02:00,20.3288,134.997,19.51 +2016-06-02 00:17:00,20.3737,136.25,19.41 +2016-06-02 00:32:00,19.1075,137.42,19.33 +2016-06-02 00:47:00,19.935,138.397,19.27 +2016-06-02 01:02:00,20.5137,139.43,19.25 +2016-06-02 01:17:00,20.1237,140.158,19.23 +2016-06-02 01:32:00,22.9975,141.048,19.25 +2016-06-02 01:47:00,19.1075,141.837,19.26 +2016-06-02 02:02:00,21.0437,142.527,19.3 +2016-06-02 02:17:00,20.5675,143.283,19.34 +2016-06-02 02:32:00,20.7988,143.805,19.36 +2016-06-02 02:47:00,20.9962,144.165,19.38 +2016-06-02 03:02:00,21.5387,144.77,19.36 +2016-06-02 03:17:00,21.5375,145.277,19.33 +2016-06-02 03:32:00,22.2687,145.76,19.26 +2016-06-02 03:47:00,22.2262,146.395,19.18 +2016-06-02 04:02:00,20.75,146.502,19.08 +2016-06-02 04:17:00,21.4875,146.82,18.99 +2016-06-02 04:32:00,22.225,146.945,18.91 +2016-06-02 04:47:00,18.965,147.082,18.83 +2016-06-02 05:02:00,20.2725,147.145,18.78 +2016-06-02 05:17:00,20.8475,152.63,18.73 +2016-06-02 05:32:00,22.2687,151.393,18.71 +2016-06-02 05:47:00,22.265,150.83,18.65 +2016-06-02 06:02:00,20.22,150.357,18.63 +2016-06-02 06:17:00,19.44,150.05,18.66 +2016-06-02 06:32:00,21.4837,149.945,18.67 +2016-06-02 06:47:00,19.93,149.865,18.66 +2016-06-02 07:02:00,21.9325,150.167,18.66 +2016-06-02 07:17:00,21.04,150.087,18.66 +2016-06-02 07:32:00,22.51,150.102,18.65 +2016-06-02 07:47:00,19.3475,149.832,18.62 +2016-06-02 08:02:00,22.3637,149.707,18.61 +2016-06-02 08:17:00,19.445,149.712,18.66 +2016-06-02 08:32:00,21.7337,149.507,18.74 +2016-06-02 08:47:00,21.045,149.548,18.82 +2016-06-02 09:02:00,22.5075,149.19,18.87 +2016-06-02 09:17:00,21.985,149.257,18.89 +2016-06-02 09:32:00,19.5425,149.287,18.91 +2016-06-02 09:47:00,19.4938,149.265,19.0 +2016-06-02 10:02:00,21.145,149.337,18.91 +2016-06-02 10:17:00,20.8475,149.408,18.97 +2016-06-02 10:32:00,19.93,149.312,18.97 +2016-06-02 10:47:00,23.5287,150.367,18.95 +2016-06-02 11:02:00,19.44,151.375,18.88 +2016-06-02 11:17:00,20.6137,152.05,18.91 +2016-06-02 11:32:00,19.1087,152.542,18.91 +2016-06-02 11:47:00,19.8388,153.122,18.95 +2016-06-02 12:02:00,19.9788,153.29,18.99 +2016-06-02 12:17:00,20.5638,154.24,19.05 +2016-06-02 12:32:00,19.93,156.445,19.1 +2016-06-02 12:47:00,21.4912,158.172,19.14 +2016-06-02 13:02:00,18.6387,159.462,19.11 +2016-06-02 13:17:00,19.25,160.845,19.14 +2016-06-02 13:32:00,21.6338,162.19,19.23 +2016-06-02 13:47:00,20.4212,163.402,19.28 +2016-06-02 14:02:00,20.0725,164.035,19.34 +2016-06-02 15:56:18,20.7,167.46,19.69 +2016-06-02 16:02:00,19.1087,167.545,19.69 +2016-06-02 16:17:00,18.7175,167.19,19.69 +2016-06-02 16:32:00,19.9775,167.122,19.68 +2016-06-02 16:47:00,21.0413,166.617,19.68 +2016-06-02 17:02:00,20.0225,166.068,19.66 +2016-06-02 17:17:00,19.5437,165.383,19.62 +2016-06-02 17:32:00,19.2962,164.677,19.59 +2016-06-02 17:47:00,19.785,163.785,19.55 +2016-06-02 18:02:00,22.2188,162.878,19.54 +2016-06-02 18:17:00,19.3438,161.758,19.53 +2016-06-02 18:32:00,21.5825,160.697,19.54 +2016-06-02 18:47:00,19.885,159.533,19.55 +2016-06-02 19:02:00,20.3712,158.322,19.52 +2016-06-02 19:17:00,20.5137,157.133,19.49 +2016-06-02 19:32:00,19.9775,156.495,19.46 +2016-06-02 19:47:00,20.7025,155.182,19.42 +2016-06-02 20:02:00,21.24,154.465,19.38 +2016-06-02 20:17:00,18.9112,153.45,19.34 +2016-06-02 20:32:00,19.4938,152.675,19.31 +2016-06-02 20:47:00,20.3213,152.147,19.27 +2016-06-02 21:02:00,20.1263,151.617,19.23 +2016-06-02 21:17:00,18.2363,151.147,19.19 +2016-06-02 21:32:00,19.2487,150.977,19.16 +2016-06-02 21:47:00,18.57,150.86,19.11 +2016-06-02 22:02:00,20.8438,151.077,19.08 +2016-06-02 22:17:00,21.5825,151.372,19.04 +2016-06-02 22:32:00,20.0737,151.982,18.99 +2016-06-02 22:47:00,20.8475,152.908,18.94 +2016-06-02 23:02:00,21.9325,153.91,18.91 +2016-06-02 23:17:00,19.9762,155.345,18.87 +2016-06-02 23:32:00,19.3913,157.193,18.85 +2016-06-02 23:47:00,19.3925,158.797,18.82 +2016-06-03 00:02:00,21.6325,160.628,18.8 +2016-06-03 00:17:00,21.78,162.788,18.79 +2016-06-03 00:32:00,22.9463,164.925,18.79 +2016-06-03 00:47:00,22.1738,166.885,18.78 +2016-06-03 01:02:00,24.31,169.23,18.78 +2016-06-03 01:17:00,22.075,171.12,18.79 +2016-06-03 01:32:00,24.96,173.095,18.79 +2016-06-03 01:47:00,24.9088,175.267,18.77 +2016-06-03 02:02:00,24.6113,177.48,18.71 +2016-06-03 02:17:00,26.915,179.622,18.62 +2016-06-03 02:32:00,27.2113,181.42,18.53 +2016-06-03 02:47:00,27.0088,183.012,18.44 +2016-06-03 03:02:00,27.51,184.322,18.38 +2016-06-03 03:17:00,26.3712,186.19,18.35 +2016-06-03 03:32:00,26.9187,187.473,18.32 +2016-06-03 03:47:00,26.6712,192.575,18.29 +2016-06-03 04:02:00,27.8587,197.177,18.24 +2016-06-03 04:17:00,27.01,199.915,18.16 +2016-06-03 04:32:00,27.7625,201.3,18.1 +2016-06-03 04:47:00,27.7612,205.042,18.06 +2016-06-03 05:02:00,27.7612,206.842,18.01 +2016-06-03 05:17:00,27.5137,207.552,17.96 +2016-06-03 05:32:00,27.7637,206.467,17.93 +2016-06-03 05:47:00,26.9637,206.485,17.91 +2016-06-03 06:02:00,28.3613,206.43,17.88 +2016-06-03 06:17:00,28.9512,206.535,17.85 +2016-06-03 06:32:00,26.8675,206.672,17.82 +2016-06-03 06:47:00,26.7225,207.06,17.8 +2016-06-03 07:02:00,27.2575,207.165,17.78 +2016-06-03 07:17:00,25.4925,207.372,17.77 +2016-06-03 07:32:00,25.7438,207.592,17.75 +2016-06-03 07:47:00,25.4962,207.737,17.73 +2016-06-03 08:02:00,26.2275,208.253,17.71 +2016-06-03 08:17:00,26.2275,208.052,17.69 +2016-06-03 08:32:00,26.135,208.035,17.65 +2016-06-03 08:47:00,29.3375,208.438,17.65 +2016-06-03 09:02:00,27.6162,208.767,17.62 +2016-06-03 09:17:00,28.3637,209.19,17.61 +2016-06-03 09:32:00,29.7762,210.012,17.57 +2016-06-03 09:47:00,29.9762,209.955,17.58 +2016-06-03 10:02:00,30.8975,210.707,17.61 +2016-06-03 10:17:00,31.695,211.188,17.61 +2016-06-03 10:32:00,31.4475,211.327,17.62 +2016-06-03 10:47:00,32.53,211.672,17.61 +2016-06-03 11:02:00,35.4,212.215,17.59 +2016-06-03 11:17:00,33.6075,211.9,17.53 +2016-06-03 11:32:00,36.5225,212.08,17.54 +2016-06-03 11:47:00,37.2113,212.63,17.61 +2016-06-03 12:02:00,36.2412,212.767,17.62 +2016-06-03 12:17:00,37.51,212.772,17.66 +2016-06-03 12:32:00,37.1188,213.217,17.7 +2016-06-03 12:47:00,37.9575,212.94,17.74 +2016-06-03 13:02:00,38.06,212.865,17.79 +2016-06-03 13:17:00,37.8112,212.902,17.8 +2016-06-03 13:32:00,37.4075,212.935,17.79 +2016-06-03 13:47:00,38.455,212.872,17.81 +2016-06-03 14:02:00,37.2612,212.732,17.86 +2016-06-03 14:17:00,37.66,212.402,17.92 +2016-06-03 14:32:00,37.4075,212.047,17.98 +2016-06-03 14:47:00,35.3063,212.003,18.02 +2016-06-03 15:02:00,35.3063,211.58,18.06 +2016-06-03 15:17:00,34.7738,211.285,18.11 +2016-06-03 15:32:00,36.0925,211.142,18.15 +2016-06-03 15:47:00,35.6937,210.913,18.2 +2016-06-03 16:02:00,34.3838,210.395,18.24 +2016-06-03 16:17:00,35.21,210.01,18.28 +2016-06-03 16:32:00,33.5575,209.688,18.33 +2016-06-03 16:47:00,35.6012,209.247,18.36 +2016-06-03 17:02:00,34.9137,208.555,18.39 +2016-06-03 17:17:00,34.815,208.477,18.41 +2016-06-03 17:32:00,34.5287,208.033,18.43 +2016-06-03 17:47:00,34.5788,207.605,18.44 +2016-06-03 18:02:00,33.265,207.107,18.42 +2016-06-03 18:17:00,33.075,206.995,18.38 +2016-06-03 18:32:00,33.1212,206.487,18.35 +2016-06-03 18:47:00,33.755,206.21,18.33 +2016-06-03 19:02:00,32.5775,205.672,18.32 +2016-06-03 19:17:00,32.3425,205.27,18.31 +2016-06-03 19:32:00,32.3913,205.057,18.31 +2016-06-03 19:47:00,32.2412,203.617,18.31 +2016-06-03 20:02:00,32.1925,202.665,18.31 +2016-06-03 20:17:00,31.195,201.98,18.32 +2016-06-03 20:32:00,33.12,201.253,18.32 +2016-06-03 20:47:00,32.48,201.062,18.33 +2016-06-03 21:02:00,32.53,200.465,18.32 +2016-06-03 21:17:00,32.2438,199.827,18.3 +2016-06-03 21:32:00,32.1425,199.572,18.26 +2016-06-03 21:47:00,32.9762,199.385,18.22 +2016-06-03 22:02:00,31.2988,198.973,18.17 +2016-06-03 22:17:00,32.4375,198.395,18.11 +2016-06-03 22:32:00,32.6263,198.115,18.06 +2016-06-03 22:47:00,32.7213,197.72,18.0 +2016-06-03 23:02:00,31.9925,197.73,17.97 +2016-06-03 23:17:00,31.9912,197.072,17.93 +2016-06-03 23:32:00,32.875,197.082,17.9 +2016-06-03 23:47:00,33.22,196.762,17.86 +2016-06-04 00:02:00,32.5287,196.2,17.82 +2016-06-04 00:17:00,33.71,195.783,17.79 +2016-06-04 00:32:00,32.675,195.575,17.76 +2016-06-04 00:47:00,32.1413,195.462,17.73 +2016-06-04 01:02:00,31.7475,195.05,17.7 +2016-06-04 01:17:00,32.34,194.635,17.67 +2016-06-04 01:32:00,31.6488,194.17,17.65 +2016-06-04 01:47:00,32.0925,193.985,17.62 +2016-06-04 02:02:00,31.695,193.517,17.6 +2016-06-04 02:17:00,32.0963,192.94,17.57 +2016-06-04 02:32:00,30.3625,192.72,17.54 +2016-06-04 02:47:00,31.6475,192.432,17.51 +2016-06-04 03:02:00,31.095,192.195,17.49 +2016-06-04 03:17:00,31.9425,191.57,17.47 +2016-06-04 03:32:00,31.1462,188.767,17.44 +2016-06-04 03:47:00,30.4613,188.58,17.42 +2016-06-04 04:02:00,30.4062,184.482,17.43 +2016-06-04 04:17:00,30.8075,182.322,17.4 +2016-06-04 04:32:00,31.1925,181.302,17.41 +2016-06-04 04:47:00,29.9225,180.63,17.42 +2016-06-04 05:02:00,30.0762,180.267,17.41 +2016-06-04 05:17:00,30.4637,180.172,17.4 +2016-06-04 05:32:00,30.9025,179.965,17.39 +2016-06-04 05:47:00,30.3162,180.415,17.38 +2016-06-04 06:02:00,30.5112,180.633,17.37 +2016-06-04 06:17:00,29.7812,180.885,17.37 +2016-06-04 06:32:00,30.5137,181.042,17.37 +2016-06-04 06:47:00,30.1675,181.07,17.38 +2016-06-04 07:02:00,30.1687,181.172,17.4 +2016-06-04 07:17:00,30.0737,181.08,17.42 +2016-06-04 07:32:00,28.955,181.133,17.45 +2016-06-04 07:47:00,29.6837,180.725,17.48 +2016-06-04 08:02:00,29.2,180.88,17.51 +2016-06-04 08:17:00,28.5612,180.587,17.54 +2016-06-04 08:32:00,31.0462,180.03,17.58 +2016-06-04 08:47:00,30.4613,179.54,17.62 +2016-06-04 09:02:00,29.44,179.34,17.67 +2016-06-04 09:17:00,30.41,179.103,17.72 +2016-06-04 09:32:00,29.3412,178.48,17.75 +2016-06-04 09:47:00,29.2,178.02,17.81 +2016-06-04 10:02:00,29.7312,177.435,17.87 +2016-06-04 10:17:00,29.5325,176.978,17.92 +2016-06-04 10:32:00,29.345,176.633,17.98 +2016-06-04 10:47:00,28.6575,175.81,18.07 +2016-06-04 11:02:00,28.5088,176.115,18.15 +2016-06-04 11:17:00,28.56,175.6,18.2 +2016-06-04 11:32:00,29.8262,175.275,18.26 +2016-06-04 11:47:00,29.2,174.5,18.32 +2016-06-04 12:02:00,28.8525,173.887,18.36 +2016-06-04 12:17:00,29.3412,170.625,18.38 +2016-06-04 12:32:00,27.9112,167.915,18.44 +2016-06-04 12:47:00,28.905,166.017,18.5 +2016-06-04 13:02:00,28.5112,164.935,18.51 +2016-06-04 13:17:00,29.4863,163.635,18.55 +2016-06-04 13:32:00,28.755,162.975,18.64 +2016-06-04 13:47:00,27.8625,162.327,18.74 +2016-06-04 14:02:00,27.415,161.693,18.82 +2016-06-04 14:17:00,28.8538,160.957,18.89 +2016-06-04 14:32:00,28.6575,160.402,18.94 +2016-06-04 14:47:00,28.3087,159.572,19.01 +2016-06-04 15:02:00,27.665,158.9,19.11 +2016-06-04 15:17:00,28.3625,158.525,19.21 +2016-06-04 15:32:00,29.1012,157.772,19.31 +2016-06-04 15:47:00,27.6637,157.1,19.4 +2016-06-04 16:02:00,27.4613,156.305,19.48 +2016-06-04 16:17:00,28.315,155.143,19.56 +2016-06-04 16:32:00,27.3162,154.295,19.62 +2016-06-04 16:47:00,29.1488,153.11,19.67 +2016-06-04 17:02:00,28.9525,152.182,19.7 +2016-06-04 17:17:00,27.8575,151.007,19.72 +2016-06-04 17:32:00,27.0625,148.357,19.76 +2016-06-04 17:47:00,28.2137,145.895,19.78 +2016-06-04 18:02:00,27.0612,144.05,19.81 +2016-06-04 18:17:00,28.2637,142.592,19.85 +2016-06-04 18:32:00,28.2137,141.58,19.88 +2016-06-04 18:47:00,26.625,140.582,19.9 +2016-06-04 19:02:00,27.8138,139.705,19.94 +2016-06-04 19:17:00,26.575,139.247,19.96 +2016-06-04 19:32:00,27.8087,138.745,19.98 +2016-06-04 19:47:00,29.0987,138.445,19.99 +2016-06-04 20:02:00,27.0638,138.23,20.0 +2016-06-04 20:17:00,28.3637,138.195,20.01 +2016-06-04 20:32:00,27.765,137.992,20.02 +2016-06-04 20:47:00,26.72,138.035,20.01 +2016-06-04 21:02:00,27.11,138.477,19.98 +2016-06-04 21:17:00,26.87,138.707,19.95 +2016-06-04 21:32:00,26.3225,138.932,19.91 +2016-06-04 21:47:00,27.2113,139.287,19.86 +2016-06-04 22:02:00,27.86,139.605,19.8 +2016-06-04 22:17:00,26.0837,139.962,19.75 +2016-06-04 22:32:00,28.0125,140.262,19.7 +2016-06-04 22:47:00,28.165,140.643,19.66 +2016-06-04 23:02:00,23.1312,141.085,19.61 +2016-06-04 23:17:00,25.8412,141.64,19.56 +2016-06-04 23:32:00,26.4225,141.87,19.52 +2016-06-04 23:47:00,28.4112,142.268,19.5 +2016-06-05 00:02:00,24.9587,142.69,19.47 +2016-06-05 00:17:00,25.9837,143.055,19.47 +2016-06-05 00:32:00,26.5725,143.585,19.45 +2016-06-05 00:47:00,27.4112,143.908,19.45 +2016-06-05 01:02:00,24.3112,144.46,19.44 +2016-06-05 01:17:00,26.4688,144.912,19.45 +2016-06-05 01:32:00,26.0837,145.29,19.46 +2016-06-05 01:47:00,25.4475,145.505,19.46 +2016-06-05 02:02:00,24.81,145.925,19.46 +2016-06-05 02:17:00,24.8587,146.195,19.47 +2016-06-05 02:32:00,24.21,146.44,19.46 +2016-06-05 02:47:00,26.4212,146.645,19.45 +2016-06-05 03:02:00,25.4938,146.857,19.43 +2016-06-05 03:17:00,25.0612,147.09,19.4 +2016-06-05 03:32:00,25.84,147.518,19.36 +2016-06-05 03:47:00,27.2087,147.63,19.3 +2016-06-05 04:02:00,25.2062,147.882,19.21 +2016-06-05 04:17:00,25.2062,148.177,19.11 +2016-06-05 04:32:00,26.7725,148.22,19.02 +2016-06-05 04:47:00,25.9863,148.37,18.93 +2016-06-05 05:02:00,25.0575,148.605,18.85 +2016-06-05 05:17:00,25.6413,148.795,18.79 +2016-06-05 05:32:00,25.1125,148.987,18.73 +2016-06-05 05:47:00,24.7575,149.122,18.69 +2016-06-05 06:02:00,23.6762,149.227,18.66 +2016-06-05 06:17:00,25.7438,149.122,18.64 +2016-06-05 06:32:00,24.5625,149.37,18.65 +2016-06-05 06:47:00,24.4125,149.25,18.64 +2016-06-05 07:02:00,23.475,149.285,18.66 +2016-06-05 07:17:00,26.3725,149.35,18.68 +2016-06-05 07:32:00,26.2738,149.322,18.7 +2016-06-05 07:47:00,24.8575,149.452,18.72 +2016-06-05 08:02:00,24.7562,149.22,18.74 +2016-06-05 08:17:00,27.2125,149.042,18.76 +2016-06-05 08:32:00,24.41,149.347,18.79 +2016-06-05 08:47:00,24.9587,149.567,18.81 +2016-06-05 09:02:00,25.1575,149.64,18.84 +2016-06-05 09:17:00,25.445,149.925,18.88 +2016-06-05 09:32:00,24.0112,149.893,18.92 +2016-06-05 09:47:00,24.91,149.705,18.97 +2016-06-05 10:02:00,22.4613,149.805,19.03 +2016-06-05 10:17:00,26.275,150.02,19.08 +2016-06-05 10:32:00,27.1087,149.99,19.15 +2016-06-05 10:47:00,22.75,149.695,19.21 +2016-06-05 11:02:00,23.575,149.702,19.28 +2016-06-05 11:17:00,24.055,149.52,19.35 +2016-06-05 11:32:00,24.56,149.205,19.42 +2016-06-05 11:47:00,23.9125,148.832,19.49 +2016-06-05 12:02:00,25.0125,148.925,19.55 +2016-06-05 12:17:00,24.16,148.605,19.63 +2016-06-05 12:32:00,25.01,148.215,19.7 +2016-06-05 12:47:00,24.0137,147.95,19.76 +2016-06-05 13:02:00,22.4613,147.925,19.77 +2016-06-05 13:17:00,23.525,147.872,19.85 +2016-06-05 13:32:00,23.86,147.74,19.95 +2016-06-05 13:47:00,22.1725,147.595,20.03 +2016-06-05 14:02:00,23.3825,147.232,20.11 +2016-06-05 14:17:00,22.66,147.08,20.19 +2016-06-05 14:32:00,23.675,146.752,20.24 +2016-06-05 14:47:00,24.8625,146.423,20.32 +2016-06-05 15:02:00,23.3812,146.24,20.39 +2016-06-05 15:17:00,25.2588,146.052,20.47 +2016-06-05 15:32:00,25.015,145.9,20.54 +2016-06-05 15:47:00,24.1637,145.535,20.59 +2016-06-05 16:02:00,24.4662,145.177,20.67 +2016-06-05 16:17:00,23.6237,145.305,20.74 +2016-06-05 16:32:00,23.58,145.037,20.8 +2016-06-05 16:47:00,23.4313,144.688,20.85 +2016-06-05 17:02:00,23.4313,144.67,20.88 +2016-06-05 17:17:00,22.6575,144.395,20.9 +2016-06-05 17:32:00,24.7588,144.5,20.92 +2016-06-05 17:47:00,23.1362,144.207,20.96 +2016-06-05 18:02:00,23.3312,144.12,20.98 +2016-06-05 18:17:00,24.565,143.785,21.01 +2016-06-05 18:32:00,21.685,143.673,21.02 +2016-06-05 18:47:00,21.9812,143.56,21.05 +2016-06-05 19:02:00,24.9088,143.33,21.08 +2016-06-05 19:17:00,23.28,143.082,21.09 +2016-06-05 19:32:00,23.7725,142.825,21.1 +2016-06-05 19:47:00,22.755,142.792,21.09 +2016-06-05 20:02:00,21.2412,142.607,21.09 +2016-06-05 20:17:00,22.1275,142.357,21.07 +2016-06-05 20:32:00,24.6612,142.432,21.05 +2016-06-05 20:47:00,21.585,142.362,21.02 +2016-06-05 21:02:00,23.58,142.382,21.0 +2016-06-05 21:17:00,22.9037,142.287,20.96 +2016-06-05 21:32:00,22.8525,142.052,20.91 +2016-06-05 21:47:00,24.1612,141.867,20.87 +2016-06-05 22:02:00,23.7237,141.548,20.83 +2016-06-05 22:17:00,22.5062,141.525,20.78 +2016-06-05 22:32:00,23.6225,141.35,20.73 +2016-06-05 22:47:00,21.8325,141.107,20.67 +2016-06-05 23:02:00,21.3962,141.033,20.62 +2016-06-05 23:17:00,22.6562,141.0,20.57 +2016-06-05 23:32:00,24.9112,140.84,20.53 +2016-06-05 23:47:00,23.7275,140.688,20.5 +2016-06-06 00:02:00,22.08,140.727,20.45 +2016-06-06 00:17:00,22.2687,140.78,20.42 +2016-06-06 00:32:00,22.9962,140.58,20.37 +2016-06-06 00:47:00,20.9925,140.637,20.34 +2016-06-06 01:02:00,21.93,140.387,20.31 +2016-06-06 01:17:00,20.9938,140.612,20.27 +2016-06-06 01:32:00,24.3138,140.305,20.23 +2016-06-06 01:47:00,20.945,140.107,20.18 +2016-06-06 02:02:00,22.4125,140.122,20.14 +2016-06-06 02:17:00,24.7125,139.99,20.12 +2016-06-06 02:32:00,21.93,139.825,20.09 +2016-06-06 02:47:00,20.6588,139.7,20.06 +2016-06-06 03:02:00,21.8875,139.775,20.03 +2016-06-06 03:17:00,23.1875,139.612,19.99 +2016-06-06 03:32:00,22.2275,139.515,19.94 +2016-06-06 03:47:00,24.1588,139.432,19.9 +2016-06-06 04:02:00,22.22,139.412,19.86 +2016-06-06 04:17:00,21.145,139.33,19.82 +2016-06-06 04:32:00,21.9313,139.312,19.79 +2016-06-06 04:47:00,22.4587,139.197,19.76 +2016-06-06 05:02:00,20.8937,138.84,19.73 +2016-06-06 05:17:00,21.8825,138.83,19.69 +2016-06-06 05:32:00,22.66,138.43,19.66 +2016-06-06 05:47:00,22.3162,138.337,19.64 +2016-06-06 06:02:00,22.8487,138.377,19.63 +2016-06-06 06:17:00,23.38,138.247,19.62 +2016-06-06 06:32:00,22.945,137.967,19.61 +2016-06-06 06:47:00,24.3125,137.882,19.61 +2016-06-06 07:02:00,21.6325,137.975,19.61 +2016-06-06 07:17:00,22.9,137.732,19.6 +2016-06-06 07:32:00,20.0225,137.787,19.61 +2016-06-06 07:47:00,21.8825,137.555,19.65 +2016-06-06 08:02:00,22.41,137.548,19.68 +2016-06-06 08:17:00,22.5075,137.207,19.72 +2016-06-06 08:32:00,21.9788,137.2,19.77 +2016-06-06 08:47:00,23.96,137.102,19.81 +2016-06-06 09:02:00,20.3688,136.897,19.84 +2016-06-06 09:17:00,21.9313,136.732,19.87 +2016-06-06 09:32:00,22.46,136.585,19.91 +2016-06-06 09:47:00,22.95,136.632,19.95 +2016-06-06 10:02:00,21.0912,136.705,20.01 +2016-06-06 10:17:00,22.95,136.393,20.07 +2016-06-06 10:32:00,21.63,136.46,20.11 +2016-06-06 10:47:00,23.0875,136.447,20.14 +2016-06-06 11:02:00,22.3613,136.315,20.15 +2016-06-06 11:17:00,20.6588,135.965,20.21 +2016-06-06 11:32:00,22.2675,136.15,20.24 +2016-06-06 11:47:00,20.46,136.0,20.26 +2016-06-06 12:02:00,22.1263,135.875,20.29 +2016-06-06 12:17:00,19.2962,135.76,20.36 +2016-06-06 12:32:00,19.8525,135.577,20.43 +2016-06-06 12:47:00,20.4662,135.322,20.48 +2016-06-06 13:02:00,21.7312,135.73,20.54 +2016-06-06 13:17:00,18.6712,135.2,20.58 +2016-06-06 13:32:00,20.1725,135.22,20.64 +2016-06-06 13:47:00,21.095,134.942,20.7 +2016-06-06 14:02:00,20.4187,134.65,20.75 +2016-06-06 14:17:00,19.3925,134.812,20.79 +2016-06-06 14:32:00,20.4662,134.327,20.82 +2016-06-06 14:47:00,21.345,134.452,20.85 +2016-06-06 15:02:00,18.8225,133.995,20.91 +2016-06-06 15:17:00,22.08,134.132,20.96 +2016-06-06 15:32:00,22.4112,133.83,21.02 +2016-06-06 15:47:00,20.705,134.007,21.08 +2016-06-06 16:02:00,19.5975,133.777,21.14 +2016-06-06 16:17:00,20.5638,133.73,21.2 +2016-06-06 16:32:00,22.1287,133.475,21.28 +2016-06-06 16:47:00,21.8862,133.355,21.34 +2016-06-06 17:02:00,21.5387,133.062,21.4 +2016-06-06 17:17:00,20.945,132.982,21.44 +2016-06-06 17:32:00,20.2237,132.72,21.5 +2016-06-06 17:47:00,19.935,132.68,21.54 +2016-06-06 18:02:00,20.7087,132.42,21.57 +2016-06-06 18:17:00,19.79,132.137,21.61 +2016-06-06 18:32:00,20.22,131.955,21.61 +2016-06-06 18:47:00,22.8512,131.74,21.63 +2016-06-06 19:02:00,20.225,131.497,21.68 +2016-06-06 19:17:00,19.3,131.298,21.68 +2016-06-06 19:32:00,22.905,130.95,21.71 +2016-06-06 19:47:00,21.0963,130.655,21.69 +2016-06-06 20:02:00,20.5675,130.462,21.7 +2016-06-06 20:17:00,21.79,130.122,21.68 +2016-06-06 20:32:00,21.5888,129.895,21.67 +2016-06-06 20:47:00,23.235,129.562,21.66 +2016-06-06 21:02:00,22.2262,129.32,21.64 +2016-06-06 21:17:00,19.8887,129.18,21.62 +2016-06-06 21:32:00,20.275,128.938,21.59 +2016-06-06 21:47:00,20.9925,128.955,21.58 +2016-06-06 22:02:00,20.2275,128.775,21.56 +2016-06-06 22:17:00,19.7887,128.575,21.54 +2016-06-06 22:32:00,20.5125,128.435,21.48 +2016-06-06 22:47:00,20.5662,128.47,21.44 +2016-06-06 23:02:00,20.6162,128.38,21.37 +2016-06-06 23:17:00,19.3475,128.298,21.32 +2016-06-06 23:32:00,20.7988,128.15,21.25 +2016-06-06 23:47:00,19.9313,128.185,21.19 +2016-06-07 00:02:00,19.445,128.195,21.14 +2016-06-07 00:17:00,22.2262,127.88,21.09 +2016-06-07 00:32:00,19.3,127.842,21.05 +2016-06-07 00:47:00,24.5662,127.562,21.0 +2016-06-07 01:02:00,22.2725,127.577,20.93 +2016-06-07 01:17:00,20.7975,127.452,20.9 +2016-06-07 01:32:00,21.195,127.37,20.85 +2016-06-07 01:47:00,21.735,127.262,20.82 +2016-06-07 02:02:00,20.0788,127.28,20.8 +2016-06-07 02:17:00,21.1437,127.315,20.75 +2016-06-07 02:32:00,21.3425,127.32,20.73 +2016-06-07 02:47:00,21.0462,127.31,20.7 +2016-06-07 03:02:00,21.6875,127.105,20.67 +2016-06-07 03:17:00,21.6375,127.232,20.66 +2016-06-07 03:32:00,21.6837,127.222,20.63 +2016-06-07 03:47:00,19.5938,127.182,20.61 +2016-06-07 04:02:00,19.98,127.155,20.55 +2016-06-07 04:17:00,20.2262,127.05,20.51 +2016-06-07 04:32:00,20.5175,126.912,20.45 +2016-06-07 04:47:00,21.3937,126.173,20.42 +2016-06-07 05:02:00,20.3237,124.795,20.4 +2016-06-07 05:17:00,21.2913,123.612,20.37 +2016-06-07 05:32:00,20.2725,123.177,20.34 +2016-06-07 05:47:00,22.415,122.88,20.35 +2016-06-07 06:02:00,20.94,122.86,20.37 +2016-06-07 06:17:00,21.8875,122.77,20.37 +2016-06-07 06:32:00,19.9313,122.88,20.38 +2016-06-07 06:47:00,21.8337,123.082,20.39 +2016-06-07 07:02:00,22.03,123.31,20.39 +2016-06-07 07:17:00,20.6588,123.635,20.4 +2016-06-07 07:32:00,21.4912,124.003,20.41 +2016-06-07 07:47:00,21.0437,124.247,20.41 +2016-06-07 08:02:00,18.14,124.55,20.44 +2016-06-07 08:17:00,19.6425,124.69,20.47 +2016-06-07 08:32:00,20.9412,124.855,20.49 +2016-06-07 08:47:00,20.37,125.025,20.5 +2016-06-07 09:02:00,20.8463,125.385,20.55 +2016-06-07 09:17:00,20.66,125.52,20.59 +2016-06-07 09:32:00,20.3675,125.735,20.63 +2016-06-07 09:47:00,20.7988,125.878,20.66 +2016-06-07 10:02:00,22.3175,126.072,20.71 +2016-06-07 10:17:00,22.0263,126.117,20.76 +2016-06-07 10:32:00,19.4962,125.76,20.78 +2016-06-07 10:47:00,19.2012,125.753,20.84 +2016-06-07 11:02:00,19.7387,125.442,20.87 +2016-06-07 11:17:00,19.8363,125.175,20.91 +2016-06-07 11:32:00,22.1738,124.967,20.92 +2016-06-07 11:47:00,19.2975,124.55,20.92 +2016-06-07 12:02:00,17.555,124.167,20.92 +2016-06-07 12:17:00,19.3988,123.7,20.96 +2016-06-07 12:32:00,20.4175,123.427,20.99 +2016-06-07 12:47:00,20.5187,123.395,21.0 +2016-06-07 13:02:00,19.5938,122.85,21.02 +2016-06-07 13:17:00,20.4225,122.622,21.03 +2016-06-07 13:32:00,20.615,122.477,21.07 +2016-06-07 13:47:00,21.6362,122.212,21.07 +2016-06-07 14:02:00,18.24,122.155,21.12 +2016-06-07 14:17:00,21.6375,121.73,21.12 +2016-06-07 14:32:00,20.95,121.632,21.14 +2016-06-07 14:47:00,19.74,121.472,21.18 +2016-06-07 15:02:00,21.4463,121.14,21.22 +2016-06-07 15:17:00,19.8887,121.072,21.25 +2016-06-07 15:32:00,20.2763,121.128,21.26 +2016-06-07 15:47:00,20.7537,120.995,21.27 +2016-06-07 16:02:00,20.7525,120.972,21.29 +2016-06-07 16:17:00,21.295,120.957,21.31 +2016-06-07 16:32:00,20.6625,121.117,21.33 +2016-06-07 16:47:00,20.3725,121.135,21.32 +2016-06-07 17:02:00,20.8025,121.137,21.33 +2016-06-07 17:17:00,20.3213,121.155,21.35 +2016-06-07 17:32:00,20.5175,121.102,21.39 +2016-06-07 17:47:00,20.57,121.07,21.43 +2016-06-07 18:02:00,20.1237,121.155,21.48 +2016-06-07 18:17:00,20.1275,121.158,21.54 +2016-06-07 18:32:00,19.015,120.987,21.62 +2016-06-07 18:47:00,21.8388,121.215,21.67 +2016-06-07 19:02:00,20.4225,121.158,21.71 +2016-06-07 19:17:00,21.0963,121.222,21.74 +2016-06-07 19:32:00,19.6925,121.387,21.77 +2016-06-07 19:47:00,20.4662,121.575,21.8 +2016-06-07 20:02:00,19.3962,121.665,21.85 +2016-06-07 20:17:00,18.9662,121.702,21.87 +2016-06-07 20:32:00,20.6175,121.753,21.89 +2016-06-07 20:47:00,19.935,121.942,21.91 +2016-06-07 21:02:00,19.5987,121.822,21.93 +2016-06-07 21:17:00,20.1263,121.95,21.96 +2016-06-07 21:32:00,19.8838,121.985,21.97 +2016-06-07 21:47:00,20.615,121.895,21.97 +2016-06-07 22:02:00,18.87,121.927,21.96 +2016-06-07 22:17:00,20.8075,121.9,21.93 +2016-06-07 22:32:00,20.1775,121.977,21.9 +2016-06-07 22:47:00,19.2513,122.312,21.84 +2016-06-07 23:02:00,20.8512,122.292,21.78 +2016-06-07 23:17:00,19.2988,122.54,21.72 +2016-06-07 23:32:00,17.85,122.452,21.67 +2016-06-07 23:47:00,21.89,122.432,21.62 +2016-06-08 00:02:00,19.5488,122.475,21.56 +2016-06-08 00:17:00,20.37,122.575,21.49 +2016-06-08 00:32:00,20.6137,122.515,21.42 +2016-06-08 00:47:00,22.08,122.497,21.36 +2016-06-08 01:02:00,18.8725,122.46,21.29 +2016-06-08 01:17:00,21.3988,122.647,21.23 +2016-06-08 01:32:00,21.7862,122.417,21.16 +2016-06-08 01:47:00,20.325,122.562,21.08 +2016-06-08 02:02:00,20.615,122.64,21.03 +2016-06-08 02:17:00,19.3975,122.86,20.99 +2016-06-08 02:32:00,20.9463,122.755,20.95 +2016-06-08 02:47:00,19.74,122.9,20.89 +2016-06-08 03:02:00,21.345,122.667,20.84 +2016-06-08 03:17:00,19.1113,122.832,20.79 +2016-06-08 03:32:00,18.0437,122.785,20.75 +2016-06-08 03:47:00,18.29,122.72,20.72 +2016-06-08 04:02:00,19.5963,122.86,20.7 +2016-06-08 04:17:00,19.7412,122.662,20.68 +2016-06-08 04:32:00,17.6012,122.72,20.65 +2016-06-08 04:47:00,18.6712,122.753,20.63 +2016-06-08 05:02:00,19.9337,122.75,20.61 +2016-06-08 05:17:00,20.9463,122.732,20.59 +2016-06-08 05:32:00,20.85,122.772,20.59 +2016-06-08 05:47:00,19.4987,122.955,20.58 +2016-06-08 06:02:00,18.525,123.015,20.59 +2016-06-08 06:17:00,18.5263,123.095,20.63 +2016-06-08 06:32:00,17.7487,122.795,20.66 +2016-06-08 06:47:00,20.4225,122.882,20.69 +2016-06-08 07:02:00,18.8175,124.12,20.69 +2016-06-08 07:17:00,18.4287,123.987,20.68 +2016-06-08 07:32:00,19.3012,123.68,20.72 +2016-06-08 07:47:00,19.9325,123.188,20.73 +2016-06-08 08:02:00,20.6612,123.192,20.73 +2016-06-08 08:17:00,18.5762,123.042,20.74 +2016-06-08 08:32:00,19.6413,122.827,20.75 +2016-06-08 08:47:00,19.9762,122.915,20.75 +2016-06-08 09:02:00,19.0137,122.722,20.81 +2016-06-08 09:17:00,20.7062,122.685,20.87 +2016-06-08 09:32:00,16.7288,122.65,20.89 +2016-06-08 09:47:00,19.2988,122.635,20.9 +2016-06-08 10:02:00,20.895,122.817,20.93 +2016-06-08 10:17:00,20.0263,122.882,21.0 +2016-06-08 10:32:00,20.2275,122.905,21.01 +2016-06-08 10:47:00,19.1562,122.88,21.07 +2016-06-08 11:02:00,19.8375,123.13,21.12 +2016-06-08 11:17:00,19.4425,122.872,21.14 +2016-06-08 11:32:00,19.7387,122.905,21.18 +2016-06-08 11:47:00,18.8725,122.645,21.21 +2016-06-08 12:02:00,20.9925,122.652,21.27 +2016-06-08 12:17:00,18.3375,122.67,21.28 +2016-06-08 12:32:00,20.7062,122.71,21.31 +2016-06-08 12:47:00,20.8463,122.927,21.35 +2016-06-08 13:02:00,20.4187,122.632,21.37 +2016-06-08 13:17:00,19.0612,122.71,21.4 +2016-06-08 13:32:00,20.125,122.747,21.41 +2016-06-08 13:47:00,18.8688,122.7,21.42 +2016-06-08 14:02:00,19.25,122.737,21.41 +2016-06-08 14:17:00,20.1263,122.58,21.43 +2016-06-08 14:32:00,18.0437,122.867,21.44 +2016-06-08 14:47:00,19.7913,122.497,21.45 +2016-06-08 15:02:00,20.27,122.512,21.48 +2016-06-08 15:17:00,17.5587,122.562,21.5 +2016-06-08 15:32:00,18.045,122.465,21.52 +2016-06-08 15:47:00,20.2775,122.835,21.53 +2016-06-08 16:02:00,19.2025,122.535,21.53 +2016-06-08 16:17:00,19.5938,122.545,21.52 +2016-06-08 16:32:00,19.155,122.562,21.52 +2016-06-08 16:47:00,18.2375,122.412,21.53 +2016-06-08 17:02:00,21.4925,122.45,21.53 +2016-06-08 17:17:00,21.8887,122.268,21.53 +2016-06-08 17:32:00,18.87,122.257,21.55 +2016-06-08 17:47:00,18.4788,122.492,21.55 +2016-06-08 18:02:00,21.5888,121.91,21.55 +2016-06-08 18:17:00,20.6637,121.982,21.57 +2016-06-08 18:32:00,17.9463,122.237,21.57 +2016-06-08 18:47:00,19.1562,122.03,21.58 +2016-06-08 19:02:00,19.6425,121.92,21.59 +2016-06-08 19:17:00,19.3925,122.285,21.59 +2016-06-08 19:32:00,20.42,122.045,21.58 +2016-06-08 19:47:00,20.755,121.802,21.58 +2016-06-08 20:02:00,17.6513,121.985,21.58 +2016-06-08 20:17:00,20.71,121.742,21.6 +2016-06-08 20:32:00,19.445,121.682,21.62 +2016-06-08 20:47:00,18.475,121.722,21.61 +2016-06-08 21:02:00,18.525,121.673,21.62 +2016-06-08 21:17:00,20.8,121.55,21.61 +2016-06-08 21:32:00,20.1738,121.302,21.6 +2016-06-08 21:47:00,19.9837,121.232,21.6 +2016-06-08 22:02:00,20.515,121.332,21.58 +2016-06-08 22:17:00,19.545,121.4,21.57 +2016-06-08 22:32:00,19.0638,121.255,21.54 +2016-06-08 22:47:00,21.8838,120.97,21.53 +2016-06-08 23:02:00,19.4975,121.12,21.49 +2016-06-08 23:17:00,19.3962,121.125,21.44 +2016-06-08 23:32:00,19.4425,121.07,21.4 +2016-06-08 23:47:00,19.3937,121.018,21.34 +2016-06-09 00:02:00,18.0912,120.915,21.27 +2016-06-09 00:17:00,16.5863,120.9,21.21 +2016-06-09 00:32:00,17.7975,120.688,21.13 +2016-06-09 00:47:00,19.9762,120.76,21.05 +2016-06-09 01:02:00,19.69,120.64,20.96 +2016-06-09 01:17:00,20.0287,120.625,20.89 +2016-06-09 01:32:00,20.4662,120.827,20.84 +2016-06-09 01:47:00,21.9325,120.65,20.77 +2016-06-09 02:02:00,20.27,120.582,20.7 +2016-06-09 02:17:00,19.5925,120.455,20.65 +2016-06-09 02:32:00,20.0325,120.495,20.6 +2016-06-09 02:47:00,19.3937,120.685,20.56 +2016-06-09 03:02:00,20.7975,120.467,20.51 +2016-06-09 03:17:00,20.1738,120.268,20.48 +2016-06-09 03:32:00,20.6125,120.503,20.44 +2016-06-09 03:47:00,20.0275,120.435,20.42 +2016-06-09 04:02:00,19.0125,120.55,20.39 +2016-06-09 04:17:00,19.79,120.345,20.36 +2016-06-09 04:32:00,18.9625,120.615,20.32 +2016-06-09 04:47:00,20.99,120.427,20.27 +2016-06-09 05:02:00,19.645,120.445,20.25 +2016-06-09 05:17:00,17.9938,120.27,20.21 +2016-06-09 05:32:00,19.495,120.25,20.2 +2016-06-09 05:47:00,21.7825,120.352,20.16 +2016-06-09 06:02:00,21.0925,120.005,20.11 +2016-06-09 06:17:00,17.7937,120.283,20.08 +2016-06-09 06:32:00,19.44,120.322,20.04 +2016-06-09 06:47:00,19.7887,120.027,20.01 +2016-06-09 07:02:00,21.3438,119.93,19.98 +2016-06-09 07:17:00,20.0238,120.135,19.95 +2016-06-09 07:32:00,19.1537,120.315,19.91 +2016-06-09 07:47:00,20.2712,120.347,19.86 +2016-06-09 08:02:00,18.9137,120.137,19.82 +2016-06-09 08:17:00,20.895,120.02,19.77 +2016-06-09 08:32:00,18.8187,120.397,19.73 +2016-06-09 08:47:00,20.17,120.155,19.73 +2016-06-09 09:02:00,19.2462,120.69,19.75 +2016-06-09 09:17:00,20.6137,120.465,19.73 +2016-06-09 09:32:00,20.2725,120.31,19.67 +2016-06-09 09:47:00,18.1413,120.302,19.64 +2016-06-09 10:02:00,19.9762,120.232,19.65 +2016-06-09 10:17:00,20.6113,120.27,19.71 +2016-06-09 10:32:00,19.2,120.302,19.74 +2016-06-09 10:47:00,20.8975,120.173,19.82 +2016-06-09 11:02:00,21.73,120.452,19.86 +2016-06-09 11:17:00,19.4388,120.655,19.88 +2016-06-09 11:32:00,17.7425,120.622,19.94 +2016-06-09 11:47:00,18.77,120.762,19.9 +2016-06-09 12:02:00,22.1775,120.533,19.95 +2016-06-09 12:17:00,20.9938,120.622,20.03 +2016-06-09 12:32:00,18.62,120.512,20.08 +2016-06-09 12:47:00,21.245,120.548,20.09 +2016-06-09 13:02:00,19.6413,120.393,20.15 +2016-06-09 13:17:00,20.3675,120.352,20.17 +2016-06-09 13:32:00,19.4388,120.817,20.16 +2016-06-09 13:47:00,19.2988,120.54,20.21 +2016-06-09 14:02:00,19.345,120.727,20.27 +2016-06-09 14:17:00,19.8412,120.777,20.27 +2016-06-09 14:32:00,22.9475,120.777,20.21 +2016-06-09 14:47:00,18.915,120.722,20.2 +2016-06-09 15:02:00,17.155,120.777,20.21 +2016-06-09 15:17:00,19.6862,120.732,20.27 +2016-06-09 15:32:00,19.1537,120.17,20.29 +2016-06-09 15:47:00,20.4175,120.237,20.27 +2016-06-09 16:02:00,19.4487,119.73,20.27 +2016-06-09 16:17:00,18.1413,119.445,20.28 +2016-06-09 16:32:00,17.8988,119.15,20.28 +2016-06-09 16:47:00,21.7312,118.637,20.27 +2016-06-09 17:02:00,22.0287,118.46,20.26 +2016-06-09 17:17:00,20.2725,118.115,20.27 +2016-06-09 17:32:00,19.9775,117.867,20.26 +2016-06-09 17:47:00,19.6425,117.705,20.27 +2016-06-09 18:02:00,18.9688,117.143,20.28 +2016-06-09 18:17:00,19.2513,116.72,20.3 +2016-06-09 18:32:00,20.7988,116.625,20.31 +2016-06-09 18:47:00,20.7537,116.327,20.32 +2016-06-09 19:02:00,20.755,116.152,20.35 +2016-06-09 19:17:00,19.93,115.88,20.37 +2016-06-09 19:32:00,20.5662,115.628,20.36 +2016-06-09 19:47:00,19.98,115.455,20.34 +2016-06-09 20:02:00,18.1387,115.37,20.33 +2016-06-09 20:17:00,19.4938,115.115,20.31 +2016-06-09 20:32:00,20.0762,114.755,20.3 +2016-06-09 20:47:00,17.9512,114.607,20.28 +2016-06-09 21:02:00,20.125,114.378,20.27 +2016-06-09 21:17:00,17.745,114.26,20.24 +2016-06-09 21:32:00,20.4662,113.995,20.22 +2016-06-09 21:47:00,19.89,114.022,20.19 +2016-06-09 22:02:00,21.0963,113.727,20.17 +2016-06-09 22:17:00,20.7537,113.612,20.15 +2016-06-09 22:32:00,20.615,113.262,20.12 +2016-06-09 22:47:00,19.69,113.357,20.12 +2016-06-09 23:02:00,19.4938,113.283,20.11 +2016-06-09 23:17:00,18.9163,113.182,20.1 +2016-06-09 23:32:00,19.9775,113.15,20.07 +2016-06-09 23:47:00,19.2988,113.035,20.05 +2016-06-10 00:02:00,18.7687,112.972,20.04 +2016-06-10 00:17:00,21.095,112.938,20.0 +2016-06-10 00:32:00,18.7687,112.855,19.94 +2016-06-10 00:47:00,19.3463,112.775,19.9 +2016-06-10 01:02:00,20.1263,112.81,19.84 +2016-06-10 01:17:00,20.5137,112.76,19.78 +2016-06-10 01:32:00,16.6287,112.695,19.71 +2016-06-10 01:47:00,19.5888,112.702,19.63 +2016-06-10 02:02:00,20.5625,112.572,19.56 +2016-06-10 02:17:00,20.3712,112.67,19.48 +2016-06-10 02:32:00,18.8162,112.582,19.4 +2016-06-10 02:47:00,20.17,112.522,19.33 +2016-06-10 03:02:00,20.465,112.67,19.28 +2016-06-10 03:17:00,18.6663,112.78,19.24 +2016-06-10 03:32:00,21.3937,112.617,19.2 +2016-06-10 03:47:00,21.485,112.72,19.19 +2016-06-10 04:02:00,19.4425,112.673,19.17 +2016-06-10 04:17:00,21.3913,112.68,19.15 +2016-06-10 04:32:00,20.8438,113.052,19.14 +2016-06-10 04:47:00,20.8,110.277,19.11 +2016-06-10 05:02:00,20.8475,105.857,19.1 +2016-06-10 05:17:00,19.7887,101.97,19.07 +2016-06-10 05:32:00,19.3425,98.935,19.06 +2016-06-10 05:47:00,18.865,96.69,19.05 +2016-06-10 06:02:00,20.8975,95.2675,19.05 +2016-06-10 06:17:00,19.84,94.7225,19.05 +2016-06-10 06:32:00,18.2862,95.025,19.15 +2016-06-10 06:47:00,20.9425,95.3125,19.35 +2016-06-10 07:02:00,21.4412,96.15,19.52 +2016-06-10 07:17:00,19.6413,97.3025,19.51 +2016-06-10 07:32:00,18.4737,98.5,19.45 +2016-06-10 07:47:00,21.2412,99.73,19.41 +2016-06-10 08:02:00,20.3725,100.863,19.38 +2016-06-10 08:17:00,19.7887,101.938,19.38 +2016-06-10 08:32:00,17.7438,103.125,19.41 +2016-06-10 08:47:00,20.9925,104.162,19.44 +2016-06-10 09:02:00,19.6862,105.27,19.5 +2016-06-10 09:17:00,19.4912,105.84,19.57 +2016-06-10 09:32:00,20.0775,106.912,19.62 +2016-06-10 09:47:00,20.125,107.615,19.66 +2016-06-10 10:02:00,18.9275,108.327,19.7 +2016-06-10 10:17:00,18.815,108.97,19.75 +2016-06-10 10:32:00,18.8688,109.487,19.77 +2016-06-10 10:47:00,19.8825,110.075,19.79 +2016-06-10 11:02:00,21.2913,110.5,19.79 +2016-06-10 11:17:00,22.4075,111.12,19.79 +2016-06-10 11:32:00,20.415,111.46,19.79 +2016-06-10 11:47:00,20.5112,112.342,19.79 +2016-06-10 12:02:00,20.415,112.822,19.79 +2016-06-10 12:17:00,19.885,113.242,19.78 +2016-06-10 12:32:00,21.2387,113.315,19.79 +2016-06-10 12:47:00,20.9875,114.003,19.79 +2016-06-10 13:02:00,19.69,114.095,19.79 +2016-06-10 13:17:00,19.6925,114.432,19.8 +2016-06-10 13:32:00,20.7025,114.467,19.79 +2016-06-10 13:47:00,20.4175,114.572,19.76 +2016-06-10 14:02:00,19.8825,114.9,19.75 +2016-06-10 14:17:00,19.5413,114.987,19.74 +2016-06-10 14:32:00,20.3213,115.342,19.67 +2016-06-10 14:47:00,20.705,115.415,19.67 +2016-06-10 15:02:00,19.34,115.29,19.68 +2016-06-10 15:17:00,19.35,115.632,19.74 +2016-06-10 15:32:00,18.475,115.518,19.78 +2016-06-10 15:47:00,19.4925,115.685,19.77 +2016-06-10 16:02:00,21.685,115.923,19.77 +2016-06-10 16:17:00,21.1937,116.128,19.77 +2016-06-10 16:32:00,19.1062,116.14,19.79 +2016-06-10 16:47:00,20.94,116.247,19.84 +2016-06-10 17:02:00,20.4688,116.427,19.88 +2016-06-10 17:17:00,21.195,116.423,19.9 +2016-06-10 17:32:00,20.5163,116.645,19.89 +2016-06-10 17:47:00,19.7363,116.905,19.9 +2016-06-10 18:02:00,21.7838,117.102,19.9 +2016-06-10 18:17:00,20.2738,117.137,19.92 +2016-06-10 18:32:00,17.9437,117.412,19.92 +2016-06-10 18:47:00,19.2962,117.287,19.9 +2016-06-10 19:02:00,19.0625,117.597,19.89 +2016-06-10 19:17:00,19.885,117.442,19.9 +2016-06-10 19:32:00,21.195,117.567,19.92 +2016-06-10 19:47:00,20.7038,117.417,19.93 +2016-06-10 20:02:00,19.8375,117.41,19.92 +2016-06-10 20:17:00,20.03,117.548,19.95 +2016-06-10 20:32:00,19.7425,117.607,19.97 +2016-06-10 20:47:00,21.1413,117.45,19.98 +2016-06-10 21:02:00,20.125,117.372,20.01 +2016-06-10 21:17:00,22.23,117.378,20.03 +2016-06-10 21:32:00,20.2237,117.412,20.04 +2016-06-10 21:47:00,19.2025,117.39,20.04 +2016-06-10 22:02:00,19.4975,117.365,20.02 +2016-06-10 22:17:00,20.8988,117.202,20.01 +2016-06-10 22:32:00,21.5837,117.225,20.0 +2016-06-10 22:47:00,18.3812,117.128,19.98 +2016-06-10 23:02:00,20.27,117.117,19.94 +2016-06-10 23:17:00,20.075,117.115,19.92 +2016-06-10 23:32:00,21.0938,117.03,19.89 +2016-06-10 23:47:00,19.5912,117.012,19.85 +2016-06-11 00:02:00,20.03,117.23,19.81 +2016-06-11 00:17:00,19.1087,117.365,19.79 +2016-06-11 00:32:00,19.7925,117.2,19.77 +2016-06-11 00:47:00,20.7087,117.173,19.74 +2016-06-11 01:02:00,21.2425,117.107,19.71 +2016-06-11 01:17:00,20.0737,117.075,19.69 +2016-06-11 01:32:00,18.4313,117.018,19.66 +2016-06-11 01:47:00,21.4887,116.982,19.64 +2016-06-11 02:02:00,17.8,116.925,19.62 +2016-06-11 02:17:00,18.1912,116.84,19.61 +2016-06-11 02:32:00,19.015,116.783,19.57 +2016-06-11 02:47:00,22.1775,116.71,19.52 +2016-06-11 03:02:00,19.2475,116.717,19.48 +2016-06-11 03:17:00,18.5238,116.617,19.45 +2016-06-11 03:32:00,18.77,116.442,19.42 +2016-06-11 03:47:00,21.5362,116.6,19.39 +2016-06-11 04:02:00,20.8975,116.393,19.36 +2016-06-11 04:17:00,22.3625,116.34,19.34 +2016-06-11 04:32:00,21.5362,116.46,19.32 +2016-06-11 04:47:00,20.6612,116.522,19.3 +2016-06-11 05:02:00,20.0737,116.628,19.29 +2016-06-11 05:17:00,21.2425,116.7,19.3 +2016-06-11 05:32:00,19.5425,116.625,19.31 +2016-06-11 05:47:00,19.0137,116.49,19.28 +2016-06-11 06:02:00,18.67,116.425,19.26 +2016-06-11 06:17:00,20.2225,116.32,19.23 +2016-06-11 06:32:00,21.2937,116.39,19.16 +2016-06-11 06:47:00,20.6125,116.36,19.14 +2016-06-11 07:02:00,20.0737,116.35,19.14 +2016-06-11 07:17:00,19.7387,116.412,19.13 +2016-06-11 07:32:00,22.3175,116.45,19.16 +2016-06-11 07:47:00,20.4175,116.342,19.14 +2016-06-11 08:02:00,22.2225,116.387,19.1 +2016-06-11 08:17:00,19.5863,116.37,19.1 +2016-06-11 08:32:00,18.9587,116.397,19.12 +2016-06-11 08:47:00,20.9425,116.247,19.12 +2016-06-11 09:02:00,20.0238,116.245,19.11 +2016-06-11 09:17:00,20.6125,116.445,19.08 +2016-06-11 09:32:00,20.3662,116.427,19.06 +2016-06-11 09:47:00,20.895,116.485,19.09 +2016-06-11 10:02:00,20.22,116.55,19.09 +2016-06-11 10:17:00,20.8487,116.595,19.07 +2016-06-11 10:32:00,22.3613,116.667,19.08 +2016-06-11 10:47:00,19.8363,116.747,19.01 +2016-06-11 11:02:00,21.09,116.59,18.98 +2016-06-11 11:17:00,19.9762,116.645,19.02 +2016-06-11 11:32:00,21.5875,116.56,19.03 +2016-06-11 11:47:00,18.915,116.735,19.03 +2016-06-11 12:02:00,20.0725,116.822,18.99 +2016-06-11 12:17:00,22.1263,117.025,18.98 +2016-06-11 12:32:00,20.75,117.265,19.05 +2016-06-11 12:47:00,20.0275,117.393,19.07 +2016-06-11 13:02:00,20.2225,117.457,19.07 +2016-06-11 13:17:00,21.585,117.587,19.09 +2016-06-11 13:32:00,20.845,117.667,19.14 +2016-06-11 13:47:00,20.7988,117.81,19.21 +2016-06-11 14:02:00,19.2,117.87,19.27 +2016-06-11 14:17:00,21.5825,118.087,19.26 +2016-06-11 14:32:00,20.1225,118.122,19.22 +2016-06-11 14:47:00,19.7875,118.337,19.24 +2016-06-11 15:02:00,18.9613,118.44,19.29 +2016-06-11 15:17:00,21.2937,118.61,19.31 +2016-06-11 15:32:00,18.865,118.875,19.33 +2016-06-11 15:47:00,19.105,118.947,19.36 +2016-06-11 16:02:00,21.1425,119.165,19.35 +2016-06-11 16:17:00,21.1413,119.3,19.37 +2016-06-11 16:32:00,20.5137,119.257,19.39 +2016-06-11 16:47:00,20.845,119.285,19.4 +2016-06-11 17:02:00,20.5137,119.497,19.42 +2016-06-11 17:17:00,18.62,119.52,19.42 +2016-06-11 17:32:00,20.3237,119.617,19.42 +2016-06-11 17:47:00,20.9912,119.962,19.4 +2016-06-11 18:02:00,20.4662,120.007,19.38 +2016-06-11 18:17:00,18.3775,120.132,19.38 +2016-06-11 18:32:00,18.0912,120.077,19.38 +2016-06-11 18:47:00,18.7712,120.105,19.39 +2016-06-11 19:02:00,19.06,120.14,19.39 +2016-06-11 19:17:00,21.5825,120.143,19.38 +2016-06-11 19:32:00,21.2412,119.99,19.37 +2016-06-11 19:47:00,20.0762,119.997,19.35 +2016-06-11 20:02:00,21.1937,119.932,19.33 +2016-06-11 20:17:00,21.7838,120.062,19.31 +2016-06-11 20:32:00,21.095,120.162,19.29 +2016-06-11 20:47:00,20.8937,120.215,19.27 +2016-06-11 21:02:00,20.2237,120.012,19.25 +2016-06-11 21:17:00,19.6912,119.923,19.25 +2016-06-11 21:32:00,18.915,119.747,19.25 +2016-06-11 21:47:00,18.9613,119.643,19.24 +2016-06-11 22:02:00,21.9325,119.54,19.25 +2016-06-11 22:17:00,21.0462,119.305,19.24 +2016-06-11 22:32:00,20.4688,119.18,19.24 +2016-06-11 22:47:00,21.0437,119.28,19.25 +2016-06-11 23:02:00,20.7525,119.207,19.26 +2016-06-11 23:17:00,20.9437,119.147,19.26 +2016-06-11 23:32:00,22.03,119.033,19.24 +2016-06-11 23:47:00,19.1562,119.052,19.23 +2016-06-12 00:02:00,21.685,118.795,19.22 +2016-06-12 00:17:00,20.6125,118.572,19.22 +2016-06-12 00:32:00,20.99,118.45,19.2 +2016-06-12 00:47:00,21.7862,118.272,19.16 +2016-06-12 01:02:00,19.84,118.13,19.13 +2016-06-12 01:17:00,18.77,118.055,19.09 +2016-06-12 01:32:00,21.2438,118.03,19.06 +2016-06-12 01:47:00,21.0963,117.962,19.03 +2016-06-12 02:02:00,20.225,118.003,18.99 +2016-06-12 02:17:00,20.6612,117.915,18.94 +2016-06-12 02:32:00,21.0425,117.768,18.92 +2016-06-12 02:47:00,21.8375,117.827,18.91 +2016-06-12 03:02:00,21.5863,117.632,18.91 +2016-06-12 03:17:00,22.13,117.527,18.87 +2016-06-12 03:32:00,19.9788,117.378,18.84 +2016-06-12 03:47:00,21.4437,117.292,18.82 +2016-06-12 04:02:00,20.0275,117.268,18.81 +2016-06-12 04:17:00,20.1712,117.062,18.79 +2016-06-12 04:32:00,20.075,116.965,18.76 +2016-06-12 04:47:00,19.5425,116.905,18.75 +2016-06-12 05:02:00,20.0737,116.78,18.73 +2016-06-12 05:17:00,21.7337,116.697,18.7 +2016-06-12 05:32:00,21.8337,116.577,18.7 +2016-06-12 05:47:00,22.225,116.475,18.69 +2016-06-12 06:02:00,20.7513,116.41,18.69 +2016-06-12 06:17:00,20.1687,116.462,18.69 +2016-06-12 06:32:00,20.7,116.397,18.69 +2016-06-12 06:47:00,21.3925,116.335,18.7 +2016-06-12 07:02:00,20.7513,116.367,18.73 +2016-06-12 07:17:00,22.1263,116.34,18.76 +2016-06-12 07:32:00,20.0238,116.265,18.79 +2016-06-12 07:47:00,21.4437,116.405,18.86 +2016-06-12 08:02:00,20.6537,116.31,18.93 +2016-06-12 08:17:00,21.04,116.287,18.96 +2016-06-12 08:32:00,20.2675,116.21,18.95 +2016-06-12 08:47:00,22.3625,116.188,18.97 +2016-06-12 09:02:00,21.7838,116.033,19.02 +2016-06-12 09:17:00,21.7337,115.967,19.1 +2016-06-12 09:32:00,21.4863,116.003,19.12 +2016-06-12 09:47:00,23.1338,116.135,19.14 +2016-06-12 10:02:00,20.5137,116.207,19.14 +2016-06-12 10:17:00,20.1263,116.24,19.12 +2016-06-12 10:32:00,20.7462,116.295,19.14 +2016-06-12 10:47:00,22.7038,116.147,19.12 +2016-06-12 11:02:00,20.4675,116.11,19.09 +2016-06-12 11:17:00,20.465,116.205,19.05 +2016-06-12 11:32:00,20.37,116.122,19.06 +2016-06-12 11:47:00,19.54,116.048,19.11 +2016-06-12 12:02:00,19.1987,115.975,19.13 +2016-06-12 12:17:00,21.8825,116.048,19.14 +2016-06-12 12:32:00,19.0125,115.855,19.16 +2016-06-12 12:47:00,19.9313,115.74,19.17 +2016-06-12 13:02:00,20.6575,115.832,19.14 +2016-06-12 13:17:00,21.4875,115.798,19.1 +2016-06-12 13:32:00,20.4625,116.03,19.05 +2016-06-12 13:47:00,19.3425,116.173,19.03 +2016-06-12 14:02:00,21.485,116.105,19.03 +2016-06-12 14:17:00,20.985,116.115,19.04 +2016-06-12 14:32:00,19.685,116.147,19.02 +2016-06-12 14:47:00,20.3637,116.18,19.02 +2016-06-12 15:02:00,19.74,116.32,19.0 +2016-06-12 15:17:00,19.8825,116.12,18.96 +2016-06-12 15:32:00,19.0563,116.05,18.96 +2016-06-12 15:47:00,21.63,116.23,18.95 +2016-06-12 16:02:00,20.8425,116.98,18.94 +2016-06-12 16:17:00,23.6738,120.487,18.91 +2016-06-12 16:32:00,24.905,122.6,18.9 +2016-06-12 16:47:00,23.43,123.76,18.94 +2016-06-12 17:02:00,20.6087,124.445,19.0 +2016-06-12 17:17:00,25.155,124.817,18.89 +2016-06-12 17:32:00,27.5125,125.048,18.82 +2016-06-12 17:47:00,26.9625,125.335,18.79 +2016-06-12 18:02:00,24.9075,125.837,18.75 +2016-06-12 18:17:00,24.9575,126.165,18.7 +2016-06-12 18:32:00,23.0837,126.417,18.72 +2016-06-12 18:47:00,26.6188,126.417,18.76 +2016-06-12 19:02:00,23.4775,126.467,18.79 +2016-06-12 19:17:00,24.6575,126.692,18.8 +2016-06-12 19:32:00,21.3412,126.717,18.76 +2016-06-12 19:47:00,21.4388,126.805,18.72 +2016-06-12 20:02:00,24.4112,126.825,18.68 +2016-06-12 20:17:00,25.1062,127.01,18.67 +2016-06-12 20:32:00,22.7537,127.082,18.66 +2016-06-12 20:47:00,20.8412,127.173,18.64 +2016-06-12 21:02:00,25.49,127.15,18.65 +2016-06-12 21:17:00,23.8138,127.107,18.64 +2016-06-12 21:32:00,25.4938,126.982,18.63 +2016-06-12 21:47:00,22.0788,126.857,18.63 +2016-06-12 22:02:00,24.4587,126.712,18.61 +2016-06-12 22:17:00,23.04,126.643,18.59 +2016-06-12 22:32:00,23.23,126.41,18.56 +2016-06-12 22:47:00,22.4088,126.222,18.54 +2016-06-12 23:02:00,21.7812,126.08,18.53 +2016-06-12 23:17:00,23.7725,125.895,18.53 +2016-06-12 23:32:00,23.3787,125.647,18.51 +2016-06-12 23:47:00,25.105,125.467,18.48 +2016-06-13 00:02:00,21.1875,125.35,18.47 +2016-06-13 00:17:00,24.4125,125.197,18.45 +2016-06-13 00:32:00,22.7062,125.033,18.44 +2016-06-13 00:47:00,20.94,124.975,18.43 +2016-06-13 01:02:00,22.175,124.835,18.4 +2016-06-13 01:17:00,23.085,124.545,18.39 +2016-06-13 01:32:00,21.2438,124.365,18.38 +2016-06-13 01:47:00,22.4088,124.147,18.36 +2016-06-13 02:02:00,23.1813,123.847,18.37 +2016-06-13 02:17:00,21.6338,123.65,18.35 +2016-06-13 02:32:00,22.895,123.462,18.33 +2016-06-13 02:47:00,23.4287,123.237,18.32 +2016-06-13 03:02:00,22.8012,123.062,18.32 +2016-06-13 03:17:00,23.9112,122.875,18.3 +2016-06-13 03:32:00,24.01,122.75,18.31 +2016-06-13 03:47:00,21.4388,122.655,18.31 +2016-06-13 04:02:00,21.9775,122.575,18.32 +2016-06-13 04:17:00,23.235,122.62,18.34 +2016-06-13 04:32:00,19.8363,122.505,18.35 +2016-06-13 04:47:00,21.7325,122.51,18.35 +2016-06-13 05:02:00,21.7825,122.405,18.37 +2016-06-13 05:17:00,23.28,122.397,18.37 +2016-06-13 05:32:00,23.77,122.365,18.38 +2016-06-13 05:47:00,21.14,122.357,18.38 +2016-06-13 06:02:00,22.8,122.36,18.37 +2016-06-13 06:17:00,22.1275,122.472,18.36 +2016-06-13 06:32:00,23.1325,122.542,18.35 +2016-06-13 06:47:00,23.3288,122.67,18.34 +2016-06-13 07:02:00,20.0263,122.96,18.34 +2016-06-13 07:17:00,21.2412,123.215,18.39 +2016-06-13 07:32:00,22.8512,123.337,18.41 +2016-06-13 07:47:00,22.175,123.482,18.43 +2016-06-13 08:02:00,21.58,123.917,18.46 +2016-06-13 08:17:00,24.2087,124.227,18.5 +2016-06-13 08:32:00,21.8787,124.442,18.54 +2016-06-13 08:47:00,20.0713,124.783,18.54 +2016-06-13 09:02:00,20.75,125.085,18.5 +2016-06-13 09:17:00,22.4575,125.375,18.49 +2016-06-13 09:32:00,22.945,125.677,18.43 +2016-06-13 09:47:00,23.6212,126.015,18.39 +2016-06-13 10:02:00,19.3862,126.277,18.38 +2016-06-13 10:17:00,21.3887,126.628,18.4 +2016-06-13 10:32:00,21.2913,127.015,18.44 +2016-06-13 10:47:00,22.9463,127.408,18.5 +2016-06-13 11:02:00,22.4587,127.862,18.55 +2016-06-13 11:17:00,22.5537,128.435,18.55 +2016-06-13 11:32:00,21.3438,128.9,18.57 +2016-06-13 11:47:00,23.8138,129.565,18.55 +2016-06-13 12:02:00,22.7038,130.317,18.54 +2016-06-13 12:17:00,23.18,132.205,18.53 +2016-06-13 12:32:00,23.6225,133.955,18.52 +2016-06-13 12:47:00,21.1413,135.262,18.58 +2016-06-13 13:02:00,23.3787,136.442,18.57 +2016-06-13 13:17:00,20.8425,137.285,18.57 +2016-06-13 13:32:00,21.0938,137.955,18.59 +2016-06-13 13:47:00,22.6075,138.452,18.69 +2016-06-13 14:02:00,21.4837,138.795,18.72 +2016-06-13 14:17:00,23.6212,139.302,18.71 +2016-06-13 14:32:00,24.7062,139.472,18.7 +2016-06-13 14:47:00,22.41,139.697,18.7 +2016-06-13 15:02:00,22.4112,140.14,18.7 +2016-06-13 15:17:00,23.3775,139.96,18.71 +2016-06-13 15:32:00,20.4638,140.252,18.72 +2016-06-13 15:47:00,25.1537,140.567,18.73 +2016-06-13 16:02:00,20.2175,140.77,18.74 +2016-06-13 16:17:00,23.7213,141.077,18.77 +2016-06-13 16:32:00,23.2787,141.355,18.78 +2016-06-13 16:47:00,22.6588,141.645,18.78 +2016-06-13 17:02:00,22.175,141.695,18.76 +2016-06-13 17:17:00,22.36,141.673,18.75 +2016-06-13 17:32:00,22.9938,141.715,18.74 +2016-06-13 17:47:00,22.605,141.68,18.72 +2016-06-13 18:02:00,24.8125,141.57,18.71 +2016-06-13 18:17:00,22.995,141.61,18.69 +2016-06-13 18:32:00,23.7725,141.557,18.68 +2016-06-13 18:47:00,21.7838,141.647,18.68 +2016-06-13 19:02:00,20.9388,141.495,18.68 +2016-06-13 19:17:00,22.075,141.352,18.68 +2016-06-13 19:32:00,23.135,141.22,18.7 +2016-06-13 19:47:00,23.4275,141.12,18.7 +2016-06-13 20:02:00,24.3087,140.982,18.7 +2016-06-13 20:17:00,24.01,140.917,18.7 +2016-06-13 20:32:00,25.2537,140.837,18.7 +2016-06-13 20:47:00,22.7988,140.705,18.68 +2016-06-13 21:02:00,23.8637,140.577,18.67 +2016-06-13 21:17:00,23.8637,140.315,18.64 +2016-06-13 21:32:00,24.2137,140.057,18.61 +2016-06-13 21:47:00,23.725,139.947,18.59 +2016-06-13 22:02:00,23.7725,139.64,18.55 +2016-06-13 22:17:00,22.6525,139.435,18.5 +2016-06-13 22:32:00,23.8625,139.17,18.45 +2016-06-13 22:47:00,21.9788,139.012,18.41 +2016-06-13 23:02:00,24.0062,138.768,18.37 +2016-06-13 23:17:00,23.8625,138.597,18.34 +2016-06-13 23:32:00,24.61,138.402,18.3 +2016-06-13 23:47:00,22.8975,138.22,18.26 +2016-06-14 00:02:00,23.5725,138.12,18.23 +2016-06-14 00:17:00,21.9775,137.952,18.2 +2016-06-14 00:32:00,23.0875,138.005,18.19 +2016-06-14 00:47:00,22.0263,137.787,18.16 +2016-06-14 01:02:00,22.5037,137.673,18.14 +2016-06-14 01:17:00,23.3262,137.537,18.14 +2016-06-14 01:32:00,22.0275,137.425,18.12 +2016-06-14 01:47:00,24.51,137.345,18.12 +2016-06-14 02:02:00,22.3125,137.152,18.12 +2016-06-14 02:17:00,22.5537,137.03,18.12 +2016-06-14 02:32:00,22.655,136.952,18.09 +2016-06-14 02:47:00,23.7262,136.93,18.08 +2016-06-14 03:02:00,22.655,136.815,18.07 +2016-06-14 03:17:00,24.0125,136.795,18.02 +2016-06-14 03:32:00,23.5762,136.862,17.99 +2016-06-14 03:47:00,22.8475,136.927,17.97 +2016-06-14 04:02:00,23.325,137.215,17.94 +2016-06-14 04:17:00,22.4587,137.22,17.91 +2016-06-14 04:32:00,24.2113,137.38,17.87 +2016-06-14 04:47:00,24.11,137.505,17.84 +2016-06-14 05:02:00,25.1562,137.71,17.81 +2016-06-14 05:17:00,24.21,137.94,17.78 +2016-06-14 05:32:00,23.8187,138.117,17.76 +2016-06-14 05:47:00,24.1087,138.257,17.73 +2016-06-14 06:02:00,23.815,138.505,17.7 +2016-06-14 06:17:00,23.135,138.658,17.68 +2016-06-14 06:32:00,23.5775,138.917,17.65 +2016-06-14 06:47:00,23.1325,139.112,17.62 +2016-06-14 07:02:00,23.6712,139.432,17.61 +2016-06-14 07:17:00,23.1325,139.77,17.61 +2016-06-14 07:32:00,24.9613,140.097,17.62 +2016-06-14 07:47:00,22.8988,140.39,17.66 +2016-06-14 08:02:00,23.6725,140.69,17.69 +2016-06-14 08:17:00,23.91,141.057,17.74 +2016-06-14 08:32:00,25.5425,141.477,17.76 +2016-06-14 08:47:00,23.575,141.68,17.75 +2016-06-14 09:02:00,23.8662,142.018,17.73 +2016-06-14 09:17:00,22.5037,142.412,17.8 +2016-06-14 09:32:00,24.9088,143.188,17.9 +2016-06-14 09:47:00,24.5187,145.022,17.97 +2016-06-14 10:02:00,23.4725,146.065,17.93 +2016-06-14 10:17:00,23.6725,146.885,18.03 +2016-06-14 10:32:00,23.3275,147.467,18.03 +2016-06-14 10:47:00,24.5612,147.832,17.97 +2016-06-14 11:02:00,23.8662,148.202,18.02 +2016-06-14 11:17:00,24.1575,148.427,18.06 +2016-06-14 11:32:00,25.0062,148.585,18.16 +2016-06-14 11:47:00,23.7687,148.938,18.15 +2016-06-14 12:02:00,24.8562,149.268,18.12 +2016-06-14 12:17:00,23.185,149.12,18.12 +2016-06-14 12:32:00,24.365,149.548,18.08 +2016-06-14 12:47:00,23.0863,149.457,18.04 +2016-06-14 13:02:00,25.3525,149.695,18.04 +2016-06-14 13:17:00,24.5612,149.82,18.11 +2016-06-14 13:32:00,25.305,150.042,18.22 +2016-06-14 13:47:00,24.1612,149.952,18.28 +2016-06-14 14:02:00,23.43,150.11,18.34 +2016-06-14 14:17:00,24.055,150.33,18.37 +2016-06-14 14:32:00,23.8162,150.367,18.42 +2016-06-14 14:47:00,24.56,150.595,18.47 +2016-06-14 15:02:00,24.315,150.85,18.47 +2016-06-14 15:17:00,25.105,150.832,18.46 +2016-06-14 15:32:00,25.16,150.945,18.45 +2016-06-14 15:47:00,25.4475,150.76,18.46 +2016-06-14 16:02:00,22.7487,151.185,18.46 +2016-06-14 16:17:00,23.91,151.462,18.47 +2016-06-14 16:32:00,24.61,151.712,18.48 +2016-06-14 16:47:00,22.705,151.94,18.55 +2016-06-14 17:02:00,26.09,151.997,18.55 +2016-06-14 17:17:00,24.91,151.912,18.58 +2016-06-14 17:32:00,23.2812,151.975,18.62 +2016-06-14 17:47:00,23.6775,151.867,18.66 +2016-06-14 18:02:00,23.4287,151.902,18.67 +2016-06-14 18:17:00,24.5638,151.865,18.7 +2016-06-14 18:32:00,23.8637,151.985,18.72 +2016-06-14 18:47:00,25.4962,151.925,18.72 +2016-06-14 19:02:00,24.1575,151.795,18.72 +2016-06-14 19:17:00,24.1637,151.717,18.73 +2016-06-14 19:32:00,24.4112,151.7,18.69 +2016-06-14 19:47:00,25.305,151.5,18.69 +2016-06-14 20:02:00,23.9613,151.402,18.68 +2016-06-14 20:17:00,24.8575,151.197,18.67 +2016-06-14 20:32:00,23.6237,151.252,18.68 +2016-06-14 20:47:00,25.0125,150.98,18.68 +2016-06-14 21:02:00,23.0888,150.887,18.69 +2016-06-14 21:17:00,25.5437,150.662,18.69 +2016-06-14 21:32:00,24.4175,150.518,18.68 +2016-06-14 21:47:00,24.8575,150.387,18.67 +2016-06-14 22:02:00,24.2113,150.07,18.65 +2016-06-14 22:17:00,24.6588,149.935,18.64 +2016-06-14 22:32:00,24.9075,149.792,18.62 +2016-06-14 22:47:00,23.3312,149.51,18.62 +2016-06-14 23:02:00,22.8988,149.235,18.6 +2016-06-14 23:17:00,25.5925,149.042,18.58 +2016-06-14 23:32:00,25.3075,148.835,18.57 +2016-06-14 23:47:00,24.9088,148.798,18.55 +2016-06-15 00:02:00,23.7725,148.587,18.52 +2016-06-15 00:17:00,24.2588,148.507,18.49 +2016-06-15 00:32:00,25.2562,148.38,18.45 +2016-06-15 00:47:00,23.2812,148.222,18.42 +2016-06-15 01:02:00,24.5137,148.037,18.37 +2016-06-15 01:17:00,25.16,148.005,18.32 +2016-06-15 01:32:00,24.215,147.822,18.28 +2016-06-15 01:47:00,25.7438,147.582,18.24 +2016-06-15 02:02:00,23.8187,147.35,18.2 +2016-06-15 02:17:00,22.9463,147.225,18.15 +2016-06-15 02:32:00,23.77,147.052,18.1 +2016-06-15 02:47:00,24.105,146.837,18.07 +2016-06-15 03:02:00,24.3587,146.715,18.03 +2016-06-15 03:17:00,26.5187,146.47,18.0 +2016-06-15 03:32:00,26.8187,146.302,17.97 +2016-06-15 03:47:00,26.6687,146.277,17.94 +2016-06-15 04:02:00,24.7075,146.215,17.91 +2016-06-15 04:17:00,23.3775,146.08,17.89 +2016-06-15 04:32:00,24.8075,145.95,17.87 +2016-06-15 04:47:00,25.8887,145.783,17.87 +2016-06-15 05:02:00,24.1562,145.71,17.86 +2016-06-15 05:17:00,24.9088,145.518,17.83 +2016-06-15 05:32:00,25.5437,145.477,17.85 +2016-06-15 05:47:00,24.1087,145.252,17.87 +2016-06-15 06:02:00,25.6387,145.158,17.89 +2016-06-15 06:17:00,23.23,144.98,17.86 +2016-06-15 06:32:00,24.5175,144.908,17.84 +2016-06-15 06:47:00,26.1287,144.715,17.82 +2016-06-15 07:02:00,24.2075,144.73,17.79 +2016-06-15 07:17:00,27.5587,144.582,17.77 +2016-06-15 07:32:00,25.9837,144.445,17.74 +2016-06-15 07:47:00,25.4938,144.367,17.71 +2016-06-15 08:02:00,24.5612,144.212,17.7 +2016-06-15 08:17:00,24.61,144.307,17.7 +2016-06-15 08:32:00,25.9325,144.167,17.68 +2016-06-15 08:47:00,26.085,144.18,17.66 +2016-06-15 09:02:00,25.4887,144.415,17.64 +2016-06-15 09:17:00,27.1537,144.268,17.63 +2016-06-15 09:32:00,26.4187,144.42,17.65 +2016-06-15 09:47:00,26.9613,144.582,17.69 +2016-06-15 10:02:00,24.2537,144.58,17.68 +2016-06-15 10:17:00,26.2762,144.675,17.68 +2016-06-15 10:32:00,25.9362,144.765,17.78 +2016-06-15 10:47:00,25.2038,144.842,17.81 +2016-06-15 11:02:00,26.32,144.87,17.9 +2016-06-15 11:17:00,25.8387,144.732,17.98 +2016-06-15 11:32:00,25.49,144.815,18.03 +2016-06-15 11:47:00,26.715,144.817,18.11 +2016-06-15 12:02:00,27.1062,144.602,18.16 +2016-06-15 12:17:00,26.035,144.57,18.27 +2016-06-15 12:32:00,27.01,144.447,18.33 +2016-06-15 12:47:00,26.72,144.222,18.32 +2016-06-15 13:02:00,26.1738,144.155,18.27 +2016-06-15 13:17:00,25.2537,144.197,18.28 +2016-06-15 13:32:00,24.755,144.067,18.24 +2016-06-15 13:47:00,25.635,144.092,18.21 +2016-06-15 14:02:00,24.7525,144.04,18.27 +2016-06-15 14:17:00,25.4912,144.065,18.29 +2016-06-15 14:32:00,26.365,144.19,18.28 +2016-06-15 14:47:00,24.255,144.085,18.31 +2016-06-15 15:02:00,25.7425,144.07,18.33 +2016-06-15 15:17:00,26.5687,144.12,18.37 +2016-06-15 15:32:00,27.1575,143.997,18.4 +2016-06-15 15:47:00,25.0062,143.927,18.41 +2016-06-15 16:02:00,25.8387,143.96,18.41 +2016-06-15 16:17:00,27.2537,143.91,18.42 +2016-06-15 16:32:00,25.8862,144.02,18.41 +2016-06-15 16:47:00,27.1062,144.167,18.41 +2016-06-15 17:02:00,25.1537,144.533,18.45 +2016-06-15 17:17:00,26.9613,144.667,18.49 +2016-06-15 17:32:00,25.885,144.89,18.55 +2016-06-15 17:47:00,28.0088,145.217,18.58 +2016-06-15 18:02:00,25.69,145.44,18.62 +2016-06-15 18:17:00,25.9837,145.757,18.63 +2016-06-15 18:32:00,24.155,145.938,18.67 +2016-06-15 18:47:00,25.7913,146.112,18.7 +2016-06-15 19:02:00,27.1612,146.3,18.73 +2016-06-15 19:17:00,25.64,146.397,18.73 +2016-06-15 19:32:00,26.5725,146.72,18.71 +2016-06-15 19:47:00,26.67,146.787,18.69 +2016-06-15 20:02:00,26.57,146.938,18.67 +2016-06-15 20:17:00,25.8438,147.027,18.64 +2016-06-15 20:32:00,25.26,147.19,18.63 +2016-06-15 20:47:00,25.2025,147.325,18.62 +2016-06-15 21:02:00,26.2262,147.42,18.6 +2016-06-15 21:17:00,28.0088,147.49,18.57 +2016-06-15 21:32:00,27.01,147.715,18.55 +2016-06-15 21:47:00,25.5413,147.812,18.5 +2016-06-15 22:02:00,24.7125,147.688,18.44 +2016-06-15 22:17:00,26.87,147.688,18.4 +2016-06-15 22:32:00,28.5563,147.735,18.37 +2016-06-15 22:47:00,27.6625,147.66,18.35 +2016-06-15 23:02:00,26.7675,147.555,18.34 +2016-06-15 23:17:00,27.8063,147.63,18.33 +2016-06-15 23:32:00,27.6637,147.555,18.32 +2016-06-15 23:47:00,25.205,147.425,18.32 +2016-06-16 00:02:00,25.1062,147.372,18.3 +2016-06-16 00:17:00,24.9562,147.41,18.28 +2016-06-16 00:32:00,23.5262,147.425,18.25 +2016-06-16 00:47:00,25.3538,147.352,18.22 +2016-06-16 01:02:00,26.6687,147.427,18.19 +2016-06-16 01:17:00,28.9512,147.362,18.15 +2016-06-16 01:32:00,27.8575,147.245,18.13 +2016-06-16 01:47:00,26.5187,147.217,18.09 +2016-06-16 02:02:00,25.84,147.135,18.04 +2016-06-16 02:17:00,27.205,147.042,18.0 +2016-06-16 02:32:00,25.205,146.975,17.94 +2016-06-16 02:47:00,27.255,146.81,17.88 +2016-06-16 03:02:00,27.4075,146.635,17.81 +2016-06-16 03:17:00,25.445,146.732,17.73 +2016-06-16 03:32:00,26.8688,146.69,17.64 +2016-06-16 03:47:00,28.3613,146.677,17.55 +2016-06-16 04:02:00,26.9637,146.673,17.48 +2016-06-16 04:17:00,25.3988,146.462,17.4 +2016-06-16 04:32:00,25.4425,146.585,17.33 +2016-06-16 04:47:00,25.4938,143.537,17.26 +2016-06-16 05:02:00,28.7,141.217,17.21 +2016-06-16 05:17:00,25.2,142.632,17.18 +2016-06-16 05:32:00,27.055,144.005,17.12 +2016-06-16 05:47:00,27.8063,145.242,17.15 +2016-06-16 06:02:00,24.5575,145.902,17.22 +2016-06-16 06:17:00,30.26,146.452,17.2 +2016-06-16 06:32:00,27.21,146.798,17.17 +2016-06-16 06:47:00,28.55,147.075,17.2 +2016-06-16 07:02:00,27.4075,147.217,17.23 +2016-06-16 07:17:00,26.08,147.472,17.3 +2016-06-16 07:32:00,27.46,147.57,17.35 +2016-06-16 07:47:00,29.4762,147.62,17.4 +2016-06-16 08:02:00,28.5563,147.59,17.46 +2016-06-16 08:17:00,27.7575,147.688,17.51 +2016-06-16 08:32:00,29.2412,147.68,17.57 +2016-06-16 08:47:00,27.2025,147.715,17.61 +2016-06-16 09:02:00,28.41,147.768,17.63 +2016-06-16 09:17:00,28.0587,147.832,17.65 +2016-06-16 09:32:00,27.0575,147.917,17.67 +2016-06-16 09:47:00,26.9125,147.895,17.69 +2016-06-16 10:02:00,27.205,147.98,17.76 +2016-06-16 10:17:00,26.8688,148.072,17.78 +2016-06-16 10:32:00,26.2712,147.98,17.77 +2016-06-16 10:47:00,28.1125,148.04,17.72 +2016-06-16 11:02:00,28.4112,147.893,17.7 +2016-06-16 11:17:00,28.75,147.795,17.69 +2016-06-16 11:32:00,28.1113,147.815,17.68 +2016-06-16 11:47:00,26.8187,147.742,17.69 +2016-06-16 12:02:00,26.2687,147.74,17.69 +2016-06-16 12:17:00,25.74,147.752,17.69 +2016-06-16 12:32:00,26.4625,147.622,17.72 +2016-06-16 12:47:00,25.2537,147.477,17.74 +2016-06-16 13:02:00,28.5075,147.518,17.76 +2016-06-16 13:17:00,27.3587,147.54,17.76 +2016-06-16 13:32:00,28.0075,147.527,17.79 +2016-06-16 13:47:00,29.385,147.387,17.82 +2016-06-16 14:02:00,28.0112,147.212,17.85 +2016-06-16 14:17:00,27.7588,147.01,17.87 +2016-06-16 14:32:00,26.2237,146.992,17.89 +2016-06-16 14:47:00,27.8075,146.89,17.91 +2016-06-16 15:02:00,29.9262,146.82,17.93 +2016-06-16 15:17:00,27.5625,146.732,17.95 +2016-06-16 15:32:00,27.41,146.557,17.97 +2016-06-16 15:47:00,26.5687,146.76,17.98 +2016-06-16 16:02:00,27.4088,146.585,17.98 +2016-06-16 16:17:00,28.5563,146.457,18.0 +2016-06-16 16:32:00,28.2125,146.215,18.01 +2016-06-16 16:47:00,26.8712,146.082,18.04 +2016-06-16 17:02:00,26.3688,146.06,18.05 +2016-06-16 17:17:00,27.1087,145.895,18.07 +2016-06-16 17:32:00,28.6025,145.69,18.09 +2016-06-16 17:47:00,27.06,145.673,18.13 +2016-06-16 18:02:00,27.1575,145.612,18.15 +2016-06-16 18:17:00,27.4625,145.562,18.17 +2016-06-16 18:32:00,26.7687,145.37,18.18 +2016-06-16 18:47:00,26.6175,145.285,18.2 +2016-06-16 19:02:00,26.1787,145.237,18.21 +2016-06-16 19:17:00,27.3063,145.018,18.22 +2016-06-16 19:32:00,29.2913,144.893,18.24 +2016-06-16 19:47:00,27.2562,144.752,18.24 +2016-06-16 20:02:00,26.2738,144.645,18.23 +2016-06-16 20:17:00,26.6675,144.518,18.23 +2016-06-16 20:32:00,26.6663,144.382,18.23 +2016-06-16 20:47:00,27.2562,144.32,18.22 +2016-06-16 21:02:00,27.7137,144.12,18.21 +2016-06-16 21:17:00,26.1312,144.05,18.21 +2016-06-16 21:32:00,27.3075,143.985,18.2 +2016-06-16 21:47:00,27.46,143.807,18.2 +2016-06-16 22:02:00,26.7675,143.665,18.19 +2016-06-16 22:17:00,28.9512,143.53,18.18 +2016-06-16 22:32:00,29.6275,143.385,18.17 +2016-06-16 22:47:00,26.3213,143.18,18.18 +2016-06-16 23:02:00,27.1075,143.107,18.17 +2016-06-16 23:17:00,25.155,143.11,18.15 +2016-06-16 23:32:00,26.5675,142.99,18.15 +2016-06-16 23:47:00,27.5125,142.917,18.14 +2016-06-17 00:02:00,27.7137,142.86,18.13 +2016-06-17 00:17:00,24.9587,142.725,18.13 +2016-06-17 00:32:00,27.7588,142.697,18.13 +2016-06-17 00:47:00,25.6875,142.427,18.12 +2016-06-17 01:02:00,26.4662,142.377,18.12 +2016-06-17 01:17:00,29.0963,142.352,18.1 +2016-06-17 01:32:00,27.855,142.285,18.09 +2016-06-17 01:47:00,27.0575,142.165,18.05 +2016-06-17 02:02:00,27.1075,142.298,18.03 +2016-06-17 02:17:00,27.0587,142.122,18.01 +2016-06-17 02:32:00,27.1038,142.173,17.99 +2016-06-17 02:47:00,29.5775,142.195,17.97 +2016-06-17 03:02:00,27.6087,142.237,17.94 +2016-06-17 03:17:00,27.8562,142.202,17.9 +2016-06-17 03:32:00,27.3587,142.135,17.87 +2016-06-17 03:47:00,27.3613,142.167,17.85 +2016-06-17 04:02:00,26.9625,142.18,17.82 +2016-06-17 04:17:00,29.0488,142.225,17.8 +2016-06-17 04:32:00,27.9562,142.34,17.77 +2016-06-17 04:47:00,27.9637,142.518,17.75 +2016-06-17 05:02:00,28.8525,142.393,17.74 +2016-06-17 05:17:00,26.1775,142.35,17.72 +2016-06-17 05:32:00,26.915,142.58,17.69 +2016-06-17 05:47:00,28.4088,142.557,17.66 +2016-06-17 06:02:00,25.5925,142.727,17.64 +2016-06-17 06:17:00,27.3587,142.893,17.64 +2016-06-17 06:32:00,28.2075,143.005,17.63 +2016-06-17 06:47:00,28.3112,143.037,17.62 +2016-06-17 07:02:00,27.6612,142.935,17.62 +2016-06-17 07:17:00,29.4287,143.16,17.63 +2016-06-17 07:32:00,29.1437,143.07,17.64 +2016-06-17 07:47:00,30.4062,143.057,17.65 +2016-06-17 08:02:00,27.8037,142.83,17.66 +2016-06-17 08:17:00,25.7412,143.02,17.67 +2016-06-17 08:32:00,27.3087,142.882,17.69 +2016-06-17 08:47:00,27.1038,142.927,17.71 +2016-06-17 09:02:00,29.2387,143.09,17.72 +2016-06-17 09:17:00,29.045,142.962,17.72 +2016-06-17 09:32:00,28.6975,142.915,17.72 +2016-06-17 09:47:00,28.31,142.99,17.74 +2016-06-17 10:02:00,28.0537,142.917,17.76 +2016-06-17 10:17:00,27.1038,142.872,17.79 +2016-06-17 10:32:00,27.5075,142.697,17.82 +2016-06-17 10:47:00,30.7537,141.435,17.86 +2016-06-17 11:02:00,27.0563,139.89,17.93 +2016-06-17 11:17:00,28.3562,138.862,18.0 +2016-06-17 11:32:00,27.8562,138.315,18.01 +2016-06-17 11:47:00,28.9012,137.732,18.0 +2016-06-17 12:02:00,29.0475,137.542,18.0 +2016-06-17 12:17:00,24.9575,137.18,17.98 +2016-06-17 12:32:00,24.7025,137.16,17.96 +2016-06-17 12:47:00,27.665,137.15,17.98 +2016-06-17 13:02:00,27.105,137.31,18.03 +2016-06-17 13:17:00,25.885,137.367,18.1 +2016-06-17 13:32:00,28.3562,137.355,18.13 +2016-06-17 13:47:00,25.255,137.367,18.15 +2016-06-17 14:02:00,25.8838,137.562,18.18 +2016-06-17 14:17:00,27.3063,137.682,18.28 +2016-06-17 14:32:00,26.3175,137.65,18.34 +2016-06-17 14:47:00,28.36,137.857,18.34 +2016-06-17 15:02:00,27.7612,138.07,18.35 +2016-06-17 15:17:00,28.7513,138.32,18.36 +2016-06-17 15:32:00,27.6625,138.322,18.36 +2016-06-17 15:47:00,25.1062,138.562,18.38 +2016-06-17 16:02:00,25.635,138.825,18.36 +2016-06-17 16:17:00,29.2913,138.98,18.33 +2016-06-17 16:32:00,27.7113,138.95,18.32 +2016-06-17 16:47:00,27.46,139.227,18.34 +2016-06-17 17:02:00,26.415,139.537,18.34 +2016-06-17 17:17:00,29.3337,139.53,18.34 +2016-06-17 17:32:00,28.8988,139.647,18.34 +2016-06-17 17:47:00,29.525,139.832,18.35 +2016-06-17 18:02:00,26.37,140.117,18.36 +2016-06-17 18:17:00,27.0088,140.332,18.36 +2016-06-17 18:32:00,24.405,140.472,18.35 +2016-06-17 18:47:00,27.0537,140.76,18.34 +2016-06-17 19:02:00,26.5187,140.807,18.34 +2016-06-17 19:17:00,29.8725,141.122,18.36 +2016-06-17 19:32:00,30.5075,141.132,18.37 +2016-06-17 19:47:00,28.65,141.307,18.37 +2016-06-17 20:02:00,27.3613,141.465,18.37 +2016-06-17 20:17:00,25.6387,141.48,18.36 +2016-06-17 20:32:00,28.0587,141.712,18.34 +2016-06-17 20:47:00,28.41,141.735,18.32 +2016-06-17 21:02:00,26.8138,141.835,18.31 +2016-06-17 21:17:00,28.2087,142.095,18.29 +2016-06-17 21:32:00,27.9575,142.192,18.26 +2016-06-17 21:47:00,28.8012,142.37,18.25 +2016-06-17 22:02:00,27.1562,142.465,18.24 +2016-06-17 22:17:00,27.2537,142.542,18.22 +2016-06-17 22:32:00,26.4175,142.715,18.2 +2016-06-17 22:47:00,28.1113,142.755,18.19 +2016-06-17 23:02:00,28.3075,142.93,18.18 +2016-06-17 23:17:00,26.6188,142.92,18.16 +2016-06-17 23:32:00,27.4637,142.965,18.14 +2016-06-17 23:47:00,27.2087,143.052,18.1 +2016-06-18 00:02:00,27.7575,143.15,18.07 +2016-06-18 00:17:00,26.3675,143.155,18.03 +2016-06-18 00:32:00,26.4187,143.158,17.98 +2016-06-18 00:47:00,27.3562,143.362,17.93 +2016-06-18 01:02:00,27.6612,143.64,17.88 +2016-06-18 01:17:00,26.6687,143.732,17.85 +2016-06-18 01:32:00,29.4325,143.875,17.82 +2016-06-18 01:47:00,28.41,143.95,17.8 +2016-06-18 02:02:00,27.7087,144.03,17.75 +2016-06-18 02:17:00,26.13,143.997,17.72 +2016-06-18 02:32:00,26.8675,144.17,17.69 +2016-06-18 02:47:00,27.3063,144.255,17.65 +2016-06-18 03:02:00,27.1562,144.268,17.62 +2016-06-18 03:17:00,28.3562,144.24,17.6 +2016-06-18 03:32:00,28.0625,144.305,17.59 +2016-06-18 03:47:00,27.205,144.577,17.58 +2016-06-18 04:02:00,26.2687,144.62,17.58 +2016-06-18 04:17:00,28.3075,144.755,17.57 +2016-06-18 04:32:00,26.865,144.967,17.58 +2016-06-18 04:47:00,28.6525,145.012,17.58 +2016-06-18 05:02:00,27.105,145.027,17.58 +2016-06-18 05:17:00,27.4088,145.025,17.57 +2016-06-18 05:32:00,28.0025,145.11,17.59 +2016-06-18 05:47:00,28.8975,145.175,17.6 +2016-06-18 06:02:00,26.4675,145.15,17.61 +2016-06-18 06:17:00,27.6637,145.227,17.63 +2016-06-18 06:32:00,28.1087,145.18,17.64 +2016-06-18 06:47:00,26.2712,145.31,17.64 +2016-06-18 07:02:00,28.1087,145.217,17.64 +2016-06-18 07:17:00,26.8112,145.357,17.66 +2016-06-18 07:32:00,27.7062,147.393,17.69 +2016-06-18 07:47:00,28.21,146.842,17.74 +2016-06-18 08:02:00,27.9037,146.37,17.77 +2016-06-18 08:17:00,26.8625,146.08,17.81 +2016-06-18 08:32:00,27.2012,146.045,17.8 +2016-06-18 08:47:00,28.5537,145.6,17.81 +2016-06-18 09:02:00,27.1537,145.69,17.84 +2016-06-18 09:17:00,27.8037,145.785,17.87 +2016-06-18 09:32:00,28.2075,145.58,17.92 +2016-06-18 09:47:00,28.51,145.72,17.94 +2016-06-18 10:02:00,27.3562,145.675,17.91 +2016-06-18 10:17:00,27.41,145.472,17.92 +2016-06-18 10:32:00,28.0013,145.74,17.91 +2016-06-18 10:47:00,28.51,145.682,18.0 +2016-06-18 11:02:00,28.1125,145.755,18.1 +2016-06-18 11:17:00,28.9512,145.61,18.17 +2016-06-18 11:32:00,29.43,145.825,18.2 +2016-06-18 11:47:00,28.4075,145.73,18.23 +2016-06-18 12:02:00,27.4075,145.832,18.19 +2016-06-18 12:17:00,27.4613,145.91,18.23 +2016-06-18 12:32:00,27.7087,145.852,18.29 +2016-06-18 12:47:00,29.1413,145.915,18.32 +2016-06-18 13:02:00,27.4587,145.997,18.41 +2016-06-18 13:17:00,28.055,145.932,18.45 +2016-06-18 13:32:00,28.4575,145.995,18.4 +2016-06-18 13:47:00,26.8138,146.012,18.46 +2016-06-18 14:02:00,27.2075,146.07,18.43 +2016-06-18 14:17:00,26.6675,145.957,18.36 +2016-06-18 14:32:00,27.21,146.155,18.37 +2016-06-18 14:47:00,28.205,146.312,18.43 +2016-06-18 15:02:00,28.21,146.655,18.51 +2016-06-18 15:17:00,28.0575,146.52,18.57 +2016-06-18 15:32:00,29.1475,146.572,18.58 +2016-06-18 15:47:00,28.65,146.712,18.59 +2016-06-18 16:02:00,27.46,146.775,18.54 +2016-06-18 16:17:00,26.3688,146.93,18.54 +2016-06-18 16:32:00,28.6512,146.985,18.55 +2016-06-18 16:47:00,26.565,146.917,18.54 +2016-06-18 17:02:00,26.7175,147.082,18.53 +2016-06-18 17:17:00,25.9812,147.085,18.5 +2016-06-18 17:32:00,27.3587,147.06,18.5 +2016-06-18 17:47:00,27.4587,147.062,18.51 +2016-06-18 18:02:00,29.2887,147.217,18.52 +2016-06-18 18:17:00,26.9125,147.247,18.54 +2016-06-18 18:32:00,28.0587,147.312,18.56 +2016-06-18 18:47:00,27.4587,147.37,18.56 +2016-06-18 19:02:00,27.7575,147.377,18.56 +2016-06-18 19:17:00,28.7525,147.342,18.54 +2016-06-18 19:32:00,27.7113,147.365,18.53 +2016-06-18 19:47:00,27.8575,147.252,18.55 +2016-06-18 20:02:00,26.415,147.137,18.57 +2016-06-18 20:17:00,27.0088,147.105,18.57 +2016-06-18 20:32:00,28.46,147.042,18.58 +2016-06-18 20:47:00,27.7562,146.982,18.59 +2016-06-18 21:02:00,27.9575,146.76,18.6 +2016-06-18 21:17:00,27.7525,146.842,18.61 +2016-06-18 21:32:00,28.7513,146.617,18.62 +2016-06-18 21:47:00,27.3075,146.66,18.63 +2016-06-18 22:02:00,26.6687,146.557,18.64 +2016-06-18 22:17:00,27.76,146.65,18.63 +2016-06-18 22:32:00,28.4075,146.54,18.62 +2016-06-18 22:47:00,27.8575,146.465,18.61 +2016-06-18 23:02:00,28.4088,146.372,18.59 +2016-06-18 23:17:00,27.7087,146.298,18.57 +2016-06-18 23:32:00,28.5075,146.167,18.56 +2016-06-18 23:47:00,28.5062,146.112,18.54 +2016-06-19 00:02:00,27.4062,145.995,18.52 +2016-06-19 00:17:00,27.4075,145.777,18.5 +2016-06-19 00:32:00,29.4325,145.722,18.48 +2016-06-19 00:47:00,26.6137,145.66,18.45 +2016-06-19 01:02:00,28.5125,145.612,18.43 +2016-06-19 01:17:00,27.7575,145.643,18.39 +2016-06-19 01:32:00,27.205,145.562,18.34 +2016-06-19 01:47:00,28.3087,145.548,18.29 +2016-06-19 02:02:00,28.8025,145.447,18.25 +2016-06-19 02:17:00,28.3125,145.4,18.2 +2016-06-19 02:32:00,27.5125,145.31,18.14 +2016-06-19 02:47:00,27.9075,145.27,18.09 +2016-06-19 03:02:00,28.36,145.065,18.03 +2016-06-19 03:17:00,28.9037,145.025,17.99 +2016-06-19 03:32:00,27.71,144.895,17.97 +2016-06-19 03:47:00,27.755,144.855,17.95 +2016-06-19 04:02:00,27.7125,144.777,17.94 +2016-06-19 04:17:00,27.4613,144.815,17.91 +2016-06-19 04:32:00,26.8138,144.785,17.91 +2016-06-19 04:47:00,28.0062,144.74,17.92 +2016-06-19 05:02:00,28.9037,144.692,17.92 +2016-06-19 05:17:00,29.05,144.69,17.93 +2016-06-19 05:32:00,29.5312,144.577,17.96 +2016-06-19 05:47:00,27.7588,144.56,17.96 +2016-06-19 06:02:00,27.9025,144.42,17.98 +2016-06-19 06:17:00,27.4575,144.222,17.98 +2016-06-19 06:32:00,26.765,144.17,17.99 +2016-06-19 06:47:00,28.0563,144.222,18.06 +2016-06-19 07:02:00,28.6025,144.12,18.1 +2016-06-19 07:17:00,26.7162,144.0,18.12 +2016-06-19 07:32:00,27.1075,144.07,18.17 +2016-06-19 07:47:00,28.905,143.992,18.21 +2016-06-19 08:02:00,26.52,143.917,18.24 +2016-06-19 08:17:00,27.5088,143.855,18.23 +2016-06-19 08:32:00,28.1562,144.062,18.31 +2016-06-19 08:47:00,28.4587,144.457,18.32 +2016-06-19 09:02:00,27.7575,144.48,18.28 +2016-06-19 09:17:00,27.8562,143.975,18.27 +2016-06-19 09:32:00,28.0062,143.83,18.26 +2016-06-19 09:47:00,28.5525,143.643,18.29 +2016-06-19 10:02:00,25.7375,143.49,18.38 +2016-06-19 10:17:00,26.615,143.41,18.4 +2016-06-19 10:32:00,28.4587,143.34,18.35 +2016-06-19 10:47:00,28.9475,143.122,18.36 +2016-06-19 11:02:00,27.6625,142.923,18.34 +2016-06-19 11:17:00,28.7,142.992,18.33 +2016-06-19 11:32:00,28.1113,142.785,18.29 +2016-06-19 11:47:00,28.3587,142.695,18.27 +2016-06-19 12:02:00,27.9062,142.625,18.25 +2016-06-19 12:17:00,29.335,142.89,18.26 +2016-06-19 12:32:00,27.7588,142.84,18.3 +2016-06-19 12:47:00,27.56,142.747,18.3 +2016-06-19 13:02:00,28.9037,142.74,18.35 +2016-06-19 13:17:00,28.1588,143.092,18.39 +2016-06-19 13:32:00,29.7762,142.987,18.41 +2016-06-19 13:47:00,28.6012,142.772,18.47 +2016-06-19 14:02:00,26.0375,142.752,18.53 +2016-06-19 14:17:00,26.4662,142.61,18.54 +2016-06-19 14:32:00,27.2525,142.675,18.53 +2016-06-19 14:47:00,27.105,142.665,18.6 +2016-06-19 15:02:00,28.0075,142.205,18.65 +2016-06-19 15:17:00,27.555,142.31,18.65 +2016-06-19 15:32:00,27.6113,142.207,18.66 +2016-06-19 15:47:00,28.6025,142.307,18.62 +2016-06-19 16:02:00,28.7475,142.227,18.62 +2016-06-19 16:17:00,27.055,142.477,18.6 +2016-06-19 16:32:00,27.405,142.192,18.61 +2016-06-19 16:47:00,28.3587,142.402,18.63 +2016-06-19 17:02:00,27.155,142.192,18.63 +2016-06-19 17:17:00,28.0075,142.15,18.61 +2016-06-19 17:32:00,27.7137,142.19,18.58 +2016-06-19 17:47:00,28.9025,141.78,18.56 +2016-06-19 18:02:00,26.9637,141.97,18.56 +2016-06-19 18:17:00,27.46,141.507,18.55 +2016-06-19 18:32:00,27.905,141.58,18.53 +2016-06-19 18:47:00,27.36,141.33,18.52 +2016-06-19 19:02:00,27.9025,141.317,18.5 +2016-06-19 19:17:00,26.7663,141.265,18.49 +2016-06-19 19:32:00,26.8175,141.277,18.49 +2016-06-19 19:47:00,27.6663,141.182,18.49 +2016-06-19 20:02:00,27.3562,141.158,18.49 +2016-06-19 20:17:00,27.4575,141.085,18.5 +2016-06-19 20:32:00,24.6075,140.925,18.49 +2016-06-19 20:47:00,25.59,140.92,18.49 +2016-06-19 21:02:00,26.3662,140.768,18.48 +2016-06-19 21:17:00,26.1787,140.595,18.5 +2016-06-19 21:32:00,26.6188,140.497,18.52 +2016-06-19 21:47:00,27.4587,140.41,18.56 +2016-06-19 22:02:00,26.32,140.355,18.61 +2016-06-19 22:17:00,24.3575,140.158,18.64 +2016-06-19 22:32:00,25.2025,140.132,18.7 +2016-06-19 22:47:00,26.6675,139.982,18.72 +2016-06-19 23:02:00,24.9538,139.91,18.76 +2016-06-19 23:17:00,25.445,139.81,18.79 +2016-06-19 23:32:00,25.4863,139.882,18.79 +2016-06-19 23:47:00,25.4938,139.877,18.79 +2016-06-20 00:02:00,24.155,139.912,18.78 +2016-06-20 00:17:00,24.7025,139.827,18.76 +2016-06-20 00:32:00,25.155,139.762,18.75 +2016-06-20 00:47:00,24.655,139.752,18.71 +2016-06-20 01:02:00,25.9325,139.602,18.64 +2016-06-20 01:17:00,27.0563,139.562,18.59 +2016-06-20 01:32:00,25.5425,139.472,18.55 +2016-06-20 01:47:00,26.9613,139.462,18.5 +2016-06-20 02:02:00,25.6862,139.375,18.46 +2016-06-20 02:17:00,27.8562,139.305,18.41 +2016-06-20 02:32:00,26.225,139.24,18.36 +2016-06-20 02:47:00,25.3,139.155,18.31 +2016-06-20 03:02:00,27.205,139.237,18.27 +2016-06-20 03:17:00,26.8613,139.265,18.22 +2016-06-20 03:32:00,27.205,139.227,18.18 +2016-06-20 03:47:00,26.8138,139.212,18.15 +2016-06-20 04:02:00,26.2188,139.287,18.13 +2016-06-20 04:17:00,26.3162,139.18,18.11 +2016-06-20 04:32:00,25.7862,139.107,18.08 +2016-06-20 04:47:00,25.2,139.055,18.06 +2016-06-20 05:02:00,24.205,138.987,18.05 +2016-06-20 05:17:00,24.9037,137.037,18.05 +2016-06-20 05:32:00,26.9562,135.78,18.06 +2016-06-20 05:47:00,28.4575,135.007,18.07 +2016-06-20 06:02:00,26.5137,134.55,18.08 +2016-06-20 06:17:00,26.5137,134.2,18.09 +2016-06-20 06:32:00,26.4163,134.027,18.16 +2016-06-20 06:47:00,27.3575,133.86,18.25 +2016-06-20 07:02:00,27.1012,133.885,18.32 +2016-06-20 07:17:00,28.2062,134.035,18.37 +2016-06-20 07:32:00,25.4887,134.182,18.43 +2016-06-20 07:47:00,27.055,134.315,18.42 +2016-06-20 08:02:00,26.8575,134.565,18.44 +2016-06-20 08:17:00,25.5375,134.643,18.5 +2016-06-20 08:32:00,26.4637,134.807,18.53 +2016-06-20 08:47:00,27.5563,134.985,18.55 +2016-06-20 09:02:00,24.65,135.255,18.61 +2016-06-20 09:17:00,29.7712,135.287,18.66 +2016-06-20 09:32:00,28.2588,135.477,18.69 +2016-06-20 09:47:00,26.615,135.747,18.8 +2016-06-20 10:02:00,27.1537,135.923,18.82 +2016-06-20 10:17:00,26.3162,136.125,18.81 +2016-06-20 10:32:00,26.9587,136.327,18.83 +2016-06-20 10:47:00,27.9562,136.45,18.91 +2016-06-20 11:02:00,26.9575,136.57,18.81 +2016-06-20 11:17:00,26.37,136.865,18.75 +2016-06-20 11:32:00,25.7862,136.88,18.72 +2016-06-20 11:47:00,27.3587,137.04,18.72 +2016-06-20 12:02:00,27.1038,137.3,18.74 +2016-06-20 12:17:00,26.91,137.21,18.73 +2016-06-20 12:32:00,27.6612,137.158,18.76 +2016-06-20 12:47:00,28.2075,137.515,18.76 +2016-06-20 13:02:00,26.4613,137.68,18.78 +2016-06-20 13:17:00,28.1087,137.822,18.81 +2016-06-20 13:32:00,26.3162,137.932,18.85 +2016-06-20 13:47:00,25.5887,138.127,18.89 +2016-06-20 14:02:00,26.2237,137.923,18.94 +2016-06-20 14:17:00,28.1588,137.925,18.95 +2016-06-20 14:32:00,25.2462,137.64,19.04 +2016-06-20 14:47:00,26.5675,137.32,19.09 +2016-06-20 15:02:00,26.7637,137.337,19.13 +2016-06-20 15:17:00,27.1537,137.12,19.18 +2016-06-20 15:32:00,28.3063,136.8,19.21 +2016-06-20 15:47:00,28.9475,136.477,19.22 +2016-06-20 16:02:00,25.49,136.302,19.25 +2016-06-20 16:17:00,26.3162,135.755,19.27 +2016-06-20 16:32:00,26.9575,135.542,19.28 +2016-06-20 16:47:00,26.225,135.115,19.28 +2016-06-20 17:02:00,24.6525,134.867,19.3 +2016-06-20 17:17:00,27.3587,134.602,19.3 +2016-06-20 17:32:00,26.8625,134.285,19.3 +2016-06-20 17:47:00,29.2475,134.025,19.31 +2016-06-20 18:02:00,27.76,133.915,19.31 +2016-06-20 18:17:00,25.7862,133.825,19.33 +2016-06-20 18:32:00,29.4775,133.65,19.35 +2016-06-20 18:47:00,25.6375,133.682,19.37 +2016-06-20 19:02:00,26.3688,133.7,19.39 +2016-06-20 19:17:00,26.865,133.63,19.41 +2016-06-20 19:32:00,26.8138,133.567,19.42 +2016-06-20 19:47:00,26.8187,133.492,19.43 +2016-06-20 20:02:00,25.6837,133.415,19.44 +2016-06-20 20:17:00,26.9625,133.427,19.45 +2016-06-20 20:32:00,27.5638,133.372,19.47 +2016-06-20 20:47:00,26.4662,133.417,19.47 +2016-06-20 21:02:00,27.1562,133.285,19.49 +2016-06-20 21:17:00,27.6137,133.325,19.51 +2016-06-20 21:32:00,27.31,133.26,19.54 +2016-06-20 21:47:00,27.905,133.1,19.54 +2016-06-20 22:02:00,25.4437,133.195,19.54 +2016-06-20 22:17:00,28.0075,133.255,19.52 +2016-06-20 22:32:00,25.9362,133.367,19.51 +2016-06-20 22:47:00,27.51,133.427,19.51 +2016-06-20 23:02:00,27.9613,133.643,19.53 +2016-06-20 23:17:00,26.6687,133.67,19.55 +2016-06-20 23:32:00,28.0062,133.715,19.56 +2016-06-20 23:47:00,28.46,133.872,19.58 +2016-06-21 00:02:00,26.4175,133.887,19.59 +2016-06-21 00:17:00,27.6137,133.757,19.59 +2016-06-21 00:32:00,26.7175,133.7,19.57 +2016-06-21 00:47:00,26.5687,133.807,19.54 +2016-06-21 01:02:00,26.7687,133.832,19.5 +2016-06-21 01:17:00,27.715,133.95,19.46 +2016-06-21 01:32:00,29.1025,134.002,19.43 +2016-06-21 01:47:00,25.985,134.005,19.39 +2016-06-21 02:02:00,25.6375,134.182,19.36 +2016-06-21 02:17:00,25.6413,134.305,19.32 +2016-06-21 02:32:00,27.6125,134.412,19.29 +2016-06-21 02:47:00,25.8363,134.6,19.26 +2016-06-21 03:02:00,29.4325,134.777,19.24 +2016-06-21 03:17:00,27.0075,134.947,19.22 +2016-06-21 03:32:00,26.7675,134.692,19.2 +2016-06-21 03:47:00,28.1588,134.84,19.18 +2016-06-21 04:02:00,26.8175,134.875,19.18 +2016-06-21 04:17:00,27.0112,134.82,19.17 +2016-06-21 04:32:00,25.79,134.985,19.17 +2016-06-21 04:47:00,26.5687,134.9,19.17 +2016-06-21 05:02:00,28.6025,134.875,19.17 +2016-06-21 05:17:00,27.4637,134.925,19.17 +2016-06-21 05:32:00,26.6675,134.822,19.17 +2016-06-21 05:47:00,28.26,134.842,19.14 +2016-06-21 06:02:00,28.9025,135.112,19.09 +2016-06-21 06:17:00,27.5125,135.015,19.07 +2016-06-21 06:32:00,27.7612,134.955,19.04 +2016-06-21 06:47:00,28.0575,135.207,19.04 +2016-06-21 07:02:00,26.2225,135.155,19.05 +2016-06-21 07:17:00,26.225,135.36,19.06 +2016-06-21 07:32:00,26.1762,135.408,19.11 +2016-06-21 07:47:00,27.7588,135.362,19.19 +2016-06-21 08:02:00,27.6637,135.617,19.18 +2016-06-21 08:17:00,27.2075,135.665,19.21 +2016-06-21 08:32:00,27.4613,135.682,19.24 +2016-06-21 08:47:00,27.6637,135.64,19.31 +2016-06-21 09:02:00,27.3075,135.522,19.36 +2016-06-21 09:17:00,28.9512,135.785,19.36 +2016-06-21 09:32:00,28.31,135.492,19.34 +2016-06-21 09:47:00,26.6188,135.685,19.34 +2016-06-21 10:02:00,28.46,135.78,19.3 +2016-06-21 10:17:00,26.5175,135.735,19.26 +2016-06-21 10:32:00,28.4587,135.512,19.32 +2016-06-21 10:47:00,27.1062,135.64,19.32 +2016-06-21 11:02:00,26.6162,135.867,19.36 +2016-06-21 11:17:00,26.9613,135.89,19.39 +2016-06-21 11:32:00,25.4412,136.13,19.37 +2016-06-21 11:47:00,27.4587,136.17,19.39 +2016-06-21 12:02:00,25.5912,136.355,19.47 +2016-06-21 12:17:00,27.8587,136.182,19.42 +2016-06-21 12:32:00,28.5088,136.355,19.39 +2016-06-21 12:47:00,28.1087,136.287,19.41 +2016-06-21 13:02:00,28.6537,136.22,19.41 +2016-06-21 13:17:00,27.9075,136.15,19.37 +2016-06-21 13:32:00,26.8688,136.207,19.37 +2016-06-21 13:47:00,29.0975,136.158,19.36 +2016-06-21 14:02:00,27.8575,136.102,19.43 +2016-06-21 14:17:00,29.6762,136.065,19.5 +2016-06-21 14:32:00,28.0587,136.065,19.57 +2016-06-21 14:47:00,29.245,136.21,19.56 +2016-06-21 15:02:00,29.0975,136.235,19.55 +2016-06-21 15:17:00,28.2612,136.352,19.6 +2016-06-21 15:32:00,28.4613,136.417,19.61 +2016-06-21 15:47:00,30.26,136.59,19.6 +2016-06-21 16:02:00,29.0975,136.592,19.64 +2016-06-21 16:17:00,28.16,136.652,19.67 +2016-06-21 16:32:00,28.5075,136.567,19.66 +2016-06-21 16:47:00,28.11,136.595,19.65 +2016-06-21 17:02:00,27.41,136.397,19.65 +2016-06-21 17:17:00,29.9262,136.41,19.66 +2016-06-21 17:32:00,26.2237,136.435,19.66 +2016-06-21 17:47:00,29.9238,136.4,19.65 +2016-06-21 18:02:00,27.6625,136.372,19.66 +2016-06-21 18:17:00,26.96,136.447,19.66 +2016-06-21 18:32:00,28.1113,136.535,19.64 +2016-06-21 18:47:00,27.8587,136.62,19.64 +2016-06-21 19:02:00,27.31,136.665,19.63 +2016-06-21 19:17:00,29.195,136.79,19.62 +2016-06-21 19:32:00,27.7113,136.825,19.61 +2016-06-21 19:47:00,29.0963,136.88,19.6 +2016-06-21 20:02:00,27.3075,136.85,19.6 +2016-06-21 20:17:00,27.9562,136.772,19.6 +2016-06-21 20:32:00,26.72,136.725,19.6 +2016-06-21 20:47:00,29.0,136.745,19.61 +2016-06-21 21:02:00,29.925,136.717,19.62 +2016-06-21 21:17:00,27.205,136.71,19.66 +2016-06-21 21:32:00,29.335,136.71,19.68 +2016-06-21 21:47:00,29.2875,136.78,19.71 +2016-06-21 22:02:00,26.5187,136.807,19.72 +2016-06-21 22:17:00,28.2588,136.882,19.74 +2016-06-21 22:32:00,26.135,136.927,19.72 +2016-06-21 22:47:00,28.6975,137.07,19.73 +2016-06-21 23:02:00,27.3087,137.09,19.72 +2016-06-21 23:17:00,27.6113,137.162,19.7 +2016-06-21 23:32:00,28.1588,137.097,19.68 +2016-06-21 23:47:00,29.29,137.065,19.66 +2016-06-22 00:02:00,27.1062,137.052,19.64 +2016-06-22 00:17:00,28.1087,136.972,19.64 +2016-06-22 00:32:00,26.96,136.862,19.63 +2016-06-22 00:47:00,28.005,136.775,19.62 +2016-06-22 01:02:00,27.7113,136.79,19.6 +2016-06-22 01:17:00,27.5587,136.787,19.59 +2016-06-22 01:32:00,27.9587,136.845,19.57 +2016-06-22 01:47:00,26.5675,136.817,19.56 +2016-06-22 02:02:00,27.855,137.022,19.55 +2016-06-22 02:17:00,28.1087,136.987,19.52 +2016-06-22 02:32:00,27.46,137.057,19.5 +2016-06-22 02:47:00,27.5112,137.03,19.48 +2016-06-22 03:02:00,28.165,137.105,19.47 +2016-06-22 03:17:00,27.61,137.055,19.45 +2016-06-22 03:32:00,29.6263,136.957,19.43 +2016-06-22 03:47:00,28.4587,136.798,19.42 +2016-06-22 04:02:00,26.5163,136.835,19.41 +2016-06-22 04:17:00,28.8988,136.72,19.41 +2016-06-22 04:32:00,26.3213,136.617,19.4 +2016-06-22 04:47:00,28.8025,136.622,19.41 +2016-06-22 05:02:00,28.505,136.617,19.43 +2016-06-22 05:17:00,27.8538,136.527,19.45 +2016-06-22 05:32:00,27.2025,136.518,19.48 +2016-06-22 05:47:00,27.5587,136.597,19.5 +2016-06-22 06:02:00,25.1062,136.567,19.52 +2016-06-22 06:17:00,28.2588,136.63,19.54 +2016-06-22 06:32:00,26.7137,136.572,19.55 +2016-06-22 06:47:00,25.2537,136.645,19.56 +2016-06-22 07:02:00,26.915,136.62,19.58 +2016-06-22 07:17:00,26.6175,136.625,19.58 +2016-06-22 07:32:00,27.4075,136.658,19.57 +2016-06-22 07:47:00,30.4088,136.627,19.55 +2016-06-22 08:02:00,29.3838,136.565,19.57 +2016-06-22 08:17:00,26.37,136.65,19.6 +2016-06-22 08:32:00,28.26,136.717,19.66 +2016-06-22 08:47:00,26.5675,136.457,19.77 +2016-06-22 09:02:00,27.0587,136.762,19.81 +2016-06-22 09:17:00,26.715,136.525,19.87 +2016-06-22 09:32:00,25.395,136.393,19.98 +2016-06-22 09:47:00,28.41,136.425,20.02 +2016-06-22 10:02:00,27.7612,136.283,20.08 +2016-06-22 10:17:00,26.8175,136.167,20.06 +2016-06-22 10:32:00,27.205,136.255,20.08 +2016-06-22 10:47:00,27.5638,136.042,20.1 +2016-06-22 11:02:00,28.855,135.945,20.09 +2016-06-22 11:17:00,26.8675,135.923,20.15 +2016-06-22 11:32:00,26.3237,136.072,20.22 +2016-06-22 11:47:00,24.9575,135.602,20.22 +2016-06-22 12:02:00,25.5413,135.807,20.24 +2016-06-22 12:17:00,27.6125,135.67,20.28 +2016-06-22 12:32:00,26.465,135.802,20.38 +2016-06-22 12:47:00,28.8012,135.622,20.41 +2016-06-22 13:02:00,28.7,135.612,20.42 +2016-06-22 13:17:00,27.51,135.462,20.48 +2016-06-22 13:32:00,27.31,135.462,20.54 +2016-06-22 13:47:00,27.1087,135.682,20.59 +2016-06-22 14:02:00,28.4125,135.65,20.67 +2016-06-22 14:17:00,25.4925,135.73,20.69 +2016-06-22 14:32:00,27.3075,135.477,20.72 +2016-06-22 14:47:00,25.0037,135.447,20.75 +2016-06-22 15:02:00,26.3725,135.335,20.74 +2016-06-22 15:17:00,25.1537,135.412,20.76 +2016-06-22 15:32:00,25.0575,135.36,20.77 +2016-06-22 15:47:00,30.8512,135.21,20.8 +2016-06-22 16:02:00,26.1312,135.19,20.78 +2016-06-22 16:17:00,27.7575,135.01,20.8 +2016-06-22 16:32:00,27.105,134.935,20.8 +2016-06-22 16:47:00,26.5187,134.85,20.79 +2016-06-22 17:02:00,26.4662,134.768,20.8 +2016-06-22 17:17:00,25.5912,134.655,20.8 +2016-06-22 17:32:00,28.7,134.632,20.79 +2016-06-22 17:47:00,26.13,134.575,20.77 +2016-06-22 18:02:00,26.1762,134.597,20.74 +2016-06-22 18:17:00,26.9625,134.562,20.71 +2016-06-22 18:32:00,26.9088,134.367,20.7 +2016-06-22 18:47:00,27.9062,134.352,20.71 +2016-06-22 19:02:00,27.36,134.3,20.72 +2016-06-22 19:17:00,26.9625,134.337,20.73 +2016-06-22 19:32:00,25.8875,134.227,20.76 +2016-06-22 19:47:00,26.96,134.067,20.77 +2016-06-22 20:02:00,27.5137,134.027,20.8 +2016-06-22 20:17:00,24.105,134.09,20.82 +2016-06-22 20:32:00,27.0112,134.152,20.84 +2016-06-22 20:47:00,26.72,134.202,20.86 +2016-06-22 21:02:00,27.1575,134.237,20.89 +2016-06-22 21:17:00,29.9713,134.227,20.91 +2016-06-22 21:32:00,27.4088,134.227,20.95 +2016-06-22 21:47:00,28.0075,134.158,20.98 +2016-06-22 22:02:00,26.915,134.24,21.0 +2016-06-22 22:17:00,28.26,134.127,21.0 +2016-06-22 22:32:00,27.9075,134.137,21.01 +2016-06-22 22:47:00,25.9837,134.07,21.03 +2016-06-22 23:02:00,24.6588,134.027,21.05 +2016-06-22 23:17:00,26.9625,133.972,21.07 +2016-06-22 23:32:00,26.2738,133.905,21.09 +2016-06-22 23:47:00,26.275,133.877,21.09 +2016-06-23 00:02:00,26.23,133.81,21.11 +2016-06-23 00:17:00,27.1113,133.715,21.13 +2016-06-23 00:32:00,26.32,133.66,21.14 +2016-06-23 00:47:00,25.5425,133.61,21.14 +2016-06-23 01:02:00,27.91,133.617,21.15 +2016-06-23 01:17:00,27.8613,133.445,21.14 +2016-06-23 01:32:00,26.9163,133.477,21.13 +2016-06-23 01:47:00,26.7687,133.347,21.11 +2016-06-23 02:02:00,26.9163,133.382,21.08 +2016-06-23 02:17:00,24.6588,133.32,21.04 +2016-06-23 02:32:00,25.0587,133.26,21.01 +2016-06-23 02:47:00,25.1562,133.207,20.97 +2016-06-23 03:02:00,27.3625,133.2,20.94 +2016-06-23 03:17:00,27.0112,133.21,20.9 +2016-06-23 03:32:00,26.67,133.33,20.87 +2016-06-23 03:47:00,27.5137,133.367,20.83 +2016-06-23 04:02:00,25.5912,133.377,20.8 +2016-06-23 04:17:00,26.5713,133.438,20.77 +2016-06-23 04:32:00,28.4587,133.4,20.73 +2016-06-23 04:47:00,27.4637,133.337,20.71 +2016-06-23 05:02:00,23.8187,133.385,20.7 +2016-06-23 05:17:00,27.8087,133.427,20.7 +2016-06-23 05:32:00,28.4625,133.367,20.71 +2016-06-23 05:47:00,27.6162,133.38,20.72 +2016-06-23 06:02:00,26.5725,133.367,20.73 +2016-06-23 06:17:00,25.8387,133.408,20.75 +2016-06-23 06:32:00,25.4,133.3,20.77 +2016-06-23 06:47:00,25.26,133.24,20.81 +2016-06-23 07:02:00,24.2137,133.135,20.84 +2016-06-23 07:17:00,23.3325,133.112,20.88 +2016-06-23 07:32:00,27.9075,132.83,20.93 +2016-06-23 07:47:00,27.36,132.842,20.97 +2016-06-23 08:02:00,25.5462,132.962,21.01 +2016-06-23 08:17:00,27.0638,132.815,21.08 +2016-06-23 08:32:00,25.5963,132.957,21.18 +2016-06-23 08:47:00,23.9125,133.007,21.21 +2016-06-23 09:02:00,24.6588,132.992,21.28 +2016-06-23 09:17:00,25.3063,133.08,21.4 +2016-06-23 09:32:00,25.4012,133.01,21.46 +2016-06-23 09:47:00,25.5963,133.25,21.56 +2016-06-23 10:02:00,26.9175,133.495,21.64 +2016-06-23 10:17:00,26.5212,133.415,21.7 +2016-06-23 10:32:00,27.2588,133.702,21.79 +2016-06-23 10:47:00,25.2075,134.042,21.85 +2016-06-23 11:02:00,24.9662,133.832,21.88 +2016-06-23 11:17:00,26.325,133.977,21.96 +2016-06-23 11:32:00,27.81,134.012,21.99 +2016-06-23 11:47:00,27.8613,134.125,22.02 +2016-06-23 12:02:00,24.465,133.975,22.08 +2016-06-23 12:17:00,24.8112,134.05,22.09 +2016-06-23 12:32:00,28.3138,133.915,22.15 +2016-06-23 12:47:00,25.9887,133.917,22.2 +2016-06-23 13:02:00,26.965,133.837,22.19 +2016-06-23 13:17:00,25.94,133.915,22.26 +2016-06-23 13:32:00,27.5612,133.872,22.23 +2016-06-23 13:47:00,25.3988,133.81,22.24 +2016-06-23 14:02:00,25.8925,133.73,22.27 +2016-06-23 14:17:00,25.2562,133.685,22.26 +2016-06-23 14:32:00,25.7438,133.575,22.29 +2016-06-23 14:47:00,26.0375,133.69,22.27 +2016-06-23 15:02:00,26.9675,133.612,22.28 +2016-06-23 15:17:00,28.1637,133.717,22.3 +2016-06-23 15:32:00,27.3112,133.882,22.3 +2016-06-23 15:47:00,26.2262,133.685,22.27 +2016-06-23 16:02:00,27.565,134.095,22.28 +2016-06-23 16:17:00,26.2762,133.942,22.29 +2016-06-23 16:32:00,26.7213,134.027,22.3 +2016-06-23 16:47:00,26.3737,134.11,22.29 +2016-06-23 17:02:00,26.2312,134.085,22.29 +2016-06-23 17:17:00,25.8438,133.938,22.31 +2016-06-23 17:32:00,28.51,134.052,22.32 +2016-06-23 17:47:00,28.0137,134.09,22.35 +2016-06-23 18:02:00,22.9013,134.077,22.38 +2016-06-23 18:17:00,26.2787,133.992,22.41 +2016-06-23 18:32:00,24.9137,134.018,22.44 +2016-06-23 18:47:00,28.5163,133.982,22.46 +2016-06-23 19:02:00,27.4212,134.112,22.49 +2016-06-23 19:17:00,27.1125,134.18,22.52 +2016-06-23 19:32:00,27.0587,134.268,22.56 +2016-06-23 19:47:00,28.1687,134.367,22.59 +2016-06-23 20:02:00,27.3125,134.337,22.61 +2016-06-23 20:17:00,25.405,134.495,22.66 +2016-06-23 20:32:00,24.915,134.438,22.67 +2016-06-23 20:47:00,26.3262,134.492,22.7 +2016-06-23 21:02:00,26.475,134.387,22.72 +2016-06-23 21:17:00,26.72,134.335,22.76 +2016-06-23 21:32:00,26.8725,134.385,22.8 +2016-06-23 21:47:00,27.5163,134.315,22.83 +2016-06-23 22:02:00,26.0425,134.29,22.87 +2016-06-23 22:17:00,26.09,134.222,22.91 +2016-06-23 22:32:00,27.1637,134.167,22.95 +2016-06-23 22:47:00,26.9212,134.087,23.01 +2016-06-23 23:02:00,26.4725,134.158,23.02 +2016-06-23 23:17:00,26.7262,134.152,23.06 +2016-06-23 23:32:00,27.115,134.242,23.08 +2016-06-23 23:47:00,27.3138,134.382,23.09 +2016-06-24 00:02:00,26.3312,134.393,23.14 +2016-06-24 00:17:00,25.45,134.438,23.13 +2016-06-24 00:32:00,26.6225,134.405,23.14 +2016-06-24 00:47:00,26.875,134.42,23.13 +2016-06-24 01:02:00,27.4688,134.27,23.11 +2016-06-24 01:17:00,27.415,134.2,23.12 +2016-06-24 01:32:00,27.3138,134.235,23.11 +2016-06-24 01:47:00,26.9662,134.045,23.08 +2016-06-24 02:02:00,26.4788,133.992,23.06 +2016-06-24 02:17:00,25.3625,134.02,23.03 +2016-06-24 02:32:00,26.3262,133.945,22.98 +2016-06-24 02:47:00,27.0638,133.852,22.94 +2016-06-24 03:02:00,26.9675,133.83,22.91 +2016-06-24 03:17:00,27.2125,133.887,22.89 +2016-06-24 03:32:00,26.6738,133.902,22.86 +2016-06-24 03:47:00,27.4662,133.867,22.83 +2016-06-24 04:02:00,25.21,134.005,22.79 +2016-06-24 04:17:00,25.8962,133.92,22.76 +2016-06-24 04:32:00,25.3575,133.812,22.72 +2016-06-24 04:47:00,27.0175,133.695,22.69 +2016-06-24 05:02:00,26.1338,133.602,22.67 +2016-06-24 05:17:00,26.47,133.56,22.67 +2016-06-24 05:32:00,27.9625,133.505,22.67 +2016-06-24 05:47:00,28.0163,133.438,22.68 +2016-06-24 06:02:00,25.99,133.427,22.69 +2016-06-24 06:17:00,26.6762,133.412,22.71 +2016-06-24 06:32:00,25.8975,133.377,22.74 +2016-06-24 06:47:00,25.2062,133.372,22.79 +2016-06-24 07:02:00,28.7075,133.255,22.82 +2016-06-24 07:17:00,26.425,133.312,22.87 +2016-06-24 07:32:00,26.6212,133.22,22.92 +2016-06-24 07:47:00,26.5762,133.235,22.96 +2016-06-24 08:02:00,26.8712,133.135,23.04 +2016-06-24 08:17:00,26.9212,133.182,23.09 +2016-06-24 08:32:00,26.875,133.205,23.16 +2016-06-24 08:47:00,25.8937,133.077,23.24 +2016-06-24 09:02:00,27.8138,133.065,23.35 +2016-06-24 09:17:00,27.4163,133.037,23.42 +2016-06-24 09:32:00,25.9887,132.95,23.51 +2016-06-24 09:47:00,26.675,132.982,23.6 +2016-06-24 10:02:00,27.7175,133.018,23.7 +2016-06-24 10:17:00,25.9412,133.132,23.78 +2016-06-24 10:32:00,27.565,133.122,23.83 +2016-06-24 10:47:00,25.6425,133.195,23.9 +2016-06-24 11:02:00,26.3763,133.16,23.95 +2016-06-24 11:17:00,25.9412,133.255,23.98 +2016-06-24 11:32:00,25.1087,133.315,24.01 +2016-06-24 11:47:00,28.5137,133.117,24.04 +2016-06-24 12:02:00,26.1862,133.29,24.07 +2016-06-24 12:17:00,26.2738,133.15,24.12 +2016-06-24 12:32:00,26.5262,133.045,24.13 +2016-06-24 12:47:00,25.6987,132.96,24.18 +2016-06-24 13:02:00,27.37,132.75,24.2 +2016-06-24 13:17:00,27.2113,132.658,24.24 +2016-06-24 13:32:00,24.8125,132.455,24.27 +2016-06-24 13:47:00,27.865,132.232,24.26 +2016-06-24 14:02:00,25.6437,131.85,24.26 +2016-06-24 14:17:00,27.7637,131.76,24.29 +2016-06-24 14:32:00,26.3288,131.67,24.27 +2016-06-24 14:47:00,26.7725,131.35,24.29 +2016-06-24 15:02:00,26.23,131.3,24.3 +2016-06-24 15:17:00,29.155,130.9,24.23 +2016-06-24 15:32:00,27.57,130.62,24.18 +2016-06-24 15:47:00,26.5737,130.38,24.14 +2016-06-24 16:02:00,26.2762,130.122,24.11 +2016-06-24 16:17:00,28.1188,129.78,24.07 +2016-06-24 16:32:00,26.6237,129.562,24.02 +2016-06-24 16:47:00,27.67,129.135,23.94 +2016-06-24 17:02:00,26.9675,128.835,23.9 +2016-06-24 17:17:00,27.1137,128.48,23.89 +2016-06-24 17:32:00,27.0675,128.327,23.89 +2016-06-24 17:47:00,25.9475,128.292,23.88 +2016-06-24 18:02:00,27.3138,127.92,23.89 +2016-06-24 18:17:00,26.3787,127.857,23.88 +2016-06-24 18:32:00,26.8763,127.635,23.88 +2016-06-24 18:47:00,26.9225,127.48,23.88 +2016-06-24 19:02:00,25.3625,127.33,23.9 +2016-06-24 19:17:00,26.23,127.212,23.88 +2016-06-24 19:32:00,27.1137,127.05,23.89 +2016-06-24 19:47:00,28.1125,126.852,23.9 +2016-06-24 20:02:00,25.695,126.665,23.91 +2016-06-24 20:17:00,26.3275,126.587,23.95 +2016-06-24 20:32:00,26.235,126.415,23.98 +2016-06-24 20:47:00,26.0925,126.29,24.0 +2016-06-24 21:02:00,27.5638,126.152,24.01 +2016-06-24 21:17:00,26.0425,126.065,24.02 +2016-06-24 21:32:00,26.7262,126.1,24.05 +2016-06-24 21:47:00,28.17,126.02,24.06 +2016-06-24 22:02:00,26.1413,126.052,24.08 +2016-06-24 22:17:00,27.52,126.057,24.1 +2016-06-24 22:32:00,26.7237,126.02,24.12 +2016-06-24 22:47:00,28.8587,125.99,24.15 +2016-06-24 23:02:00,27.7687,125.847,24.16 +2016-06-24 23:17:00,26.7237,125.825,24.19 +2016-06-24 23:32:00,27.5662,125.74,24.21 +2016-06-24 23:47:00,26.28,125.635,24.21 +2016-06-25 00:02:00,28.2162,125.562,24.21 +2016-06-25 00:17:00,28.32,125.51,24.19 +2016-06-25 00:32:00,26.8288,125.393,24.2 +2016-06-25 00:47:00,24.4713,125.465,24.18 +2016-06-25 01:02:00,26.825,125.442,24.21 +2016-06-25 01:17:00,28.0662,125.567,24.2 +2016-06-25 01:32:00,27.965,125.518,24.18 +2016-06-25 01:47:00,27.8187,125.677,24.17 +2016-06-25 02:02:00,27.4175,125.76,24.15 +2016-06-25 02:17:00,26.925,125.637,24.13 +2016-06-25 02:32:00,27.0687,125.66,24.08 +2016-06-25 02:47:00,26.3775,125.55,24.05 +2016-06-25 03:02:00,26.725,125.53,24.01 +2016-06-25 03:17:00,26.5762,125.522,23.97 +2016-06-25 03:32:00,27.765,125.472,23.92 +2016-06-25 03:47:00,27.015,125.302,23.89 +2016-06-25 04:02:00,27.21,125.14,23.85 +2016-06-25 04:17:00,27.5175,125.062,23.83 +2016-06-25 04:32:00,28.2675,125.025,23.82 +2016-06-25 04:47:00,25.3112,124.908,23.8 +2016-06-25 05:02:00,27.3662,124.923,23.76 +2016-06-25 05:17:00,27.2687,125.022,23.74 +2016-06-25 05:32:00,26.0912,124.902,23.7 +2016-06-25 05:47:00,26.6263,124.82,23.68 +2016-06-25 06:02:00,27.6675,124.837,23.69 +2016-06-25 06:17:00,24.765,124.86,23.69 +2016-06-25 06:32:00,26.625,124.787,23.68 +2016-06-25 06:47:00,27.7225,124.847,23.69 +2016-06-25 07:02:00,27.7625,124.847,23.65 +2016-06-25 07:17:00,27.8175,124.55,23.64 +2016-06-25 07:32:00,28.3675,124.715,23.62 +2016-06-25 07:47:00,25.1113,124.62,23.6 +2016-06-25 08:02:00,26.9688,124.775,23.59 +2016-06-25 08:17:00,25.695,124.643,23.61 +2016-06-25 08:32:00,27.4137,124.462,23.69 +2016-06-25 08:47:00,27.7663,124.802,23.8 +2016-06-25 09:02:00,27.4175,124.692,23.87 +2016-06-25 09:17:00,28.0625,124.682,23.97 +2016-06-25 09:32:00,28.8575,124.772,24.06 +2016-06-25 09:47:00,27.8625,124.67,24.16 +2016-06-25 10:02:00,25.5938,124.817,24.2 +2016-06-25 10:17:00,26.92,124.71,24.25 +2016-06-25 10:32:00,27.3625,124.74,24.28 +2016-06-25 10:47:00,28.3662,124.815,24.28 +2016-06-25 11:02:00,27.2125,124.805,24.31 +2016-06-25 11:17:00,27.115,125.005,24.37 +2016-06-25 11:32:00,25.8438,125.185,24.41 +2016-06-25 11:47:00,26.3812,125.17,24.42 +2016-06-25 12:02:00,26.0912,125.255,24.43 +2016-06-25 12:17:00,29.1488,125.195,24.4 +2016-06-25 12:32:00,27.2113,125.35,24.36 +2016-06-25 12:47:00,26.52,125.18,24.36 +2016-06-25 13:02:00,27.1125,125.268,24.36 +2016-06-25 13:17:00,27.3162,125.272,24.36 +2016-06-25 13:32:00,27.5163,125.477,24.33 +2016-06-25 13:47:00,28.91,125.667,24.31 +2016-06-25 14:02:00,26.7762,125.57,24.27 +2016-06-25 14:17:00,28.0638,125.652,24.28 +2016-06-25 14:32:00,28.4163,126.112,24.3 +2016-06-25 14:47:00,27.5675,126.082,24.29 +2016-06-25 15:02:00,29.4837,126.387,24.27 +2016-06-25 15:17:00,28.8087,126.68,24.24 +2016-06-25 15:32:00,26.8737,126.932,24.19 +2016-06-25 15:47:00,29.535,127.245,24.12 +2016-06-25 16:02:00,27.215,127.62,24.11 +2016-06-25 16:17:00,27.4688,127.9,24.04 +2016-06-25 16:32:00,28.0125,128.143,23.93 +2016-06-25 16:47:00,26.2312,128.492,23.88 +2016-06-25 17:02:00,25.7962,128.587,23.84 +2016-06-25 17:17:00,27.6212,128.927,23.82 +2016-06-25 17:32:00,28.8087,129.2,23.79 +2016-06-25 17:47:00,28.9125,129.462,23.77 +2016-06-25 18:02:00,27.0163,129.945,23.77 +2016-06-25 18:17:00,28.4662,130.105,23.78 +2016-06-25 18:32:00,27.1125,130.385,23.78 +2016-06-25 18:47:00,27.4675,130.647,23.77 +2016-06-25 19:02:00,27.5713,130.94,23.78 +2016-06-25 19:17:00,27.7663,131.287,23.8 +2016-06-25 19:32:00,30.5175,131.5,23.84 +2016-06-25 19:47:00,28.27,131.785,23.87 +2016-06-25 20:02:00,28.91,132.117,23.88 +2016-06-25 20:17:00,26.475,132.395,23.9 +2016-06-25 20:32:00,28.5638,132.317,23.88 +2016-06-25 20:47:00,26.675,132.402,23.86 +2016-06-25 21:02:00,27.0163,132.665,23.85 +2016-06-25 21:17:00,28.17,132.867,23.87 +2016-06-25 21:32:00,27.9175,132.787,23.89 +2016-06-25 21:47:00,29.54,132.845,23.87 +2016-06-25 22:02:00,25.3125,132.842,23.88 +2016-06-25 22:17:00,29.9325,133.29,23.86 +2016-06-25 22:32:00,28.76,133.408,23.87 +2016-06-25 22:47:00,27.5175,133.29,23.88 +2016-06-25 23:02:00,28.1175,133.562,23.84 +2016-06-25 23:17:00,29.4375,133.31,23.82 +2016-06-25 23:32:00,25.9875,133.52,23.8 +2016-06-25 23:47:00,26.8737,133.747,23.75 +2016-06-26 00:02:00,29.2012,133.805,23.75 +2016-06-26 00:17:00,28.1663,133.665,23.72 +2016-06-26 00:32:00,28.115,133.772,23.68 +2016-06-26 00:47:00,26.42,133.542,23.63 +2016-06-26 01:02:00,28.0112,133.302,23.6 +2016-06-26 01:17:00,27.8625,133.445,23.6 +2016-06-26 01:32:00,27.5137,133.465,23.55 +2016-06-26 01:47:00,27.3138,133.32,23.55 +2016-06-26 02:02:00,27.015,133.395,23.51 +2016-06-26 02:17:00,29.6338,133.45,23.49 +2016-06-26 02:32:00,27.0137,133.535,23.45 +2016-06-26 02:47:00,29.5887,133.585,23.43 +2016-06-26 03:02:00,27.915,133.557,23.4 +2016-06-26 03:17:00,29.7787,133.485,23.34 +2016-06-26 03:32:00,31.2988,133.382,23.29 +2016-06-26 03:47:00,29.2487,133.302,23.24 +2016-06-26 04:02:00,27.02,133.23,23.21 +2016-06-26 04:17:00,27.165,133.292,23.17 +2016-06-26 04:32:00,29.9275,133.01,23.14 +2016-06-26 04:47:00,29.7787,132.932,23.12 +2016-06-26 05:02:00,27.4137,132.85,23.09 +2016-06-26 05:17:00,29.5812,132.82,23.06 +2016-06-26 05:32:00,29.1475,132.747,23.03 +2016-06-26 05:47:00,27.11,132.785,23.01 +2016-06-26 06:02:00,27.9088,132.75,22.98 +2016-06-26 06:17:00,29.635,132.57,22.96 +2016-06-26 06:32:00,27.365,132.625,22.94 +2016-06-26 06:47:00,28.0125,132.37,22.93 +2016-06-26 07:02:00,27.1125,132.527,22.92 +2016-06-26 07:17:00,29.4837,132.42,22.89 +2016-06-26 07:32:00,28.7575,132.43,22.83 +2016-06-26 07:47:00,28.4112,132.525,22.79 +2016-06-26 08:02:00,27.4137,132.485,22.81 +2016-06-26 08:17:00,28.9538,132.342,22.85 +2016-06-26 08:32:00,27.2588,132.212,22.84 +2016-06-26 08:47:00,26.4725,132.212,22.87 +2016-06-26 09:02:00,28.2137,132.405,22.87 +2016-06-26 09:17:00,27.76,132.27,22.95 +2016-06-26 09:32:00,27.8112,132.432,23.01 +2016-06-26 09:47:00,29.2475,132.427,23.02 +2016-06-26 10:02:00,27.8087,132.27,23.06 +2016-06-26 10:17:00,27.7625,132.23,23.14 +2016-06-26 10:32:00,27.6188,132.382,23.09 +2016-06-26 10:47:00,28.0125,132.195,23.09 +2016-06-26 11:02:00,27.6687,132.315,23.09 +2016-06-26 11:17:00,27.11,132.322,23.06 +2016-06-26 11:32:00,25.3075,132.12,22.99 +2016-06-26 11:47:00,28.0587,132.165,23.05 +2016-06-26 12:02:00,29.975,132.382,23.1 +2016-06-26 12:17:00,28.905,132.012,23.17 +2016-06-26 12:32:00,28.2637,132.235,23.22 +2016-06-26 12:47:00,27.5125,131.908,23.23 +2016-06-26 13:02:00,29.435,131.845,23.23 +2016-06-26 13:17:00,27.0125,131.855,23.17 +2016-06-26 13:32:00,28.3637,131.68,23.09 +2016-06-26 13:47:00,30.1212,131.625,23.02 +2016-06-26 14:02:00,26.52,131.53,22.99 +2016-06-26 14:17:00,29.0987,131.725,23.03 +2016-06-26 14:32:00,30.56,131.77,23.01 +2016-06-26 14:47:00,28.8037,131.627,23.01 +2016-06-26 15:02:00,29.53,131.847,23.02 +2016-06-26 15:17:00,29.1488,131.935,23.03 +2016-06-26 15:32:00,26.5212,131.77,22.98 +2016-06-26 15:47:00,29.5837,131.685,22.9 +2016-06-26 16:02:00,30.0238,131.75,22.87 +2016-06-26 16:17:00,28.4163,131.815,22.83 +2016-06-26 16:32:00,27.3125,131.652,22.8 +2016-06-26 16:47:00,28.4137,131.533,22.75 +2016-06-26 17:02:00,28.8025,131.59,22.73 +2016-06-26 17:17:00,26.8213,131.565,22.71 +2016-06-26 17:32:00,29.7825,131.533,22.68 +2016-06-26 17:47:00,27.1113,131.617,22.64 +2016-06-26 18:02:00,29.05,131.688,22.62 +2016-06-26 18:17:00,26.09,131.75,22.59 +2016-06-26 18:32:00,31.2475,131.798,22.54 +2016-06-26 18:47:00,27.465,131.92,22.49 +2016-06-26 19:02:00,27.9088,131.908,22.45 +2016-06-26 19:17:00,30.8538,131.91,22.43 +2016-06-26 19:32:00,31.095,131.927,22.4 +2016-06-26 19:47:00,28.9538,131.957,22.39 +2016-06-26 20:02:00,28.115,131.955,22.36 +2016-06-26 20:17:00,29.1987,131.88,22.37 +2016-06-26 20:32:00,28.06,131.893,22.36 +2016-06-26 20:47:00,30.6125,131.882,22.36 +2016-06-26 21:02:00,28.0125,131.94,22.36 +2016-06-26 21:17:00,28.9088,131.885,22.35 +2016-06-26 21:32:00,31.1462,131.97,22.35 +2016-06-26 21:47:00,29.6825,131.967,22.34 +2016-06-26 22:02:00,29.925,132.037,22.35 +2016-06-26 22:17:00,30.8587,132.195,22.34 +2016-06-26 22:32:00,29.3425,132.165,22.35 +2016-06-26 22:47:00,27.9613,132.35,22.38 +2016-06-26 23:02:00,30.6575,132.345,22.4 +2016-06-26 23:17:00,31.4012,132.41,22.41 +2016-06-26 23:32:00,28.3637,132.397,22.4 +2016-06-26 23:47:00,32.5788,132.3,22.41 +2016-06-27 00:02:00,29.0512,132.372,22.41 +2016-06-27 00:17:00,29.055,132.327,22.4 +2016-06-27 00:32:00,30.2137,132.332,22.41 +2016-06-27 00:47:00,24.5638,132.227,22.4 +2016-06-27 01:02:00,30.8075,132.317,22.39 +2016-06-27 01:17:00,28.7038,132.382,22.39 +2016-06-27 01:32:00,28.9075,132.472,22.38 +2016-06-27 01:47:00,29.6837,132.66,22.4 +2016-06-27 02:02:00,28.7562,132.732,22.38 +2016-06-27 02:17:00,30.12,132.68,22.38 +2016-06-27 02:32:00,27.9088,132.865,22.34 +2016-06-27 02:47:00,30.3112,132.825,22.31 +2016-06-27 03:02:00,33.22,132.835,22.3 +2016-06-27 03:17:00,29.1012,132.86,22.25 +2016-06-27 03:32:00,27.81,132.757,22.22 +2016-06-27 03:47:00,30.2113,132.725,22.19 +2016-06-27 04:02:00,27.8562,132.772,22.16 +2016-06-27 04:17:00,28.5563,132.75,22.14 +2016-06-27 04:32:00,28.3087,132.847,22.09 +2016-06-27 04:47:00,27.1575,132.902,22.04 +2016-06-27 05:02:00,27.3138,132.917,22.01 +2016-06-27 05:17:00,29.055,133.04,21.98 +2016-06-27 05:32:00,29.9762,133.042,21.98 +2016-06-27 05:47:00,28.9562,133.15,21.97 +2016-06-27 06:02:00,29.245,133.195,21.96 +2016-06-27 06:17:00,27.7562,133.257,21.96 +2016-06-27 06:32:00,30.3138,133.335,21.98 +2016-06-27 06:47:00,27.1625,133.227,21.96 +2016-06-27 07:02:00,32.5788,133.28,21.98 +2016-06-27 07:17:00,25.4525,133.395,22.01 +2016-06-27 07:32:00,31.4463,133.408,22.05 +2016-06-27 07:47:00,34.1387,133.352,22.09 +2016-06-27 08:02:00,28.1125,133.252,22.13 +2016-06-27 08:17:00,29.4837,133.4,22.13 +2016-06-27 08:32:00,28.655,133.325,22.12 +2016-06-27 08:47:00,28.31,133.173,22.1 +2016-06-27 09:02:00,28.5563,133.277,22.16 +2016-06-27 09:17:00,27.9587,133.2,22.12 +2016-06-27 09:32:00,32.235,133.2,22.16 +2016-06-27 09:47:00,27.31,133.182,22.16 +2016-06-27 10:02:00,27.41,132.96,22.19 +2016-06-27 10:17:00,28.8487,133.065,22.22 +2016-06-27 10:32:00,28.3587,132.897,22.26 +2016-06-27 10:47:00,27.4637,133.135,22.22 +2016-06-27 11:02:00,27.5612,133.18,22.28 +2016-06-27 11:17:00,29.0975,133.36,22.28 +2016-06-27 11:32:00,29.6787,133.367,22.31 +2016-06-27 11:47:00,29.9225,133.465,22.23 +2016-06-27 12:02:00,28.0587,133.27,22.23 +2016-06-27 12:17:00,29.675,133.472,22.2 +2016-06-27 12:32:00,28.7,133.337,22.2 +2016-06-27 12:47:00,28.4575,133.285,22.24 +2016-06-27 13:02:00,28.4088,133.207,22.28 +2016-06-27 13:17:00,27.5088,133.412,22.28 +2016-06-27 13:32:00,27.31,133.143,22.26 +2016-06-27 13:47:00,27.5638,133.002,22.22 +2016-06-27 14:02:00,28.3075,132.962,22.15 +2016-06-27 14:17:00,28.4088,133.01,22.13 +2016-06-27 14:32:00,27.46,132.895,22.13 +2016-06-27 14:47:00,28.6025,133.315,22.06 +2016-06-27 15:02:00,28.9925,133.325,21.99 +2016-06-27 15:17:00,26.2725,133.42,21.9 +2016-06-27 15:32:00,29.245,133.567,21.84 +2016-06-27 15:47:00,28.2588,133.37,21.78 +2016-06-27 16:02:00,27.8613,133.31,21.74 +2016-06-27 16:17:00,27.2075,133.217,21.74 +2016-06-27 16:32:00,25.8875,133.227,21.73 +2016-06-27 16:47:00,27.16,133.182,21.73 +2016-06-27 17:02:00,29.34,133.03,21.71 +2016-06-27 17:17:00,26.6675,133.105,21.67 +2016-06-27 17:32:00,26.2725,133.135,21.66 +2016-06-27 17:47:00,27.7137,133.0,21.63 +2016-06-27 18:02:00,25.8438,132.982,21.6 +2016-06-27 18:17:00,26.9613,133.055,21.58 +2016-06-27 18:32:00,28.8538,132.957,21.58 +2016-06-27 18:47:00,29.53,133.002,21.58 +2016-06-27 19:02:00,26.6687,132.925,21.61 +2016-06-27 19:17:00,28.0575,132.9,21.65 +2016-06-27 19:32:00,28.7012,132.78,21.67 +2016-06-27 19:47:00,29.4325,132.705,21.68 +2016-06-27 20:02:00,25.7387,132.62,21.69 +2016-06-27 20:17:00,28.9512,132.39,21.68 +2016-06-27 20:32:00,28.4112,132.332,21.7 +2016-06-27 20:47:00,27.205,132.215,21.69 +2016-06-27 21:02:00,28.9962,132.18,21.67 +2016-06-27 21:17:00,25.3512,132.147,21.66 +2016-06-27 21:32:00,28.0075,132.09,21.65 +2016-06-27 21:47:00,27.0587,132.057,21.66 +2016-06-27 22:02:00,27.36,132.042,21.68 +2016-06-27 22:17:00,28.11,132.235,21.69 +2016-06-27 22:32:00,27.9575,132.085,21.71 +2016-06-27 22:47:00,26.7162,131.94,21.72 +2016-06-27 23:02:00,27.7612,131.925,21.73 +2016-06-27 23:17:00,25.2025,131.742,21.77 +2016-06-27 23:32:00,27.9088,131.732,21.78 +2016-06-27 23:47:00,28.805,131.637,21.81 +2016-06-28 00:02:00,27.5088,131.415,21.82 +2016-06-28 00:17:00,24.4088,131.36,21.83 +2016-06-28 00:32:00,24.9562,131.217,21.86 +2016-06-28 00:47:00,27.805,131.112,21.85 +2016-06-28 01:02:00,26.035,131.027,21.85 +2016-06-28 01:17:00,28.31,131.04,21.84 +2016-06-28 01:32:00,27.6087,130.987,21.82 +2016-06-28 01:47:00,28.7525,130.977,21.81 +2016-06-28 02:02:00,29.4788,131.02,21.78 +2016-06-28 02:17:00,28.1588,130.91,21.75 +2016-06-28 02:32:00,27.2513,130.817,21.7 +2016-06-28 02:47:00,26.9625,130.895,21.63 +2016-06-28 03:02:00,25.8875,130.745,21.59 +2016-06-28 03:17:00,28.7,130.452,21.53 +2016-06-28 03:32:00,29.2438,130.542,21.49 +2016-06-28 03:47:00,28.4088,130.27,21.44 +2016-06-28 04:02:00,29.0512,130.2,21.41 +2016-06-28 04:17:00,28.51,130.2,21.38 +2016-06-28 04:32:00,26.2725,130.06,21.37 +2016-06-28 04:47:00,27.1062,129.737,21.33 +2016-06-28 05:02:00,28.0575,129.802,21.33 +2016-06-28 05:17:00,28.1113,129.74,21.32 +2016-06-28 05:32:00,29.29,129.522,21.35 +2016-06-28 05:47:00,26.2237,129.497,21.36 +2016-06-28 06:02:00,27.1075,129.41,21.36 +2016-06-28 06:17:00,27.21,129.438,21.37 +2016-06-28 06:32:00,27.9575,129.362,21.39 +2016-06-28 06:47:00,27.9088,129.007,21.37 +2016-06-28 07:02:00,27.2575,129.23,21.35 +2016-06-28 07:17:00,26.52,129.08,21.3 +2016-06-28 07:32:00,28.6663,129.158,21.27 +2016-06-28 07:47:00,27.6663,-100.783,21.29 +2016-06-28 08:02:00,27.8112,129.065,21.33 +2016-06-28 08:17:00,18.7162,129.162,21.37 +2016-06-28 08:32:00,19.84,129.26,21.43 +2016-06-28 08:47:00,18.2913,129.027,21.48 +2016-06-28 09:02:00,19.4912,128.923,21.48 +2016-06-28 09:17:00,17.7962,129.117,21.49 +2016-06-28 09:32:00,18.8613,129.06,21.46 +2016-06-28 09:47:00,19.685,128.73,21.52 +2016-06-28 10:02:00,17.3025,128.805,21.55 +2016-06-28 10:17:00,16.8237,128.867,21.56 +2016-06-28 10:32:00,17.5512,128.71,21.57 +2016-06-28 10:47:00,18.1837,128.658,21.64 +2016-06-28 11:02:00,18.6175,128.72,21.67 +2016-06-28 11:17:00,18.0888,128.485,21.69 +2016-06-28 11:32:00,18.96,128.665,21.7 +2016-06-28 11:47:00,19.2925,129.045,21.77 +2016-06-28 12:02:00,18.0387,128.75,21.78 +2016-06-28 12:17:00,17.4575,128.82,21.79 +2016-06-28 12:32:00,19.6925,128.897,21.82 +2016-06-28 12:47:00,20.1225,129.05,21.85 +2016-06-28 13:02:00,16.5325,129.117,21.88 +2016-06-28 13:17:00,18.7687,129.242,21.9 +2016-06-28 13:32:00,18.815,129.307,21.9 +2016-06-28 13:47:00,16.6787,129.215,21.91 +2016-06-28 14:02:00,18.3375,129.385,21.9 +2016-06-28 14:17:00,17.3562,129.33,21.89 +2016-06-28 14:32:00,17.5075,129.6,21.84 +2016-06-28 14:47:00,19.395,129.645,21.83 +2016-06-28 15:02:00,18.6162,129.533,21.8 +2016-06-28 15:17:00,18.2337,129.515,21.74 +2016-06-28 15:32:00,18.9575,129.51,21.74 +2016-06-28 15:47:00,17.1062,129.535,21.71 +2016-06-28 16:02:00,19.6925,129.485,21.71 +2016-06-28 16:17:00,18.525,129.582,21.69 +2016-06-28 16:32:00,17.4538,129.395,21.67 +2016-06-28 16:47:00,18.0425,129.287,21.63 +2016-06-28 17:02:00,17.9412,129.302,21.6 +2016-06-28 17:17:00,19.4912,129.245,21.57 +2016-06-28 17:32:00,20.66,129.32,21.54 +2016-06-28 17:47:00,17.4562,129.188,21.49 +2016-06-28 18:02:00,20.4737,129.158,21.46 +2016-06-28 18:17:00,18.14,128.94,21.43 +2016-06-28 18:32:00,19.1062,128.887,21.4 +2016-06-28 18:47:00,17.0575,128.852,21.36 +2016-06-28 19:02:00,20.3213,128.785,21.33 +2016-06-28 19:17:00,18.335,128.735,21.31 +2016-06-28 19:32:00,19.3913,128.67,21.3 +2016-06-28 19:47:00,19.1125,128.542,21.3 +2016-06-28 20:02:00,18.775,128.465,21.3 +2016-06-28 20:17:00,18.3337,128.415,21.31 +2016-06-28 20:32:00,17.405,128.35,21.33 +2016-06-28 20:47:00,18.62,128.312,21.33 +2016-06-28 21:02:00,19.01,128.205,21.35 +2016-06-28 21:17:00,18.5725,128.147,21.36 +2016-06-28 21:32:00,19.0625,128.097,21.38 +2016-06-28 21:47:00,17.8475,127.967,21.38 +2016-06-28 22:02:00,18.4762,127.945,21.41 +2016-06-28 22:17:00,18.72,127.822,21.44 +2016-06-28 22:32:00,19.295,127.775,21.43 +2016-06-28 22:47:00,18.77,127.712,21.45 +2016-06-28 23:02:00,19.4425,127.632,21.47 +2016-06-28 23:17:00,17.8438,127.582,21.47 +2016-06-28 23:32:00,17.06,127.487,21.49 +2016-06-28 23:47:00,19.065,127.455,21.53 +2016-06-29 00:02:00,17.1087,127.372,21.56 +2016-06-29 00:17:00,18.14,127.393,21.58 +2016-06-29 00:32:00,19.8875,127.393,21.61 +2016-06-29 00:47:00,18.6225,127.355,21.63 +2016-06-29 01:02:00,17.6062,127.287,21.65 +2016-06-29 01:17:00,18.3812,127.327,21.64 +2016-06-29 01:32:00,18.3363,127.207,21.67 +2016-06-29 01:47:00,17.41,127.26,21.71 +2016-06-29 02:02:00,16.2925,127.222,21.73 +2016-06-29 02:17:00,19.1087,127.173,21.71 +2016-06-29 02:32:00,19.0163,127.117,21.73 +2016-06-29 02:47:00,17.8463,127.055,21.73 +2016-06-29 03:02:00,17.3075,127.055,21.72 +2016-06-29 03:17:00,20.075,127.03,21.71 +2016-06-29 03:32:00,18.725,127.04,21.7 +2016-06-29 03:47:00,18.825,127.05,21.7 +2016-06-29 04:02:00,18.235,127.077,21.68 +2016-06-29 04:17:00,19.5462,127.177,21.68 +2016-06-29 04:32:00,17.5075,127.242,21.65 +2016-06-29 04:47:00,20.0263,127.15,21.62 +2016-06-29 05:02:00,17.9463,127.192,21.59 +2016-06-29 05:17:00,18.5275,127.26,21.57 +2016-06-29 05:32:00,18.3388,127.298,21.57 +2016-06-29 05:47:00,18.5238,127.128,21.55 +2016-06-29 06:02:00,18.0425,127.337,21.56 +2016-06-29 06:17:00,19.5437,127.28,21.57 +2016-06-29 06:32:00,18.1937,127.298,21.56 +2016-06-29 06:47:00,16.0938,127.14,21.57 +2016-06-29 07:02:00,18.4775,127.143,21.57 +2016-06-29 07:17:00,17.6525,127.28,21.61 +2016-06-29 07:32:00,18.7213,127.057,21.62 +2016-06-29 07:47:00,19.1525,127.4,21.59 +2016-06-29 08:02:00,16.6325,127.48,21.52 +2016-06-29 08:17:00,17.4538,127.605,21.46 +2016-06-29 08:32:00,18.5737,127.545,21.46 +2016-06-29 08:47:00,17.8438,127.545,21.53 +2016-06-29 09:02:00,18.1437,127.505,21.58 +2016-06-29 09:17:00,18.1912,127.745,21.61 +2016-06-29 09:32:00,18.3363,127.855,21.67 +2016-06-29 09:47:00,21.0925,128.03,21.69 +2016-06-29 10:02:00,18.9163,128.158,21.71 +2016-06-29 10:17:00,19.495,127.975,21.65 +2016-06-29 10:32:00,17.6025,128.19,21.68 +2016-06-29 10:47:00,20.1263,127.98,21.7 +2016-06-29 11:02:00,19.4437,128.062,21.69 +2016-06-29 11:17:00,17.8487,128.062,21.66 +2016-06-29 11:32:00,19.3463,128.08,21.68 +2016-06-29 11:47:00,16.82,128.048,21.8 +2016-06-29 12:02:00,17.3538,128.255,21.88 +2016-06-29 12:17:00,19.2937,128.225,21.94 +2016-06-29 12:32:00,17.3575,128.21,21.93 +2016-06-29 12:47:00,17.2562,128.34,22.01 +2016-06-29 13:02:00,16.9638,127.925,22.07 +2016-06-29 13:17:00,18.675,128.417,22.1 +2016-06-29 13:32:00,18.9625,128.457,22.15 +2016-06-29 13:47:00,18.6687,128.24,22.21 +2016-06-29 14:02:00,17.845,128.125,22.22 +2016-06-29 14:17:00,17.16,128.215,22.19 +2016-06-29 14:32:00,20.5612,128.327,22.15 +2016-06-29 14:47:00,16.6338,128.367,22.13 +2016-06-29 15:02:00,17.7462,128.29,22.11 +2016-06-29 15:17:00,19.015,128.08,22.08 +2016-06-29 15:32:00,18.8187,128.005,22.11 +2016-06-29 15:47:00,18.24,128.117,22.12 +2016-06-29 16:02:00,20.2725,128.177,22.08 +2016-06-29 16:17:00,18.3363,127.852,22.11 +2016-06-29 16:30:59,19.1087,127.982,22.12 +2016-06-29 16:47:00,18.915,128.045,22.12 +2016-06-29 17:02:00,18.575,127.977,22.08 +2016-06-29 17:17:00,16.6312,127.73,22.02 +2016-06-29 17:32:00,17.845,127.807,21.92 +2016-06-29 17:47:00,16.4425,127.783,21.8 +2016-06-29 18:02:00,18.3375,127.745,21.65 +2016-06-29 18:17:00,17.4025,127.527,21.54 +2016-06-29 18:32:00,18.6212,127.475,21.45 +2016-06-29 18:47:00,19.5925,127.497,21.4 +2016-06-29 19:02:00,19.7387,127.36,21.36 +2016-06-29 19:17:00,17.745,127.275,21.32 +2016-06-29 19:32:00,17.8962,127.268,21.28 +2016-06-29 19:47:00,17.9987,127.283,21.24 +2016-06-29 20:02:00,18.8688,127.312,21.2 +2016-06-29 20:17:00,18.6687,127.37,21.16 +2016-06-29 20:32:00,18.33,127.415,21.13 +2016-06-29 20:47:00,20.0275,127.412,21.11 +2016-06-29 21:02:00,19.9337,127.382,21.08 +2016-06-29 21:17:00,19.4987,127.41,21.06 +2016-06-29 21:32:00,17.3637,127.25,21.07 +2016-06-29 21:47:00,19.155,127.242,21.06 +2016-06-29 22:02:00,17.7962,127.217,21.05 +2016-06-29 22:17:00,17.6513,127.177,21.03 +2016-06-29 22:32:00,19.9788,127.137,21.03 +2016-06-29 22:47:00,19.11,127.087,21.03 +2016-06-29 23:02:00,18.0925,127.0,21.03 +2016-06-29 23:17:00,17.305,126.955,21.01 +2016-06-29 23:32:00,19.6912,126.872,21.01 +2016-06-29 23:47:00,18.0475,126.805,21.04 +2016-06-30 00:02:00,18.38,126.783,21.04 +2016-06-30 00:17:00,19.59,126.732,21.03 +2016-06-30 00:32:00,19.0125,126.707,21.07 +2016-06-30 00:47:00,17.8438,126.577,21.09 +2016-06-30 01:02:00,17.0563,126.533,21.1 +2016-06-30 01:17:00,19.0638,126.56,21.1 +2016-06-30 01:32:00,17.8975,126.54,21.14 +2016-06-30 01:47:00,17.2087,126.67,21.15 +2016-06-30 02:02:00,19.8337,126.647,21.18 +2016-06-30 02:17:00,18.915,126.632,21.18 +2016-06-30 02:32:00,19.6875,126.602,21.19 +2016-06-30 02:47:00,18.7675,126.628,21.21 +2016-06-30 03:02:00,17.745,126.57,21.23 +2016-06-30 03:17:00,18.6212,126.535,21.25 +2016-06-30 03:32:00,16.6312,126.518,21.24 +2016-06-30 03:47:00,19.06,126.417,21.26 +2016-06-30 04:02:00,19.2913,126.412,21.27 +2016-06-30 04:17:00,17.4075,126.397,21.26 +2016-06-30 04:32:00,20.7525,126.325,21.25 +2016-06-30 04:47:00,17.1012,126.227,21.25 +2016-06-30 05:02:00,19.4938,126.195,21.23 +2016-06-30 05:17:00,19.6413,126.112,21.22 +2016-06-30 05:32:00,17.3587,126.08,21.19 +2016-06-30 05:47:00,20.7012,126.012,21.16 +2016-06-30 06:02:00,17.9437,126.035,21.13 +2016-06-30 06:17:00,19.11,125.97,21.1 +2016-06-30 06:32:00,17.3037,126.01,21.06 +2016-06-30 06:47:00,18.2862,125.977,21.04 +2016-06-30 07:02:00,18.92,125.925,21.0 +2016-06-30 07:17:00,18.0912,126.065,20.97 +2016-06-30 07:32:00,18.765,126.018,20.95 +2016-06-30 07:47:00,18.2862,126.048,20.95 +2016-06-30 08:02:00,18.8637,126.158,20.95 +2016-06-30 08:17:00,17.8937,126.18,20.98 +2016-06-30 08:32:00,19.3925,126.137,21.01 +2016-06-30 08:47:00,18.5212,126.115,21.06 +2016-06-30 09:02:00,18.6188,126.167,21.07 +2016-06-30 09:17:00,16.3388,125.938,21.07 +2016-06-30 09:32:00,19.2962,125.842,21.07 +2016-06-30 09:47:00,20.1212,125.942,21.04 +2016-06-30 10:02:00,17.8425,126.077,21.08 +2016-06-30 10:17:00,16.7763,126.087,21.2 +2016-06-30 10:32:00,19.44,126.225,21.24 +2016-06-30 10:47:00,18.7712,125.995,21.31 +2016-06-30 11:02:00,18.8688,126.205,21.37 +2016-06-30 11:17:00,18.3825,125.96,21.44 +2016-06-30 11:32:00,19.3463,125.795,21.51 +2016-06-30 11:47:00,18.5725,126.075,21.5 +2016-06-30 12:02:00,17.4,125.97,21.52 +2016-06-30 12:17:00,18.0425,125.775,21.54 +2016-06-30 12:32:00,18.1888,125.917,21.6 +2016-06-30 12:47:00,17.7487,125.897,21.61 +2016-06-30 13:02:00,17.4587,126.185,21.65 +2016-06-30 13:17:00,17.995,126.027,21.63 +2016-06-30 13:32:00,20.66,126.018,21.63 +2016-06-30 13:47:00,19.4925,126.15,21.63 +2016-06-30 14:02:00,16.7763,125.932,21.62 +2016-06-30 14:17:00,18.6225,125.702,21.58 +2016-06-30 14:32:00,18.7237,125.85,21.54 +2016-06-30 14:47:00,18.0925,125.66,21.54 +2016-06-30 15:02:00,18.6712,125.617,21.53 +2016-06-30 15:17:00,20.0275,125.775,21.47 +2016-06-30 15:32:00,19.7375,125.832,21.43 +2016-06-30 15:47:00,19.9313,125.852,21.39 +2016-06-30 16:02:00,17.4538,126.035,21.36 +2016-06-30 16:17:00,18.72,125.765,21.3 +2016-06-30 16:32:00,19.6963,126.042,21.26 +2016-06-30 16:47:00,17.6038,125.865,21.23 +2016-06-30 17:02:00,16.9625,125.727,21.19 +2016-06-30 17:17:00,18.2412,125.715,21.16 +2016-06-30 17:32:00,20.3213,125.685,21.13 +2016-06-30 17:47:00,18.9625,125.592,21.12 +2016-06-30 18:02:00,17.9425,125.643,21.12 +2016-06-30 18:17:00,19.295,125.73,21.11 +2016-06-30 18:32:00,19.3512,125.747,21.06 +2016-06-30 18:47:00,17.945,125.802,21.03 +2016-06-30 19:02:00,17.7438,125.88,20.99 +2016-06-30 19:17:00,17.5,125.777,20.96 +2016-06-30 19:32:00,17.505,125.742,20.93 +2016-06-30 19:47:00,20.6137,125.75,20.89 +2016-06-30 20:02:00,20.37,125.705,20.86 +2016-06-30 20:17:00,20.9962,125.585,20.83 +2016-06-30 20:32:00,17.65,125.572,20.8 +2016-06-30 20:47:00,18.2412,125.477,20.78 +2016-06-30 21:02:00,19.015,125.505,20.77 +2016-06-30 21:17:00,18.6212,125.54,20.75 +2016-06-30 21:32:00,17.8438,125.557,20.74 +2016-06-30 21:47:00,18.9662,125.625,20.73 +2016-06-30 22:02:00,16.9613,125.622,20.73 +2016-06-30 22:17:00,18.385,125.53,20.74 +2016-06-30 22:32:00,19.395,125.482,20.75 +2016-06-30 22:47:00,16.82,125.385,20.74 +2016-06-30 23:02:00,19.79,125.325,20.75 +2016-06-30 23:17:00,18.195,125.317,20.76 +2016-06-30 23:32:00,18.38,125.2,20.77 +2016-06-30 23:47:00,17.3575,125.08,20.76 +2016-07-01 00:02:00,19.0662,125.062,20.76 +2016-07-01 00:17:00,18.4313,125.097,20.75 +2016-07-01 00:32:00,20.125,125.06,20.76 +2016-07-01 00:47:00,19.98,124.95,20.76 +2016-07-01 01:02:00,17.8425,124.925,20.75 +2016-07-01 01:17:00,16.39,124.832,20.73 +2016-07-01 01:32:00,18.9625,124.81,20.71 +2016-07-01 01:47:00,18.4737,124.64,20.69 +2016-07-01 02:02:00,17.2625,124.635,20.66 +2016-07-01 02:17:00,17.9487,124.495,20.63 +2016-07-01 02:32:00,18.8675,124.512,20.6 +2016-07-01 02:47:00,18.6225,124.515,20.57 +2016-07-01 03:02:00,15.6125,124.585,20.54 +2016-07-01 03:17:00,16.775,124.67,20.52 +2016-07-01 03:32:00,19.9788,124.667,20.49 +2016-07-01 03:47:00,18.9112,124.697,20.48 +2016-07-01 04:02:00,19.1062,124.595,20.47 +2016-07-01 04:17:00,20.5163,124.587,20.46 +2016-07-01 04:32:00,17.505,124.542,20.47 +2016-07-01 04:47:00,17.555,124.497,20.49 +2016-07-01 05:02:00,18.0413,124.322,20.49 +2016-07-01 05:17:00,18.6188,124.31,20.51 +2016-07-01 05:32:00,19.6862,124.29,20.53 +2016-07-01 05:47:00,19.3,124.372,20.54 +2016-07-01 06:02:00,18.4775,124.51,20.54 +2016-07-01 06:17:00,15.465,124.435,20.53 +2016-07-01 06:32:00,17.7462,124.575,20.52 +2016-07-01 06:47:00,18.525,124.817,20.52 +2016-07-01 07:02:00,18.6212,124.442,20.51 +2016-07-01 07:17:00,17.7937,124.57,20.52 +2016-07-01 07:32:00,19.5462,124.747,20.53 +2016-07-01 07:47:00,17.6025,124.61,20.56 +2016-07-01 08:02:00,20.5687,124.562,20.57 +2016-07-01 08:17:00,20.565,124.97,20.6 +2016-07-01 08:32:00,18.5263,124.822,20.66 +2016-07-01 08:47:00,17.745,124.94,20.69 +2016-07-01 09:02:00,17.06,124.935,20.72 +2016-07-01 09:17:00,19.0125,124.882,20.76 +2016-07-01 09:32:00,19.205,124.825,20.82 +2016-07-01 09:47:00,17.5088,124.932,20.88 +2016-07-01 10:02:00,17.0625,124.962,20.89 +2016-07-01 10:17:00,17.9987,124.972,20.91 +2016-07-01 10:32:00,19.495,125.205,21.04 +2016-07-01 10:47:00,16.6312,124.87,21.15 +2016-07-01 11:02:00,17.7462,124.985,21.25 +2016-07-01 11:17:00,18.915,125.075,21.36 +2016-07-01 11:32:00,20.2237,125.393,21.42 +2016-07-01 11:47:00,17.65,125.327,21.51 +2016-07-01 12:02:00,19.295,125.615,21.5 +2016-07-01 12:17:00,18.8662,125.08,21.44 +2016-07-01 12:32:00,18.5713,125.515,21.42 +2016-07-01 12:47:00,19.7412,125.04,21.39 +2016-07-01 13:02:00,18.0413,124.902,21.4 +2016-07-01 13:17:00,18.6675,124.997,21.48 +2016-07-01 13:32:00,19.5975,125.33,21.52 +2016-07-01 13:47:00,15.86,124.86,21.55 +2016-07-01 14:02:00,18.9137,125.155,21.55 +2016-07-01 14:17:00,20.6137,125.065,21.51 +2016-07-01 14:32:00,19.1038,125.005,21.42 +2016-07-01 14:47:00,19.8875,124.942,21.4 +2016-07-01 15:02:00,17.7475,125.09,21.43 +2016-07-01 15:17:00,20.5687,124.76,21.4 +2016-07-01 15:32:00,19.1625,124.435,21.39 +2016-07-01 15:47:00,16.8237,124.272,21.38 +2016-07-01 16:02:00,16.9625,123.795,21.38 +2016-07-01 16:17:00,18.8688,123.762,21.37 +2016-07-01 16:32:00,19.495,123.12,21.33 +2016-07-01 16:47:00,18.7675,123.232,21.3 +2016-07-01 17:02:00,18.4262,122.935,21.29 +2016-07-01 17:17:00,18.4313,122.66,21.26 +2016-07-01 17:32:00,16.7812,122.628,21.22 +2016-07-01 17:47:00,19.345,122.44,21.16 +2016-07-01 18:02:00,18.285,122.195,21.12 +2016-07-01 18:17:00,18.43,121.957,21.09 +2016-07-01 18:32:00,18.825,121.78,21.06 +2016-07-01 18:47:00,21.445,121.673,21.02 +2016-07-01 19:02:00,19.115,121.46,20.99 +2016-07-01 19:17:00,17.8487,121.222,20.96 +2016-07-01 19:32:00,19.7475,120.982,20.94 +2016-07-01 19:47:00,18.6725,120.98,20.91 +2016-07-01 20:02:00,18.675,120.9,20.89 +2016-07-01 20:17:00,17.6963,120.94,20.87 +2016-07-01 20:32:00,19.1575,120.855,20.85 +2016-07-01 20:47:00,17.6525,120.927,20.85 +2016-07-01 21:02:00,18.385,120.962,20.84 +2016-07-01 21:17:00,17.5587,120.997,20.83 +2016-07-01 21:32:00,18.1437,121.077,20.82 +2016-07-01 21:47:00,18.8225,120.9,20.81 +2016-07-01 22:02:00,18.9137,120.915,20.82 +2016-07-01 22:17:00,20.8975,120.925,20.82 +2016-07-01 22:32:00,18.19,120.955,20.82 +2016-07-01 22:47:00,17.8463,121.04,20.81 +2016-07-01 23:02:00,19.7438,121.112,20.8 +2016-07-01 23:17:00,17.015,121.232,20.8 +2016-07-01 23:32:00,17.9962,121.352,20.81 +2016-07-01 23:47:00,17.7988,121.467,20.8 +2016-07-02 00:02:00,16.4388,121.66,20.8 +2016-07-02 00:17:00,18.77,121.862,20.81 +2016-07-02 00:32:00,17.3587,121.87,20.82 +2016-07-02 00:47:00,20.9475,121.893,20.83 +2016-07-02 01:02:00,19.7925,121.967,20.84 +2016-07-02 01:17:00,16.9587,122.02,20.85 +2016-07-02 01:32:00,17.4088,122.115,20.88 +2016-07-02 01:47:00,20.8,122.245,20.9 +2016-07-02 02:02:00,18.3825,122.38,20.92 +2016-07-02 02:17:00,18.7712,122.615,20.93 +2016-07-02 02:32:00,19.7913,122.7,20.93 +2016-07-02 02:47:00,17.8988,122.86,20.92 +2016-07-02 03:02:00,20.08,122.952,20.93 +2016-07-02 03:17:00,20.1287,123.28,20.94 +2016-07-02 03:32:00,18.5225,123.477,20.94 +2016-07-02 03:47:00,19.1575,123.482,20.94 +2016-07-02 04:02:00,17.0137,123.552,20.96 +2016-07-02 04:17:00,18.4788,123.56,20.96 +2016-07-02 04:32:00,17.515,123.605,20.96 +2016-07-02 04:47:00,18.4788,123.727,20.96 +2016-07-02 05:02:00,19.9775,123.628,20.96 +2016-07-02 05:17:00,17.3613,123.777,20.97 +2016-07-02 05:32:00,17.31,123.94,20.99 +2016-07-02 05:47:00,20.7988,123.84,21.02 +2016-07-02 06:02:00,17.7975,124.16,21.06 +2016-07-02 06:17:00,19.8875,124.02,21.09 +2016-07-02 06:32:00,18.5287,124.375,21.09 +2016-07-02 06:47:00,19.115,124.467,21.1 +2016-07-02 07:02:00,18.245,124.212,21.1 +2016-07-02 07:17:00,18.6212,124.375,21.09 +2016-07-02 07:32:00,18.7712,124.188,21.06 +2016-07-02 07:47:00,18.1875,124.702,21.01 +2016-07-02 08:02:00,17.8463,124.72,21.0 +2016-07-02 08:17:00,18.1888,124.802,21.0 +2016-07-02 08:32:00,18.7763,124.915,21.0 +2016-07-02 08:47:00,18.2913,124.935,21.01 +2016-07-02 09:02:00,19.8875,125.085,21.0 +2016-07-02 09:17:00,18.7213,125.143,20.94 +2016-07-02 09:32:00,17.5537,125.987,20.87 +2016-07-02 09:47:00,19.1125,125.972,20.83 +2016-07-02 10:02:00,21.4412,126.097,20.78 +2016-07-02 10:17:00,17.5563,126.395,20.7 +2016-07-02 10:32:00,18.4337,126.762,20.69 +2016-07-02 10:47:00,18.43,127.173,20.68 +2016-07-02 11:02:00,17.895,127.232,20.66 +2016-07-02 11:17:00,20.515,127.467,20.67 +2016-07-02 11:32:00,21.3913,127.467,20.67 +2016-07-02 11:47:00,18.0425,127.78,20.65 +2016-07-02 12:02:00,18.87,127.852,20.64 +2016-07-02 12:17:00,20.225,128.007,20.64 +2016-07-02 12:32:00,20.08,128.207,20.63 +2016-07-02 12:47:00,19.5912,128.317,20.61 +2016-07-02 13:02:00,19.64,128.22,20.6 +2016-07-02 13:17:00,19.2487,128.45,20.61 +2016-07-02 13:32:00,19.6437,128.482,20.62 +2016-07-02 13:47:00,21.345,128.497,20.62 +2016-07-02 14:02:00,19.0163,128.49,20.63 +2016-07-02 14:17:00,20.5163,128.632,20.62 +2016-07-02 14:32:00,19.7887,128.865,20.62 +2016-07-02 14:47:00,18.91,128.897,20.62 +2016-07-02 15:02:00,20.3213,128.912,20.61 +2016-07-02 15:17:00,18.6212,129.02,20.62 +2016-07-02 15:32:00,17.995,129.082,20.62 +2016-07-02 15:47:00,18.6687,129.192,20.64 +2016-07-02 16:02:00,19.8862,129.232,20.66 +2016-07-02 16:17:00,18.7738,129.235,20.67 +2016-07-02 16:32:00,21.045,129.027,20.67 +2016-07-02 16:47:00,19.6937,129.107,20.65 +2016-07-02 17:02:00,19.2975,129.075,20.64 +2016-07-02 17:17:00,19.49,129.285,20.59 +2016-07-02 17:32:00,17.9437,129.292,20.53 +2016-07-02 17:47:00,19.6888,129.147,20.42 +2016-07-02 18:02:00,19.4475,129.342,20.38 +2016-07-02 18:17:00,17.895,129.3,20.33 +2016-07-02 18:32:00,17.9975,129.347,20.27 +2016-07-02 18:47:00,16.915,129.177,20.22 +2016-07-02 19:02:00,16.6775,129.095,20.17 +2016-07-02 19:17:00,19.06,129.092,20.13 +2016-07-02 19:32:00,19.0125,128.99,20.09 +2016-07-02 19:47:00,20.275,129.052,20.04 +2016-07-02 20:02:00,20.08,129.015,19.98 +2016-07-02 20:17:00,19.4987,129.005,19.91 +2016-07-02 20:32:00,20.5638,129.025,19.85 +2016-07-02 20:47:00,19.2025,129.025,19.78 +2016-07-02 21:02:00,19.59,129.162,19.72 +2016-07-02 21:17:00,19.3937,128.97,19.67 +2016-07-02 21:32:00,19.1987,128.925,19.63 +2016-07-02 21:47:00,18.7225,128.915,19.59 +2016-07-02 22:02:00,19.545,128.747,19.55 +2016-07-02 22:17:00,19.4388,128.697,19.49 +2016-07-02 22:32:00,16.6287,128.692,19.45 +2016-07-02 22:47:00,20.1225,128.66,19.4 +2016-07-02 23:02:00,19.295,128.61,19.36 +2016-07-02 23:17:00,19.9337,128.68,19.33 +2016-07-02 23:32:00,19.3988,128.722,19.28 +2016-07-02 23:47:00,19.7425,128.658,19.26 +2016-07-03 00:02:00,19.69,128.655,19.22 +2016-07-03 00:17:00,18.6725,128.48,19.2 +2016-07-03 00:32:00,17.845,128.445,19.16 +2016-07-03 00:47:00,20.61,128.317,19.15 +2016-07-03 01:02:00,19.7387,128.365,19.12 +2016-07-03 01:17:00,18.72,128.287,19.1 +2016-07-03 01:32:00,18.1437,128.277,19.1 +2016-07-03 01:47:00,18.4788,128.362,19.08 +2016-07-03 02:02:00,20.1712,128.427,19.07 +2016-07-03 02:17:00,19.06,128.462,19.05 +2016-07-03 02:32:00,17.84,128.382,19.04 +2016-07-03 02:47:00,19.5925,128.327,19.04 +2016-07-03 03:02:00,21.14,128.275,19.03 +2016-07-03 03:17:00,18.04,128.19,19.03 +2016-07-03 03:32:00,17.9463,128.077,19.02 +2016-07-03 03:47:00,19.1113,128.09,19.01 +2016-07-03 04:02:00,18.4737,128.022,19.01 +2016-07-03 04:17:00,19.8838,128.07,19.0 +2016-07-03 04:32:00,20.3662,128.105,19.02 +2016-07-03 04:47:00,19.25,128.128,19.03 +2016-07-03 05:02:00,20.3662,128.132,19.05 +2016-07-03 05:17:00,19.1087,128.128,19.09 +2016-07-03 05:32:00,19.3463,128.11,19.11 +2016-07-03 05:47:00,18.965,128.152,19.13 +2016-07-03 06:02:00,18.9137,128.222,19.16 +2016-07-03 06:17:00,18.0863,128.25,19.18 +2016-07-03 06:32:00,19.3925,128.197,19.21 +2016-07-03 06:47:00,19.3425,128.567,19.24 +2016-07-03 07:02:00,19.6862,128.63,19.27 +2016-07-03 07:17:00,18.38,128.658,19.3 +2016-07-03 07:32:00,19.2937,128.533,19.31 +2016-07-03 07:47:00,16.815,128.992,19.32 +2016-07-03 08:02:00,17.9425,128.615,19.33 +2016-07-03 08:17:00,19.9762,128.862,19.35 +2016-07-03 08:32:00,17.6462,128.78,19.39 +2016-07-03 08:47:00,20.4638,128.82,19.46 +2016-07-03 09:02:00,20.465,128.675,19.43 +2016-07-03 09:17:00,17.2575,128.87,19.45 +2016-07-03 09:32:00,19.98,128.897,19.5 +2016-07-03 09:47:00,20.415,129.167,19.59 +2016-07-03 10:02:00,18.7687,129.377,19.66 +2016-07-03 10:17:00,19.1975,129.405,19.61 +2016-07-03 10:32:00,19.8838,129.54,19.67 +2016-07-03 10:47:00,20.0713,129.56,19.68 +2016-07-03 11:02:00,19.885,129.515,19.67 +2016-07-03 11:17:00,17.5062,129.57,19.71 +2016-07-03 11:32:00,20.5587,129.807,19.73 +2016-07-03 11:47:00,19.2,129.76,19.58 +2016-07-03 12:02:00,19.2462,130.362,19.49 +2016-07-03 12:17:00,20.7975,130.705,19.46 +2016-07-03 12:32:00,19.975,131.082,19.52 +2016-07-03 12:47:00,20.365,131.212,19.62 +2016-07-03 13:02:00,19.9825,131.295,19.68 +2016-07-03 13:17:00,19.11,131.36,19.72 +2016-07-03 13:32:00,16.19,131.415,19.73 +2016-07-03 13:47:00,19.6875,131.365,19.63 +2016-07-03 14:02:00,19.245,131.372,19.56 +2016-07-03 14:17:00,18.9625,131.667,19.58 +2016-07-03 14:32:00,18.6188,131.565,19.6 +2016-07-03 14:47:00,17.1588,131.607,19.57 +2016-07-03 15:02:00,19.8838,131.82,19.58 +2016-07-03 15:17:00,18.665,131.917,19.6 +2016-07-03 15:32:00,17.1562,131.925,19.61 +2016-07-03 15:47:00,18.6137,131.95,19.62 +2016-07-03 16:02:00,19.24,132.252,19.57 +2016-07-03 16:17:00,19.8812,132.075,19.51 +2016-07-03 16:32:00,19.1062,132.232,19.53 +2016-07-03 16:47:00,17.845,132.26,19.52 +2016-07-03 17:02:00,19.5912,132.285,19.5 +2016-07-03 17:17:00,18.665,132.35,19.49 +2016-07-03 17:32:00,18.3725,132.417,19.44 +2016-07-03 17:47:00,19.2913,132.472,19.4 +2016-07-03 18:02:00,20.5587,132.477,19.35 +2016-07-03 18:17:00,18.1025,132.712,19.31 +2016-07-03 18:32:00,17.6038,132.627,19.27 +2016-07-03 18:47:00,18.4725,132.645,19.25 +2016-07-03 19:02:00,19.1537,132.643,19.23 +2016-07-03 19:17:00,20.0263,132.495,19.21 +2016-07-03 19:32:00,18.9137,132.43,19.2 +2016-07-03 19:47:00,19.5425,132.52,19.19 +2016-07-03 20:02:00,22.03,132.577,19.16 +2016-07-03 20:17:00,18.5687,132.617,19.14 +2016-07-03 20:32:00,19.2038,132.627,19.1 +2016-07-03 20:47:00,20.22,132.658,19.1 +2016-07-03 21:02:00,18.375,132.688,19.07 +2016-07-03 21:17:00,18.6612,132.655,19.05 +2016-07-03 21:32:00,19.6338,132.52,19.02 +2016-07-03 21:47:00,19.2913,132.525,18.99 +2016-07-03 22:02:00,18.9125,132.395,18.98 +2016-07-03 22:17:00,19.4875,132.408,18.96 +2016-07-03 22:32:00,19.7363,132.397,18.95 +2016-07-03 22:47:00,20.0725,132.432,18.93 +2016-07-03 23:02:00,20.1675,132.365,18.93 +2016-07-03 23:17:00,18.5175,132.362,18.93 +2016-07-03 23:32:00,21.2887,132.322,18.94 +2016-07-03 23:47:00,18.9088,132.427,18.95 +2016-07-04 00:02:00,19.9262,132.252,18.93 +2016-07-04 00:17:00,19.5387,132.22,18.97 +2016-07-04 00:32:00,20.2712,132.027,18.98 +2016-07-04 00:47:00,18.33,131.857,18.98 +2016-07-04 01:02:00,21.83,131.76,18.99 +2016-07-04 01:17:00,21.8825,131.612,18.99 +2016-07-04 01:32:00,16.9088,131.61,19.0 +2016-07-04 01:47:00,20.4112,131.487,18.99 +2016-07-04 02:02:00,20.555,131.423,19.02 +2016-07-04 02:17:00,19.5413,131.412,19.02 +2016-07-04 02:32:00,20.8438,131.345,19.02 +2016-07-04 02:47:00,20.46,131.185,19.0 +2016-07-04 03:02:00,17.595,131.045,19.02 +2016-07-04 03:17:00,19.5362,130.792,19.02 +2016-07-04 03:32:00,19.385,130.685,19.01 +2016-07-04 03:47:00,20.2687,130.515,19.02 +2016-07-04 04:02:00,20.8412,130.402,19.02 +2016-07-04 04:17:00,20.51,130.395,19.02 +2016-07-04 04:32:00,21.09,130.247,19.01 +2016-07-04 04:47:00,19.535,130.287,19.01 +2016-07-04 05:02:00,21.8787,130.21,19.0 +2016-07-04 05:17:00,20.7913,130.122,18.99 +2016-07-04 05:32:00,17.7363,129.862,18.98 +2016-07-04 05:47:00,20.265,129.697,18.96 +2016-07-04 06:02:00,19.3913,129.382,18.94 +2016-07-04 06:17:00,18.7675,129.14,18.93 +2016-07-04 06:32:00,20.7925,128.972,18.93 +2016-07-04 06:47:00,18.815,128.845,18.93 +2016-07-04 07:02:00,18.8587,128.7,18.93 +2016-07-04 07:17:00,18.0338,128.533,18.92 +2016-07-04 07:32:00,19.1025,128.452,18.91 +2016-07-04 07:47:00,19.4887,128.357,18.92 +2016-07-04 08:02:00,20.7925,128.397,18.95 +2016-07-04 08:17:00,19.0088,128.285,19.0 +2016-07-04 08:32:00,18.1325,128.27,19.08 +2016-07-04 08:47:00,18.955,128.21,19.18 +2016-07-04 09:02:00,20.3162,128.035,19.26 +2016-07-04 09:17:00,17.885,127.88,19.29 +2016-07-04 09:32:00,21.6263,127.762,19.37 +2016-07-04 09:47:00,17.4013,127.71,19.48 +2016-07-04 10:02:00,20.17,127.585,19.47 +2016-07-04 10:17:00,19.7838,127.645,19.46 +2016-07-04 10:32:00,20.6525,127.482,19.45 +2016-07-04 10:47:00,19.78,127.625,19.47 +2016-07-04 11:02:00,19.4362,127.612,19.58 +2016-07-04 11:17:00,22.6963,127.438,19.62 +2016-07-04 11:32:00,20.3625,127.503,19.64 +2016-07-04 11:47:00,19.6875,127.35,19.64 +2016-07-04 12:02:00,19.9725,127.285,19.65 +2016-07-04 12:17:00,19.6825,127.405,19.65 +2016-07-04 12:32:00,20.6525,127.167,19.67 +2016-07-04 12:47:00,20.4575,127.34,19.73 +2016-07-04 13:02:00,19.8763,127.1,19.78 +2016-07-04 13:17:00,19.4875,127.16,19.79 +2016-07-04 13:32:00,18.8625,127.11,19.84 +2016-07-04 13:47:00,19.49,127.285,19.83 +2016-07-04 14:02:00,20.2675,127.222,19.86 +2016-07-04 14:17:00,20.9863,127.06,19.9 +2016-07-04 14:32:00,20.4125,127.225,19.92 +2016-07-04 14:47:00,20.3625,127.205,19.9 +2016-07-04 15:02:00,20.935,127.325,19.93 +2016-07-04 15:17:00,20.9325,127.327,19.94 +2016-07-04 15:32:00,17.7925,127.51,19.9 +2016-07-04 15:47:00,21.4337,127.575,19.87 +2016-07-04 16:02:00,18.375,127.68,19.86 +2016-07-04 16:17:00,18.42,127.802,19.82 +2016-07-04 16:32:00,18.6162,127.89,19.79 +2016-07-04 16:47:00,20.0675,127.965,19.77 +2016-07-04 17:02:00,21.6325,127.938,19.68 +2016-07-04 17:17:00,19.105,127.852,19.66 +2016-07-04 17:32:00,17.94,127.8,19.58 +2016-07-04 17:47:00,22.5512,127.835,19.52 +2016-07-04 18:02:00,19.4875,127.815,19.47 +2016-07-04 18:17:00,20.51,127.887,19.38 +2016-07-04 18:32:00,19.88,127.955,19.33 +2016-07-04 18:47:00,20.1663,127.972,19.28 +2016-07-04 19:02:00,18.085,128.112,19.24 +2016-07-04 19:17:00,19.1075,128.033,19.19 +2016-07-04 19:32:00,16.4812,128.112,19.16 +2016-07-04 19:47:00,19.8787,128.062,19.13 +2016-07-04 20:02:00,22.3075,128.0,19.11 +2016-07-04 20:17:00,20.6987,127.97,19.1 +2016-07-04 20:32:00,18.6137,128.02,19.08 +2016-07-04 20:47:00,20.3125,128.03,19.06 +2016-07-04 21:02:00,17.7913,128.048,19.06 +2016-07-04 21:17:00,20.5112,128.15,19.07 +2016-07-04 21:32:00,20.51,128.192,19.07 +2016-07-04 21:47:00,18.7138,128.283,19.1 +2016-07-04 22:02:00,20.0713,128.26,19.11 +2016-07-04 22:17:00,22.4062,128.21,19.13 +2016-07-04 22:32:00,20.4587,128.283,19.13 +2016-07-04 22:47:00,22.4062,128.197,19.15 +2016-07-04 23:02:00,21.3438,128.18,19.17 +2016-07-04 23:17:00,21.7838,128.21,19.17 +2016-07-04 23:32:00,18.5175,128.25,19.19 +2016-07-04 23:47:00,19.6862,128.332,19.19 +2016-07-05 00:02:00,20.12,128.432,19.19 +2016-07-05 00:17:00,19.7325,128.417,19.19 +2016-07-05 00:32:00,19.245,128.575,19.2 +2016-07-05 00:47:00,19.8312,128.537,19.21 +2016-07-05 01:02:00,19.975,128.637,19.22 +2016-07-05 01:17:00,18.765,128.587,19.24 +2016-07-05 01:32:00,20.4587,128.522,19.26 +2016-07-05 01:47:00,17.3,128.572,19.28 +2016-07-05 02:02:00,17.9875,128.487,19.3 +2016-07-05 02:17:00,19.0062,128.555,19.33 +2016-07-05 02:32:00,18.7637,128.632,19.34 +2016-07-05 02:47:00,19.83,128.677,19.36 +2016-07-05 03:02:00,18.9613,128.727,19.37 +2016-07-05 03:17:00,20.94,128.825,19.37 +2016-07-05 03:32:00,19.7825,128.775,19.37 +2016-07-05 03:47:00,18.7125,128.755,19.37 +2016-07-05 04:02:00,18.2812,128.76,19.37 +2016-07-05 04:17:00,20.02,128.675,19.36 +2016-07-05 04:32:00,21.7825,128.742,19.37 +2016-07-05 04:47:00,20.8913,128.81,19.39 +2016-07-05 05:02:00,19.9737,128.872,19.4 +2016-07-05 05:17:00,20.4112,128.952,19.41 +2016-07-05 05:32:00,19.3887,129.01,19.42 +2016-07-05 05:47:00,19.6837,128.952,19.43 +2016-07-05 06:02:00,20.3162,128.977,19.45 +2016-07-05 06:17:00,21.63,128.923,19.48 +2016-07-05 06:32:00,20.1637,128.967,19.53 +2016-07-05 06:47:00,19.49,128.872,19.56 +2016-07-05 07:02:00,18.6162,129.007,19.61 +2016-07-05 07:17:00,19.1925,129.095,19.65 +2016-07-05 07:32:00,19.195,129.067,19.69 +2016-07-05 07:47:00,19.735,129.21,19.72 +2016-07-05 08:02:00,19.975,129.35,19.71 +2016-07-05 08:17:00,20.4125,129.402,19.7 +2016-07-05 08:32:00,19.8375,129.562,19.72 +2016-07-05 08:47:00,18.3775,129.5,19.79 +2016-07-05 09:02:00,20.1212,129.457,19.77 +2016-07-05 09:17:00,19.34,129.57,19.76 +2016-07-05 09:32:00,19.9737,129.5,19.77 +2016-07-05 09:47:00,18.135,129.425,19.8 +2016-07-05 10:02:00,19.685,129.277,19.89 +2016-07-05 10:17:00,20.2188,129.347,19.94 +2016-07-05 10:32:00,20.37,129.557,19.93 +2016-07-05 10:47:00,20.1725,129.597,19.96 +2016-07-05 11:02:00,19.2438,129.497,19.97 +2016-07-05 11:17:00,21.29,129.76,20.01 +2016-07-05 11:32:00,19.2925,129.877,20.06 +2016-07-05 11:47:00,19.49,129.747,20.21 +2016-07-05 12:02:00,19.5888,129.587,20.32 +2016-07-05 12:17:00,20.99,129.602,20.38 +2016-07-05 12:32:00,18.62,129.717,20.4 +2016-07-05 12:47:00,21.0425,129.617,20.39 +2016-07-05 13:02:00,19.685,129.8,20.33 +2016-07-05 13:17:00,19.8787,129.955,20.29 +2016-07-05 13:32:00,19.0587,130.087,20.34 +2016-07-05 13:47:00,18.0863,130.188,20.42 +2016-07-05 14:02:00,19.105,129.987,20.49 +2016-07-05 14:17:00,20.0238,130.287,20.5 +2016-07-05 14:32:00,20.6612,130.237,20.52 +2016-07-05 14:47:00,20.6113,130.11,20.53 +2016-07-05 15:02:00,20.4613,130.298,20.53 +2016-07-05 15:17:00,18.1813,130.127,20.52 +2016-07-05 15:32:00,20.4613,130.147,20.51 +2016-07-05 15:47:00,21.2862,130.17,20.47 +2016-07-05 16:02:00,19.2925,130.402,20.44 +2016-07-05 16:17:00,17.5975,130.64,20.36 +2016-07-05 16:32:00,19.2025,130.37,20.3 +2016-07-05 16:47:00,20.6137,130.652,20.2 +2016-07-05 17:02:00,18.6637,130.695,20.16 +2016-07-05 17:17:00,21.0437,130.637,20.12 +2016-07-05 17:32:00,21.6312,130.822,20.08 +2016-07-05 17:47:00,19.7862,130.83,20.02 +2016-07-05 18:02:00,20.7975,130.625,19.98 +2016-07-05 18:17:00,21.2925,130.852,19.96 +2016-07-05 18:32:00,20.0275,130.742,19.91 +2016-07-05 18:47:00,17.105,131.007,19.86 +2016-07-05 19:02:00,19.9762,131.165,19.83 +2016-07-05 19:17:00,20.99,130.93,19.8 +2016-07-05 19:32:00,17.1025,131.005,19.77 +2016-07-05 19:47:00,20.2188,131.257,19.78 +2016-07-05 20:02:00,19.545,130.99,19.78 +2016-07-05 20:17:00,18.2363,130.837,19.78 +2016-07-05 20:32:00,20.7,130.86,19.76 +2016-07-05 20:47:00,19.1975,130.887,19.73 +2016-07-05 21:02:00,21.5837,130.912,19.72 +2016-07-05 21:17:00,20.075,130.658,19.69 +2016-07-05 21:32:00,21.1925,131.04,19.64 +2016-07-05 21:47:00,20.2687,130.882,19.61 +2016-07-05 22:02:00,18.475,131.147,19.59 +2016-07-05 22:17:00,19.4925,131.18,19.58 +2016-07-05 22:32:00,19.4912,130.85,19.57 +2016-07-05 22:47:00,18.8625,130.542,19.55 +2016-07-05 23:02:00,22.655,130.94,19.52 +2016-07-05 23:17:00,18.5713,130.882,19.53 +2016-07-05 23:32:00,18.0888,130.387,19.54 +2016-07-05 23:47:00,19.885,130.835,19.55 +2016-07-06 00:02:00,17.1562,130.555,19.57 +2016-07-06 00:17:00,21.5325,130.495,19.57 +2016-07-06 00:32:00,19.8825,130.607,19.58 +2016-07-06 00:47:00,21.7312,130.712,19.61 +2016-07-06 01:02:00,22.5075,130.525,19.6 +2016-07-06 01:17:00,19.3425,130.438,19.62 +2016-07-06 01:32:00,19.9287,130.382,19.62 +2016-07-06 01:47:00,19.5413,130.217,19.63 +2016-07-06 02:02:00,19.8375,130.4,19.61 +2016-07-06 02:17:00,20.025,130.283,19.57 +2016-07-06 02:32:00,22.2675,130.202,19.55 +2016-07-06 02:47:00,20.7038,129.985,19.57 +2016-07-06 03:02:00,21.3412,130.015,19.52 +2016-07-06 03:17:00,21.2387,129.865,19.52 +2016-07-06 03:32:00,19.4437,129.78,19.48 +2016-07-06 03:47:00,18.96,129.587,19.45 +2016-07-06 04:02:00,19.06,129.495,19.43 +2016-07-06 04:17:00,19.9313,129.175,19.42 +2016-07-06 04:32:00,20.5125,129.077,19.37 +2016-07-06 04:47:00,22.075,128.882,19.36 +2016-07-06 05:02:00,20.9912,128.805,19.31 +2016-07-06 05:17:00,19.975,129.02,19.29 +2016-07-06 05:32:00,19.8388,128.69,19.26 +2016-07-06 05:47:00,18.72,128.525,19.25 +2016-07-06 06:02:00,19.6862,128.697,19.24 +2016-07-06 06:17:00,21.8787,128.337,19.22 +2016-07-06 06:32:00,19.5888,128.702,19.22 +2016-07-06 06:47:00,21.14,128.115,19.21 +2016-07-06 07:02:00,20.89,127.73,19.18 +2016-07-06 07:17:00,21.2887,128.335,19.15 +2016-07-06 07:32:00,19.6437,128.007,19.12 +2016-07-06 07:47:00,17.2562,128.135,19.1 +2016-07-06 08:02:00,20.1212,127.85,19.12 +2016-07-06 08:17:00,19.7862,127.605,19.12 +2016-07-06 08:32:00,17.3025,127.59,19.14 +2016-07-06 08:47:00,19.5888,127.352,19.15 +2016-07-06 09:02:00,21.93,127.177,19.19 +2016-07-06 09:17:00,19.8812,127.298,19.19 +2016-07-06 09:32:00,19.69,127.225,19.18 +2016-07-06 09:47:00,19.7312,127.375,19.17 +2016-07-06 10:02:00,20.0662,126.855,19.15 +2016-07-06 10:17:00,22.22,126.867,19.15 +2016-07-06 10:32:00,21.7763,126.967,19.16 +2016-07-06 10:47:00,21.4837,126.95,19.17 +2016-07-06 11:02:00,21.8838,126.628,19.24 +2016-07-06 11:17:00,21.4875,126.467,19.28 +2016-07-06 11:32:00,20.9425,126.352,19.26 +2016-07-06 11:47:00,19.8812,125.995,19.29 +2016-07-06 12:02:00,20.2175,125.795,19.31 +2016-07-06 12:17:00,19.8825,126.07,19.29 +2016-07-06 12:32:00,17.55,125.647,19.26 +2016-07-06 12:47:00,21.1362,125.923,19.3 +2016-07-06 13:02:00,20.56,125.715,19.27 +2016-07-06 13:17:00,18.8162,125.897,19.23 +2016-07-06 13:32:00,19.2475,125.378,19.23 +2016-07-06 13:47:00,22.36,125.26,19.24 +2016-07-06 14:02:00,21.4825,125.283,19.23 +2016-07-06 14:17:00,20.1225,125.065,19.2 +2016-07-06 14:32:00,19.64,125.03,19.25 +2016-07-06 14:47:00,18.8162,124.535,19.27 +2016-07-06 15:02:00,20.2225,124.61,19.31 +2016-07-06 15:17:00,20.0275,124.58,19.26 +2016-07-06 15:32:00,20.0238,124.362,19.25 +2016-07-06 15:47:00,20.1188,124.352,19.26 +2016-07-06 16:02:00,20.845,124.102,19.26 +2016-07-06 16:17:00,18.1862,124.12,19.25 +2016-07-06 16:32:00,21.8288,124.173,19.25 +2016-07-06 16:47:00,19.3937,123.927,19.23 +2016-07-06 17:02:00,21.885,123.775,19.18 +2016-07-06 17:17:00,19.0587,123.47,19.11 +2016-07-06 17:32:00,20.7962,123.452,19.08 +2016-07-06 17:47:00,19.8337,123.395,19.03 +2016-07-06 18:02:00,18.9137,123.44,18.97 +2016-07-06 18:17:00,19.9287,123.18,18.91 +2016-07-06 18:32:00,20.3688,122.947,18.85 +2016-07-06 18:47:00,21.7363,122.812,18.82 +2016-07-06 19:02:00,19.5425,122.777,18.79 +2016-07-06 19:17:00,20.07,122.815,18.77 +2016-07-06 19:32:00,18.665,122.57,18.75 +2016-07-06 19:47:00,20.5612,122.612,18.73 +2016-07-06 20:02:00,20.8913,122.487,18.72 +2016-07-06 20:17:00,19.7363,122.28,18.7 +2016-07-06 20:32:00,22.4575,122.342,18.7 +2016-07-06 20:47:00,20.27,122.438,18.7 +2016-07-06 21:02:00,20.0238,122.275,18.68 +2016-07-06 21:17:00,20.6537,122.207,18.69 +2016-07-06 21:32:00,21.2387,122.283,18.7 +2016-07-06 21:47:00,21.1362,122.128,18.69 +2016-07-06 22:02:00,18.91,122.007,18.69 +2016-07-06 22:17:00,22.7513,121.977,18.69 +2016-07-06 22:32:00,20.655,121.792,18.69 +2016-07-06 22:47:00,21.8838,121.7,18.68 +2016-07-06 23:02:00,21.7325,121.582,18.65 +2016-07-06 23:17:00,20.61,121.537,18.63 +2016-07-06 23:32:00,19.3412,121.385,18.61 +2016-07-06 23:47:00,20.265,121.2,18.6 +2016-07-07 00:02:00,20.655,121.097,18.59 +2016-07-07 00:17:00,19.7825,121.04,18.59 +2016-07-07 00:32:00,19.0088,121.06,18.59 +2016-07-07 00:47:00,20.6562,121.067,18.59 +2016-07-07 01:02:00,21.04,121.11,18.59 +2016-07-07 01:17:00,20.8913,120.985,18.6 +2016-07-07 01:32:00,20.895,120.882,18.61 +2016-07-07 01:47:00,21.9788,120.842,18.62 +2016-07-07 02:02:00,22.4062,120.68,18.65 +2016-07-07 02:17:00,18.4713,120.54,18.65 +2016-07-07 02:32:00,20.7038,120.522,18.65 +2016-07-07 02:47:00,19.6937,120.382,18.62 +2016-07-07 03:02:00,20.9388,120.292,18.62 +2016-07-07 03:17:00,20.56,120.205,18.61 +2016-07-07 03:32:00,20.51,120.27,18.6 +2016-07-07 03:47:00,21.3875,120.28,18.59 +2016-07-07 04:02:00,20.7475,120.242,18.6 +2016-07-07 04:17:00,20.1212,120.268,18.59 +2016-07-07 04:32:00,20.6588,120.227,18.6 +2016-07-07 04:47:00,19.7812,120.11,18.62 +2016-07-07 05:02:00,20.1162,119.91,18.62 +2016-07-07 05:17:00,23.1275,119.692,18.61 +2016-07-07 05:32:00,22.4062,119.467,18.62 +2016-07-07 05:47:00,19.15,119.332,18.64 +2016-07-07 06:02:00,19.7337,119.1,18.65 +2016-07-07 06:17:00,21.14,118.952,18.67 +2016-07-07 06:32:00,20.415,118.785,18.7 +2016-07-07 06:47:00,20.4125,118.75,18.72 +2016-07-07 07:02:00,21.4375,118.61,18.73 +2016-07-07 07:17:00,22.7962,118.31,18.73 +2016-07-07 07:32:00,20.7925,118.39,18.74 +2016-07-07 07:47:00,21.1875,118.045,18.71 +2016-07-07 08:02:00,19.4388,118.197,18.67 +2016-07-07 08:17:00,21.4388,117.995,18.65 +2016-07-07 08:32:00,20.0687,117.658,18.68 +2016-07-07 08:47:00,22.5475,117.432,18.73 +2016-07-07 09:02:00,20.655,117.41,18.76 +2016-07-07 09:17:00,19.4362,117.322,18.85 +2016-07-07 09:32:00,19.83,117.298,18.89 +2016-07-07 09:47:00,20.0662,117.065,18.98 +2016-07-07 10:02:00,21.7363,117.235,19.08 +2016-07-07 10:17:00,22.5037,117.072,19.12 +2016-07-07 10:32:00,22.9437,117.3,19.17 +2016-07-07 10:47:00,19.8825,117.185,19.25 +2016-07-07 11:02:00,20.3662,117.232,19.33 +2016-07-07 11:17:00,20.7925,117.188,19.38 +2016-07-07 11:32:00,20.07,116.847,19.45 +2016-07-07 11:47:00,21.5312,117.177,19.52 +2016-07-07 12:02:00,21.4875,117.147,19.58 +2016-07-07 12:17:00,18.9587,116.707,19.63 +2016-07-07 12:32:00,20.4125,116.817,19.68 +2016-07-07 12:47:00,22.65,116.52,19.7 +2016-07-07 13:02:00,21.88,116.697,19.75 +2016-07-07 13:17:00,21.5325,116.48,19.79 +2016-07-07 13:32:00,20.4112,116.785,19.78 +2016-07-07 13:47:00,19.735,116.88,19.79 +2016-07-07 14:02:00,20.7962,117.16,19.84 +2016-07-07 14:17:00,19.3887,117.315,19.86 +2016-07-07 14:32:00,20.9875,117.487,19.88 +2016-07-07 14:47:00,22.7513,117.518,19.88 +2016-07-07 15:02:00,20.0675,117.325,19.89 +2016-07-07 15:17:00,20.8937,117.645,19.89 +2016-07-07 15:32:00,19.7288,117.577,19.87 +2016-07-07 15:47:00,19.5413,117.777,19.86 +2016-07-07 16:02:00,21.93,117.577,19.85 +2016-07-07 16:17:00,20.1188,117.685,19.81 +2016-07-07 16:32:00,19.7825,117.71,19.76 +2016-07-07 16:47:00,21.2375,117.605,19.72 +2016-07-07 17:02:00,20.79,117.722,19.69 +2016-07-07 17:17:00,22.3613,117.745,19.65 +2016-07-07 17:32:00,20.5137,117.807,19.62 +2016-07-07 17:47:00,18.72,117.83,19.57 +2016-07-07 18:02:00,19.3913,118.027,19.53 +2016-07-07 18:17:00,21.34,118.092,19.49 +2016-07-07 18:32:00,20.7462,118.062,19.44 +2016-07-07 18:47:00,19.9262,118.105,19.4 +2016-07-07 19:02:00,18.9062,118.13,19.36 +2016-07-07 19:17:00,20.9863,118.143,19.32 +2016-07-07 19:32:00,20.3213,118.12,19.28 +2016-07-07 19:47:00,20.325,118.115,19.25 +2016-07-07 20:02:00,21.0413,118.08,19.21 +2016-07-07 20:17:00,19.885,118.105,19.18 +2016-07-07 20:32:00,22.3112,118.02,19.17 +2016-07-07 20:47:00,19.7363,117.982,19.15 +2016-07-07 21:02:00,19.3887,118.027,19.14 +2016-07-07 21:17:00,18.815,118.095,19.14 +2016-07-07 21:32:00,21.0462,118.137,19.13 +2016-07-07 21:47:00,20.845,118.165,19.12 +2016-07-07 22:02:00,18.0925,118.335,19.13 +2016-07-07 22:17:00,20.12,118.337,19.14 +2016-07-07 22:32:00,20.4638,118.362,19.14 +2016-07-07 22:47:00,22.9912,118.315,19.14 +2016-07-07 23:02:00,22.125,118.362,19.15 +2016-07-07 23:17:00,20.845,118.298,19.17 +2016-07-07 23:32:00,20.9437,118.255,19.18 +2016-07-07 23:47:00,20.1712,118.247,19.21 +2016-07-08 00:02:00,19.6888,118.295,19.23 +2016-07-08 00:17:00,17.8913,118.3,19.25 +2016-07-08 00:32:00,18.135,118.255,19.27 +2016-07-08 00:47:00,19.54,118.272,19.3 +2016-07-08 01:02:00,19.8325,118.425,19.33 +2016-07-08 01:17:00,22.3162,118.37,19.34 +2016-07-08 01:32:00,21.7312,118.438,19.35 +2016-07-08 01:47:00,20.51,118.522,19.38 +2016-07-08 02:02:00,17.9425,118.472,19.41 +2016-07-08 02:17:00,21.0912,118.485,19.44 +2016-07-08 02:32:00,20.5075,118.44,19.44 +2016-07-08 02:47:00,23.3775,118.425,19.48 +2016-07-08 03:02:00,22.51,118.408,19.49 +2016-07-08 03:17:00,23.2787,118.412,19.53 +2016-07-08 03:32:00,18.765,118.427,19.55 +2016-07-08 03:47:00,20.3162,118.347,19.59 +2016-07-08 04:02:00,19.975,118.35,19.62 +2016-07-08 04:17:00,20.4613,118.387,19.65 +2016-07-08 04:32:00,22.8425,118.408,19.67 +2016-07-08 04:47:00,21.2375,118.472,19.69 +2016-07-08 05:02:00,17.5525,118.5,19.69 +2016-07-08 05:17:00,23.3812,118.64,19.7 +2016-07-08 05:32:00,20.415,118.597,19.71 +2016-07-08 05:47:00,19.2462,118.597,19.74 +2016-07-08 06:02:00,19.6387,118.605,19.74 +2016-07-08 06:17:00,21.5287,118.552,19.75 +2016-07-08 06:32:00,21.09,118.667,19.75 +2016-07-08 06:47:00,21.4837,118.49,19.77 +2016-07-08 07:02:00,22.2675,118.438,19.79 +2016-07-08 07:17:00,21.835,118.452,19.84 +2016-07-08 07:32:00,20.1225,118.19,19.89 +2016-07-08 07:47:00,19.3412,118.242,19.94 +2016-07-08 08:02:00,20.115,118.18,19.96 +2016-07-08 08:17:00,18.475,118.522,19.95 +2016-07-08 08:32:00,21.6813,118.397,19.97 +2016-07-08 08:47:00,20.9425,118.5,19.99 +2016-07-08 09:02:00,19.735,118.69,20.0 +2016-07-08 09:17:00,19.9713,118.705,20.02 +2016-07-08 09:32:00,20.315,118.77,20.09 +2016-07-08 09:47:00,20.7475,119.045,20.16 +2016-07-08 10:02:00,21.0863,118.915,20.19 +2016-07-08 10:17:00,19.7812,118.923,20.18 +2016-07-08 10:32:00,19.6837,118.972,20.2 +2016-07-08 10:47:00,21.7838,118.837,20.22 +2016-07-08 11:02:00,19.6862,118.665,20.26 +2016-07-08 11:17:00,19.6387,118.815,20.26 +2016-07-08 11:32:00,18.4225,119.037,20.26 +2016-07-08 11:47:00,19.3412,118.952,20.26 +2016-07-08 12:02:00,22.6513,119.112,20.25 +2016-07-08 12:17:00,20.65,119.33,20.23 +2016-07-08 12:32:00,22.3112,119.185,20.21 +2016-07-08 12:47:00,20.9887,119.147,20.2 +2016-07-08 13:02:00,21.2412,119.225,20.18 +2016-07-08 13:17:00,20.555,119.195,20.18 +2016-07-08 13:32:00,21.2387,119.36,20.21 +2016-07-08 13:47:00,20.12,119.435,20.23 +2016-07-08 14:02:00,22.8975,119.475,20.25 +2016-07-08 14:17:00,20.7,119.522,20.25 +2016-07-08 14:32:00,20.1738,119.71,20.26 +2016-07-08 14:47:00,20.85,119.792,20.26 +2016-07-08 15:02:00,19.8325,119.717,20.26 +2016-07-08 15:17:00,19.9287,119.85,20.28 +2016-07-08 15:32:00,20.215,119.92,20.29 +2016-07-08 15:47:00,20.7,120.057,20.29 +2016-07-08 16:02:00,21.3375,119.977,20.27 +2016-07-08 16:17:00,19.785,119.96,20.24 +2016-07-08 16:32:00,20.4175,119.768,20.2 +2016-07-08 16:47:00,21.7812,120.137,20.16 +2016-07-08 17:02:00,22.2175,121.525,20.12 +2016-07-08 17:17:00,21.7288,122.337,20.08 +2016-07-08 17:32:00,20.6537,122.385,20.01 +2016-07-08 17:47:00,22.5037,122.507,20.09 +2016-07-08 18:02:00,19.2,122.562,20.08 +2016-07-08 18:17:00,22.7562,122.438,20.02 +2016-07-08 18:32:00,22.36,122.232,19.98 +2016-07-08 18:47:00,21.9762,122.212,19.94 +2016-07-08 19:02:00,22.31,122.15,19.9 +2016-07-08 19:17:00,21.1413,122.055,19.86 +2016-07-08 19:32:00,21.9737,122.095,19.83 +2016-07-08 19:47:00,21.2375,121.947,19.81 +2016-07-08 20:02:00,20.6087,122.0,19.8 +2016-07-08 20:17:00,19.2962,121.812,19.77 +2016-07-08 20:32:00,21.0938,121.992,19.75 +2016-07-08 20:47:00,21.9775,121.98,19.73 +2016-07-08 21:02:00,22.505,121.915,19.71 +2016-07-08 21:17:00,24.0075,121.795,19.7 +2016-07-08 21:32:00,19.0563,121.8,19.71 +2016-07-08 21:47:00,20.0713,121.915,19.7 +2016-07-08 22:02:00,19.9737,121.755,19.67 +2016-07-08 22:17:00,20.0725,121.825,19.65 +2016-07-08 22:32:00,20.4175,121.505,19.63 +2016-07-08 22:47:00,21.8775,121.572,19.61 +2016-07-08 23:02:00,21.6813,121.367,19.6 +2016-07-08 23:17:00,20.7975,121.355,19.58 +2016-07-08 23:32:00,19.7838,121.045,19.57 +2016-07-08 23:47:00,19.585,121.082,19.56 +2016-07-09 00:02:00,21.4837,120.945,19.54 +2016-07-09 00:17:00,21.98,121.018,19.53 +2016-07-09 00:32:00,21.9762,120.955,19.53 +2016-07-09 00:47:00,23.96,121.018,19.5 +2016-07-09 01:02:00,22.2663,120.885,19.48 +2016-07-09 01:17:00,23.4737,120.905,19.46 +2016-07-09 01:32:00,22.7475,120.74,19.43 +2016-07-09 01:47:00,20.8425,120.682,19.42 +2016-07-09 02:02:00,20.8475,120.635,19.39 +2016-07-09 02:17:00,24.3613,120.503,19.37 +2016-07-09 02:32:00,19.735,120.477,19.37 +2016-07-09 02:47:00,20.795,120.295,19.37 +2016-07-09 03:02:00,23.7188,120.145,19.36 +2016-07-09 03:17:00,22.755,120.13,19.35 +2016-07-09 03:32:00,20.1687,119.955,19.36 +2016-07-09 03:47:00,19.3925,119.878,19.37 +2016-07-09 04:02:00,21.4437,119.787,19.38 +2016-07-09 04:17:00,22.55,119.82,19.39 +2016-07-09 04:32:00,22.4062,119.777,19.4 +2016-07-09 04:47:00,23.0387,119.798,19.42 +2016-07-09 05:02:00,23.43,119.632,19.46 +2016-07-09 05:17:00,21.4863,119.622,19.48 +2016-07-09 05:32:00,22.2188,119.572,19.51 +2016-07-09 05:47:00,18.19,119.625,19.53 +2016-07-09 06:02:00,21.4425,119.637,19.53 +2016-07-09 06:17:00,22.2663,119.548,19.53 +2016-07-09 06:32:00,21.34,119.47,19.57 +2016-07-09 06:47:00,22.5563,119.555,19.62 +2016-07-09 07:02:00,23.6212,119.378,19.68 +2016-07-09 07:17:00,21.1925,119.33,19.73 +2016-07-09 07:32:00,20.32,119.3,19.8 +2016-07-09 07:47:00,21.0413,119.212,19.88 +2016-07-09 08:02:00,22.0287,119.042,19.95 +2016-07-09 08:17:00,22.895,119.117,20.01 +2016-07-09 08:32:00,21.4337,118.832,20.06 +2016-07-09 08:47:00,23.2312,119.033,20.12 +2016-07-09 09:02:00,22.505,118.712,20.15 +2016-07-09 09:17:00,22.17,118.692,20.2 +2016-07-09 09:32:00,21.395,118.862,20.26 +2016-07-09 09:47:00,19.885,118.475,20.33 +2016-07-09 10:02:00,23.2288,118.987,20.4 +2016-07-09 10:17:00,22.605,118.862,20.51 +2016-07-09 10:32:00,21.485,118.977,20.56 +2016-07-09 10:47:00,23.8125,119.055,20.62 +2016-07-09 11:02:00,23.4287,118.88,20.65 +2016-07-09 11:17:00,21.4362,119.05,20.69 +2016-07-09 11:32:00,21.4925,118.852,20.71 +2016-07-09 11:47:00,23.0413,118.825,20.74 +2016-07-09 12:02:00,21.29,118.757,20.77 +2016-07-09 12:17:00,21.7337,118.81,20.81 +2016-07-09 12:32:00,22.2637,118.552,20.86 +2016-07-09 12:47:00,21.04,118.167,20.88 +2016-07-09 13:02:00,22.1725,118.802,20.94 +2016-07-09 13:17:00,22.6575,118.503,20.98 +2016-07-09 13:32:00,22.2712,118.312,20.99 +2016-07-09 13:47:00,20.605,118.845,21.03 +2016-07-09 14:02:00,19.6875,118.6,21.05 +2016-07-09 14:17:00,23.5287,118.632,21.07 +2016-07-09 14:32:00,21.9313,118.52,21.06 +2016-07-09 14:47:00,22.3613,118.67,21.02 +2016-07-09 15:02:00,23.4775,118.55,20.97 +2016-07-09 15:17:00,23.8187,118.367,20.94 +2016-07-09 15:32:00,20.8925,118.23,20.91 +2016-07-09 15:47:00,19.4938,118.227,20.87 +2016-07-09 16:02:00,21.585,118.082,20.86 +2016-07-09 16:17:00,21.8825,118.162,20.84 +2016-07-09 16:32:00,20.5125,118.03,20.8 +2016-07-09 16:47:00,22.3125,118.03,20.77 +2016-07-09 17:02:00,22.0325,117.952,20.72 +2016-07-09 17:17:00,22.4112,118.025,20.67 +2016-07-09 17:32:00,20.9437,117.852,20.59 +2016-07-09 17:47:00,20.5638,117.832,20.53 +2016-07-09 18:02:00,22.46,117.842,20.47 +2016-07-09 18:17:00,21.2375,117.902,20.4 +2016-07-09 18:32:00,21.0925,117.802,20.34 +2016-07-09 18:47:00,19.8825,117.695,20.3 +2016-07-09 19:02:00,25.4025,117.52,20.26 +2016-07-09 19:17:00,22.9037,117.47,20.23 +2016-07-09 19:32:00,21.485,117.412,20.2 +2016-07-09 19:47:00,21.1925,117.182,20.17 +2016-07-09 20:02:00,22.3162,117.128,20.14 +2016-07-09 20:17:00,21.7325,117.082,20.12 +2016-07-09 20:32:00,20.6087,117.05,20.09 +2016-07-09 20:47:00,23.09,117.015,20.07 +2016-07-09 21:02:00,20.0775,117.05,20.04 +2016-07-09 21:17:00,20.2262,117.042,20.03 +2016-07-09 21:32:00,22.555,117.022,20.01 +2016-07-09 21:47:00,19.8812,116.935,20.01 +2016-07-09 22:02:00,20.5625,116.825,20.01 +2016-07-09 22:17:00,21.7325,116.753,20.01 +2016-07-09 22:32:00,22.3138,116.645,20.01 +2016-07-09 22:47:00,22.3662,116.557,20.02 +2016-07-09 23:02:00,21.8862,116.408,20.02 +2016-07-09 23:17:00,22.9938,116.382,20.03 +2016-07-09 23:32:00,22.9475,116.255,20.05 +2016-07-09 23:47:00,21.835,116.132,20.07 +2016-07-10 00:02:00,24.3625,116.033,20.1 +2016-07-10 00:17:00,22.0737,116.02,20.13 +2016-07-10 00:32:00,22.7525,115.95,20.16 +2016-07-10 00:47:00,20.5137,115.862,20.18 +2016-07-10 01:02:00,24.06,115.887,20.21 +2016-07-10 01:17:00,22.3162,115.845,20.24 +2016-07-10 01:32:00,21.4412,115.81,20.25 +2016-07-10 01:47:00,23.8587,115.78,20.26 +2016-07-10 02:02:00,21.8337,115.792,20.27 +2016-07-10 02:17:00,23.33,115.69,20.28 +2016-07-10 02:32:00,22.5587,115.475,20.29 +2016-07-10 02:47:00,23.135,115.41,20.31 +2016-07-10 03:02:00,25.9912,115.24,20.33 +2016-07-10 03:17:00,22.7038,115.16,20.36 +2016-07-10 03:32:00,23.865,115.057,20.38 +2016-07-10 03:47:00,22.755,115.012,20.41 +2016-07-10 04:02:00,20.1188,114.93,20.45 +2016-07-10 04:17:00,21.5825,114.902,20.49 +2016-07-10 04:32:00,22.51,114.93,20.53 +2016-07-10 04:47:00,22.7075,114.955,20.57 +2016-07-10 05:02:00,21.7812,114.82,20.6 +2016-07-10 05:17:00,23.1375,114.802,20.64 +2016-07-10 05:32:00,22.175,114.87,20.69 +2016-07-10 05:47:00,23.2775,114.605,20.74 +2016-07-10 06:02:00,22.605,114.76,20.79 +2016-07-10 06:17:00,21.8337,114.47,20.83 +2016-07-10 06:32:00,22.7087,114.525,20.87 +2016-07-10 06:47:00,22.27,114.47,20.92 +2016-07-10 07:02:00,24.0088,114.31,20.98 +2016-07-10 07:17:00,20.5125,114.247,21.04 +2016-07-10 07:32:00,23.1338,114.227,21.1 +2016-07-10 07:47:00,22.8012,114.115,21.16 +2016-07-10 08:02:00,22.27,113.957,21.23 +2016-07-10 08:17:00,21.935,113.95,21.31 +2016-07-10 08:32:00,22.3662,113.62,21.39 +2016-07-10 08:47:00,22.2663,113.867,21.47 +2016-07-10 09:02:00,22.2687,113.587,21.55 +2016-07-10 09:17:00,24.4613,113.65,21.64 +2016-07-10 09:32:00,20.465,113.582,21.7 +2016-07-10 09:47:00,21.7312,113.63,21.79 +2016-07-10 10:02:00,20.8887,113.727,21.88 +2016-07-10 10:17:00,22.3662,113.545,21.97 +2016-07-10 10:32:00,22.8512,113.46,22.06 +2016-07-10 10:47:00,22.5563,113.423,22.14 +2016-07-10 11:02:00,22.1738,113.337,22.27 +2016-07-10 11:17:00,21.8838,113.505,22.49 +2016-07-10 11:32:00,21.4875,113.122,22.71 +2016-07-10 11:47:00,20.5112,113.115,22.87 +2016-07-10 12:02:00,24.105,113.003,22.99 +2016-07-10 12:17:00,21.095,112.783,23.05 +2016-07-10 12:32:00,21.2937,112.855,23.1 +2016-07-10 12:47:00,23.5238,112.682,23.13 +2016-07-10 13:02:00,22.9912,112.577,23.17 +2016-07-10 13:17:00,22.2675,112.825,23.21 +2016-07-10 13:32:00,21.4875,112.79,23.27 +2016-07-10 13:47:00,19.5425,112.785,23.31 +2016-07-10 14:02:00,23.82,112.632,23.36 +2016-07-10 14:17:00,20.42,112.352,23.39 +2016-07-10 14:32:00,22.605,112.432,23.41 +2016-07-10 14:47:00,23.53,112.402,23.43 +2016-07-10 15:02:00,18.9137,112.305,23.44 +2016-07-10 15:17:00,23.625,111.862,23.43 +2016-07-10 15:32:00,21.0437,111.94,23.39 +2016-07-10 15:47:00,20.1712,111.745,23.37 +2016-07-10 16:02:00,21.7862,111.835,23.36 +2016-07-10 16:17:00,21.89,111.742,23.33 +2016-07-10 16:32:00,19.8412,111.768,23.28 +2016-07-10 16:47:00,21.49,111.695,23.23 +2016-07-10 17:02:00,20.7537,111.805,23.19 +2016-07-10 17:17:00,22.4112,111.81,23.14 +2016-07-10 17:32:00,20.5625,111.805,23.09 +2016-07-10 17:47:00,20.1762,111.75,22.93 +2016-07-10 18:02:00,21.7875,111.66,22.77 +2016-07-10 18:17:00,21.4437,111.605,22.61 +2016-07-10 18:32:00,21.4388,111.52,22.48 +2016-07-10 18:47:00,24.3125,111.42,22.38 +2016-07-10 19:02:00,21.0437,111.32,22.29 +2016-07-10 19:17:00,23.6775,111.227,22.2 +2016-07-10 19:32:00,23.43,111.205,22.12 +2016-07-10 19:47:00,21.7387,111.175,22.04 +2016-07-10 20:02:00,20.9938,111.132,21.99 +2016-07-10 20:17:00,21.4875,111.137,21.96 +2016-07-10 20:32:00,21.1475,111.192,21.93 +2016-07-10 20:47:00,23.33,111.26,21.92 +2016-07-10 21:02:00,21.785,111.257,21.9 +2016-07-10 21:17:00,23.5788,111.253,21.89 +2016-07-10 21:32:00,23.6312,111.247,21.88 +2016-07-10 21:47:00,20.6162,111.1,21.87 +2016-07-10 22:02:00,23.3312,111.097,21.86 +2016-07-10 22:17:00,22.95,110.92,21.86 +2016-07-10 22:32:00,21.4912,110.755,21.85 +2016-07-10 22:47:00,21.935,110.7,21.85 +2016-07-10 23:02:00,22.08,110.6,21.86 +2016-07-10 23:17:00,18.1413,110.552,21.87 +2016-07-10 23:32:00,20.7075,110.56,21.88 +2016-07-10 23:47:00,19.9362,110.607,21.93 +2016-07-11 00:02:00,22.755,110.65,21.96 +2016-07-11 00:17:00,24.0125,110.7,21.96 +2016-07-11 00:32:00,23.7738,110.755,21.98 +2016-07-11 00:47:00,22.7038,110.805,22.01 +2016-07-11 01:02:00,24.3162,110.837,22.03 +2016-07-11 01:17:00,22.7988,110.825,22.1 +2016-07-11 01:32:00,18.9688,110.872,22.17 +2016-07-11 01:47:00,21.1462,110.822,22.22 +2016-07-11 02:02:00,21.1925,110.82,22.26 +2016-07-11 02:17:00,19.2,110.765,22.29 +2016-07-11 02:32:00,23.6287,110.73,22.3 +2016-07-11 02:47:00,20.99,110.77,22.33 +2016-07-11 03:02:00,24.41,110.727,22.34 +2016-07-11 03:17:00,24.3625,110.753,22.37 +2016-07-11 03:32:00,22.4175,110.837,22.39 +2016-07-11 03:47:00,18.575,110.9,22.43 +2016-07-11 04:02:00,20.2775,111.005,22.46 +2016-07-11 04:17:00,23.4313,111.112,22.48 +2016-07-11 04:32:00,22.7537,111.022,22.52 +2016-07-11 04:47:00,23.58,111.027,22.53 +2016-07-11 05:02:00,23.7712,111.182,22.55 +2016-07-11 05:17:00,22.71,111.222,22.57 +2016-07-11 05:32:00,21.935,111.253,22.59 +2016-07-11 05:47:00,22.9,111.162,22.63 +2016-07-11 06:02:00,21.735,111.447,22.68 +2016-07-11 06:17:00,22.3613,111.345,22.72 +2016-07-11 06:32:00,22.755,111.482,22.77 +2016-07-11 06:47:00,22.2213,111.552,22.81 +2016-07-11 07:02:00,20.9463,111.387,22.86 +2016-07-11 07:17:00,22.515,111.525,22.92 +2016-07-11 07:32:00,23.1375,111.637,23.02 +2016-07-11 07:47:00,22.41,111.52,23.1 +2016-07-11 08:02:00,23.3875,111.685,23.15 +2016-07-11 08:17:00,22.8,111.605,23.23 +2016-07-11 08:32:00,21.7825,111.615,23.32 +2016-07-11 08:47:00,23.3812,111.61,23.39 +2016-07-11 09:02:00,23.6837,111.612,23.45 +2016-07-11 09:17:00,22.9538,111.602,23.52 +2016-07-11 09:32:00,21.9825,111.67,23.54 +2016-07-11 09:47:00,22.8037,111.682,23.59 +2016-07-11 10:02:00,24.5163,111.71,23.6 +2016-07-11 10:17:00,20.8,111.647,23.62 +2016-07-11 10:32:00,19.2537,111.4,23.61 +2016-07-11 10:47:00,19.5488,111.525,23.63 +2016-07-11 11:02:00,23.4863,111.7,23.61 +2016-07-11 11:17:00,21.4463,111.39,23.62 +2016-07-11 11:32:00,23.1862,111.74,23.66 +2016-07-11 11:47:00,24.7575,111.477,23.69 +2016-07-11 12:02:00,21.7875,111.432,23.72 +2016-07-11 12:17:00,22.3187,111.378,23.75 +2016-07-11 12:32:00,21.6875,111.317,23.79 +2016-07-11 12:47:00,22.76,111.4,23.79 +2016-07-11 13:02:00,22.3237,111.447,23.77 +2016-07-11 13:17:00,19.1113,111.625,23.77 +2016-07-11 13:32:00,22.3175,111.643,23.78 +2016-07-11 13:47:00,23.6275,111.82,23.79 +2016-07-11 14:02:00,24.3625,111.885,23.78 +2016-07-11 14:17:00,23.775,111.7,23.78 +2016-07-11 14:32:00,23.575,111.945,23.8 +2016-07-11 14:47:00,22.6612,111.857,23.77 +2016-07-11 15:02:00,22.0825,111.905,23.72 +2016-07-11 15:17:00,24.8112,111.76,23.66 +2016-07-11 15:32:00,20.7525,111.825,23.63 +2016-07-11 15:47:00,20.125,111.665,23.6 +2016-07-11 16:02:00,23.7288,111.585,23.55 +2016-07-11 16:17:00,23.1875,111.408,23.5 +2016-07-11 16:32:00,24.1125,111.33,23.45 +2016-07-11 16:47:00,20.9487,111.352,23.37 +2016-07-11 17:02:00,21.1987,111.052,23.3 +2016-07-11 17:17:00,21.635,111.545,23.25 +2016-07-11 17:32:00,21.445,111.33,23.23 +2016-07-11 17:47:00,23.63,111.417,23.24 +2016-07-11 18:02:00,21.5387,111.503,23.27 +2016-07-11 18:17:00,19.9788,111.457,23.27 +2016-07-11 18:32:00,23.9675,111.722,23.29 +2016-07-11 18:47:00,19.645,111.68,23.29 +2016-07-11 19:02:00,21.1462,111.53,23.26 +2016-07-11 19:17:00,23.4337,111.485,23.22 +2016-07-11 19:32:00,18.7225,111.387,23.16 +2016-07-11 19:47:00,22.2738,111.352,23.12 +2016-07-11 20:02:00,23.14,111.298,23.08 +2016-07-11 20:17:00,20.805,111.272,23.06 +2016-07-11 20:32:00,24.8175,111.105,23.03 +2016-07-11 20:47:00,23.535,111.092,23.0 +2016-07-11 21:02:00,24.4662,111.075,22.96 +2016-07-11 21:17:00,25.895,110.995,22.94 +2016-07-11 21:32:00,21.8388,111.02,22.92 +2016-07-11 21:47:00,22.225,111.003,22.9 +2016-07-11 22:02:00,20.8037,111.02,22.88 +2016-07-11 22:17:00,23.4388,111.06,22.86 +2016-07-11 22:32:00,23.29,111.062,22.81 +2016-07-11 22:47:00,22.9562,111.095,22.77 +2016-07-11 23:02:00,26.0413,111.077,22.71 +2016-07-11 23:17:00,22.76,111.06,22.66 +2016-07-11 23:32:00,21.6875,111.06,22.62 +2016-07-11 23:47:00,21.6875,110.932,22.58 +2016-07-12 00:02:00,20.1263,110.867,22.55 +2016-07-12 00:17:00,20.7575,110.835,22.52 +2016-07-12 00:32:00,19.2087,110.695,22.5 +2016-07-12 00:47:00,22.51,110.658,22.49 +2016-07-12 01:02:00,21.4925,110.667,22.48 +2016-07-12 01:17:00,23.7312,110.662,22.46 +2016-07-12 01:32:00,21.1462,110.68,22.43 +2016-07-12 01:47:00,23.7262,110.697,22.42 +2016-07-12 02:02:00,21.4475,110.662,22.4 +2016-07-12 02:17:00,23.2925,110.753,22.37 +2016-07-12 02:32:00,21.395,110.722,22.32 +2016-07-12 02:47:00,21.3962,110.717,22.27 +2016-07-12 03:02:00,24.715,110.662,22.23 +2016-07-12 03:17:00,22.1287,110.655,22.19 +2016-07-12 03:32:00,20.0775,110.67,22.17 +2016-07-12 03:47:00,23.1888,110.7,22.15 +2016-07-12 04:02:00,23.7312,110.742,22.15 +2016-07-12 04:17:00,19.7913,110.74,22.13 +2016-07-12 04:32:00,24.6125,110.757,22.13 +2016-07-12 04:47:00,24.215,110.682,22.13 +2016-07-12 05:02:00,22.18,110.65,22.11 +2016-07-12 05:17:00,24.0612,110.592,22.11 +2016-07-12 05:32:00,21.5413,110.592,22.09 +2016-07-12 05:47:00,22.4187,110.462,22.08 +2016-07-12 06:02:00,24.865,110.397,22.09 +2016-07-12 06:17:00,24.3688,110.31,22.1 +2016-07-12 06:32:00,19.5975,110.205,22.09 +2016-07-12 06:47:00,23.0037,110.077,22.13 +2016-07-12 07:02:00,21.9837,110.02,22.2 +2016-07-12 07:17:00,22.5125,110.167,22.27 +2016-07-12 07:32:00,24.1625,109.925,22.35 +2016-07-12 07:47:00,22.7625,109.865,22.44 +2016-07-12 08:02:00,22.8587,109.99,22.54 +2016-07-12 08:17:00,22.805,109.822,22.63 +2016-07-12 08:32:00,22.95,110.01,22.74 +2016-07-12 08:47:00,23.1875,109.91,22.83 +2016-07-12 09:02:00,23.1875,110.015,22.92 +2016-07-12 09:17:00,22.4163,109.85,22.96 +2016-07-12 09:32:00,23.0888,109.832,23.01 +2016-07-12 09:47:00,24.6162,109.942,23.08 +2016-07-12 10:02:00,25.5025,109.862,23.15 +2016-07-12 10:17:00,22.8063,109.81,23.28 +2016-07-12 10:32:00,23.4337,109.79,23.37 +2016-07-12 10:47:00,22.5088,109.902,23.49 +2016-07-12 11:02:00,20.66,109.935,23.5 +2016-07-12 11:17:00,23.4325,110.0,23.55 +2016-07-12 11:32:00,23.0488,109.872,23.55 +2016-07-12 11:47:00,20.805,109.785,23.55 +2016-07-12 12:02:00,23.5788,109.783,23.52 +2016-07-12 12:17:00,21.9812,109.615,23.53 +2016-07-12 12:32:00,23.045,109.727,23.58 +2016-07-12 12:47:00,25.1125,109.557,23.62 +2016-07-12 13:02:00,24.6625,109.38,23.64 +2016-07-12 13:17:00,25.1113,109.16,23.66 +2016-07-12 13:32:00,22.1825,109.14,23.69 +2016-07-12 13:47:00,22.32,109.062,23.71 +2016-07-12 14:02:00,22.415,108.94,23.71 +2016-07-12 14:17:00,21.6862,108.91,23.67 +2016-07-12 14:32:00,21.6387,108.9,23.64 +2016-07-12 14:47:00,22.4125,108.72,23.59 +2016-07-12 15:02:00,24.1087,108.79,23.56 +2016-07-12 15:17:00,25.55,108.732,23.57 +2016-07-12 15:32:00,21.59,108.595,23.55 +2016-07-12 15:47:00,22.2763,108.535,23.53 +2016-07-12 16:02:00,23.4812,108.477,23.5 +2016-07-12 16:17:00,25.305,108.385,23.48 +2016-07-12 16:32:00,21.5425,108.322,23.45 +2016-07-12 16:47:00,22.175,108.245,23.43 +2016-07-12 17:02:00,21.5875,108.143,23.41 +2016-07-12 17:17:00,24.3175,108.15,23.39 +2016-07-12 17:32:00,22.6625,108.04,23.37 +2016-07-12 17:47:00,23.3838,108.027,23.34 +2016-07-12 18:02:00,23.1375,108.09,23.28 +2016-07-12 18:17:00,25.21,107.962,23.15 +2016-07-12 18:32:00,20.2237,107.977,23.03 +2016-07-12 18:47:00,21.6875,107.885,22.92 +2016-07-12 19:02:00,23.9637,107.777,22.81 +2016-07-12 19:17:00,21.69,107.697,22.73 +2016-07-12 19:32:00,22.135,107.658,22.67 +2016-07-12 19:47:00,21.1462,107.57,22.6 +2016-07-12 20:02:00,22.805,107.472,22.54 +2016-07-12 20:17:00,24.7125,107.38,22.48 +2016-07-12 20:32:00,23.5788,107.3,22.43 +2016-07-12 20:47:00,21.2937,107.268,22.38 +2016-07-12 21:02:00,23.1875,107.205,22.34 +2016-07-12 21:17:00,20.285,107.207,22.3 +2016-07-12 21:32:00,21.9812,107.175,22.27 +2016-07-12 21:47:00,20.3712,107.188,22.23 +2016-07-12 22:02:00,25.0612,107.165,22.19 +2016-07-12 22:17:00,21.0425,107.15,22.15 +2016-07-12 22:32:00,23.7237,107.11,22.1 +2016-07-12 22:47:00,21.1413,106.985,22.05 +2016-07-12 23:02:00,21.74,106.987,22.02 +2016-07-12 23:17:00,23.8237,106.908,22.0 +2016-07-12 23:32:00,22.1762,106.822,21.96 +2016-07-12 23:47:00,23.7738,106.768,21.95 +2016-07-13 00:02:00,23.87,106.68,21.94 +2016-07-13 00:17:00,23.8662,106.753,21.92 +2016-07-13 00:32:00,25.8425,106.735,21.9 +2016-07-13 00:47:00,23.865,106.688,21.86 +2016-07-13 01:02:00,21.4925,106.677,21.85 +2016-07-13 01:17:00,24.6137,106.665,21.83 +2016-07-13 01:32:00,22.85,106.63,21.82 +2016-07-13 01:47:00,21.8375,106.567,21.83 +2016-07-13 02:02:00,23.58,106.472,21.82 +2016-07-13 02:17:00,23.7312,106.395,21.81 +2016-07-13 02:32:00,24.86,106.442,21.81 +2016-07-13 02:47:00,24.4675,106.357,21.8 +2016-07-13 03:02:00,26.7738,106.265,21.79 +2016-07-13 03:17:00,26.7188,106.227,21.77 +2016-07-13 03:32:00,24.1612,106.225,21.76 +2016-07-13 03:47:00,21.6888,106.277,21.74 +2016-07-13 04:02:00,24.0112,106.275,21.71 +2016-07-13 04:17:00,25.2113,106.26,21.7 +2016-07-13 04:32:00,21.885,106.277,21.69 +2016-07-13 04:47:00,23.14,106.227,21.67 +2016-07-13 05:02:00,23.6287,106.225,21.66 +2016-07-13 05:17:00,27.6675,106.305,21.66 +2016-07-13 05:32:00,24.11,106.21,21.65 +2016-07-13 05:47:00,24.4637,106.177,21.66 +2016-07-13 06:02:00,23.0413,106.202,21.67 +2016-07-13 06:17:00,22.8512,106.22,21.67 +2016-07-13 06:32:00,25.1625,106.175,21.7 +2016-07-13 06:47:00,23.5338,106.202,21.71 +2016-07-13 07:02:00,22.8538,106.122,21.71 +2016-07-13 07:17:00,22.1787,106.087,21.69 +2016-07-13 07:32:00,22.5575,106.147,21.66 +2016-07-13 07:47:00,23.3825,106.12,21.64 +2016-07-13 08:02:00,20.71,106.112,21.63 +2016-07-13 08:17:00,22.3187,106.19,21.64 +2016-07-13 08:32:00,24.0638,106.125,21.66 +2016-07-13 08:47:00,24.715,106.305,21.68 +2016-07-13 09:02:00,24.2087,106.225,21.7 +2016-07-13 09:17:00,24.2137,106.26,21.76 +2016-07-13 09:32:00,21.9337,106.292,21.83 +2016-07-13 09:47:00,23.9637,106.357,21.93 +2016-07-13 10:02:00,22.1762,106.4,21.99 +2016-07-13 10:17:00,23.6837,106.255,22.08 +2016-07-13 10:32:00,24.415,106.367,22.17 +2016-07-13 10:47:00,24.465,106.397,22.31 +2016-07-13 11:02:00,25.9887,106.442,22.32 +2016-07-13 11:17:00,23.5788,106.393,22.31 +2016-07-13 11:32:00,23.77,106.442,22.25 +2016-07-13 11:47:00,23.8187,106.38,22.28 +2016-07-13 12:02:00,24.7588,106.423,22.39 +2016-07-13 12:17:00,24.7637,106.427,22.39 +2016-07-13 12:32:00,23.8675,106.667,22.33 +2016-07-13 12:47:00,23.5262,107.075,22.27 +2016-07-13 13:02:00,21.19,107.497,22.34 +2016-07-13 13:17:00,25.8425,107.802,22.39 +2016-07-13 13:32:00,22.9487,107.957,22.37 +2016-07-13 13:47:00,24.4613,108.003,22.42 +2016-07-13 14:02:00,25.2038,108.143,22.47 +2016-07-13 14:17:00,22.365,108.217,22.53 +2016-07-13 14:32:00,22.9525,108.217,22.51 +2016-07-13 14:47:00,24.8587,108.302,22.41 +2016-07-13 15:02:00,25.4487,108.325,22.3 +2016-07-13 15:17:00,24.7087,108.475,22.24 +2016-07-13 15:32:00,21.8337,108.662,22.28 +2016-07-13 15:47:00,25.26,108.8,22.26 +2016-07-13 16:02:00,24.0137,108.91,22.25 +2016-07-13 16:17:00,23.14,109.072,22.26 +2016-07-13 16:32:00,23.9163,109.16,22.24 +2016-07-13 16:47:00,24.2588,109.36,22.22 +2016-07-13 17:02:00,25.3063,109.23,22.19 +2016-07-13 17:17:00,25.7425,109.402,22.14 +2016-07-13 17:32:00,22.555,109.325,22.09 +2016-07-13 17:47:00,21.1937,109.43,22.05 +2016-07-13 18:02:00,23.0512,109.382,22.03 +2016-07-13 18:17:00,25.4512,109.337,22.01 +2016-07-13 18:32:00,24.71,109.287,22.0 +2016-07-13 18:47:00,22.0788,109.375,21.98 +2016-07-13 19:02:00,27.2612,109.408,21.95 +2016-07-13 19:17:00,25.3575,109.452,21.93 +2016-07-13 19:32:00,21.5413,109.487,21.89 +2016-07-13 19:47:00,23.4837,109.45,21.86 +2016-07-13 20:02:00,22.8063,109.412,21.82 +2016-07-13 20:17:00,21.985,109.385,21.78 +2016-07-13 20:32:00,24.06,109.4,21.72 +2016-07-13 20:47:00,22.5112,109.25,21.64 +2016-07-13 21:02:00,23.3325,109.215,21.56 +2016-07-13 21:17:00,27.16,109.13,21.5 +2016-07-13 21:32:00,23.0425,109.268,21.45 +2016-07-13 21:47:00,26.3312,109.17,21.42 +2016-07-13 22:02:00,22.7612,109.185,21.39 +2016-07-13 22:17:00,24.3613,109.215,21.37 +2016-07-13 22:32:00,24.86,109.197,21.34 +2016-07-13 22:47:00,25.6437,109.122,21.31 +2016-07-13 23:02:00,25.4037,109.137,21.27 +2016-07-13 23:17:00,25.16,109.137,21.24 +2016-07-13 23:32:00,23.535,109.02,21.21 +2016-07-13 23:47:00,25.8975,109.065,21.18 +2016-07-14 00:02:00,25.8463,108.962,21.16 +2016-07-14 00:17:00,24.8112,108.99,21.12 +2016-07-14 00:32:00,24.315,108.852,21.12 +2016-07-14 00:47:00,23.9137,108.825,21.12 +2016-07-14 01:02:00,28.5587,108.997,21.1 +2016-07-14 01:17:00,25.0137,108.807,21.09 +2016-07-14 01:32:00,23.6312,108.817,21.09 +2016-07-14 01:47:00,24.5687,109.025,21.07 +2016-07-14 02:02:00,24.6588,108.96,21.05 +2016-07-14 02:17:00,24.01,109.23,21.04 +2016-07-14 02:32:00,24.515,109.147,21.03 +2016-07-14 02:47:00,24.8087,109.395,21.02 +2016-07-14 03:02:00,25.9375,109.4,21.01 +2016-07-14 03:17:00,24.465,109.5,20.98 +2016-07-14 03:32:00,23.05,109.482,20.96 +2016-07-14 03:47:00,26.0938,109.595,20.93 +2016-07-14 04:02:00,24.16,109.675,20.91 +2016-07-14 04:17:00,26.0387,109.607,20.91 +2016-07-14 04:32:00,25.8913,109.78,20.91 +2016-07-14 04:47:00,23.4788,109.915,20.89 +2016-07-14 05:02:00,22.9487,110.135,20.88 +2016-07-14 05:17:00,23.915,110.162,20.86 +2016-07-14 05:32:00,24.1113,110.402,20.84 +2016-07-14 05:47:00,24.1075,110.662,20.83 +2016-07-14 06:02:00,23.1837,110.802,20.85 +2016-07-14 06:17:00,25.2575,110.84,20.83 +2016-07-14 06:32:00,24.06,111.005,20.81 +2016-07-14 06:47:00,23.8637,111.337,20.8 +2016-07-14 07:02:00,25.0625,111.29,20.75 +2016-07-14 07:17:00,24.1113,111.685,20.71 +2016-07-14 07:32:00,23.1875,111.695,20.67 +2016-07-14 07:47:00,22.5062,111.81,20.62 +2016-07-14 08:02:00,20.8913,112.01,20.61 +2016-07-14 08:17:00,25.6425,112.268,20.63 +2016-07-14 08:32:00,23.965,112.317,20.62 +2016-07-14 08:47:00,23.9125,112.533,20.62 +2016-07-14 09:02:00,23.9112,112.812,20.65 +2016-07-14 09:17:00,24.315,113.215,20.67 +2016-07-14 09:32:00,24.2637,113.518,20.68 +2016-07-14 09:47:00,22.0788,113.932,20.66 +2016-07-14 10:02:00,24.9637,114.397,20.64 +2016-07-14 10:17:00,24.9625,114.652,20.63 +2016-07-14 10:32:00,23.235,114.925,20.63 +2016-07-14 10:47:00,26.4212,115.427,20.63 +2016-07-14 11:02:00,23.6263,115.632,20.63 +2016-07-14 11:17:00,24.7612,116.17,20.67 +2016-07-14 11:32:00,23.3288,116.482,20.7 +2016-07-14 11:47:00,22.365,117.117,20.74 +2016-07-14 12:02:00,26.915,117.77,20.76 +2016-07-14 12:17:00,25.4938,118.173,20.76 +2016-07-14 12:32:00,22.0275,118.575,20.76 +2016-07-14 12:47:00,22.51,119.3,20.75 +2016-07-14 13:02:00,24.2637,119.735,20.75 +2016-07-14 13:17:00,27.3138,120.298,20.77 +2016-07-14 13:32:00,23.675,120.79,20.74 +2016-07-14 13:47:00,24.01,121.215,20.75 +2016-07-14 14:02:00,25.4012,122.033,20.79 +2016-07-14 14:17:00,24.81,122.487,20.8 +2016-07-14 14:32:00,22.1237,122.81,20.76 +2016-07-14 14:47:00,25.0612,123.24,20.75 +2016-07-14 15:02:00,23.4362,124.003,20.73 +2016-07-14 15:17:00,24.5612,124.362,20.69 +2016-07-14 15:32:00,21.685,125.268,20.61 +2016-07-14 15:47:00,23.2825,125.742,20.55 +2016-07-14 16:02:00,23.58,125.987,20.54 +2016-07-14 16:17:00,22.1787,126.337,20.53 +2016-07-14 16:32:00,25.3562,126.628,20.52 +2016-07-14 16:47:00,22.61,127.283,20.49 +2016-07-14 17:02:00,24.5163,127.4,20.45 +2016-07-14 17:17:00,26.67,127.95,20.37 +2016-07-14 17:32:00,25.545,128.152,20.28 +2016-07-14 17:47:00,24.5137,128.7,20.22 +2016-07-14 18:02:00,23.6275,129.027,20.16 +2016-07-14 18:17:00,23.96,129.62,20.09 +2016-07-14 18:32:00,22.225,129.908,20.05 +2016-07-14 18:47:00,23.3862,130.18,20.0 +2016-07-14 19:02:00,25.5475,130.442,19.96 +2016-07-14 19:17:00,24.0075,130.52,19.91 +2016-07-14 19:32:00,25.3988,130.645,19.86 +2016-07-14 19:47:00,24.8587,130.935,19.8 +2016-07-14 20:02:00,24.0062,130.86,19.74 +2016-07-14 20:17:00,26.2275,131.268,19.69 +2016-07-14 20:32:00,20.615,131.395,19.66 +2016-07-14 20:47:00,23.435,131.567,19.61 +2016-07-14 21:02:00,23.3312,131.85,19.59 +2016-07-14 21:17:00,26.5212,131.88,19.56 +2016-07-14 21:32:00,23.5762,131.99,19.52 +2016-07-14 21:47:00,24.61,131.982,19.5 +2016-07-14 22:02:00,24.4112,132.04,19.48 +2016-07-14 22:17:00,21.145,131.96,19.44 +2016-07-14 22:32:00,22.1787,131.877,19.42 +2016-07-14 22:47:00,23.0462,131.995,19.41 +2016-07-14 23:02:00,24.8562,131.705,19.41 +2016-07-14 23:17:00,25.0563,131.867,19.39 +2016-07-14 23:32:00,24.0587,131.647,19.36 +2016-07-14 23:47:00,25.1537,131.79,19.34 +2016-07-15 00:02:00,22.2675,131.732,19.33 +2016-07-15 00:17:00,24.5638,131.73,19.3 +2016-07-15 00:32:00,24.1637,131.435,19.27 +2016-07-15 00:47:00,22.2675,131.438,19.24 +2016-07-15 01:02:00,25.305,131.137,19.23 +2016-07-15 01:17:00,23.9125,131.2,19.23 +2016-07-15 01:32:00,22.7962,130.98,19.21 +2016-07-15 01:47:00,24.4163,131.035,19.2 +2016-07-15 02:02:00,25.5437,130.762,19.18 +2016-07-15 02:17:00,25.0125,130.565,19.18 +2016-07-15 02:32:00,26.2275,130.55,19.15 +2016-07-15 02:47:00,24.36,130.423,19.14 +2016-07-15 03:02:00,26.0362,129.992,19.11 +2016-07-15 03:17:00,26.2712,130.19,19.07 +2016-07-15 03:32:00,23.6738,129.982,19.03 +2016-07-15 03:47:00,23.1813,129.837,19.02 +2016-07-15 04:02:00,24.96,129.515,19.01 +2016-07-15 04:17:00,24.565,129.475,18.97 +2016-07-15 04:32:00,27.715,129.272,18.96 +2016-07-15 04:47:00,24.805,128.95,18.92 +2016-07-15 05:02:00,25.3012,128.632,18.9 +2016-07-15 05:17:00,25.2537,128.557,18.89 +2016-07-15 05:32:00,24.2113,128.173,18.86 +2016-07-15 05:47:00,27.2575,128.018,18.83 +2016-07-15 06:02:00,25.99,127.445,18.81 +2016-07-15 06:17:00,24.9088,127.44,18.79 +2016-07-15 06:32:00,23.5225,127.102,18.8 +2016-07-15 06:47:00,24.4062,126.625,18.81 +2016-07-15 07:02:00,25.1075,126.525,18.79 +2016-07-15 07:17:00,25.1038,126.26,18.78 +2016-07-15 07:32:00,26.5687,125.895,18.79 +2016-07-15 07:47:00,23.7663,125.947,18.78 +2016-07-15 08:02:00,25.5938,125.69,18.81 +2016-07-15 08:17:00,27.5638,125.557,18.83 +2016-07-15 08:32:00,23.8138,125.242,18.86 +2016-07-15 08:47:00,23.3237,125.35,18.87 +2016-07-15 09:02:00,26.8175,125.132,18.89 +2016-07-15 09:17:00,26.27,124.878,18.91 +2016-07-15 09:32:00,23.6712,124.725,18.94 +2016-07-15 09:47:00,24.4613,124.673,18.95 +2016-07-15 10:02:00,25.7425,124.393,18.94 +2016-07-15 10:17:00,26.2725,124.117,19.0 +2016-07-15 10:32:00,23.6725,124.185,19.02 +2016-07-15 10:47:00,23.6712,123.652,19.04 +2016-07-15 11:02:00,24.855,123.64,19.03 +2016-07-15 11:17:00,24.8525,123.402,19.03 +2016-07-15 11:32:00,24.4088,123.162,19.07 +2016-07-15 11:47:00,23.725,123.132,19.08 +2016-07-15 12:02:00,25.4012,122.972,19.08 +2016-07-15 12:17:00,23.1813,122.975,19.08 +2016-07-15 12:32:00,25.355,123.01,19.06 +2016-07-15 12:47:00,22.3087,123.04,19.02 +2016-07-15 13:02:00,23.8125,123.045,19.0 +2016-07-15 13:17:00,25.6925,122.76,18.99 +2016-07-15 13:32:00,23.915,122.617,18.98 +2016-07-15 13:47:00,26.1362,122.325,18.96 +2016-07-15 14:02:00,24.8087,122.08,18.93 +2016-07-15 14:17:00,26.1762,122.102,18.91 +2016-07-15 14:32:00,28.8525,121.99,18.89 +2016-07-15 14:47:00,26.085,121.885,18.87 +2016-07-15 15:02:00,25.84,121.665,18.85 +2016-07-15 15:17:00,24.3063,121.505,18.84 +2016-07-15 15:32:00,24.2612,121.365,18.83 +2016-07-15 15:47:00,25.0112,121.283,18.83 +2016-07-15 16:02:00,22.6537,121.018,18.85 +2016-07-15 16:17:00,22.4562,121.037,18.84 +2016-07-15 16:32:00,24.2087,120.955,18.82 +2016-07-15 16:47:00,25.4425,120.927,18.8 +2016-07-15 17:02:00,25.985,120.832,18.78 +2016-07-15 17:17:00,24.9062,120.932,18.77 +2016-07-15 17:32:00,26.0362,120.772,18.75 +2016-07-15 17:47:00,22.8012,120.628,18.74 +2016-07-15 18:02:00,25.1488,120.395,18.73 +2016-07-15 18:17:00,26.125,120.362,18.71 +2016-07-15 18:32:00,26.7663,120.077,18.7 +2016-07-15 18:47:00,23.4262,119.882,18.69 +2016-07-15 19:02:00,25.8838,119.832,18.68 +2016-07-15 19:17:00,23.53,119.677,18.66 +2016-07-15 19:32:00,24.1637,119.522,18.65 +2016-07-15 19:47:00,25.4437,119.402,18.64 +2016-07-15 20:02:00,25.7887,119.322,18.63 +2016-07-15 20:17:00,27.3562,119.26,18.61 +2016-07-15 20:32:00,23.6712,119.212,18.61 +2016-07-15 20:47:00,25.6875,119.253,18.59 +2016-07-15 21:02:00,27.8063,119.17,18.58 +2016-07-15 21:17:00,22.5075,119.128,18.56 +2016-07-15 21:32:00,24.3562,119.003,18.54 +2016-07-15 21:47:00,24.8037,118.98,18.52 +2016-07-15 22:02:00,24.905,118.857,18.51 +2016-07-15 22:17:00,21.4362,118.71,18.49 +2016-07-15 22:32:00,25.5387,118.645,18.46 +2016-07-15 22:47:00,25.6387,118.503,18.45 +2016-07-15 23:02:00,26.2687,118.325,18.44 +2016-07-15 23:17:00,25.935,118.277,18.43 +2016-07-15 23:32:00,24.5638,118.042,18.42 +2016-07-15 23:47:00,26.8662,117.967,18.42 +2016-07-16 00:02:00,25.395,117.97,18.4 +2016-07-16 00:17:00,28.4587,117.865,18.39 +2016-07-16 00:32:00,28.1588,117.882,18.38 +2016-07-16 00:47:00,29.0462,117.91,18.35 +2016-07-16 01:02:00,26.8162,117.917,18.33 +2016-07-16 01:17:00,27.0112,117.945,18.3 +2016-07-16 01:32:00,24.805,117.927,18.28 +2016-07-16 01:47:00,24.1575,117.862,18.26 +2016-07-16 02:02:00,28.3087,117.802,18.23 +2016-07-16 02:17:00,24.6062,117.762,18.2 +2016-07-16 02:32:00,28.2575,117.705,18.17 +2016-07-16 02:47:00,25.4425,117.61,18.16 +2016-07-16 03:02:00,28.4613,117.515,18.14 +2016-07-16 03:17:00,28.1125,117.452,18.14 +2016-07-16 03:32:00,26.5687,117.46,18.12 +2016-07-16 03:47:00,25.7363,117.325,18.09 +2016-07-16 04:02:00,26.0338,117.27,18.08 +2016-07-16 04:17:00,25.44,117.262,18.05 +2016-07-16 04:32:00,24.7537,117.332,18.04 +2016-07-16 04:47:00,24.6087,117.317,18.04 +2016-07-16 05:02:00,24.7062,117.332,18.05 +2016-07-16 05:17:00,24.8037,117.4,18.07 +2016-07-16 05:32:00,25.7363,117.52,18.1 +2016-07-16 05:47:00,25.7412,117.525,18.14 +2016-07-16 06:02:00,26.665,117.512,18.17 +2016-07-16 06:17:00,26.3162,117.533,18.2 +2016-07-16 06:32:00,26.415,117.385,18.23 +2016-07-16 06:47:00,23.1825,117.412,18.27 +2016-07-16 07:02:00,22.75,117.38,18.32 +2016-07-16 07:17:00,27.61,117.33,18.37 +2016-07-16 07:32:00,27.4587,117.39,18.43 +2016-07-16 07:47:00,26.1738,117.132,18.5 +2016-07-16 08:02:00,25.985,117.25,18.56 +2016-07-16 08:17:00,26.7125,117.25,18.63 +2016-07-16 08:32:00,25.0563,117.31,18.7 +2016-07-16 08:47:00,25.64,117.378,18.77 +2016-07-16 09:02:00,25.7913,117.447,18.86 +2016-07-16 09:17:00,25.445,117.485,18.95 +2016-07-16 09:32:00,24.255,117.135,19.03 +2016-07-16 09:47:00,26.6162,117.235,19.1 +2016-07-16 10:02:00,21.9262,117.055,19.16 +2016-07-16 10:17:00,24.5575,117.05,19.25 +2016-07-16 10:32:00,24.6113,117.057,19.32 +2016-07-16 10:47:00,26.37,117.06,19.42 +2016-07-16 11:02:00,23.4212,117.05,19.47 +2016-07-16 11:17:00,25.9325,117.3,19.5 +2016-07-16 11:32:00,25.0062,117.3,19.55 +2016-07-16 11:47:00,25.8875,117.197,19.59 +2016-07-16 12:02:00,24.7062,117.385,19.61 +2016-07-16 12:17:00,24.205,117.408,19.59 +2016-07-16 12:32:00,23.1825,117.265,19.56 +2016-07-16 12:47:00,26.1325,117.152,19.54 +2016-07-16 13:02:00,25.79,116.992,19.53 +2016-07-16 13:17:00,27.6062,117.115,19.52 +2016-07-16 13:32:00,25.6387,116.985,19.5 +2016-07-16 13:47:00,23.72,116.902,19.51 +2016-07-16 14:02:00,23.6212,116.665,19.51 +2016-07-16 14:17:00,23.575,116.58,19.5 +2016-07-16 14:32:00,26.0825,116.457,19.48 +2016-07-16 14:47:00,26.665,116.365,19.46 +2016-07-16 15:02:00,24.6038,116.352,19.46 +2016-07-16 15:17:00,25.3937,116.337,19.46 +2016-07-16 15:32:00,22.7462,116.457,19.45 +2016-07-16 15:47:00,23.3775,116.41,19.42 +2016-07-16 16:02:00,25.5375,116.46,19.4 +2016-07-16 16:17:00,28.06,116.277,19.39 +2016-07-16 16:32:00,25.9388,116.175,19.36 +2016-07-16 16:47:00,24.5088,116.325,19.32 +2016-07-16 17:02:00,24.6537,116.065,19.27 +2016-07-16 17:17:00,27.1562,115.957,19.2 +2016-07-16 17:32:00,23.325,115.867,19.15 +2016-07-16 17:47:00,25.7412,115.747,19.1 +2016-07-16 18:02:00,26.7213,115.622,19.06 +2016-07-16 18:17:00,23.4775,115.647,19.03 +2016-07-16 18:32:00,27.01,115.505,19.01 +2016-07-16 18:47:00,25.2988,115.367,18.98 +2016-07-16 19:02:00,26.615,115.17,18.95 +2016-07-16 19:17:00,26.9137,115.067,18.93 +2016-07-16 19:32:00,24.3562,115.13,18.92 +2016-07-16 19:47:00,23.525,115.177,18.93 +2016-07-16 20:02:00,25.0088,115.15,18.94 +2016-07-16 20:17:00,24.265,115.182,18.94 +2016-07-16 20:32:00,26.4613,115.057,18.95 +2016-07-16 20:47:00,24.4075,115.05,18.96 +2016-07-16 21:02:00,25.3937,114.982,18.97 +2016-07-16 21:17:00,24.7038,114.902,18.99 +2016-07-16 21:32:00,26.865,114.78,19.02 +2016-07-16 21:47:00,24.36,114.712,19.05 +2016-07-16 22:02:00,26.7675,114.622,19.08 +2016-07-16 22:17:00,28.3613,114.552,19.1 +2016-07-16 22:32:00,22.7975,114.445,19.12 +2016-07-16 22:47:00,26.4613,114.357,19.15 +2016-07-16 23:02:00,26.6663,114.265,19.18 +2016-07-16 23:17:00,27.4088,114.207,19.21 +2016-07-16 23:32:00,26.8175,114.143,19.24 +2016-07-16 23:47:00,24.3138,114.207,19.27 +2016-07-17 00:02:00,26.2262,114.247,19.29 +2016-07-17 00:17:00,26.3675,114.253,19.31 +2016-07-17 00:32:00,24.9037,114.31,19.34 +2016-07-17 00:47:00,28.7,114.307,19.37 +2016-07-17 01:02:00,26.1775,114.247,19.4 +2016-07-17 01:17:00,25.8875,114.285,19.43 +2016-07-17 01:32:00,25.2025,114.188,19.47 +2016-07-17 01:47:00,23.6738,114.092,19.5 +2016-07-17 02:02:00,25.7937,114.205,19.52 +2016-07-17 02:17:00,27.955,114.087,19.54 +2016-07-17 02:32:00,25.3962,114.06,19.57 +2016-07-17 02:47:00,26.5687,113.987,19.59 +2016-07-17 03:02:00,26.82,113.982,19.6 +2016-07-17 03:17:00,26.465,114.02,19.61 +2016-07-17 03:32:00,25.9375,114.0,19.6 +2016-07-17 03:47:00,26.9175,114.042,19.59 +2016-07-17 04:02:00,26.2288,114.158,19.59 +2016-07-17 04:17:00,26.7675,114.162,19.59 +2016-07-17 04:32:00,26.6162,114.205,19.6 +2016-07-17 04:47:00,28.1612,114.215,19.6 +2016-07-17 05:02:00,27.01,114.167,19.59 +2016-07-17 05:17:00,28.6987,114.102,19.6 +2016-07-17 05:32:00,25.985,114.132,19.62 +2016-07-17 05:47:00,25.495,114.107,19.63 +2016-07-17 06:02:00,27.4562,114.085,19.65 +2016-07-17 06:17:00,25.7438,114.003,19.66 +2016-07-17 06:32:00,26.2237,113.967,19.69 +2016-07-17 06:47:00,26.13,113.985,19.72 +2016-07-17 07:02:00,26.7687,113.97,19.74 +2016-07-17 07:17:00,25.6375,113.957,19.75 +2016-07-17 07:32:00,26.7675,113.935,19.75 +2016-07-17 07:47:00,26.135,114.022,19.76 +2016-07-17 08:02:00,24.9538,114.082,19.76 +2016-07-17 08:17:00,26.8162,114.21,19.77 +2016-07-17 08:32:00,25.4425,114.17,19.81 +2016-07-17 08:47:00,26.6162,114.128,19.88 +2016-07-17 09:02:00,26.7113,114.033,19.95 +2016-07-17 09:17:00,26.1338,114.03,19.98 +2016-07-17 09:32:00,25.0137,114.037,19.99 +2016-07-17 09:47:00,24.6562,114.242,20.03 +2016-07-17 10:02:00,24.7525,114.16,20.05 +2016-07-17 10:17:00,26.6175,114.217,20.07 +2016-07-17 10:32:00,25.54,114.352,20.13 +2016-07-17 10:47:00,27.3063,114.25,20.23 +2016-07-17 11:02:00,25.055,114.457,20.29 +2016-07-17 11:17:00,26.7175,114.53,20.32 +2016-07-17 11:32:00,25.545,114.477,20.32 +2016-07-17 11:47:00,27.4075,114.53,20.32 +2016-07-17 12:02:00,27.305,114.522,20.35 +2016-07-17 12:17:00,26.27,114.46,20.46 +2016-07-17 12:32:00,26.5662,114.31,20.54 +2016-07-17 12:47:00,26.5675,114.465,20.59 +2016-07-17 13:02:00,26.4662,114.425,20.69 +2016-07-17 13:17:00,27.7588,114.152,20.83 +2016-07-17 13:32:00,26.185,114.2,20.9 +2016-07-17 13:47:00,26.6663,114.135,20.95 +2016-07-17 14:02:00,25.685,114.173,20.95 +2016-07-17 14:17:00,26.1312,114.242,20.99 +2016-07-17 14:32:00,26.4163,114.097,21.0 +2016-07-17 14:47:00,25.7887,114.305,21.03 +2016-07-17 15:02:00,27.06,114.207,21.06 +2016-07-17 15:17:00,24.755,114.387,21.07 +2016-07-17 15:32:00,25.6862,114.347,21.05 +2016-07-17 15:47:00,25.9337,114.497,21.04 +2016-07-17 16:02:00,25.4912,114.287,21.02 +2016-07-17 16:17:00,26.1775,114.137,21.0 +2016-07-17 16:32:00,26.1725,114.02,20.97 +2016-07-17 16:47:00,28.6012,113.855,20.94 +2016-07-17 17:02:00,26.135,113.857,20.9 +2016-07-17 17:17:00,26.04,113.86,20.86 +2016-07-17 17:32:00,25.9362,113.522,20.79 +2016-07-17 17:47:00,25.4463,113.477,20.74 +2016-07-17 18:02:00,25.7887,113.53,20.71 +2016-07-17 18:17:00,26.9625,113.445,20.75 +2016-07-17 18:32:00,26.4175,113.518,20.84 +2016-07-17 18:47:00,26.4212,113.525,20.92 +2016-07-17 19:02:00,26.77,113.577,20.97 +2016-07-17 19:17:00,28.2113,113.585,21.01 +2016-07-17 19:32:00,25.2525,113.545,21.02 +2016-07-17 19:47:00,26.0362,113.492,21.02 +2016-07-17 20:02:00,26.1325,113.423,20.99 +2016-07-17 20:17:00,25.6413,113.382,20.95 +2016-07-17 20:32:00,24.905,113.298,20.9 +2016-07-17 20:47:00,25.9375,113.175,20.86 +2016-07-17 21:02:00,26.9187,113.05,20.82 +2016-07-17 21:17:00,27.51,112.977,20.79 +2016-07-17 21:32:00,27.71,112.9,20.75 +2016-07-17 21:47:00,25.1537,112.82,20.72 +2016-07-17 22:02:00,25.305,112.755,20.71 +2016-07-17 22:17:00,27.1062,112.732,20.69 +2016-07-17 22:32:00,27.01,112.727,20.69 +2016-07-17 22:47:00,26.2275,112.77,20.67 +2016-07-17 23:02:00,27.81,112.772,20.65 +2016-07-17 23:17:00,25.9337,112.807,20.64 +2016-07-17 23:32:00,25.54,112.915,20.63 +2016-07-17 23:47:00,26.6188,112.885,20.62 +2016-07-18 00:02:00,26.8187,112.792,20.61 +2016-07-18 00:17:00,28.1637,112.757,20.6 +2016-07-18 00:32:00,25.445,112.757,20.58 +2016-07-18 00:47:00,26.1375,112.688,20.56 +2016-07-18 01:02:00,24.9037,112.577,20.55 +2016-07-18 01:17:00,27.7125,112.577,20.53 +2016-07-18 01:32:00,26.4675,112.49,20.54 +2016-07-18 01:47:00,25.3962,112.447,20.55 +2016-07-18 02:02:00,25.5912,112.412,20.56 +2016-07-18 02:17:00,27.1575,112.352,20.6 +2016-07-18 02:32:00,26.9175,112.357,20.62 +2016-07-18 02:47:00,26.4725,112.298,20.67 +2016-07-18 03:02:00,26.9625,112.415,20.73 +2016-07-18 03:17:00,27.3063,112.457,20.78 +2016-07-18 03:32:00,24.4075,112.56,20.81 +2016-07-18 03:47:00,27.8587,112.595,20.85 +2016-07-18 04:02:00,26.2225,112.59,20.87 +2016-07-18 04:17:00,27.765,112.66,20.89 +2016-07-18 04:32:00,26.82,112.555,20.89 +2016-07-18 04:47:00,25.6425,112.572,20.89 +2016-07-18 05:02:00,27.5112,112.533,20.9 +2016-07-18 05:17:00,26.57,112.597,20.92 +2016-07-18 05:32:00,25.89,112.58,20.94 +2016-07-18 05:47:00,26.7675,112.52,20.95 +2016-07-18 06:02:00,26.2712,112.548,20.98 +2016-07-18 06:17:00,26.4662,112.54,21.01 +2016-07-18 06:32:00,26.425,112.442,21.04 +2016-07-18 06:47:00,26.2725,112.592,21.05 +2016-07-18 07:02:00,28.6512,112.535,21.08 +2016-07-18 07:17:00,26.8162,112.673,21.11 +2016-07-18 07:32:00,24.705,112.798,21.15 +2016-07-18 07:47:00,26.5713,112.832,21.2 +2016-07-18 08:02:00,27.255,112.902,21.26 +2016-07-18 08:17:00,24.71,112.95,21.31 +2016-07-18 08:32:00,27.9587,113.037,21.36 +2016-07-18 08:47:00,27.4613,112.997,21.39 +2016-07-18 09:02:00,25.9812,113.158,21.42 +2016-07-18 09:17:00,27.6113,113.272,21.45 +2016-07-18 09:32:00,25.4,113.41,21.51 +2016-07-18 09:47:00,26.765,113.47,21.58 +2016-07-18 10:02:00,25.4975,113.342,21.6 +2016-07-18 10:17:00,26.6237,113.55,21.59 +2016-07-18 10:32:00,26.7162,113.518,21.46 +2016-07-18 10:47:00,26.5212,113.387,21.32 +2016-07-18 11:02:00,26.47,113.462,21.19 +2016-07-18 11:17:00,26.6675,113.31,21.11 +2016-07-18 11:32:00,24.6537,113.22,21.09 +2016-07-18 11:47:00,25.0563,113.462,21.08 +2016-07-18 12:02:00,27.3637,113.265,21.08 +2016-07-18 12:17:00,26.52,113.202,21.1 +2016-07-18 12:32:00,25.5938,113.292,21.12 +2016-07-18 12:47:00,26.9175,113.21,21.16 +2016-07-18 13:02:00,26.1775,113.307,21.16 +2016-07-18 13:17:00,27.2012,113.185,21.17 +2016-07-18 13:32:00,25.0062,113.477,21.18 +2016-07-18 13:47:00,26.2275,113.242,21.21 +2016-07-18 14:02:00,27.06,113.415,21.19 +2016-07-18 14:17:00,27.1588,113.533,21.19 +2016-07-18 14:32:00,27.11,113.492,21.21 +2016-07-18 14:47:00,25.5912,113.605,21.26 +2016-07-18 15:02:00,26.42,113.38,21.28 +2016-07-18 15:17:00,26.2225,113.495,21.31 +2016-07-18 15:32:00,25.8387,113.427,21.32 +2016-07-18 15:47:00,25.6437,113.337,21.3 +2016-07-18 16:02:00,26.8712,113.272,21.31 +2016-07-18 16:17:00,26.4163,113.18,21.32 +2016-07-18 16:32:00,26.225,113.227,21.31 +2016-07-18 16:47:00,27.8525,113.332,21.28 +2016-07-18 17:02:00,26.72,113.387,21.26 +2016-07-18 17:17:00,27.6625,113.298,21.23 +2016-07-18 17:32:00,26.6225,113.395,21.19 +2016-07-18 17:47:00,26.4713,113.427,21.14 +2016-07-18 18:02:00,25.3538,113.742,21.08 +2016-07-18 18:17:00,27.1612,113.815,21.03 +2016-07-18 18:32:00,26.7162,113.95,20.97 +2016-07-18 18:47:00,28.0088,114.077,20.92 +2016-07-18 19:02:00,26.3725,114.2,20.87 +2016-07-18 19:17:00,27.8112,114.262,20.82 +2016-07-18 19:32:00,25.3562,114.307,20.79 +2016-07-18 19:47:00,26.6237,114.352,20.75 +2016-07-18 20:02:00,25.74,114.378,20.71 +2016-07-18 20:17:00,26.4163,114.432,20.67 +2016-07-18 20:32:00,26.52,114.457,20.63 +2016-07-18 20:47:00,28.3075,114.482,20.59 +2016-07-18 21:02:00,26.77,114.512,20.56 +2016-07-18 21:17:00,26.6188,114.482,20.53 +2016-07-18 21:32:00,25.99,114.59,20.5 +2016-07-18 21:47:00,27.665,114.675,20.49 +2016-07-18 22:02:00,27.41,114.742,20.48 +2016-07-18 22:17:00,26.6687,114.825,20.47 +2016-07-18 22:32:00,26.5212,115.06,20.45 +2016-07-18 22:47:00,27.2025,115.07,20.43 +2016-07-18 23:02:00,27.9613,115.12,20.41 +2016-07-18 23:17:00,26.8225,115.16,20.39 +2016-07-18 23:32:00,27.26,115.128,20.38 +2016-07-18 23:47:00,26.96,115.04,20.35 +2016-07-19 00:02:00,26.8688,114.977,20.32 +2016-07-19 00:17:00,27.01,114.967,20.3 +2016-07-19 00:32:00,26.82,114.852,20.28 +2016-07-19 00:47:00,27.5088,114.702,20.27 +2016-07-19 01:02:00,27.36,114.675,20.25 +2016-07-19 01:17:00,26.77,114.66,20.24 +2016-07-19 01:32:00,26.5775,114.545,20.23 +2016-07-19 01:47:00,28.5088,114.467,20.24 +2016-07-19 02:02:00,27.8087,114.417,20.24 +2016-07-19 02:17:00,26.8187,114.47,20.24 +2016-07-19 02:32:00,27.0575,114.378,20.24 +2016-07-19 02:47:00,26.8688,114.292,20.25 +2016-07-19 03:02:00,26.77,114.245,20.25 +2016-07-19 03:17:00,26.1813,114.182,20.26 +2016-07-19 03:32:00,27.3637,114.012,20.25 +2016-07-19 03:47:00,24.7513,113.905,20.23 +2016-07-19 04:02:00,27.5075,113.798,20.24 +2016-07-19 04:17:00,27.1575,113.602,20.23 +2016-07-19 04:32:00,27.8075,113.548,20.24 +2016-07-19 04:47:00,27.41,113.38,20.23 +2016-07-19 05:02:00,26.4225,113.205,20.24 +2016-07-19 05:17:00,28.4137,113.067,20.26 +2016-07-19 05:32:00,25.835,112.99,20.3 +2016-07-19 05:47:00,27.4613,112.87,20.35 +2016-07-19 06:02:00,27.56,112.847,20.39 +2016-07-19 06:17:00,27.2562,112.75,20.44 +2016-07-19 06:32:00,26.465,112.697,20.5 +2016-07-19 06:47:00,27.1038,112.605,20.55 +2016-07-19 07:02:00,26.72,112.582,20.6 +2016-07-19 07:17:00,27.01,112.55,20.66 +2016-07-19 07:32:00,26.3187,112.52,20.69 +2016-07-19 07:47:00,25.0563,112.432,20.76 +2016-07-19 08:02:00,26.175,112.395,20.8 +2016-07-19 08:17:00,26.7175,112.317,20.84 +2016-07-19 08:32:00,26.3688,112.35,20.85 +2016-07-19 08:47:00,26.9662,112.43,20.88 +2016-07-19 09:02:00,26.2275,112.342,20.92 +2016-07-19 09:17:00,26.0825,112.408,20.96 +2016-07-19 09:32:00,24.855,112.45,21.01 +2016-07-19 09:47:00,27.1062,112.385,21.08 +2016-07-19 10:02:00,26.4163,112.423,21.15 +2016-07-19 10:17:00,26.7175,112.408,21.22 +2016-07-19 10:32:00,27.9062,112.212,21.3 +2016-07-19 10:47:00,25.79,112.27,21.38 +2016-07-19 11:02:00,27.405,112.057,21.47 +2016-07-19 11:17:00,28.6987,112.465,21.58 +2016-07-19 11:32:00,26.5662,111.967,21.67 +2016-07-19 11:47:00,26.0387,112.035,21.77 +2016-07-19 12:02:00,26.4212,112.147,21.88 +2016-07-19 12:17:00,28.11,112.057,22.0 +2016-07-19 12:32:00,27.06,112.332,22.04 +2016-07-19 12:47:00,25.74,112.38,22.09 +2016-07-19 13:02:00,27.3112,112.725,22.15 +2016-07-19 13:17:00,27.0563,113.07,22.22 +2016-07-19 13:32:00,24.705,113.415,22.24 +2016-07-19 13:47:00,26.32,113.548,22.28 +2016-07-19 14:02:00,26.08,113.92,22.27 +2016-07-19 14:17:00,25.2537,114.005,22.25 +2016-07-19 14:32:00,25.595,114.15,22.2 +2016-07-19 14:47:00,26.375,114.29,22.2 +2016-07-19 15:02:00,26.4662,114.492,22.17 +2016-07-19 15:17:00,25.935,114.56,22.16 +2016-07-19 15:32:00,26.3213,114.742,22.11 +2016-07-19 15:47:00,25.5425,114.61,22.05 +2016-07-19 16:02:00,25.7925,114.77,22.01 +2016-07-19 16:17:00,26.3225,114.667,21.96 +2016-07-19 16:32:00,28.1663,114.647,21.93 +2016-07-19 16:47:00,26.3262,114.54,21.9 +2016-07-19 17:02:00,25.3962,114.552,21.85 +2016-07-19 17:17:00,26.8175,114.575,21.8 +2016-07-19 17:32:00,25.355,114.572,21.76 +2016-07-19 17:47:00,26.3237,114.495,21.72 +2016-07-19 18:02:00,25.7937,114.375,21.64 +2016-07-19 18:17:00,26.575,114.305,21.58 +2016-07-19 18:32:00,27.015,114.107,21.53 +2016-07-19 18:47:00,27.9062,114.012,21.48 +2016-07-19 19:02:00,25.9912,113.78,21.42 +2016-07-19 19:17:00,27.6637,113.602,21.37 +2016-07-19 19:32:00,26.32,113.39,21.33 +2016-07-19 19:47:00,27.7137,113.075,21.3 +2016-07-19 20:02:00,27.1612,112.802,21.27 +2016-07-19 20:17:00,27.0112,112.655,21.24 +2016-07-19 20:32:00,27.3162,112.487,21.2 +2016-07-19 20:47:00,26.6712,112.3,21.16 +2016-07-19 21:02:00,27.7162,112.242,21.11 +2016-07-19 21:17:00,27.615,112.143,21.03 +2016-07-19 21:32:00,26.6212,112.007,20.96 +2016-07-19 21:47:00,27.21,111.938,20.93 +2016-07-19 22:02:00,27.1113,111.897,20.92 +2016-07-19 22:17:00,26.6225,111.832,20.92 +2016-07-19 22:32:00,28.1687,111.768,20.91 +2016-07-19 22:47:00,26.3712,111.69,20.89 +2016-07-19 23:02:00,26.4187,111.552,20.87 +2016-07-19 23:17:00,26.0362,111.47,20.85 +2016-07-19 23:32:00,26.1338,111.295,20.83 +2016-07-19 23:47:00,27.0137,111.173,20.82 +2016-07-20 00:02:00,26.6237,110.982,20.81 +2016-07-20 00:17:00,26.6237,110.835,20.82 +2016-07-20 00:32:00,24.4137,110.692,20.82 +2016-07-20 00:47:00,25.6488,110.675,20.83 +2016-07-20 01:02:00,24.1087,110.575,20.84 +2016-07-20 01:17:00,23.3288,110.527,20.86 +2016-07-20 01:32:00,27.86,110.475,20.87 +2016-07-20 01:47:00,26.6212,110.51,20.89 +2016-07-20 02:02:00,26.4238,110.497,20.9 +2016-07-20 02:17:00,28.0175,110.452,20.91 +2016-07-20 02:32:00,26.7675,110.408,20.9 +2016-07-20 02:47:00,28.2625,110.405,20.92 +2016-07-20 03:02:00,28.2113,110.33,20.93 +2016-07-20 03:17:00,27.3675,110.285,20.95 +2016-07-20 03:32:00,26.2738,110.22,20.96 +2016-07-20 03:47:00,27.915,110.128,20.97 +2016-07-20 04:02:00,27.965,109.975,20.98 +2016-07-20 04:17:00,26.9625,109.932,20.99 +2016-07-20 04:32:00,27.9088,109.87,21.01 +2016-07-20 04:47:00,27.4662,109.798,21.02 +2016-07-20 05:02:00,27.465,109.768,21.04 +2016-07-20 05:17:00,27.1113,109.802,21.06 +2016-07-20 05:32:00,27.0137,109.81,21.1 +2016-07-20 05:47:00,27.7663,109.777,21.14 +2016-07-20 06:02:00,28.1175,109.777,21.18 +2016-07-20 06:17:00,25.89,109.775,21.22 +2016-07-20 06:32:00,28.4662,109.685,21.27 +2016-07-20 06:47:00,27.615,109.685,21.32 +2016-07-20 07:02:00,26.72,109.673,21.38 +2016-07-20 07:17:00,28.855,109.655,21.44 +2016-07-20 07:32:00,26.5725,109.53,21.5 +2016-07-20 07:47:00,26.5212,109.47,21.57 +2016-07-20 08:02:00,25.7462,109.487,21.64 +2016-07-20 08:17:00,25.7412,109.512,21.71 +2016-07-20 08:32:00,27.5112,109.53,21.79 +2016-07-20 08:47:00,28.4137,109.617,21.87 +2016-07-20 09:02:00,27.5612,109.612,21.96 +2016-07-20 09:17:00,26.1837,109.737,22.05 +2016-07-20 09:32:00,27.8575,109.95,22.14 +2016-07-20 09:47:00,27.2113,109.915,22.22 +2016-07-20 10:02:00,27.4613,109.92,22.33 +2016-07-20 10:17:00,25.3525,109.975,22.42 +2016-07-20 10:32:00,27.5625,109.925,22.49 +2016-07-20 10:47:00,27.7625,110.0,22.58 +2016-07-20 11:02:00,27.3112,109.96,22.66 +2016-07-20 11:17:00,28.5563,109.952,22.75 +2016-07-20 11:32:00,27.4637,110.005,22.81 +2016-07-20 11:47:00,27.0638,109.977,22.89 +2016-07-20 12:02:00,27.0112,110.162,22.94 +2016-07-20 12:17:00,27.4613,110.095,22.98 +2016-07-20 12:32:00,27.9075,110.283,23.04 +2016-07-20 12:47:00,26.9137,110.253,23.04 +2016-07-20 13:02:00,28.9025,110.312,23.09 +2016-07-20 13:17:00,28.4675,110.257,23.1 +2016-07-20 13:32:00,27.5163,110.315,23.1 +2016-07-20 13:47:00,26.7162,110.25,23.13 +2016-07-20 14:02:00,27.2575,110.232,23.13 +2016-07-20 14:17:00,27.41,110.12,23.15 +2016-07-20 14:32:00,26.82,110.202,23.17 +2016-07-20 14:47:00,27.11,110.165,23.17 +2016-07-20 15:02:00,27.4137,110.227,23.17 +2016-07-20 15:17:00,28.4187,110.275,23.18 +2016-07-20 15:32:00,26.2312,110.387,23.16 +2016-07-20 15:47:00,25.9875,110.355,23.15 +2016-07-20 16:02:00,27.665,110.402,23.13 +2016-07-20 16:17:00,27.1612,110.357,23.12 +2016-07-20 16:32:00,28.3613,110.307,23.1 +2016-07-20 16:47:00,26.67,110.265,23.08 +2016-07-20 17:02:00,26.3237,110.22,23.05 +2016-07-20 17:17:00,26.1413,110.102,23.01 +2016-07-20 17:32:00,27.7188,110.14,22.99 +2016-07-20 17:47:00,25.4475,110.087,22.94 +2016-07-20 18:02:00,26.575,110.128,22.9 +2016-07-20 18:17:00,26.9175,110.18,22.86 +2016-07-20 18:32:00,28.5112,110.217,22.83 +2016-07-20 18:47:00,27.01,110.207,22.78 +2016-07-20 19:02:00,27.9163,110.202,22.74 +2016-07-20 19:17:00,28.115,110.21,22.7 +2016-07-20 19:32:00,27.7625,110.175,22.67 +2016-07-20 19:47:00,26.7712,110.105,22.63 +2016-07-20 20:02:00,27.3138,110.033,22.6 +2016-07-20 20:17:00,27.21,109.962,22.57 +2016-07-20 20:32:00,28.6062,109.995,22.54 +2016-07-20 20:47:00,27.9637,110.0,22.5 +2016-07-20 21:02:00,26.6775,110.027,22.48 +2016-07-20 21:17:00,28.7113,110.125,22.45 +2016-07-20 21:32:00,27.41,110.15,22.43 +2016-07-20 21:47:00,27.3112,110.137,22.4 +2016-07-20 22:02:00,26.5225,110.165,22.38 +2016-07-20 22:17:00,27.365,110.145,22.35 +2016-07-20 22:32:00,27.5112,110.085,22.34 +2016-07-20 22:47:00,28.515,110.082,22.32 +2016-07-20 23:02:00,27.6212,110.04,22.31 +2016-07-20 23:17:00,28.6537,110.01,22.3 +2016-07-20 23:32:00,25.8438,110.04,22.3 +2016-07-20 23:47:00,27.1637,109.982,22.29 +2016-07-21 00:02:00,28.2113,110.147,22.28 +2016-07-21 00:17:00,28.0662,110.177,22.29 +2016-07-21 00:32:00,29.1963,110.188,22.29 +2016-07-21 00:47:00,26.8262,110.173,22.29 +2016-07-21 01:02:00,28.9075,110.165,22.28 +2016-07-21 01:17:00,27.9125,110.105,22.27 +2016-07-21 01:32:00,26.6212,110.027,22.27 +2016-07-21 01:47:00,28.3138,109.98,22.26 +2016-07-21 02:02:00,26.9175,109.94,22.26 +2016-07-21 02:17:00,28.4125,109.945,22.27 +2016-07-21 02:32:00,25.8438,109.99,22.28 +2016-07-21 02:47:00,26.4737,110.025,22.27 +2016-07-21 03:02:00,28.8587,110.067,22.27 +2016-07-21 03:17:00,29.1525,110.115,22.26 +2016-07-21 03:32:00,27.665,110.07,22.27 +2016-07-21 03:47:00,29.3862,110.065,22.29 +2016-07-21 04:02:00,28.6025,109.977,22.31 +2016-07-21 04:17:00,28.6575,109.995,22.33 +2016-07-21 04:32:00,29.2038,109.893,22.35 +2016-07-21 04:47:00,27.6212,109.842,22.35 +2016-07-21 05:02:00,28.3112,109.845,22.37 +2016-07-21 05:17:00,28.8063,109.792,22.4 +2016-07-21 05:32:00,26.77,109.765,22.44 +2016-07-21 05:47:00,28.3613,109.817,22.48 +2016-07-21 06:02:00,27.2087,109.81,22.5 +2016-07-21 06:17:00,28.7562,109.852,22.54 +2016-07-21 06:32:00,27.1637,109.855,22.57 +2016-07-21 06:47:00,27.9163,109.805,22.63 +2016-07-21 07:02:00,28.36,109.857,22.68 +2016-07-21 07:17:00,28.215,109.775,22.73 +2016-07-21 07:32:00,27.2663,109.787,22.78 +2016-07-21 07:47:00,28.7575,109.727,22.85 +2016-07-21 08:02:00,27.8087,109.745,22.92 +2016-07-21 08:17:00,27.72,109.647,22.96 +2016-07-21 08:32:00,28.5125,109.692,23.03 +2016-07-21 08:47:00,27.3675,109.73,23.05 +2016-07-21 09:02:00,28.1625,109.75,23.06 +2016-07-21 09:17:00,27.7137,109.768,23.04 +2016-07-21 09:32:00,26.8688,109.77,23.05 +2016-07-21 09:47:00,28.5575,109.798,23.08 +2016-07-21 10:02:00,27.11,109.842,23.09 +2016-07-21 10:17:00,29.205,109.83,23.14 +2016-07-21 10:32:00,28.6575,109.887,23.18 +2016-07-21 10:47:00,28.4137,110.01,23.22 +2016-07-21 11:02:00,27.21,110.052,23.24 +2016-07-21 11:17:00,28.3625,110.042,23.25 +2016-07-21 11:32:00,27.0137,110.042,23.28 +2016-07-21 11:47:00,27.26,110.0,23.3 +2016-07-21 12:02:00,27.6225,110.01,23.31 +2016-07-21 12:17:00,28.7137,110.035,23.32 +2016-07-21 12:32:00,29.1025,109.865,23.34 +2016-07-21 12:47:00,27.7137,109.762,23.37 +2016-07-21 13:02:00,28.5125,109.777,23.4 +2016-07-21 13:17:00,27.6175,109.822,23.43 +2016-07-21 13:32:00,27.5137,109.845,23.51 +2016-07-21 13:47:00,28.0088,109.945,23.6 +2016-07-21 14:02:00,28.4175,109.94,23.65 +2016-07-21 14:17:00,26.875,109.945,23.67 +2016-07-21 14:32:00,28.5075,109.935,23.7 +2016-07-21 14:47:00,28.3625,109.92,23.72 +2016-07-21 15:02:00,27.7125,109.845,23.75 +2016-07-21 15:17:00,26.7687,109.777,23.79 +2016-07-21 15:32:00,25.9875,109.8,23.81 +2016-07-21 15:47:00,28.8538,109.727,23.81 +2016-07-21 16:02:00,29.0575,109.622,23.84 +2016-07-21 16:17:00,27.3125,109.637,23.87 +2016-07-21 16:32:00,29.3425,109.73,23.87 +2016-07-21 16:47:00,28.3138,109.68,23.84 +2016-07-21 17:02:00,27.3675,109.725,23.8 +2016-07-21 17:17:00,28.0112,109.73,23.78 +2016-07-21 17:32:00,27.9088,109.702,23.76 +2016-07-21 17:47:00,28.1162,109.59,23.71 +2016-07-21 18:02:00,27.9112,109.582,23.68 +2016-07-21 18:17:00,27.9112,109.482,23.65 +2016-07-21 18:32:00,29.2513,109.402,23.62 +2016-07-21 18:47:00,28.365,109.375,23.59 +2016-07-21 19:02:00,28.56,109.357,23.55 +2016-07-21 19:17:00,28.3637,109.423,23.52 +2016-07-21 19:32:00,26.625,109.44,23.49 +2016-07-21 19:47:00,28.1188,109.5,23.46 +2016-07-21 20:02:00,27.4662,109.518,23.43 +2016-07-21 20:17:00,28.4662,109.535,23.4 +2016-07-21 20:32:00,27.86,109.565,23.38 +2016-07-21 20:47:00,28.4625,109.515,23.35 +2016-07-21 21:02:00,28.0625,109.48,23.33 +2016-07-21 21:17:00,29.5825,109.438,23.3 +2016-07-21 21:32:00,28.4187,109.372,23.26 +2016-07-21 21:47:00,28.4688,109.34,23.22 +2016-07-21 22:02:00,28.2175,109.375,23.19 +2016-07-21 22:17:00,28.265,109.408,23.16 +2016-07-21 22:32:00,27.9112,109.455,23.13 +2016-07-21 22:47:00,29.0512,109.522,23.09 +2016-07-21 23:02:00,29.73,109.542,23.06 +2016-07-21 23:17:00,29.6312,109.533,23.02 +2016-07-21 23:32:00,28.96,109.525,22.99 +2016-07-21 23:47:00,29.3925,109.497,22.95 +2016-07-22 00:02:00,28.6125,109.435,22.9 +2016-07-22 00:17:00,28.8538,109.425,22.87 +2016-07-22 00:32:00,27.5163,109.38,22.83 +2016-07-22 00:47:00,28.905,109.36,22.79 +2016-07-22 01:02:00,29.1987,109.387,22.77 +2016-07-22 01:17:00,28.9075,109.395,22.74 +2016-07-22 01:32:00,28.3688,109.467,22.71 +2016-07-22 01:47:00,28.5137,109.495,22.69 +2016-07-22 02:02:00,28.2637,109.49,22.67 +2016-07-22 02:17:00,28.8063,109.442,22.65 +2016-07-22 02:32:00,29.0025,109.425,22.63 +2016-07-22 02:47:00,30.1237,109.405,22.6 +2016-07-22 03:02:00,30.3162,109.36,22.56 +2016-07-22 03:17:00,28.0175,109.265,22.54 +2016-07-22 03:32:00,28.8575,109.24,22.51 +2016-07-22 03:47:00,27.7637,109.21,22.49 +2016-07-22 04:02:00,29.1025,109.222,22.47 +2016-07-22 04:17:00,28.7075,109.268,22.45 +2016-07-22 04:32:00,28.9538,109.272,22.44 +2016-07-22 04:47:00,28.955,109.298,22.44 +2016-07-22 05:02:00,28.3175,109.255,22.44 +2016-07-22 05:17:00,29.1087,109.237,22.45 +2016-07-22 05:32:00,28.4688,109.195,22.46 +2016-07-22 05:47:00,27.6162,109.147,22.47 +2016-07-22 06:02:00,28.1675,109.075,22.5 +2016-07-22 06:17:00,29.2,109.075,22.55 +2016-07-22 06:32:00,29.7775,109.077,22.58 +2016-07-22 06:47:00,29.8288,109.05,22.64 +2016-07-22 07:02:00,29.9313,109.082,22.72 +2016-07-22 07:17:00,28.3213,109.055,22.81 +2016-07-22 07:32:00,29.1512,109.072,22.9 +2016-07-22 07:47:00,27.8112,109.09,22.98 +2016-07-22 08:02:00,28.6575,109.057,23.02 +2016-07-22 08:17:00,27.4662,108.992,23.12 +2016-07-22 08:32:00,28.8075,108.962,23.21 +2016-07-22 08:47:00,28.6562,109.003,23.3 +2016-07-22 09:02:00,28.4225,109.057,23.38 +2016-07-22 09:17:00,27.8138,109.082,23.47 +2016-07-22 09:32:00,28.215,109.145,23.57 +2016-07-22 09:47:00,28.1175,109.17,23.65 +2016-07-22 10:02:00,29.5825,109.207,23.72 +2016-07-22 10:17:00,28.465,109.25,23.8 +2016-07-22 10:32:00,29.1975,109.237,23.88 +2016-07-22 10:47:00,28.705,109.225,23.96 +2016-07-22 11:02:00,28.1175,109.177,24.04 +2016-07-22 11:17:00,30.7612,109.175,24.11 +2016-07-22 11:32:00,29.1488,109.182,24.16 +2016-07-22 11:47:00,29.295,109.19,24.21 +2016-07-22 12:02:00,29.1012,109.21,24.25 +2016-07-22 12:17:00,28.7612,109.25,24.31 +2016-07-22 12:32:00,29.2475,109.28,24.36 +2016-07-22 12:47:00,27.8637,109.247,24.38 +2016-07-22 13:02:00,29.4863,109.28,24.4 +2016-07-22 13:17:00,28.705,109.16,24.42 +2016-07-22 13:32:00,28.0638,109.152,24.45 +2016-07-22 13:47:00,28.5175,109.035,24.48 +2016-07-22 14:02:00,28.1175,108.997,24.43 +2016-07-22 14:17:00,27.26,108.965,24.38 +2016-07-22 14:32:00,29.2012,108.932,24.32 +2016-07-22 14:47:00,26.9713,108.975,24.26 +2016-07-22 15:02:00,26.6762,108.995,24.21 +2016-07-22 15:17:00,28.2663,108.99,24.17 +2016-07-22 15:32:00,27.4662,109.005,24.14 +2016-07-22 15:47:00,28.9562,108.985,24.14 +2016-07-22 16:02:00,28.215,109.012,24.2 +2016-07-22 16:17:00,27.7188,109.007,24.37 +2016-07-22 16:32:00,27.1663,108.908,24.51 +2016-07-22 16:47:00,27.9688,109.04,24.65 +2016-07-22 17:02:00,27.62,109.003,24.68 +2016-07-22 17:17:00,29.785,108.932,24.68 +2016-07-22 17:32:00,28.665,108.932,24.7 +2016-07-22 17:47:00,28.5187,108.81,24.69 +2016-07-22 18:02:00,28.71,108.712,24.67 +2016-07-22 18:17:00,30.3613,108.735,24.63 +2016-07-22 18:32:00,28.0675,108.667,24.59 +2016-07-22 18:47:00,27.865,108.643,24.57 +2016-07-22 19:02:00,29.6875,108.57,24.55 +2016-07-22 19:17:00,28.9088,108.503,24.54 +2016-07-22 19:32:00,30.0775,108.495,24.54 +2016-07-22 19:47:00,30.0275,108.435,24.52 +2016-07-22 20:02:00,30.0737,108.387,24.5 +2016-07-22 20:17:00,30.37,108.287,24.47 +2016-07-22 20:32:00,29.155,108.237,24.46 +2016-07-22 20:47:00,26.9225,108.177,24.44 +2016-07-22 21:02:00,28.2162,108.11,24.43 +2016-07-22 21:17:00,27.6687,108.067,24.42 +2016-07-22 21:32:00,28.7562,107.99,24.4 +2016-07-22 21:47:00,28.015,107.96,24.38 +2016-07-22 22:02:00,27.52,107.912,24.36 +2016-07-22 22:17:00,28.665,107.81,24.36 +2016-07-22 22:32:00,28.1212,107.762,24.36 +2016-07-22 22:47:00,28.7625,107.673,24.34 +2016-07-22 23:02:00,29.345,107.61,24.34 +2016-07-22 23:17:00,30.4175,107.497,24.35 +2016-07-22 23:32:00,28.8575,107.432,24.3 +2016-07-22 23:47:00,28.1175,107.322,24.19 +2016-07-23 00:02:00,29.2012,107.237,24.05 +2016-07-23 00:17:00,28.4212,107.155,23.94 +2016-07-23 00:32:00,29.3925,107.05,23.85 +2016-07-23 00:47:00,28.805,106.982,23.79 +2016-07-23 01:02:00,29.64,106.845,23.75 +2016-07-23 01:17:00,29.3913,106.762,23.71 +2016-07-23 01:32:00,29.4863,106.74,23.68 +2016-07-23 01:47:00,28.1687,106.667,23.66 +2016-07-23 02:02:00,29.7875,106.575,23.64 +2016-07-23 02:17:00,28.4675,106.487,23.61 +2016-07-23 02:32:00,28.1687,106.405,23.57 +2016-07-23 02:47:00,28.5625,106.36,23.53 +2016-07-23 03:02:00,30.6663,106.24,23.5 +2016-07-23 03:17:00,30.3675,106.152,23.49 +2016-07-23 03:32:00,28.0638,106.085,23.46 +2016-07-23 03:47:00,28.6087,106.062,23.43 +2016-07-23 04:02:00,29.3937,105.967,23.4 +2016-07-23 04:17:00,29.2075,105.897,23.39 +2016-07-23 04:32:00,30.3162,105.842,23.35 +2016-07-23 04:47:00,31.4012,105.783,23.32 +2016-07-23 05:02:00,30.9987,105.72,23.3 +2016-07-23 05:17:00,32.8763,105.6,23.28 +2016-07-23 05:32:00,30.5612,105.577,23.26 +2016-07-23 05:47:00,27.9163,105.518,23.26 +2016-07-23 06:02:00,29.6362,105.503,23.28 +2016-07-23 06:17:00,27.8625,105.565,23.29 +2016-07-23 06:32:00,30.1725,105.61,23.3 +2016-07-23 06:47:00,28.61,105.587,23.3 +2016-07-23 07:02:00,27.9163,105.552,23.32 +2016-07-23 07:17:00,28.61,105.557,23.33 +2016-07-23 07:32:00,28.3162,105.605,23.36 +2016-07-23 07:47:00,29.5375,105.66,23.41 +2016-07-23 08:02:00,29.3925,105.722,23.42 +2016-07-23 08:17:00,30.2687,105.717,23.4 +2016-07-23 08:32:00,29.4875,105.73,23.38 +2016-07-23 08:47:00,29.0062,105.8,23.35 +2016-07-23 09:02:00,27.2625,105.755,23.36 +2016-07-23 09:17:00,27.2637,105.74,23.36 +2016-07-23 09:32:00,29.105,105.732,23.4 +2016-07-23 09:47:00,29.785,105.737,23.43 +2016-07-23 10:02:00,29.59,105.732,23.46 +2016-07-23 10:17:00,28.61,105.712,23.52 +2016-07-23 10:32:00,28.9088,105.732,23.55 +2016-07-23 10:47:00,29.2513,105.762,23.57 +2016-07-23 11:02:00,29.25,105.685,23.59 +2016-07-23 11:17:00,28.9562,105.69,23.6 +2016-07-23 11:32:00,27.3187,105.675,23.62 +2016-07-23 11:47:00,28.5612,105.632,23.64 +2016-07-23 12:02:00,30.1687,105.617,23.66 +2016-07-23 12:17:00,29.5837,105.617,23.71 +2016-07-23 12:32:00,30.1188,105.612,23.77 +2016-07-23 12:47:00,30.1237,105.6,23.86 +2016-07-23 13:02:00,29.34,105.65,23.94 +2016-07-23 13:17:00,27.8637,105.56,24.07 +2016-07-23 13:32:00,27.815,105.595,24.13 +2016-07-23 13:47:00,28.86,105.518,24.19 +2016-07-23 14:02:00,28.9575,105.592,24.22 +2016-07-23 14:17:00,28.4688,105.555,24.24 +2016-07-23 14:32:00,31.3,105.537,24.26 +2016-07-23 14:47:00,29.9775,105.643,24.28 +2016-07-23 15:02:00,30.5625,105.522,24.29 +2016-07-23 15:17:00,30.17,105.412,24.3 +2016-07-23 15:32:00,28.565,105.615,24.3 +2016-07-23 15:47:00,29.9287,105.645,24.27 +2016-07-23 16:02:00,30.81,105.742,24.23 +2016-07-23 16:17:00,29.6837,105.825,24.2 +2016-07-23 16:32:00,29.0563,105.887,24.16 +2016-07-23 16:47:00,30.4137,105.875,24.15 +2016-07-23 17:02:00,30.4662,105.87,24.13 +2016-07-23 17:17:00,30.6162,105.915,24.12 +2016-07-23 17:32:00,29.2537,105.905,24.1 +2016-07-23 17:47:00,28.2687,105.925,24.09 +2016-07-23 18:02:00,29.7812,105.915,24.05 +2016-07-23 18:17:00,30.0287,105.847,24.01 +2016-07-23 18:32:00,29.9812,105.84,23.96 +2016-07-23 18:47:00,29.4912,105.795,23.91 +2016-07-23 19:02:00,29.4863,105.745,23.87 +2016-07-23 19:17:00,30.47,105.725,23.83 +2016-07-23 19:32:00,29.6862,105.66,23.8 +2016-07-23 19:47:00,30.3187,105.607,23.77 +2016-07-23 20:02:00,29.635,105.585,23.73 +2016-07-23 20:17:00,29.2988,105.518,23.7 +2016-07-23 20:32:00,30.565,105.44,23.66 +2016-07-23 20:47:00,29.5863,105.382,23.64 +2016-07-23 21:02:00,28.81,105.32,23.59 +2016-07-23 21:17:00,27.5725,105.302,23.56 +2016-07-23 21:32:00,27.2687,105.205,23.53 +2016-07-23 21:47:00,30.1237,105.253,23.5 +2016-07-23 22:02:00,29.93,105.255,23.47 +2016-07-23 22:17:00,30.03,105.32,23.43 +2016-07-23 22:32:00,28.9075,105.312,23.4 +2016-07-23 22:47:00,28.2687,105.35,23.37 +2016-07-23 23:02:00,30.27,105.36,23.34 +2016-07-23 23:17:00,30.9112,105.393,23.32 +2016-07-23 23:32:00,28.6125,105.455,23.29 +2016-07-23 23:47:00,31.6012,105.535,23.27 +2016-07-24 00:02:00,30.6663,105.62,23.24 +2016-07-24 00:17:00,30.4137,105.777,23.23 +2016-07-24 00:32:00,29.1537,105.98,23.22 +2016-07-24 00:47:00,28.22,106.128,23.2 +2016-07-24 01:02:00,29.395,106.435,23.19 +2016-07-24 01:17:00,30.7625,106.732,23.16 +2016-07-24 01:32:00,28.0675,107.03,23.13 +2016-07-24 01:47:00,29.58,107.32,23.1 +2016-07-24 02:02:00,28.8587,107.76,23.07 +2016-07-24 02:17:00,29.54,108.235,23.04 +2016-07-24 02:32:00,29.5375,108.665,23.01 +2016-07-24 02:47:00,28.1237,109.16,22.98 +2016-07-24 03:02:00,29.395,109.673,22.95 +2016-07-24 03:17:00,29.0575,110.277,22.92 +2016-07-24 03:32:00,29.5863,110.862,22.9 +2016-07-24 03:47:00,30.715,111.507,22.88 +2016-07-24 04:02:00,30.5625,112.072,22.87 +2016-07-24 04:17:00,29.4875,112.655,22.86 +2016-07-24 04:32:00,30.0312,113.158,22.85 +2016-07-24 04:47:00,29.0088,113.67,22.85 +2016-07-24 05:02:00,31.3012,114.158,22.84 +2016-07-24 05:17:00,30.03,114.655,22.83 +2016-07-24 05:32:00,29.0075,115.12,22.81 +2016-07-24 05:47:00,29.055,115.505,22.79 +2016-07-24 06:02:00,28.4163,115.912,22.79 +2016-07-24 06:17:00,29.9325,116.287,22.79 +2016-07-24 06:32:00,30.665,116.673,22.8 +2016-07-24 06:47:00,29.7875,117.035,22.79 +2016-07-24 07:02:00,29.5325,117.427,22.79 +2016-07-24 07:17:00,28.7062,117.777,22.82 +2016-07-24 07:32:00,29.295,118.137,22.87 +2016-07-24 07:47:00,30.265,118.465,22.92 +2016-07-24 08:02:00,29.6325,118.822,22.98 +2016-07-24 08:17:00,29.7787,119.087,23.03 +2016-07-24 08:32:00,29.25,119.347,23.09 +2016-07-24 08:47:00,29.8325,119.545,23.14 +2016-07-24 09:02:00,30.76,119.75,23.18 +2016-07-24 09:17:00,29.2025,119.952,23.22 +2016-07-24 09:32:00,30.0762,120.155,23.28 +2016-07-24 09:47:00,29.5837,120.245,23.35 +2016-07-24 10:02:00,29.2487,120.38,23.43 +2016-07-24 10:17:00,28.61,120.475,23.47 +2016-07-24 10:32:00,30.9075,120.577,23.58 +2016-07-24 10:47:00,29.2513,120.63,23.68 +2016-07-24 11:02:00,28.905,120.812,23.76 +2016-07-24 11:17:00,29.6312,120.755,23.85 +2016-07-24 11:32:00,29.9287,120.875,23.92 +2016-07-24 11:47:00,28.6575,120.887,23.95 +2016-07-24 12:02:00,29.7325,120.923,23.98 +2016-07-24 12:17:00,29.4887,120.96,24.03 +2016-07-24 12:32:00,30.7637,121.007,23.97 +2016-07-24 12:47:00,29.005,121.02,23.96 +2016-07-24 13:02:00,29.2487,121.042,23.94 +2016-07-24 13:17:00,30.7137,121.0,24.0 +2016-07-24 13:32:00,28.86,121.09,24.0 +2016-07-24 13:47:00,27.3662,121.158,24.02 +2016-07-24 14:02:00,29.3463,121.237,24.02 +2016-07-24 14:17:00,28.315,121.33,24.06 +2016-07-24 14:32:00,29.3363,121.342,24.08 +2016-07-24 14:47:00,29.3438,121.35,24.12 +2016-07-24 15:02:00,29.3913,121.402,24.13 +2016-07-24 15:17:00,31.9962,121.335,24.15 +2016-07-24 15:32:00,28.7588,121.305,24.1 +2016-07-24 15:47:00,28.5638,121.22,24.06 +2016-07-24 16:02:00,29.2038,121.185,24.02 +2016-07-24 16:17:00,30.6188,121.05,24.0 +2016-07-24 16:32:00,28.855,120.99,23.93 +2016-07-24 16:47:00,30.0287,120.9,23.89 +2016-07-24 17:02:00,29.3412,120.827,23.82 +2016-07-24 17:17:00,29.4863,120.747,23.75 +2016-07-24 17:32:00,30.4137,120.65,23.68 +2016-07-24 17:47:00,30.1287,120.545,23.59 +2016-07-24 18:02:00,29.93,120.385,23.53 +2016-07-24 18:17:00,28.47,120.335,23.46 +2016-07-24 18:32:00,29.735,120.287,23.4 +2016-07-24 18:47:00,29.9262,120.215,23.35 +2016-07-24 19:02:00,29.2988,120.105,23.3 +2016-07-24 19:17:00,29.7838,120.112,23.26 +2016-07-24 19:32:00,30.03,120.05,23.24 +2016-07-24 19:47:00,29.4412,120.007,23.24 +2016-07-24 20:02:00,29.0587,119.905,23.23 +2016-07-24 20:17:00,30.0312,119.768,23.22 +2016-07-24 20:32:00,29.1537,119.682,23.21 +2016-07-24 20:47:00,30.0325,119.59,23.22 +2016-07-24 21:02:00,32.0987,119.43,23.23 +2016-07-24 21:17:00,30.4662,119.283,23.23 +2016-07-24 21:32:00,29.535,119.14,23.24 +2016-07-24 21:47:00,29.7862,119.052,23.25 +2016-07-24 22:02:00,30.4688,118.955,23.28 +2016-07-24 22:17:00,31.6975,118.768,23.29 +2016-07-24 22:32:00,30.3175,118.688,23.31 +2016-07-24 22:47:00,30.81,118.582,23.33 +2016-07-24 23:02:00,30.1687,118.555,23.35 +2016-07-24 23:17:00,28.7062,118.362,23.37 +2016-07-24 23:32:00,29.9337,118.257,23.4 +2016-07-24 23:47:00,30.3675,118.135,23.41 +2016-07-25 00:02:00,29.4925,118.075,23.43 +2016-07-25 00:17:00,29.585,117.935,23.44 +2016-07-25 00:32:00,28.855,117.93,23.46 +2016-07-25 00:47:00,28.8087,117.915,23.49 +2016-07-25 01:02:00,30.5163,117.912,23.52 +2016-07-25 01:17:00,31.2487,117.905,23.56 +2016-07-25 01:32:00,29.585,117.857,23.6 +2016-07-25 01:47:00,29.2038,117.805,23.64 +2016-07-25 02:02:00,30.37,117.732,23.67 +2016-07-25 02:17:00,29.8825,117.617,23.7 +2016-07-25 02:32:00,30.5625,117.507,23.71 +2016-07-25 02:47:00,30.2625,117.438,23.73 +2016-07-25 03:02:00,30.9525,117.357,23.74 +2016-07-25 03:17:00,29.6325,117.197,23.73 +2016-07-25 03:32:00,30.1237,117.075,23.72 +2016-07-25 03:47:00,31.75,116.945,23.71 +2016-07-25 04:02:00,31.2513,116.867,23.7 +2016-07-25 04:17:00,31.45,116.735,23.69 +2016-07-25 04:32:00,29.4437,116.612,23.66 +2016-07-25 04:47:00,32.2937,116.475,23.64 +2016-07-25 05:02:00,31.3025,116.3,23.64 +2016-07-25 05:17:00,28.5662,116.197,23.63 +2016-07-25 05:32:00,29.9362,116.1,23.63 +2016-07-25 05:47:00,28.9587,116.062,23.63 +2016-07-25 06:02:00,31.0987,115.908,23.62 +2016-07-25 06:17:00,30.4675,115.85,23.63 +2016-07-25 06:32:00,31.3988,115.798,23.63 +2016-07-25 06:47:00,29.2975,115.688,23.65 +2016-07-25 07:02:00,30.125,115.587,23.68 +2016-07-25 07:17:00,30.665,115.477,23.69 +2016-07-25 07:32:00,30.4175,115.387,23.72 +2016-07-25 07:47:00,29.585,115.337,23.77 +2016-07-25 08:02:00,30.3662,115.21,23.82 +2016-07-25 08:17:00,31.2012,115.257,23.87 +2016-07-25 08:32:00,31.1,115.22,23.92 +2016-07-25 08:47:00,31.05,115.232,23.97 +2016-07-25 09:02:00,31.7,115.32,24.04 +2016-07-25 09:17:00,30.8138,115.332,24.06 +2016-07-25 09:32:00,19.115,115.387,23.31 +2016-07-25 09:47:00,18.4025,115.347,24.15 +2016-07-25 09:55:07,18.34,115.505,24.17 +2016-07-25 10:02:00,17.375,115.375,24.21 +2016-07-25 10:17:00,16.92,115.335,24.26 +2016-07-25 10:32:00,18.9613,115.207,24.29 +2016-07-25 10:47:00,17.36,115.17,24.29 +2016-07-25 11:02:00,16.83,115.11,24.29 +2016-07-25 11:17:00,17.6062,115.035,24.26 +2016-07-25 11:32:00,19.3512,114.865,24.23 +2016-07-25 11:47:00,15.715,114.707,24.31 +2016-07-25 12:02:00,17.9975,114.68,24.42 +2016-07-25 12:17:00,19.2038,114.572,24.52 +2016-07-25 12:32:00,16.105,114.548,24.56 +2016-07-25 12:47:00,18.05,114.41,24.56 +2016-07-25 13:02:00,17.0163,114.28,24.57 +2016-07-25 13:17:00,17.41,114.29,24.59 +2016-07-25 13:32:00,18.8175,114.175,24.59 +2016-07-25 13:47:00,15.1787,114.185,24.58 +2016-07-25 14:02:00,18.9187,114.18,24.62 +2016-07-25 14:17:00,16.8712,114.14,24.64 +2016-07-25 14:32:00,15.1325,114.042,24.64 +2016-07-25 14:47:00,17.2188,113.972,24.64 +2016-07-25 15:02:00,17.8525,113.96,24.63 +2016-07-25 15:17:00,17.8975,113.827,24.62 +2016-07-25 15:32:00,18.3875,113.73,24.61 +2016-07-25 15:47:00,17.8988,113.59,24.6 +2016-07-25 16:02:00,19.3975,113.53,24.6 +2016-07-25 16:17:00,17.6062,113.455,24.58 +2016-07-25 16:32:00,16.0238,113.342,24.55 +2016-07-25 16:47:00,18.68,113.23,24.51 +2016-07-25 17:02:00,16.7825,113.242,24.47 +2016-07-25 17:17:00,18.095,113.167,24.52 +2016-07-25 17:32:00,16.2012,113.027,24.55 +2016-07-25 17:47:00,19.2038,112.962,24.61 +2016-07-25 18:02:00,18.245,112.885,24.62 +2016-07-25 18:17:00,17.4613,112.792,24.64 +2016-07-25 18:30:59,18.675,112.697,24.63 +2016-07-25 18:47:00,18.2438,112.545,24.6 +2016-07-25 19:02:00,17.8487,112.477,24.57 +2016-07-25 19:17:00,17.0675,112.332,24.53 +2016-07-25 19:32:00,16.8275,112.242,24.49 +2016-07-25 19:47:00,18.5275,112.14,24.46 +2016-07-25 20:02:00,18.4337,112.085,24.43 +2016-07-25 20:17:00,16.3988,112.033,24.4 +2016-07-25 20:32:00,18.0037,111.992,24.38 +2016-07-25 20:47:00,16.965,111.917,24.37 +2016-07-25 21:02:00,17.85,113.287,24.27 +2016-07-25 21:17:00,16.295,116.112,24.21 +2016-07-25 21:32:00,17.3613,116.69,23.99 +2016-07-25 21:47:00,21.7862,116.643,24.14 +2016-07-25 22:02:00,18.2975,116.535,24.19 +2016-07-25 22:17:00,18.0488,116.335,24.19 +2016-07-25 22:32:00,19.0175,116.07,24.18 +2016-07-25 22:47:00,17.4125,115.8,24.19 +2016-07-25 23:02:00,19.7425,115.548,24.17 +2016-07-25 23:17:00,21.7887,115.35,24.12 +2016-07-25 23:32:00,21.74,115.222,24.09 +2016-07-25 23:47:00,19.7962,115.087,24.09 +2016-07-26 00:02:00,19.5037,114.93,24.09 +2016-07-26 00:17:00,18.68,114.86,24.1 +2016-07-26 00:32:00,18.9675,114.717,24.09 +2016-07-26 00:47:00,18.4775,114.64,24.08 +2016-07-26 01:02:00,18.8225,114.518,24.07 +2016-07-26 01:17:00,17.8525,114.37,24.04 +2016-07-26 01:32:00,20.52,114.175,24.04 +2016-07-26 01:47:00,16.4938,114.115,24.05 +2016-07-26 02:02:00,16.98,114.033,24.05 +2016-07-26 02:17:00,19.5125,113.82,24.06 +2016-07-26 02:32:00,17.61,113.675,24.06 +2016-07-26 02:47:00,18.9713,113.595,24.07 +2016-07-26 03:02:00,16.3975,113.628,24.08 +2016-07-26 03:17:00,18.1937,113.585,24.08 +2016-07-26 03:32:00,17.3637,113.385,24.07 +2016-07-26 03:47:00,16.2012,113.417,24.08 +2016-07-26 04:02:00,18.6287,113.165,24.06 +2016-07-26 04:17:00,18.245,113.195,24.07 +2016-07-26 04:32:00,19.6437,113.13,24.07 +2016-07-26 04:47:00,17.1663,112.942,24.09 +2016-07-26 05:02:00,18.43,112.847,24.09 +2016-07-26 05:17:00,16.9187,112.857,24.1 +2016-07-26 05:32:00,16.7375,112.622,24.15 +2016-07-26 05:47:00,20.3787,112.452,24.17 +2016-07-26 06:02:00,18.1937,112.408,24.19 +2016-07-26 06:17:00,18.4812,112.27,24.2 +2016-07-26 06:32:00,18.3875,112.145,24.25 +2016-07-26 06:47:00,18.2962,112.07,24.3 +2016-07-26 07:02:00,16.49,111.927,24.35 +2016-07-26 07:17:00,17.705,111.887,24.39 +2016-07-26 07:32:00,17.415,111.787,24.43 +2016-07-26 07:47:00,17.3675,111.622,24.45 +2016-07-26 08:02:00,17.555,111.427,24.46 +2016-07-26 08:17:00,21.1012,111.397,24.47 +2016-07-26 08:32:00,16.395,111.217,24.47 +2016-07-26 08:47:00,15.4713,111.067,24.46 +2016-07-26 09:02:00,17.95,110.9,24.49 +2016-07-26 09:17:00,17.5575,110.795,24.58 +2016-07-26 09:32:00,18.3412,110.69,24.69 +2016-07-26 09:47:00,17.3187,110.707,24.78 +2016-07-26 10:02:00,18.5762,110.712,24.83 +2016-07-26 10:17:00,18.1437,110.647,24.82 +2016-07-26 10:32:00,18.0013,110.832,24.87 +2016-07-26 10:47:00,16.965,110.62,24.96 +2016-07-26 11:02:00,17.7537,110.628,25.04 +2016-07-26 11:17:00,17.8063,110.787,25.14 +2016-07-26 11:32:00,17.0687,110.637,25.24 +2016-07-26 11:47:00,18.53,110.705,25.33 +2016-07-26 12:02:00,19.1612,110.617,25.38 +2016-07-26 12:17:00,18.6287,110.46,25.38 +2016-07-26 12:32:00,17.5112,110.427,25.41 +2016-07-26 12:47:00,17.9487,110.305,25.46 +2016-07-26 13:02:00,18.92,110.23,25.51 +2016-07-26 13:17:00,16.9725,110.2,25.55 +2016-07-26 13:32:00,19.0225,110.022,25.54 +2016-07-26 13:47:00,16.1012,110.042,25.54 +2016-07-26 14:02:00,17.3125,109.96,25.54 +2016-07-26 14:17:00,19.745,109.89,25.54 +2016-07-26 14:32:00,16.5888,110.052,25.54 +2016-07-26 14:47:00,17.9025,110.185,25.53 +2016-07-26 15:02:00,20.2312,110.067,25.55 +2016-07-26 15:17:00,17.9037,109.89,25.55 +2016-07-26 15:32:00,15.4725,109.96,25.55 +2016-07-26 15:47:00,20.13,109.912,25.54 +2016-07-26 16:02:00,18.6263,109.757,25.53 +2016-07-26 16:17:00,18.3875,109.707,25.5 +2016-07-26 16:32:00,17.0662,109.562,25.48 +2016-07-26 16:47:00,16.7412,109.417,25.45 +2016-07-26 17:02:00,18.6963,109.4,25.4 +2016-07-26 17:17:00,16.15,109.408,25.36 +2016-07-26 17:32:00,18.2975,109.332,25.32 +2016-07-26 17:47:00,16.82,109.345,25.29 +2016-07-26 18:02:00,16.9175,109.37,25.23 +2016-07-26 18:17:00,17.11,109.352,25.15 +2016-07-26 18:32:00,18.5287,109.277,25.08 +2016-07-26 18:47:00,16.3,109.247,25.03 +2016-07-26 19:02:00,17.265,109.137,24.91 +2016-07-26 19:17:00,18.6762,109.067,24.74 +2016-07-26 19:32:00,17.1625,108.92,24.59 +2016-07-26 19:47:00,15.1837,108.757,24.5 +2016-07-26 20:02:00,17.9987,108.717,24.43 +2016-07-26 20:17:00,16.7812,108.652,24.39 +2016-07-26 20:32:00,17.65,108.57,24.36 +2016-07-26 20:47:00,18.8237,108.575,24.32 +2016-07-26 21:02:00,18.83,108.555,24.27 +2016-07-26 21:17:00,19.6937,108.512,24.23 +2016-07-26 21:32:00,16.4437,108.49,24.19 +2016-07-26 21:47:00,19.4975,108.525,24.14 +2016-07-26 22:02:00,18.7725,108.503,24.09 +2016-07-26 22:17:00,17.3075,108.427,24.06 +2016-07-26 22:32:00,14.8288,108.37,24.02 +2016-07-26 22:47:00,17.5762,108.337,23.98 +2016-07-26 23:02:00,18.9837,108.257,23.94 +2016-07-26 23:17:00,19.6637,108.155,23.9 +2016-07-26 23:32:00,17.7675,108.082,23.88 +2016-07-26 23:47:00,17.61,108.005,23.85 +2016-07-27 00:02:00,18.4362,107.992,23.84 +2016-07-27 00:17:00,20.8063,107.97,23.81 +2016-07-27 00:32:00,18.345,107.985,23.79 +2016-07-27 00:47:00,18.15,108.037,23.76 +2016-07-27 01:02:00,19.1162,108.037,23.74 +2016-07-27 01:17:00,18.875,108.092,23.7 +2016-07-27 01:32:00,18.3838,108.075,23.68 +2016-07-27 01:47:00,17.9013,108.152,23.67 +2016-07-27 02:02:00,18.5312,108.065,23.64 +2016-07-27 02:17:00,18.0013,108.03,23.61 +2016-07-27 02:32:00,17.8538,107.98,23.57 +2016-07-27 02:47:00,20.0325,107.927,23.55 +2016-07-27 03:02:00,18.34,107.83,23.52 +2016-07-27 03:17:00,20.1325,107.85,23.5 +2016-07-27 03:32:00,18.095,107.82,23.48 +2016-07-27 03:47:00,17.9975,107.783,23.46 +2016-07-27 04:02:00,18.1925,107.837,23.44 +2016-07-27 04:17:00,17.0187,107.847,23.43 +2016-07-27 04:32:00,18.7787,107.885,23.41 +2016-07-27 04:47:00,18.7787,108.007,23.41 +2016-07-27 05:02:00,18.0013,108.02,23.41 +2016-07-27 05:17:00,19.745,108.015,23.4 +2016-07-27 05:32:00,16.9662,107.997,23.39 +2016-07-27 05:47:00,18.4837,107.972,23.39 +2016-07-27 06:02:00,18.145,107.938,23.4 +2016-07-27 06:17:00,19.1625,107.857,23.4 +2016-07-27 06:32:00,17.705,107.87,23.42 +2016-07-27 06:47:00,16.87,107.867,23.44 +2016-07-27 07:02:00,19.0687,107.885,23.46 +2016-07-27 07:17:00,18.8712,107.81,23.47 +2016-07-27 07:32:00,17.7025,107.815,23.5 +2016-07-27 07:47:00,19.0137,107.783,23.54 +2016-07-27 08:02:00,18.625,107.768,23.61 +2016-07-27 08:17:00,19.3012,107.735,23.69 +2016-07-27 08:32:00,18.7775,107.72,23.76 +2016-07-27 08:47:00,19.2038,107.647,23.84 +2016-07-27 09:02:00,18.3412,107.702,23.87 +2016-07-27 09:17:00,20.08,107.783,23.93 +2016-07-27 09:32:00,19.02,107.89,23.99 +2016-07-27 09:47:00,18.9688,107.925,24.06 +2016-07-27 10:02:00,19.2562,108.065,24.09 +2016-07-27 10:17:00,18.3412,108.06,24.23 +2016-07-27 10:32:00,17.7,108.188,24.17 +2016-07-27 10:47:00,17.8012,108.247,24.13 +2016-07-27 11:02:00,18.8688,108.31,24.06 +2016-07-27 11:17:00,19.1125,108.305,24.01 +2016-07-27 11:32:00,15.8587,108.3,24.05 +2016-07-27 11:47:00,18.4313,108.31,24.06 +2016-07-27 12:02:00,18.435,108.357,24.06 +2016-07-27 12:17:00,18.7738,108.27,24.04 +2016-07-27 12:32:00,19.6937,108.352,24.01 +2016-07-27 12:47:00,18.9662,108.37,23.98 +2016-07-27 13:02:00,17.4587,108.4,24.03 +2016-07-27 13:17:00,20.9,108.507,24.06 +2016-07-27 13:32:00,17.7975,108.688,24.05 +2016-07-27 13:47:00,17.7025,108.88,24.03 +2016-07-27 14:02:00,17.515,108.982,24.0 +2016-07-27 14:17:00,19.8925,109.087,23.99 +2016-07-27 14:32:00,17.7,109.188,23.99 +2016-07-27 14:47:00,17.75,109.44,23.98 +2016-07-27 15:02:00,18.43,109.662,24.0 +2016-07-27 15:17:00,18.2913,109.807,24.05 +2016-07-27 15:32:00,17.1612,109.992,24.06 +2016-07-27 15:47:00,18.9713,110.275,24.08 +2016-07-27 16:02:00,18.9212,110.487,24.08 +2016-07-27 16:17:00,18.5737,110.575,24.09 +2016-07-27 16:32:00,18.8213,111.005,24.1 +2016-07-27 16:47:00,18.1937,111.275,24.09 +2016-07-27 17:02:00,17.3625,111.5,24.07 +2016-07-27 17:17:00,18.7738,111.77,24.07 +2016-07-27 17:32:00,17.9525,112.0,24.07 +2016-07-27 17:47:00,19.5975,112.162,24.05 +2016-07-27 18:02:00,19.355,112.268,24.02 +2016-07-27 18:17:00,19.2075,112.322,23.98 +2016-07-27 18:32:00,20.1287,112.33,23.95 +2016-07-27 18:47:00,16.685,112.365,23.92 +2016-07-27 19:02:00,19.02,112.372,23.88 +2016-07-27 19:17:00,18.5238,112.247,23.85 +2016-07-27 19:32:00,18.3438,112.292,23.82 +2016-07-27 19:47:00,20.2812,112.31,23.79 +2016-07-27 20:02:00,18.3838,112.345,23.75 +2016-07-27 20:17:00,18.8737,112.367,23.72 +2016-07-27 20:32:00,16.49,112.347,23.68 +2016-07-27 20:47:00,18.5287,112.375,23.64 +2016-07-27 21:02:00,18.295,112.322,23.6 +2016-07-27 21:17:00,18.2925,112.265,23.57 +2016-07-27 21:32:00,18.8787,112.188,23.54 +2016-07-27 21:47:00,18.0062,112.095,23.5 +2016-07-27 22:02:00,19.1625,112.01,23.47 +2016-07-27 22:17:00,18.6275,111.787,23.44 +2016-07-27 22:32:00,19.7937,111.665,23.41 +2016-07-27 22:47:00,18.0013,111.485,23.38 +2016-07-27 23:02:00,18.0475,111.408,23.34 +2016-07-27 23:17:00,18.7787,111.3,23.31 +2016-07-27 23:32:00,20.1825,111.242,23.28 +2016-07-27 23:47:00,17.8975,111.21,23.25 +2016-07-28 00:02:00,19.0713,111.152,23.21 +2016-07-28 00:17:00,21.79,111.09,23.18 +2016-07-28 00:32:00,18.8725,111.085,23.12 +2016-07-28 00:47:00,18.145,110.997,23.07 +2016-07-28 01:02:00,22.1287,110.887,23.02 +2016-07-28 01:17:00,19.1588,110.775,22.97 +2016-07-28 01:32:00,18.7275,110.632,22.92 +2016-07-28 01:47:00,19.6475,110.518,22.87 +2016-07-28 02:02:00,19.4512,110.465,22.81 +2016-07-28 02:17:00,20.0325,110.285,22.75 +2016-07-28 02:32:00,20.8037,110.177,22.69 +2016-07-28 02:47:00,19.205,110.117,22.64 +2016-07-28 03:02:00,20.8575,110.07,22.59 +2016-07-28 03:17:00,20.035,110.097,22.53 +2016-07-28 03:32:00,19.7425,110.077,22.48 +2016-07-28 03:47:00,20.3275,110.12,22.43 +2016-07-28 04:02:00,18.095,110.155,22.4 +2016-07-28 04:17:00,19.7425,110.212,22.36 +2016-07-28 04:32:00,20.175,110.195,22.33 +2016-07-28 04:47:00,19.9362,110.19,22.3 +2016-07-28 05:02:00,18.7262,110.195,22.28 +2016-07-28 05:17:00,19.8412,110.12,22.26 +2016-07-28 05:32:00,20.175,110.092,22.26 +2016-07-28 05:47:00,19.9313,110.062,22.26 +2016-07-28 06:02:00,20.1775,110.012,22.26 +2016-07-28 06:17:00,20.3288,110.015,22.27 +2016-07-28 06:32:00,20.5675,110.033,22.31 +2016-07-28 06:47:00,21.2975,110.033,22.31 +2016-07-28 07:02:00,20.375,110.117,22.32 +2016-07-28 07:17:00,19.4025,110.135,22.36 +2016-07-28 07:32:00,22.035,110.055,22.39 +2016-07-28 07:47:00,19.35,110.22,22.43 +2016-07-28 08:02:00,19.2062,110.232,22.49 +2016-07-28 08:17:00,21.2937,110.292,22.55 +2016-07-28 08:32:00,20.4225,110.4,22.65 +2016-07-28 08:47:00,19.255,110.472,22.72 +2016-07-28 09:02:00,18.6287,110.682,22.75 +2016-07-28 09:17:00,20.8475,110.76,22.73 +2016-07-28 09:32:00,20.1287,110.737,22.7 +2016-07-28 09:47:00,20.2262,110.745,22.67 +2016-07-28 10:02:00,19.1125,110.737,22.66 +2016-07-28 10:17:00,19.9325,110.86,22.73 +2016-07-28 10:32:00,22.9975,110.805,22.79 +2016-07-28 10:47:00,19.5025,110.715,22.89 +2016-07-28 11:02:00,20.665,110.732,22.99 +2016-07-28 11:17:00,18.4275,110.665,23.09 +2016-07-28 11:32:00,21.0488,110.695,23.19 +2016-07-28 11:47:00,19.1562,110.977,23.24 +2016-07-28 12:02:00,20.8487,111.033,23.23 +2016-07-28 12:17:00,19.595,111.117,23.24 +2016-07-28 12:32:00,21.15,111.188,23.28 +2016-07-28 12:47:00,18.3875,111.11,23.31 +2016-07-28 13:02:00,21.8875,111.27,23.35 +2016-07-28 13:17:00,21.8887,111.268,23.35 +2016-07-28 13:32:00,22.9525,111.185,23.37 +2016-07-28 13:47:00,20.8988,111.245,23.41 +2016-07-28 14:02:00,19.2038,111.135,23.46 +2016-07-28 14:17:00,19.4475,111.215,23.48 +2016-07-28 14:32:00,20.7588,111.21,23.51 +2016-07-28 14:47:00,19.8425,111.315,23.51 +2016-07-28 15:02:00,20.175,111.385,23.5 +2016-07-28 15:17:00,20.3725,111.503,23.51 +2016-07-28 15:32:00,21.1012,111.572,23.51 +2016-07-28 15:47:00,20.3237,111.637,23.52 +2016-07-28 16:02:00,18.4788,111.777,23.54 +2016-07-28 16:17:00,19.16,111.795,23.55 +2016-07-28 16:32:00,21.495,111.837,23.52 +2016-07-28 16:47:00,20.0825,111.917,23.49 +2016-07-28 17:02:00,19.7925,111.972,23.44 +2016-07-28 17:17:00,20.325,111.962,23.39 +2016-07-28 17:32:00,19.2975,112.035,23.33 +2016-07-28 17:47:00,23.0925,111.992,23.27 +2016-07-28 18:02:00,19.8887,111.997,23.21 +2016-07-28 18:17:00,19.7925,111.917,23.17 +2016-07-28 18:32:00,20.3312,111.967,23.15 +2016-07-28 18:47:00,17.4613,111.992,23.14 +2016-07-28 19:02:00,21.2,112.027,23.12 +2016-07-28 19:17:00,20.375,112.158,23.1 +2016-07-28 19:32:00,19.2075,112.185,23.07 +2016-07-28 19:47:00,21.295,112.232,23.05 +2016-07-28 20:02:00,19.3012,112.21,23.04 +2016-07-28 20:17:00,20.9975,112.188,23.02 +2016-07-28 20:32:00,20.03,112.107,23.01 +2016-07-28 20:47:00,18.2438,112.09,22.99 +2016-07-28 21:02:00,20.1263,111.95,22.97 +2016-07-28 21:17:00,20.7525,112.087,22.95 +2016-07-28 21:32:00,18.4788,112.485,22.94 +2016-07-28 21:47:00,19.2975,113.027,22.91 +2016-07-28 22:02:00,20.2775,113.402,22.86 +2016-07-28 22:17:00,19.5512,113.55,22.84 +2016-07-28 22:32:00,20.8037,113.688,22.85 +2016-07-28 22:47:00,19.3975,114.12,22.83 +2016-07-28 23:02:00,20.6612,114.962,22.81 +2016-07-28 23:17:00,19.5925,116.753,22.75 +2016-07-28 23:32:00,19.4962,118.762,22.67 +2016-07-28 23:47:00,19.9325,119.197,22.53 +2016-07-29 00:02:00,21.4013,119.272,22.6 +2016-07-29 00:17:00,22.0325,119.135,22.59 +2016-07-29 00:32:00,20.1775,118.96,22.57 +2016-07-29 00:47:00,18.5287,118.72,22.51 +2016-07-29 01:02:00,23.2387,118.555,22.45 +2016-07-29 01:17:00,20.2237,118.367,22.38 +2016-07-29 01:32:00,19.3975,118.272,22.37 +2016-07-29 01:47:00,21.4475,118.23,22.37 +2016-07-29 02:02:00,19.8937,118.125,22.38 +2016-07-29 02:17:00,19.89,118.037,22.39 +2016-07-29 02:32:00,18.92,117.957,22.37 +2016-07-29 02:47:00,19.1137,117.865,22.34 +2016-07-29 03:02:00,20.8037,117.762,22.31 +2016-07-29 03:17:00,18.625,117.65,22.29 +2016-07-29 03:32:00,21.05,117.592,22.26 +2016-07-29 03:47:00,21.5925,117.39,22.24 +2016-07-29 04:02:00,20.2812,117.182,22.22 +2016-07-29 04:17:00,20.85,117.045,22.2 +2016-07-29 04:32:00,20.7537,116.862,22.18 +2016-07-29 04:47:00,21.3937,116.632,22.15 +2016-07-29 05:02:00,19.6437,116.447,22.15 +2016-07-29 05:17:00,21.2925,116.202,22.13 +2016-07-29 05:32:00,18.4775,116.065,22.12 +2016-07-29 05:47:00,19.745,115.84,22.12 +2016-07-29 06:02:00,19.695,115.777,22.13 +2016-07-29 06:17:00,20.1263,115.48,22.16 +2016-07-29 06:32:00,20.5662,115.38,22.16 +2016-07-29 06:47:00,22.2687,115.13,22.15 +2016-07-29 07:02:00,20.0812,114.93,22.21 +2016-07-29 07:17:00,22.9538,114.74,22.26 +2016-07-29 07:32:00,19.7438,114.475,22.29 +2016-07-29 07:47:00,20.47,114.237,22.3 +2016-07-29 08:02:00,20.47,114.042,22.33 +2016-07-29 08:17:00,21.6862,113.905,22.38 +2016-07-29 08:32:00,20.3737,113.56,22.41 +2016-07-29 08:47:00,20.28,113.57,22.46 +2016-07-29 09:02:00,21.49,113.34,22.5 +2016-07-29 09:17:00,18.145,113.235,22.5 +2016-07-29 09:32:00,20.1287,113.182,22.47 +2016-07-29 09:47:00,20.9025,112.945,22.47 +2016-07-29 10:02:00,21.0975,112.707,22.48 +2016-07-29 10:17:00,20.9938,112.705,22.54 +2016-07-29 10:32:00,19.2513,112.658,22.65 +2016-07-29 10:47:00,19.9337,112.495,22.79 +2016-07-29 11:02:00,20.7562,112.48,22.81 +2016-07-29 11:17:00,21.6413,112.628,22.87 +2016-07-29 11:32:00,21.25,112.675,22.96 +2016-07-29 11:47:00,17.655,112.31,23.03 +2016-07-29 12:02:00,20.6637,112.082,23.05 +2016-07-29 12:17:00,21.6875,112.01,23.01 +2016-07-29 12:32:00,20.5163,112.04,23.04 +2016-07-29 12:47:00,19.3988,111.702,23.13 +2016-07-29 13:02:00,22.0312,111.837,23.18 +2016-07-29 13:17:00,19.02,111.557,23.17 +2016-07-29 13:32:00,21.4487,111.595,23.18 +2016-07-29 13:47:00,20.945,111.43,23.2 +2016-07-29 14:02:00,18.1413,111.52,23.2 +2016-07-29 14:17:00,17.8975,111.435,23.19 +2016-07-29 14:32:00,20.2775,111.452,23.16 +2016-07-29 14:47:00,20.945,111.577,23.15 +2016-07-29 15:02:00,20.9463,111.607,23.14 +2016-07-29 15:17:00,18.0,111.48,23.13 +2016-07-29 15:32:00,20.95,111.362,23.14 +2016-07-29 15:47:00,17.1087,111.59,23.12 +2016-07-29 16:02:00,18.3838,111.402,23.14 +2016-07-29 16:17:00,18.8225,111.317,23.15 +2016-07-29 16:32:00,19.35,111.272,23.14 +2016-07-29 16:47:00,19.645,111.395,23.15 +2016-07-29 17:02:00,18.625,111.18,23.16 +2016-07-29 17:17:00,19.55,111.3,23.15 +2016-07-29 17:32:00,20.9487,111.22,23.12 +2016-07-29 17:47:00,18.0462,111.327,23.08 +2016-07-29 18:02:00,19.2038,111.217,23.02 +2016-07-29 18:17:00,20.4212,111.237,22.97 +2016-07-29 18:32:00,18.9163,111.455,22.94 +2016-07-29 18:47:00,18.7275,111.505,22.9 +2016-07-29 19:02:00,19.5488,111.602,22.86 +2016-07-29 19:17:00,20.6188,111.735,22.83 +2016-07-29 19:32:00,17.405,111.855,22.8 +2016-07-29 19:47:00,18.4762,111.812,22.77 +2016-07-29 20:02:00,19.35,111.815,22.73 +2016-07-29 20:17:00,20.7062,111.962,22.69 +2016-07-29 20:32:00,21.685,112.087,22.65 +2016-07-29 20:47:00,18.295,112.082,22.62 +2016-07-29 21:02:00,20.9487,112.167,22.61 +2016-07-29 21:17:00,21.1488,112.17,22.6 +2016-07-29 21:32:00,18.1413,112.285,22.57 +2016-07-29 21:47:00,18.4275,112.405,22.53 +2016-07-29 22:02:00,19.2038,112.545,22.49 +2016-07-29 22:17:00,19.795,112.712,22.47 +2016-07-29 22:32:00,20.2275,112.822,22.43 +2016-07-29 22:47:00,21.1987,112.917,22.39 +2016-07-29 23:02:00,20.4713,112.957,22.36 +2016-07-29 23:17:00,18.6237,113.0,22.33 +2016-07-29 23:32:00,19.1562,113.087,22.32 +2016-07-29 23:47:00,19.4437,113.143,22.31 +2016-07-30 00:02:00,19.1113,113.152,22.28 +2016-07-30 00:17:00,17.6025,113.255,22.25 +2016-07-30 00:32:00,20.3725,113.283,22.22 +2016-07-30 00:47:00,19.2087,113.402,22.2 +2016-07-30 01:02:00,19.8913,113.397,22.18 +2016-07-30 01:17:00,17.4613,113.467,22.17 +2016-07-30 01:32:00,20.515,113.662,22.17 +2016-07-30 01:47:00,19.7438,113.78,22.16 +2016-07-30 02:02:00,20.42,113.81,22.13 +2016-07-30 02:17:00,18.9175,113.765,22.09 +2016-07-30 02:32:00,18.5287,113.807,22.05 +2016-07-30 02:47:00,17.56,113.73,22.03 +2016-07-30 03:02:00,19.395,113.695,22.01 +2016-07-30 03:17:00,19.395,113.8,21.99 +2016-07-30 03:32:00,20.0312,113.842,21.98 +2016-07-30 03:47:00,19.11,113.95,21.96 +2016-07-30 04:02:00,19.8363,114.02,21.94 +2016-07-30 04:17:00,19.8887,114.107,21.94 +2016-07-30 04:32:00,19.9837,114.105,21.93 +2016-07-30 04:47:00,18.3838,114.09,21.92 +2016-07-30 05:02:00,19.9788,114.06,21.9 +2016-07-30 05:17:00,18.3812,114.072,21.88 +2016-07-30 05:32:00,18.4262,114.105,21.86 +2016-07-30 05:47:00,18.6225,114.06,21.83 +2016-07-30 06:02:00,19.295,114.033,21.8 +2016-07-30 06:17:00,19.1137,113.98,21.78 +2016-07-30 06:32:00,19.8875,113.927,21.75 +2016-07-30 06:47:00,20.0275,113.875,21.72 +2016-07-30 07:02:00,18.82,113.87,21.68 +2016-07-30 07:17:00,18.67,113.685,21.66 +2016-07-30 07:32:00,18.4262,113.785,21.64 +2016-07-30 07:47:00,21.635,113.73,21.63 +2016-07-30 08:02:00,17.1075,113.625,21.63 +2016-07-30 08:17:00,20.52,113.64,21.64 +2016-07-30 08:32:00,19.205,113.775,21.65 +2016-07-30 08:47:00,19.8838,113.832,21.64 +2016-07-30 09:02:00,19.9788,113.76,21.66 +2016-07-30 09:17:00,19.2038,113.73,21.67 +2016-07-30 09:32:00,18.77,113.592,21.71 +2016-07-30 09:47:00,18.0425,113.482,21.77 +2016-07-30 10:02:00,22.3637,113.382,21.79 +2016-07-30 10:17:00,20.8487,113.312,21.81 +2016-07-30 10:32:00,21.5425,113.27,21.83 +2016-07-30 10:47:00,18.0425,113.322,21.9 +2016-07-30 11:02:00,18.8237,113.335,22.03 +2016-07-30 11:17:00,20.4187,113.382,22.18 +2016-07-30 11:32:00,16.915,113.242,22.33 +2016-07-30 11:47:00,20.8962,113.253,22.43 +2016-07-30 12:02:00,18.7725,113.225,22.45 +2016-07-30 12:17:00,18.82,113.147,22.49 +2016-07-30 12:32:00,18.5737,112.942,22.53 +2016-07-30 12:47:00,20.2213,112.86,22.58 +2016-07-30 13:02:00,19.7387,112.71,22.57 +2016-07-30 13:17:00,19.93,112.565,22.59 +2016-07-30 13:32:00,17.0112,112.62,22.62 +2016-07-30 13:47:00,19.2012,112.655,22.64 +2016-07-30 14:02:00,20.8475,112.742,22.6 +2016-07-30 14:17:00,19.2975,112.61,22.57 +2016-07-30 14:32:00,19.7925,112.423,22.62 +2016-07-30 14:47:00,20.2213,112.35,22.67 +2016-07-30 15:02:00,18.6275,112.215,22.67 +2016-07-30 15:17:00,18.04,112.115,22.66 +2016-07-30 15:32:00,18.0362,111.897,22.65 +2016-07-30 15:47:00,19.7425,111.97,22.64 +2016-07-30 16:02:00,17.9487,112.102,22.59 +2016-07-30 16:17:00,20.8012,112.018,22.55 +2016-07-30 16:32:00,20.1762,112.003,22.52 +2016-07-30 16:47:00,18.8662,111.942,22.49 +2016-07-30 17:02:00,18.1425,112.02,22.46 +2016-07-30 17:17:00,21.0975,111.92,22.41 +2016-07-30 17:32:00,19.7375,111.702,22.37 +2016-07-30 17:47:00,18.2937,111.622,22.33 +2016-07-30 18:02:00,18.3388,111.62,22.27 +2016-07-30 18:17:00,18.9137,111.59,22.22 +2016-07-30 18:32:00,18.9638,111.457,22.19 +2016-07-30 18:47:00,17.1038,111.423,22.15 +2016-07-30 19:02:00,19.545,111.505,22.12 +2016-07-30 19:17:00,19.2513,111.452,22.08 +2016-07-30 19:32:00,19.1113,111.342,22.03 +2016-07-30 19:47:00,18.34,111.287,21.99 +2016-07-30 20:02:00,19.3012,111.217,21.95 +2016-07-30 20:17:00,18.045,111.048,21.91 +2016-07-30 20:32:00,19.2475,110.965,21.87 +2016-07-30 20:47:00,17.6475,110.8,21.83 +2016-07-30 21:02:00,17.8475,110.815,21.8 +2016-07-30 21:17:00,20.3688,110.753,21.77 +2016-07-30 21:32:00,18.915,110.65,21.72 +2016-07-30 21:47:00,18.575,110.6,21.7 +2016-07-30 22:02:00,18.5263,110.562,21.68 +2016-07-30 22:17:00,20.66,110.438,21.68 +2016-07-30 22:32:00,19.0625,110.345,21.65 +2016-07-30 22:47:00,19.1537,110.202,21.61 +2016-07-30 23:02:00,20.4225,110.147,21.57 +2016-07-30 23:17:00,19.9788,110.117,21.54 +2016-07-30 23:32:00,17.7988,110.085,21.52 +2016-07-30 23:47:00,17.8,110.042,21.51 +2016-07-31 00:02:00,19.0625,109.997,21.49 +2016-07-31 00:17:00,19.065,109.942,21.49 +2016-07-31 00:32:00,18.3363,109.862,21.46 +2016-07-31 00:47:00,20.5612,109.798,21.43 +2016-07-31 01:02:00,20.32,109.707,21.42 +2016-07-31 01:17:00,19.8388,109.615,21.4 +2016-07-31 01:32:00,17.2125,109.503,21.4 +2016-07-31 01:47:00,18.52,109.452,21.42 +2016-07-31 02:02:00,19.2,109.352,21.42 +2016-07-31 02:17:00,19.0625,109.39,21.42 +2016-07-31 02:32:00,19.11,109.432,21.43 +2016-07-31 02:47:00,19.4412,109.412,21.44 +2016-07-31 03:02:00,19.8838,109.423,21.43 +2016-07-31 03:17:00,20.1762,109.337,21.43 +2016-07-31 03:32:00,17.4062,109.307,21.42 +2016-07-31 03:47:00,18.24,109.307,21.41 +2016-07-31 04:02:00,18.4262,109.17,21.4 +2016-07-31 04:17:00,19.4412,109.185,21.38 +2016-07-31 04:32:00,20.325,109.08,21.37 +2016-07-31 04:47:00,20.4163,109.042,21.36 +2016-07-31 05:02:00,19.5963,108.942,21.36 +2016-07-31 05:17:00,16.0075,108.957,21.36 +2016-07-31 05:32:00,18.3388,108.9,21.36 +2016-07-31 05:47:00,18.5713,108.925,21.36 +2016-07-31 06:02:00,18.335,108.86,21.39 +2016-07-31 06:17:00,22.0325,108.852,21.4 +2016-07-31 06:32:00,18.8175,108.76,21.44 +2016-07-31 06:47:00,17.9925,108.865,21.45 +2016-07-31 07:02:00,19.3975,108.807,21.48 +2016-07-31 07:17:00,15.8112,108.755,21.49 +2016-07-31 07:32:00,18.7675,108.732,21.5 +2016-07-31 07:47:00,19.8825,108.667,21.51 +2016-07-31 08:02:00,18.0437,108.632,21.55 +2016-07-31 08:17:00,20.1263,108.665,21.61 +2016-07-31 08:32:00,18.38,108.655,21.68 +2016-07-31 08:47:00,20.2725,108.65,21.78 +2016-07-31 09:02:00,21.49,108.73,21.88 +2016-07-31 09:17:00,19.9325,108.69,21.94 +2016-07-31 09:32:00,19.4925,108.61,22.0 +2016-07-31 09:47:00,19.5413,108.73,22.07 +2016-07-31 10:02:00,19.545,108.555,22.09 +2016-07-31 10:17:00,21.5362,108.537,22.08 +2016-07-31 10:32:00,18.1387,108.503,22.04 +2016-07-31 10:47:00,22.5125,108.435,22.03 +2016-07-31 11:02:00,21.6375,108.317,21.99 +2016-07-31 11:17:00,18.1888,108.355,21.94 +2016-07-31 11:32:00,20.6137,108.47,21.88 +2016-07-31 11:47:00,18.9587,108.423,21.91 +2016-07-31 12:02:00,19.9325,108.467,21.96 +2016-07-31 12:17:00,20.3688,108.387,21.98 +2016-07-31 12:32:00,19.1588,108.495,22.0 +2016-07-31 12:47:00,18.2975,108.325,21.97 +2016-07-31 13:02:00,18.7225,108.242,21.94 +2016-07-31 13:17:00,19.1087,108.217,21.88 +2016-07-31 13:32:00,19.7862,108.232,21.88 +2016-07-31 13:47:00,18.1862,108.143,21.84 +2016-07-31 14:02:00,18.285,108.052,21.84 +2016-07-31 14:17:00,18.8675,108.175,21.85 +2016-07-31 14:32:00,19.11,108.087,21.86 +2016-07-31 14:47:00,19.4475,108.152,21.87 +2016-07-31 15:02:00,21.5875,108.25,21.86 +2016-07-31 15:17:00,20.8463,108.197,21.84 +2016-07-31 15:32:00,20.37,108.36,21.84 +2016-07-31 15:47:00,18.8675,108.45,21.81 +2016-07-31 16:02:00,17.795,108.255,21.76 +2016-07-31 16:17:00,18.4287,108.237,21.72 +2016-07-31 16:32:00,21.0512,108.37,21.7 +2016-07-31 16:47:00,19.2513,108.35,21.67 +2016-07-31 17:02:00,19.2025,108.245,21.63 +2016-07-31 17:17:00,19.01,108.283,21.57 +2016-07-31 17:32:00,18.6188,108.36,21.52 +2016-07-31 17:47:00,19.1113,108.48,21.49 +2016-07-31 18:02:00,17.505,108.46,21.44 +2016-07-31 18:17:00,20.3675,108.537,21.41 +2016-07-31 18:32:00,18.7712,108.535,21.37 +2016-07-31 18:47:00,18.0462,108.567,21.31 +2016-07-31 19:02:00,18.1387,108.47,21.26 +2016-07-31 19:17:00,20.27,108.575,21.21 +2016-07-31 19:32:00,19.9313,108.423,21.18 +2016-07-31 19:47:00,20.225,108.505,21.15 +2016-07-31 20:02:00,20.5137,108.385,21.12 +2016-07-31 20:17:00,18.34,108.435,21.1 +2016-07-31 20:32:00,18.4275,108.612,21.08 +2016-07-31 20:47:00,20.075,108.69,21.05 +2016-07-31 21:02:00,19.9812,108.697,21.03 +2016-07-31 21:17:00,19.5925,108.882,21.0 +2016-07-31 21:32:00,19.2988,108.77,20.98 +2016-07-31 21:47:00,20.75,108.775,20.98 +2016-07-31 22:02:00,19.06,108.727,20.95 +2016-07-31 22:17:00,19.1113,108.702,20.93 +2016-07-31 22:32:00,18.3838,108.667,20.91 +2016-07-31 22:47:00,19.3975,108.61,20.89 +2016-07-31 23:02:00,21.395,108.66,20.88 +2016-07-31 23:17:00,17.795,108.798,20.87 +2016-07-31 23:32:00,20.9887,108.688,20.85 +2016-07-31 23:47:00,19.9762,108.795,20.82 +2016-08-01 00:02:00,18.0488,108.76,20.8 +2016-08-01 00:17:00,20.2275,108.697,20.77 +2016-08-01 00:32:00,19.6912,108.677,20.74 +2016-08-01 00:47:00,19.6937,108.64,20.7 +2016-08-01 01:02:00,19.8375,108.507,20.66 +2016-08-01 01:17:00,19.2,108.42,20.62 +2016-08-01 01:32:00,20.415,108.423,20.58 +2016-08-01 01:47:00,20.1738,108.315,20.55 +2016-08-01 02:02:00,17.6537,108.355,20.51 +2016-08-01 02:17:00,18.5263,108.382,20.48 +2016-08-01 02:32:00,21.5837,108.39,20.45 +2016-08-01 02:47:00,17.0587,108.432,20.41 +2016-08-01 03:02:00,19.9313,108.357,20.38 +2016-08-01 03:17:00,20.515,108.347,20.35 +2016-08-01 03:32:00,19.4437,108.253,20.32 +2016-08-01 03:47:00,19.2025,108.165,20.3 +2016-08-01 04:02:00,21.585,108.077,20.27 +2016-08-01 04:17:00,21.7375,107.957,20.24 +2016-08-01 04:32:00,19.69,107.957,20.22 +2016-08-01 04:47:00,18.8175,107.912,20.2 +2016-08-01 05:02:00,20.22,108.05,20.19 +2016-08-01 05:17:00,20.515,108.07,20.16 +2016-08-01 05:32:00,19.8862,108.16,20.16 +2016-08-01 05:47:00,19.0625,108.022,20.16 +2016-08-01 06:02:00,19.84,108.01,20.18 +2016-08-01 06:17:00,20.5625,108.112,20.21 +2016-08-01 06:32:00,20.3237,108.055,20.22 +2016-08-01 06:47:00,21.3925,107.893,20.24 +2016-08-01 07:02:00,20.2162,107.96,20.26 +2016-08-01 07:17:00,20.8438,108.022,20.25 +2016-08-01 07:32:00,20.2213,108.05,20.25 +2016-08-01 07:47:00,19.9788,107.925,20.27 +2016-08-01 08:02:00,19.885,107.967,20.33 +2016-08-01 08:17:00,17.8412,108.003,20.36 +2016-08-01 08:32:00,19.8825,108.003,20.39 +2016-08-01 08:47:00,21.7787,107.967,20.42 +2016-08-01 09:02:00,19.3388,107.965,20.5 +2016-08-01 09:17:00,20.6087,107.872,20.63 +2016-08-01 09:32:00,20.075,107.872,20.68 +2016-08-01 09:47:00,18.095,107.975,20.75 +2016-08-01 10:02:00,21.145,107.71,20.81 +2016-08-01 10:17:00,20.0737,107.658,20.88 +2016-08-01 10:32:00,19.9725,107.79,20.92 +2016-08-01 10:47:00,22.6525,107.645,20.95 +2016-08-01 11:02:00,20.46,107.71,21.02 +2016-08-01 11:17:00,21.4375,107.822,21.03 +2016-08-01 11:32:00,19.1087,107.895,21.04 +2016-08-01 11:47:00,22.0275,108.085,21.12 +2016-08-01 12:02:00,19.9262,107.592,21.22 +2016-08-01 12:17:00,19.9737,107.812,21.27 +2016-08-01 12:32:00,20.4625,108.0,21.31 +2016-08-01 12:47:00,18.3325,108.052,21.3 +2016-08-01 13:02:00,19.2887,108.182,21.26 +2016-08-01 13:17:00,19.5425,108.292,21.27 +2016-08-01 13:32:00,21.9325,108.522,21.21 +2016-08-01 13:47:00,21.6375,108.405,21.18 +2016-08-01 14:02:00,20.9875,108.542,21.16 +2016-08-01 14:17:00,21.485,108.562,21.17 +2016-08-01 14:32:00,21.7312,108.807,21.17 +2016-08-01 14:47:00,20.32,108.917,21.16 +2016-08-01 15:02:00,21.5837,108.995,21.16 +2016-08-01 15:17:00,19.6413,109.162,21.17 +2016-08-01 15:32:00,21.6375,109.222,21.16 +2016-08-01 15:47:00,19.0125,109.342,21.15 +2016-08-01 16:02:00,19.8862,109.52,21.16 +2016-08-01 16:17:00,19.5387,109.685,21.16 +2016-08-01 16:32:00,18.7687,109.887,21.15 +2016-08-01 16:47:00,22.1762,110.158,21.13 +2016-08-01 17:02:00,20.7,110.455,21.09 +2016-08-01 17:17:00,21.4437,110.662,21.05 +2016-08-01 17:32:00,20.3725,110.995,21.01 +2016-08-01 17:47:00,19.93,111.25,20.97 +2016-08-01 18:02:00,20.0725,111.512,20.92 +2016-08-01 18:17:00,20.415,111.712,20.87 +2016-08-01 18:32:00,21.145,111.91,20.81 +2016-08-01 18:47:00,20.1225,112.145,20.75 +2016-08-01 19:02:00,20.1725,112.287,20.69 +2016-08-01 19:17:00,21.295,112.432,20.64 +2016-08-01 19:32:00,19.2975,112.617,20.59 +2016-08-01 19:47:00,18.865,112.97,20.52 +2016-08-01 20:02:00,21.8838,113.075,20.47 +2016-08-01 20:17:00,20.6562,113.467,20.45 +2016-08-01 20:32:00,18.375,113.602,20.41 +2016-08-01 20:47:00,18.3325,113.722,20.36 +2016-08-01 21:02:00,20.75,113.727,20.32 +2016-08-01 21:17:00,20.7513,113.885,20.29 +2016-08-01 21:32:00,19.105,113.927,20.26 +2016-08-01 21:47:00,19.3438,113.977,20.22 +2016-08-01 22:02:00,20.12,113.99,20.19 +2016-08-01 22:17:00,18.9625,113.997,20.17 +2016-08-01 22:32:00,19.6862,114.107,20.15 +2016-08-01 22:47:00,19.1488,114.315,20.14 +2016-08-01 23:02:00,22.9962,114.375,20.11 +2016-08-01 23:17:00,19.5938,114.325,20.09 +2016-08-01 23:32:00,19.5425,114.395,20.07 +2016-08-01 23:47:00,22.5088,114.4,20.04 +2016-08-02 00:02:00,19.0088,114.432,20.03 +2016-08-02 00:17:00,19.1575,114.367,20.0 +2016-08-02 00:32:00,20.8438,114.295,19.98 +2016-08-02 00:47:00,16.7325,114.18,19.95 +2016-08-02 01:02:00,19.8862,114.125,19.93 +2016-08-02 01:17:00,20.8438,114.057,19.91 +2016-08-02 01:32:00,20.4662,114.037,19.88 +2016-08-02 01:47:00,21.7337,114.112,19.87 +2016-08-02 02:02:00,18.4662,114.025,19.85 +2016-08-02 02:17:00,21.6312,113.975,19.84 +2016-08-02 02:32:00,21.2913,113.87,19.82 +2016-08-02 02:47:00,19.15,113.792,19.8 +2016-08-02 03:02:00,21.6338,113.632,19.79 +2016-08-02 03:17:00,21.585,113.495,19.76 +2016-08-02 03:32:00,18.91,113.35,19.74 +2016-08-02 03:47:00,20.0238,113.35,19.73 +2016-08-02 04:02:00,20.2213,113.21,19.71 +2016-08-02 04:17:00,18.2375,113.158,19.7 +2016-08-02 04:32:00,20.3213,113.192,19.69 +2016-08-02 04:47:00,20.2213,113.08,19.68 +2016-08-02 05:02:00,19.295,113.185,19.66 +2016-08-02 05:17:00,19.4912,113.132,19.66 +2016-08-02 05:32:00,19.9262,113.1,19.66 +2016-08-02 05:47:00,21.9262,113.012,19.66 +2016-08-02 06:02:00,21.0912,112.872,19.66 +2016-08-02 06:17:00,19.3412,112.827,19.66 +2016-08-02 06:32:00,21.4412,112.68,19.67 +2016-08-02 06:47:00,20.9425,112.64,19.67 +2016-08-02 07:02:00,19.7325,112.535,19.68 +2016-08-02 07:17:00,22.17,112.447,19.69 +2016-08-02 07:32:00,22.61,112.447,19.71 +2016-08-02 07:47:00,20.5587,112.375,19.73 +2016-08-02 08:02:00,20.265,112.327,19.75 +2016-08-02 08:17:00,19.0575,112.265,19.78 +2016-08-02 08:32:00,19.8838,112.27,19.83 +2016-08-02 08:47:00,21.1413,112.265,19.87 +2016-08-02 09:02:00,21.4362,112.37,19.89 +2016-08-02 09:17:00,20.7913,112.332,19.95 +2016-08-02 09:32:00,20.46,112.44,20.01 +2016-08-02 09:47:00,22.0275,112.277,20.06 +2016-08-02 10:02:00,22.025,112.115,20.06 +2016-08-02 10:17:00,20.3712,112.143,20.05 +2016-08-02 10:32:00,18.19,112.042,20.05 +2016-08-02 10:47:00,18.5175,111.97,20.06 +2016-08-02 11:02:00,20.5587,111.795,20.1 +2016-08-02 11:17:00,20.265,111.79,20.13 +2016-08-02 11:32:00,19.835,111.82,20.13 +2016-08-02 11:47:00,21.3388,111.677,20.13 +2016-08-02 12:02:00,21.3363,111.685,20.14 +2016-08-02 12:17:00,17.9962,111.615,20.17 +2016-08-02 12:32:00,22.2663,111.562,20.22 +2016-08-02 12:47:00,18.8625,111.505,20.25 +2016-08-02 13:02:00,22.9912,111.352,20.27 +2016-08-02 13:17:00,22.0725,111.2,20.3 +2016-08-02 13:32:00,21.4375,111.365,20.35 +2016-08-02 13:47:00,19.9737,111.242,20.4 +2016-08-02 14:02:00,18.09,111.28,20.44 +2016-08-02 14:17:00,20.5163,111.28,20.44 +2016-08-02 14:32:00,21.1937,111.262,20.41 +2016-08-02 14:47:00,18.9125,111.192,20.39 +2016-08-02 15:02:00,20.0737,111.165,20.39 +2016-08-02 15:17:00,20.0212,111.015,20.38 +2016-08-02 15:32:00,20.7025,110.972,20.36 +2016-08-02 15:47:00,18.185,110.847,20.33 +2016-08-02 16:02:00,21.0387,110.837,20.33 +2016-08-02 16:17:00,21.5362,110.78,20.32 +2016-08-02 16:32:00,20.0175,110.847,20.31 +2016-08-02 16:47:00,20.1675,110.882,20.28 +2016-08-02 17:02:00,21.5325,110.89,20.25 +2016-08-02 17:17:00,19.835,110.792,20.22 +2016-08-02 17:32:00,17.5,110.73,20.18 +2016-08-02 17:47:00,17.4013,110.7,20.15 +2016-08-02 18:02:00,19.7887,110.535,20.13 +2016-08-02 18:17:00,17.7425,110.465,20.11 +2016-08-02 18:32:00,21.5775,110.387,20.09 +2016-08-02 18:47:00,19.3887,110.298,20.06 +2016-08-02 19:02:00,19.6862,110.255,20.02 +2016-08-02 19:17:00,19.445,110.22,19.99 +2016-08-02 19:32:00,18.7162,110.195,19.95 +2016-08-02 19:47:00,22.8512,110.237,19.91 +2016-08-02 20:02:00,19.7387,110.225,19.88 +2016-08-02 20:17:00,20.0725,110.143,19.85 +2016-08-02 20:32:00,20.5625,110.143,19.81 +2016-08-02 20:47:00,20.655,110.02,19.78 +2016-08-02 21:02:00,20.8925,109.952,19.75 +2016-08-02 21:17:00,19.7862,109.847,19.72 +2016-08-02 21:32:00,19.7337,109.72,19.69 +2016-08-02 21:47:00,21.7862,109.677,19.67 +2016-08-02 22:02:00,19.3487,109.632,19.64 +2016-08-02 22:17:00,20.6087,109.615,19.62 +2016-08-02 22:32:00,20.84,109.645,19.6 +2016-08-02 22:47:00,19.3937,109.67,19.58 +2016-08-02 23:02:00,20.6575,109.662,19.56 +2016-08-02 23:17:00,19.7825,109.57,19.54 +2016-08-02 23:32:00,21.29,109.562,19.52 +2016-08-02 23:47:00,21.8325,109.445,19.5 +2016-08-03 00:02:00,19.2975,109.387,19.49 +2016-08-03 00:17:00,20.0725,109.34,19.48 +2016-08-03 00:32:00,21.09,109.245,19.48 +2016-08-03 00:47:00,22.7475,109.117,19.47 +2016-08-03 01:02:00,19.5387,109.13,19.45 +2016-08-03 01:17:00,21.5338,109.115,19.44 +2016-08-03 01:32:00,19.5912,109.102,19.42 +2016-08-03 01:47:00,19.645,109.132,19.41 +2016-08-03 02:02:00,19.0137,109.065,19.4 +2016-08-03 02:17:00,23.13,109.065,19.38 +2016-08-03 02:32:00,20.6162,109.022,19.37 +2016-08-03 02:47:00,21.9275,108.932,19.35 +2016-08-03 03:02:00,20.3187,108.897,19.33 +2016-08-03 03:17:00,19.4912,108.783,19.3 +2016-08-03 03:32:00,20.1312,108.705,19.29 +2016-08-03 03:47:00,21.045,108.65,19.28 +2016-08-03 04:02:00,21.8312,108.67,19.27 +2016-08-03 04:17:00,20.94,108.695,19.27 +2016-08-03 04:32:00,18.9587,108.647,19.27 +2016-08-03 04:47:00,21.5825,108.64,19.28 +2016-08-03 05:02:00,17.99,108.682,19.29 +2016-08-03 05:17:00,19.5425,108.677,19.31 +2016-08-03 05:32:00,20.7012,108.617,19.32 +2016-08-03 05:47:00,19.6862,108.455,19.33 +2016-08-03 06:02:00,20.3662,108.55,19.33 +2016-08-03 06:17:00,19.8363,108.455,19.33 +2016-08-03 06:32:00,18.57,108.59,19.34 +2016-08-03 06:47:00,19.6375,108.447,19.36 +2016-08-03 07:02:00,19.7875,108.44,19.37 +2016-08-03 07:17:00,20.275,108.472,19.39 +2016-08-03 07:32:00,18.6712,108.35,19.42 +2016-08-03 07:47:00,18.5225,108.132,19.46 +2016-08-03 08:02:00,20.3637,108.215,19.51 +2016-08-03 08:17:00,19.7325,108.32,19.53 +2016-08-03 08:32:00,20.3175,108.365,19.57 +2016-08-03 08:47:00,19.5888,108.34,19.58 +2016-08-03 09:02:00,19.4938,108.357,19.58 +2016-08-03 09:17:00,20.9412,108.467,19.59 +2016-08-03 09:32:00,21.39,108.47,19.63 +2016-08-03 09:47:00,20.6113,108.552,19.72 +2016-08-03 10:02:00,21.24,108.595,19.79 +2016-08-03 10:17:00,19.2425,108.427,19.82 +2016-08-03 10:32:00,19.9762,108.275,19.84 +2016-08-03 10:47:00,21.1362,108.272,19.83 +2016-08-03 11:02:00,21.4437,108.36,19.83 +2016-08-03 11:17:00,20.9437,108.292,19.84 +2016-08-03 11:32:00,22.3112,108.477,19.87 +2016-08-03 11:47:00,22.1712,108.552,19.92 +2016-08-03 12:02:00,20.5125,108.6,19.97 +2016-08-03 12:17:00,22.0775,108.518,20.0 +2016-08-03 12:32:00,20.7038,108.643,20.02 +2016-08-03 12:47:00,20.3187,108.477,20.05 +2016-08-03 13:02:00,19.2975,108.542,20.1 +2016-08-03 13:17:00,21.4475,108.455,20.13 +2016-08-03 13:32:00,20.5137,108.607,20.15 +2016-08-03 13:47:00,21.8825,108.352,20.17 +2016-08-03 14:02:00,19.2937,108.643,20.2 +2016-08-03 14:17:00,20.1237,108.55,20.23 +2016-08-03 14:32:00,20.7475,108.725,20.22 +2016-08-03 14:47:00,20.1738,108.83,20.21 +2016-08-03 15:02:00,21.3425,109.075,20.21 +2016-08-03 15:17:00,19.7875,109.24,20.21 +2016-08-03 15:32:00,20.365,109.37,20.21 +2016-08-03 15:47:00,19.4362,109.55,20.2 +2016-08-03 16:02:00,21.58,109.783,20.19 +2016-08-03 16:17:00,19.7875,109.93,20.18 +2016-08-03 16:32:00,20.1212,110.065,20.16 +2016-08-03 16:47:00,19.3937,110.23,20.15 +2016-08-03 17:02:00,20.7487,110.485,20.13 +2016-08-03 17:17:00,21.4863,110.658,20.12 +2016-08-03 17:32:00,21.6325,110.79,20.11 +2016-08-03 17:47:00,19.295,110.925,20.1 +2016-08-03 18:02:00,18.91,111.042,20.08 +2016-08-03 18:17:00,20.6087,111.1,20.06 +2016-08-03 18:32:00,20.2725,111.107,20.04 +2016-08-03 18:47:00,21.0938,111.105,20.03 +2016-08-03 19:02:00,20.5638,111.15,20.01 +2016-08-03 19:17:00,19.8812,111.082,19.99 +2016-08-03 19:32:00,21.2363,111.107,19.97 +2016-08-03 19:47:00,20.5625,111.085,19.94 +2016-08-03 20:02:00,20.8,111.165,19.9 +2016-08-03 20:17:00,20.1212,111.12,19.87 +2016-08-03 20:32:00,20.7062,111.16,19.85 +2016-08-03 20:47:00,22.03,111.22,19.84 +2016-08-03 21:02:00,20.99,111.182,19.83 +2016-08-03 21:17:00,20.465,111.132,19.81 +2016-08-03 21:32:00,20.7062,110.98,19.8 +2016-08-03 21:47:00,20.8438,110.927,19.8 +2016-08-03 22:02:00,22.4575,110.765,19.79 +2016-08-03 22:17:00,20.4638,110.68,19.79 +2016-08-03 22:32:00,20.2712,110.645,19.77 +2016-08-03 22:47:00,20.2725,110.552,19.75 +2016-08-03 23:02:00,19.25,110.655,19.74 +2016-08-03 23:17:00,20.705,110.595,19.72 +2016-08-03 23:32:00,21.0425,110.487,19.71 +2016-08-03 23:47:00,21.7862,110.49,19.71 +2016-08-04 00:02:00,21.1937,110.415,19.71 +2016-08-04 00:17:00,21.4925,110.255,19.71 +2016-08-04 00:32:00,18.5225,110.21,19.7 +2016-08-04 00:47:00,21.0437,110.175,19.69 +2016-08-04 01:02:00,20.9412,109.972,19.68 +2016-08-04 01:17:00,21.83,110.022,19.67 +2016-08-04 01:32:00,20.1225,109.93,19.66 +2016-08-04 01:47:00,19.1525,109.91,19.66 +2016-08-04 02:02:00,20.6087,109.967,19.65 +2016-08-04 02:17:00,20.8463,109.87,19.65 +2016-08-04 02:32:00,20.0737,109.865,19.64 +2016-08-04 02:47:00,19.64,109.735,19.62 +2016-08-04 03:02:00,20.8463,109.63,19.61 +2016-08-04 03:17:00,20.3688,109.635,19.59 +2016-08-04 03:32:00,21.4875,109.55,19.57 +2016-08-04 03:47:00,20.7962,109.535,19.56 +2016-08-04 04:02:00,22.6588,109.475,19.55 +2016-08-04 04:17:00,20.8962,109.475,19.55 +2016-08-04 04:32:00,20.7062,109.577,19.56 +2016-08-04 04:47:00,22.36,109.582,19.57 +2016-08-04 05:02:00,20.9437,109.57,19.57 +2016-08-04 05:17:00,21.34,109.54,19.58 +2016-08-04 05:32:00,17.695,109.415,19.59 +2016-08-04 05:47:00,19.7337,109.35,19.6 +2016-08-04 06:02:00,20.1738,109.298,19.6 +2016-08-04 06:17:00,23.3838,109.177,19.61 +2016-08-04 06:32:00,19.8838,109.17,19.63 +2016-08-04 06:47:00,18.52,109.09,19.64 +2016-08-04 07:02:00,19.1987,109.067,19.66 +2016-08-04 07:17:00,20.6562,108.923,19.64 +2016-08-04 07:32:00,18.7675,108.805,19.64 +2016-08-04 07:47:00,21.4837,108.775,19.64 +2016-08-04 08:02:00,22.0312,108.675,19.67 +2016-08-04 08:17:00,22.4613,108.765,19.7 +2016-08-04 08:32:00,20.7012,108.792,19.72 +2016-08-04 08:47:00,20.4112,108.857,19.72 +2016-08-04 09:02:00,22.125,108.737,19.69 +2016-08-04 09:17:00,21.4375,108.895,19.67 +2016-08-04 09:32:00,18.8138,108.737,19.69 +2016-08-04 09:47:00,17.7937,108.762,19.71 +2016-08-04 10:02:00,20.9925,108.77,19.72 +2016-08-04 10:17:00,18.2375,108.62,19.72 +2016-08-04 10:32:00,20.845,108.59,19.72 +2016-08-04 10:47:00,20.6575,108.455,19.71 +2016-08-04 11:02:00,20.0225,108.457,19.7 +2016-08-04 11:17:00,21.0912,108.503,19.69 +2016-08-04 11:32:00,21.8825,108.505,19.68 +2016-08-04 11:47:00,19.9825,108.572,19.68 +2016-08-04 12:02:00,24.2137,108.565,19.7 +2016-08-04 12:17:00,19.6413,108.635,19.73 +2016-08-04 12:32:00,20.37,108.675,19.76 +2016-08-04 12:47:00,22.6562,108.783,19.78 +2016-08-04 13:02:00,21.5812,108.93,19.79 +2016-08-04 13:17:00,21.2937,108.88,19.79 +2016-08-04 13:32:00,19.1113,108.897,19.8 +2016-08-04 13:47:00,19.495,108.975,19.8 +2016-08-04 14:02:00,17.4062,108.967,19.81 +2016-08-04 14:17:00,20.6562,108.927,19.83 +2016-08-04 14:32:00,23.4762,109.007,19.84 +2016-08-04 14:47:00,20.56,108.865,19.84 +2016-08-04 15:02:00,21.44,108.857,19.86 +2016-08-04 15:17:00,20.0737,108.875,19.89 +2016-08-04 15:32:00,19.7862,108.85,19.94 +2016-08-04 15:47:00,19.9337,108.957,19.98 +2016-08-04 16:02:00,21.93,108.987,20.0 +2016-08-04 16:17:00,17.5488,109.067,19.99 +2016-08-04 16:32:00,22.4075,109.1,19.95 +2016-08-04 16:47:00,22.6525,109.107,19.91 +2016-08-04 17:02:00,23.13,108.975,19.89 +2016-08-04 17:17:00,22.6062,108.96,19.88 +2016-08-04 17:32:00,19.79,108.875,19.87 +2016-08-04 17:47:00,18.8662,108.81,19.86 +2016-08-04 18:02:00,19.345,108.855,19.84 +2016-08-04 18:17:00,20.4638,108.88,19.82 +2016-08-04 18:32:00,21.5338,108.93,19.8 +2016-08-04 18:47:00,23.0863,109.007,19.79 +2016-08-04 19:02:00,20.4625,109.007,19.77 +2016-08-04 19:17:00,21.3438,109.0,19.75 +2016-08-04 19:32:00,21.395,108.945,19.71 +2016-08-04 19:47:00,20.795,108.908,19.69 +2016-08-04 20:02:00,19.8363,108.917,19.67 +2016-08-04 20:17:00,21.1362,108.882,19.64 +2016-08-04 20:32:00,20.7012,108.795,19.61 +2016-08-04 20:47:00,18.8625,108.812,19.58 +2016-08-04 21:02:00,22.0737,108.783,19.56 +2016-08-04 21:17:00,18.9625,108.88,19.54 +2016-08-04 21:32:00,20.4163,108.935,19.53 +2016-08-04 21:47:00,19.6888,108.952,19.52 +2016-08-04 22:02:00,19.8337,108.96,19.5 +2016-08-04 22:17:00,20.7513,108.945,19.47 +2016-08-04 22:32:00,24.7075,108.935,19.44 +2016-08-04 22:47:00,20.12,108.93,19.4 +2016-08-04 23:02:00,22.7025,108.915,19.37 +2016-08-04 23:17:00,20.1275,108.927,19.34 +2016-08-04 23:32:00,19.6925,108.955,19.31 +2016-08-04 23:47:00,21.6837,109.107,19.3 +2016-08-05 00:02:00,21.9788,109.145,19.28 +2016-08-05 00:17:00,21.8325,109.182,19.26 +2016-08-05 00:32:00,16.9587,109.245,19.24 +2016-08-05 00:47:00,22.0737,109.227,19.22 +2016-08-05 01:02:00,22.1738,109.195,19.2 +2016-08-05 01:17:00,21.4425,109.215,19.17 +2016-08-05 01:32:00,19.6338,109.152,19.13 +2016-08-05 01:47:00,20.2687,109.155,19.09 +2016-08-05 02:02:00,20.8438,109.122,19.06 +2016-08-05 02:17:00,21.4375,109.125,19.04 +2016-08-05 02:32:00,20.4613,109.165,19.03 +2016-08-05 02:47:00,21.3412,109.253,19.02 +2016-08-05 03:02:00,20.2237,109.29,19.01 +2016-08-05 03:17:00,21.98,109.292,19.0 +2016-08-05 03:32:00,21.8312,109.327,18.98 +2016-08-05 03:47:00,20.3675,109.312,18.97 +2016-08-05 04:02:00,23.0875,109.207,18.95 +2016-08-05 04:17:00,23.185,109.197,18.96 +2016-08-05 04:32:00,21.5338,109.132,18.95 +2016-08-05 04:47:00,19.9313,109.12,18.96 +2016-08-05 05:02:00,25.2087,109.092,18.95 +2016-08-05 05:17:00,20.8475,109.105,18.96 +2016-08-05 05:32:00,22.7525,109.137,18.96 +2016-08-05 05:47:00,19.2475,109.18,18.97 +2016-08-05 06:02:00,19.3887,109.247,18.97 +2016-08-05 06:17:00,20.795,109.287,18.99 +2016-08-05 06:32:00,21.3412,109.232,19.02 +2016-08-05 06:47:00,21.5362,109.202,19.05 +2016-08-05 07:02:00,24.1588,109.135,19.07 +2016-08-05 07:17:00,19.59,109.175,19.09 +2016-08-05 07:32:00,20.1687,109.135,19.12 +2016-08-05 07:47:00,20.745,109.15,19.14 +2016-08-05 08:02:00,22.6025,109.102,19.18 +2016-08-05 08:17:00,23.1813,109.035,19.23 +2016-08-05 08:32:00,19.64,108.912,19.28 +2016-08-05 08:47:00,22.6075,108.837,19.33 +2016-08-05 09:02:00,21.2913,108.74,19.37 +2016-08-05 09:17:00,23.0387,108.787,19.45 +2016-08-05 09:32:00,19.8363,108.895,19.5 +2016-08-05 09:47:00,21.6325,108.88,19.56 +2016-08-05 10:02:00,19.0125,108.802,19.62 +2016-08-05 10:17:00,21.73,108.777,19.69 +2016-08-05 10:32:00,22.4562,108.975,19.71 +2016-08-05 10:47:00,23.235,108.82,19.72 +2016-08-05 11:02:00,21.7288,108.817,19.73 +2016-08-05 11:17:00,22.6025,108.68,19.74 +2016-08-05 11:32:00,21.9238,108.57,19.75 +2016-08-05 11:47:00,19.6375,108.415,19.76 +2016-08-05 12:02:00,21.2387,108.57,19.79 +2016-08-05 12:17:00,22.36,108.552,19.81 +2016-08-05 12:32:00,19.4412,108.645,19.82 +2016-08-05 12:47:00,20.27,108.57,19.83 +2016-08-05 13:02:00,21.0912,108.577,19.88 +2016-08-05 13:17:00,23.62,108.567,19.88 +2016-08-05 13:32:00,20.9388,108.595,19.86 +2016-08-05 13:47:00,18.0413,108.487,19.85 +2016-08-05 14:02:00,22.5537,108.43,19.88 +2016-08-05 14:17:00,18.2875,108.327,19.91 +2016-08-05 14:32:00,22.9,108.195,19.93 +2016-08-05 14:47:00,22.4538,108.158,19.93 +2016-08-05 15:02:00,21.09,108.205,19.94 +2016-08-05 15:17:00,22.6537,108.072,19.95 +2016-08-05 15:32:00,19.6813,107.965,19.96 +2016-08-05 15:47:00,21.1362,108.027,19.95 +2016-08-05 16:02:00,21.4837,107.932,19.94 +2016-08-05 16:17:00,21.2425,107.587,19.94 +2016-08-05 16:32:00,20.75,107.537,19.93 +2016-08-05 16:47:00,22.0725,107.28,19.91 +2016-08-05 17:02:00,21.0875,107.04,19.9 +2016-08-05 17:17:00,23.0863,106.897,19.89 +2016-08-05 17:32:00,20.7462,106.68,19.86 +2016-08-05 17:47:00,19.39,106.527,19.84 +2016-08-05 18:02:00,23.135,106.28,19.81 +2016-08-05 18:17:00,19.6425,106.095,19.77 +2016-08-05 18:32:00,21.1888,105.952,19.74 +2016-08-05 18:47:00,23.3812,105.58,19.7 +2016-08-05 19:02:00,21.6312,105.395,19.69 +2016-08-05 19:17:00,20.2175,105.085,19.67 +2016-08-05 19:32:00,20.94,104.798,19.64 +2016-08-05 19:47:00,22.3125,104.497,19.61 +2016-08-05 20:02:00,20.3225,104.125,19.6 +2016-08-05 20:17:00,22.8975,103.915,19.59 +2016-08-05 20:32:00,22.7038,103.485,19.57 +2016-08-05 20:47:00,20.1687,103.332,19.55 +2016-08-05 21:02:00,22.4088,103.018,19.52 +2016-08-05 21:17:00,26.37,102.753,19.5 +2016-08-05 21:32:00,21.5325,102.485,19.5 +2016-08-05 21:47:00,17.94,102.367,19.49 +2016-08-05 22:02:00,21.93,102.165,19.49 +2016-08-05 22:17:00,21.3463,101.807,19.48 +2016-08-05 22:32:00,20.0225,101.665,19.47 +2016-08-05 22:47:00,22.1237,101.432,19.45 +2016-08-05 23:02:00,21.09,101.205,19.44 +2016-08-05 23:17:00,23.5687,101.027,19.43 +2016-08-05 23:32:00,18.5662,100.783,19.41 +2016-08-05 23:47:00,20.3662,100.637,19.39 +2016-08-06 00:02:00,19.6862,100.53,19.37 +2016-08-06 00:17:00,20.1663,100.427,19.35 +2016-08-06 00:32:00,23.525,100.372,19.35 +2016-08-06 00:47:00,22.9475,100.27,19.35 +2016-08-06 01:02:00,19.7862,100.217,19.35 +2016-08-06 01:17:00,20.6987,100.085,19.34 +2016-08-06 01:32:00,19.4887,100.03,19.33 +2016-08-06 01:47:00,19.4938,99.9375,19.32 +2016-08-06 02:02:00,21.8825,99.865,19.3 +2016-08-06 02:17:00,21.3438,99.81,19.28 +2016-08-06 02:32:00,18.7687,99.79,19.27 +2016-08-06 02:47:00,20.2225,99.8,19.24 +2016-08-06 03:02:00,23.575,99.8675,19.22 +2016-08-06 03:17:00,22.655,99.935,19.2 +2016-08-06 03:32:00,22.1738,100.057,19.2 +2016-08-06 03:47:00,21.585,100.08,19.2 +2016-08-06 04:02:00,22.8988,100.173,19.18 +2016-08-06 04:17:00,20.4625,100.227,19.19 +2016-08-06 04:32:00,19.1937,100.255,19.19 +2016-08-06 04:47:00,20.5125,100.337,19.18 +2016-08-06 05:02:00,23.425,100.35,19.18 +2016-08-06 05:17:00,24.8025,100.447,19.18 +2016-08-06 05:32:00,21.535,100.567,19.18 +2016-08-06 05:47:00,22.9512,100.652,19.2 +2016-08-06 06:02:00,20.6537,100.75,19.21 +2016-08-06 06:17:00,21.8275,100.802,19.23 +2016-08-06 06:32:00,23.3737,100.86,19.29 +2016-08-06 06:47:00,22.0238,100.962,19.34 +2016-08-06 07:02:00,22.355,101.052,19.37 +2016-08-06 07:17:00,20.7012,101.097,19.38 +2016-08-06 07:32:00,21.2438,101.147,19.41 +2016-08-06 07:47:00,19.6387,101.367,19.45 +2016-08-06 08:02:00,22.2663,101.482,19.46 +2016-08-06 08:17:00,19.8787,101.652,19.47 +2016-08-06 08:32:00,19.4375,101.745,19.47 +2016-08-06 08:47:00,20.365,101.93,19.5 +2016-08-06 09:02:00,19.4912,101.94,19.45 +2016-08-06 09:17:00,21.6837,102.202,19.42 +2016-08-06 09:32:00,22.7562,102.322,19.41 +2016-08-06 09:47:00,21.4812,102.33,19.42 +2016-08-06 10:02:00,19.7363,102.438,19.5 +2016-08-06 10:17:00,20.985,102.457,19.57 +2016-08-06 10:32:00,21.8325,102.577,19.58 +2016-08-06 10:47:00,21.3388,102.835,19.68 +2016-08-06 11:02:00,22.3613,102.97,19.82 +2016-08-06 11:17:00,23.575,103.027,19.94 +2016-08-06 11:32:00,19.4375,103.188,20.06 +2016-08-06 11:47:00,21.1362,103.317,20.04 +2016-08-06 12:02:00,19.15,103.38,20.03 +2016-08-06 12:17:00,21.9313,103.32,20.07 +2016-08-06 12:32:00,19.0563,103.408,20.1 +2016-08-06 12:47:00,24.1025,103.457,20.16 +2016-08-06 13:02:00,21.19,103.395,20.22 +2016-08-06 13:17:00,22.4625,103.445,20.29 +2016-08-06 13:32:00,20.37,103.347,20.26 +2016-08-06 13:47:00,21.4812,103.36,20.21 +2016-08-06 14:02:00,20.3625,103.515,20.13 +2016-08-06 14:17:00,22.945,103.582,20.03 +2016-08-06 14:32:00,20.795,103.783,19.97 +2016-08-06 14:47:00,21.0888,103.757,19.92 +2016-08-06 15:02:00,22.555,103.822,19.89 +2016-08-06 15:17:00,19.7862,103.785,19.89 +2016-08-06 15:32:00,20.51,103.697,19.92 +2016-08-06 15:47:00,20.365,103.732,19.95 +2016-08-06 16:02:00,21.8787,103.505,19.96 +2016-08-06 16:17:00,20.8913,103.527,19.94 +2016-08-06 16:32:00,21.5837,103.587,19.9 +2016-08-06 16:47:00,22.4062,103.622,19.85 +2016-08-06 17:02:00,22.3613,103.665,19.8 +2016-08-06 17:17:00,21.49,103.76,19.75 +2016-08-06 17:32:00,19.6362,103.872,19.71 +2016-08-06 17:47:00,17.4987,103.802,19.69 +2016-08-06 18:02:00,19.5863,103.82,19.68 +2016-08-06 18:17:00,22.4088,103.757,19.68 +2016-08-06 18:32:00,18.7625,103.75,19.67 +2016-08-06 18:47:00,22.555,103.69,19.68 +2016-08-06 19:02:00,19.0137,103.665,19.68 +2016-08-06 19:17:00,22.7012,103.577,19.66 +2016-08-06 19:32:00,21.7812,103.505,19.64 +2016-08-06 19:47:00,21.04,103.442,19.63 +2016-08-06 20:02:00,20.8913,103.505,19.62 +2016-08-06 20:17:00,22.6,103.54,19.61 +2016-08-06 20:32:00,22.0713,103.565,19.61 +2016-08-06 20:47:00,20.895,103.56,19.59 +2016-08-06 21:02:00,22.2687,103.512,19.59 +2016-08-06 21:17:00,21.78,103.475,19.59 +2016-08-06 21:32:00,20.795,103.48,19.58 +2016-08-06 21:47:00,19.975,103.312,19.57 +2016-08-06 22:02:00,22.2175,103.285,19.55 +2016-08-06 22:17:00,22.4088,103.162,19.54 +2016-08-06 22:32:00,21.4412,103.137,19.52 +2016-08-06 22:47:00,20.2725,103.115,19.5 +2016-08-06 23:02:00,20.2237,103.052,19.47 +2016-08-06 23:17:00,20.1712,103.055,19.45 +2016-08-06 23:32:00,19.15,102.997,19.42 +2016-08-06 23:47:00,21.5863,103.012,19.4 +2016-08-07 00:02:00,19.735,102.98,19.38 +2016-08-07 00:17:00,24.21,102.89,19.35 +2016-08-07 00:32:00,22.0775,102.9,19.33 +2016-08-07 00:47:00,20.6125,102.762,19.3 +2016-08-07 01:02:00,24.8063,102.688,19.28 +2016-08-07 01:17:00,21.6825,102.647,19.26 +2016-08-07 01:32:00,19.4875,102.56,19.23 +2016-08-07 01:47:00,22.2637,102.445,19.21 +2016-08-07 02:02:00,21.6825,102.445,19.18 +2016-08-07 02:17:00,21.7775,102.425,19.17 +2016-08-07 02:32:00,21.4875,102.442,19.16 +2016-08-07 02:47:00,21.78,102.485,19.14 +2016-08-07 03:02:00,20.51,102.452,19.14 +2016-08-07 03:17:00,23.7675,102.442,19.13 +2016-08-07 03:32:00,20.9837,102.467,19.1 +2016-08-07 03:47:00,21.2363,102.408,19.08 +2016-08-07 04:02:00,20.12,102.345,19.05 +2016-08-07 04:17:00,22.2663,102.315,19.03 +2016-08-07 04:32:00,20.9912,102.25,19.02 +2016-08-07 04:47:00,22.5037,102.227,19.02 +2016-08-07 05:02:00,22.4025,102.14,19.02 +2016-08-07 05:17:00,23.7687,102.158,19.04 +2016-08-07 05:32:00,20.07,102.105,19.05 +2016-08-07 05:47:00,20.7462,102.092,19.07 +2016-08-07 06:02:00,18.2825,102.018,19.12 +2016-08-07 06:17:00,24.16,102.0,19.14 +2016-08-07 06:32:00,20.7012,102.048,19.19 +2016-08-07 06:47:00,22.7975,102.0,19.23 +2016-08-07 07:02:00,22.7937,102.0,19.24 +2016-08-07 07:17:00,22.4062,102.08,19.28 +2016-08-07 07:32:00,20.6562,102.095,19.33 +2016-08-07 07:47:00,20.3162,102.173,19.35 +2016-08-07 08:02:00,21.1413,102.01,19.43 +2016-08-07 08:17:00,19.0587,102.185,19.48 +2016-08-07 08:32:00,19.2975,102.155,19.56 +2016-08-07 08:47:00,21.5812,102.135,19.64 +2016-08-07 09:02:00,20.2162,102.173,19.72 +2016-08-07 09:17:00,21.7775,102.055,19.8 +2016-08-07 09:32:00,18.9587,102.04,19.86 +2016-08-07 09:47:00,21.4375,101.99,19.95 +2016-08-07 10:02:00,20.7962,101.94,20.0 +2016-08-07 10:17:00,22.0275,101.972,20.07 +2016-08-07 10:32:00,21.4362,101.987,20.16 +2016-08-07 10:47:00,22.605,102.0,20.25 +2016-08-07 11:02:00,21.4362,102.07,20.3 +2016-08-07 11:17:00,21.9287,102.185,20.35 +2016-08-07 11:32:00,22.4025,102.197,20.42 +2016-08-07 11:47:00,20.07,102.255,20.48 +2016-08-07 12:02:00,22.0725,102.23,20.56 +2016-08-07 12:17:00,20.1712,102.257,20.57 +2016-08-07 12:32:00,25.3937,102.2,20.6 +2016-08-07 12:47:00,22.6525,102.307,20.67 +2016-08-07 13:02:00,21.4388,102.298,20.71 +2016-08-07 13:17:00,22.0238,102.115,20.75 +2016-08-07 13:32:00,19.7387,102.26,20.76 +2016-08-07 13:47:00,22.7025,102.298,20.78 +2016-08-07 14:02:00,20.6125,102.457,20.8 +2016-08-07 14:17:00,20.1712,102.552,20.81 +2016-08-07 14:32:00,20.6087,102.427,20.81 +2016-08-07 14:47:00,22.22,102.63,20.79 +2016-08-07 15:02:00,20.7012,102.612,20.76 +2016-08-07 15:17:00,20.8925,102.615,20.74 +2016-08-07 15:32:00,22.0737,102.802,20.72 +2016-08-07 15:47:00,21.2962,102.485,20.71 +2016-08-07 16:02:00,18.5737,102.59,20.7 +2016-08-07 16:17:00,21.6325,102.622,20.7 +2016-08-07 16:32:00,20.7012,102.72,20.7 +2016-08-07 16:47:00,23.91,102.805,20.7 +2016-08-07 17:02:00,24.8575,102.885,20.69 +2016-08-07 17:17:00,20.9375,103.097,20.67 +2016-08-07 17:32:00,22.3125,103.158,20.65 +2016-08-07 17:47:00,21.0938,103.26,20.64 +2016-08-07 18:02:00,18.9112,103.378,20.63 +2016-08-07 18:17:00,20.7012,103.475,20.63 +2016-08-07 18:32:00,21.0387,103.585,20.61 +2016-08-07 18:47:00,21.4375,103.6,20.59 +2016-08-07 19:02:00,20.4587,103.667,20.56 +2016-08-07 19:17:00,22.7025,103.675,20.54 +2016-08-07 19:32:00,21.685,103.717,20.51 +2016-08-07 19:47:00,21.395,103.82,20.49 +2016-08-07 20:02:00,22.4538,103.897,20.46 +2016-08-07 20:17:00,22.8463,103.972,20.43 +2016-08-07 20:32:00,23.9613,104.173,20.41 +2016-08-07 20:47:00,19.3425,104.322,20.39 +2016-08-07 21:02:00,22.5025,104.455,20.37 +2016-08-07 21:17:00,22.1225,104.582,20.35 +2016-08-07 21:32:00,19.2487,104.675,20.32 +2016-08-07 21:47:00,20.66,104.71,20.31 +2016-08-07 22:02:00,20.0212,104.837,20.29 +2016-08-07 22:17:00,23.1787,104.908,20.28 +2016-08-07 22:32:00,23.8125,104.995,20.26 +2016-08-07 22:47:00,23.815,105.018,20.25 +2016-08-07 23:02:00,23.1813,105.085,20.23 +2016-08-07 23:17:00,22.7038,105.152,20.23 +2016-08-07 23:32:00,21.2913,105.33,20.21 +2016-08-07 23:47:00,19.2475,105.447,20.21 +2016-08-08 00:02:00,22.4538,105.527,20.2 +2016-08-08 00:17:00,24.1562,105.612,20.2 +2016-08-08 00:32:00,21.0938,105.722,20.2 +2016-08-08 00:47:00,22.0737,105.742,20.2 +2016-08-08 01:02:00,18.955,105.76,20.2 +2016-08-08 01:17:00,21.8325,105.785,20.18 +2016-08-08 01:32:00,21.3913,105.862,20.17 +2016-08-08 01:47:00,22.0725,105.832,20.16 +2016-08-08 02:02:00,21.9775,105.895,20.17 +2016-08-08 02:17:00,20.1725,105.96,20.18 +2016-08-08 02:32:00,19.4412,106.08,20.21 +2016-08-08 02:47:00,22.265,106.205,20.25 +2016-08-08 03:02:00,22.0325,106.24,20.3 +2016-08-08 03:17:00,22.6075,106.397,20.35 +2016-08-08 03:32:00,19.44,106.378,20.41 +2016-08-08 03:47:00,19.4388,106.415,20.44 +2016-08-08 04:02:00,20.2712,106.425,20.47 +2016-08-08 04:17:00,24.6525,106.415,20.48 +2016-08-08 04:32:00,20.99,106.337,20.49 +2016-08-08 04:47:00,22.3587,106.337,20.5 +2016-08-08 05:02:00,21.44,106.357,20.5 +2016-08-08 05:17:00,24.1625,106.37,20.5 +2016-08-08 05:32:00,22.12,106.455,20.5 +2016-08-08 05:47:00,22.405,106.44,20.51 +2016-08-08 06:02:00,19.6375,106.497,20.52 +2016-08-08 06:17:00,20.6087,106.522,20.52 +2016-08-08 06:32:00,20.8388,106.562,20.51 +2016-08-08 06:47:00,23.8138,106.71,20.51 +2016-08-08 07:02:00,22.9463,106.78,20.52 +2016-08-08 07:17:00,22.1725,106.688,20.56 +2016-08-08 07:32:00,20.1712,106.86,20.62 +2016-08-08 07:47:00,23.0387,106.92,20.69 +2016-08-08 08:02:00,21.6338,106.737,20.76 +2016-08-08 08:17:00,20.6987,106.805,20.82 +2016-08-08 08:32:00,20.1188,106.905,20.89 +2016-08-08 08:47:00,21.5825,107.08,20.95 +2016-08-08 09:02:00,19.4938,107.117,21.01 +2016-08-08 09:17:00,21.6825,107.167,21.08 +2016-08-08 09:32:00,21.34,106.895,21.11 +2016-08-08 09:47:00,20.3613,107.15,21.15 +2016-08-08 10:02:00,23.2787,107.277,21.16 +2016-08-08 10:17:00,22.2175,107.237,21.2 +2016-08-08 10:32:00,21.0375,106.987,21.28 +2016-08-08 10:47:00,19.6875,106.902,21.29 +2016-08-08 11:02:00,20.125,107.01,21.33 +2016-08-08 11:17:00,21.5312,106.967,21.38 +2016-08-08 11:32:00,20.27,107.003,21.44 +2016-08-08 11:47:00,23.7663,107.207,21.52 +2016-08-08 12:02:00,20.9875,107.277,21.52 +2016-08-08 12:17:00,21.3388,107.327,21.55 +2016-08-08 12:32:00,22.8975,107.315,21.56 +2016-08-08 12:47:00,24.1612,107.42,21.6 +2016-08-08 13:02:00,22.225,107.205,21.64 +2016-08-08 13:17:00,21.19,107.34,21.66 +2016-08-08 13:32:00,19.9275,107.222,21.69 +2016-08-08 13:47:00,20.985,107.385,21.73 +2016-08-08 14:02:00,23.135,107.305,21.77 +2016-08-08 14:17:00,21.3412,107.22,21.8 +2016-08-08 14:32:00,22.4112,107.432,21.81 +2016-08-08 14:47:00,21.44,107.44,21.81 +2016-08-08 15:02:00,21.6275,107.485,21.78 +2016-08-08 15:17:00,21.3412,107.467,21.74 +2016-08-08 15:32:00,20.4137,107.237,21.69 +2016-08-08 15:47:00,19.245,107.39,21.65 +2016-08-08 16:02:00,20.1225,107.472,21.62 +2016-08-08 16:17:00,21.2887,107.467,21.59 +2016-08-08 16:32:00,24.7113,107.24,21.58 +2016-08-08 16:47:00,22.4638,107.34,21.55 +2016-08-08 17:02:00,21.58,107.092,21.52 +2016-08-08 17:17:00,22.4075,107.175,21.51 +2016-08-08 17:32:00,23.1787,107.255,21.49 +2016-08-08 17:47:00,22.17,107.185,21.47 +2016-08-08 18:02:00,20.56,107.08,21.46 +2016-08-08 18:17:00,20.4638,107.245,21.44 +2016-08-08 18:32:00,19.2025,107.197,21.44 +2016-08-08 18:47:00,22.0687,107.137,21.42 +2016-08-08 19:02:00,18.2387,107.052,21.4 +2016-08-08 19:17:00,22.22,107.137,21.39 +2016-08-08 19:32:00,20.5125,107.143,21.38 +2016-08-08 19:47:00,22.7012,107.052,21.36 +2016-08-08 20:02:00,22.6038,106.95,21.34 +2016-08-08 20:17:00,22.5563,106.8,21.32 +2016-08-08 20:32:00,22.46,106.867,21.3 +2016-08-08 20:47:00,22.4562,106.667,21.28 +2016-08-08 21:02:00,23.9587,106.643,21.26 +2016-08-08 21:17:00,22.3138,106.82,21.25 +2016-08-08 21:32:00,23.0413,106.81,21.24 +2016-08-08 21:47:00,20.75,106.725,21.23 +2016-08-08 22:02:00,23.0425,106.697,21.2 +2016-08-08 22:17:00,21.9325,106.82,21.17 +2016-08-08 22:32:00,19.5925,106.73,21.13 +2016-08-08 22:47:00,23.1825,106.612,21.11 +2016-08-08 23:02:00,22.9,106.55,21.08 +2016-08-08 23:17:00,23.0413,106.518,21.05 +2016-08-08 23:32:00,16.91,106.425,21.04 +2016-08-08 23:47:00,21.1888,106.352,21.02 +2016-08-09 00:02:00,24.1612,106.378,21.01 +2016-08-09 00:17:00,18.7213,106.355,20.99 +2016-08-09 00:32:00,21.3937,106.412,20.96 +2016-08-09 00:47:00,24.6562,106.365,20.93 +2016-08-09 01:02:00,21.3925,106.217,20.9 +2016-08-09 01:17:00,22.505,106.122,20.86 +2016-08-09 01:32:00,20.8425,106.03,20.79 +2016-08-09 01:47:00,22.365,105.908,20.73 +2016-08-09 02:02:00,21.1975,105.76,20.68 +2016-08-09 02:17:00,18.8688,105.66,20.63 +2016-08-09 02:32:00,23.1837,105.522,20.57 +2016-08-09 02:47:00,21.7825,105.39,20.51 +2016-08-09 03:02:00,23.1813,105.315,20.46 +2016-08-09 03:17:00,23.2763,105.155,20.4 +2016-08-09 03:32:00,21.1413,105.19,20.36 +2016-08-09 03:47:00,23.9587,105.222,20.31 +2016-08-09 04:02:00,19.1588,105.242,20.27 +2016-08-09 04:17:00,20.605,105.295,20.23 +2016-08-09 04:32:00,21.1862,105.292,20.21 +2016-08-09 04:47:00,21.9825,105.357,20.19 +2016-08-09 05:02:00,23.6712,105.467,20.17 +2016-08-09 05:17:00,24.3637,105.305,20.16 +2016-08-09 05:32:00,23.1825,105.227,20.15 +2016-08-09 05:47:00,21.9337,105.052,20.14 +2016-08-09 06:02:00,20.7062,105.0,20.13 +2016-08-09 06:17:00,22.36,104.835,20.12 +2016-08-09 06:32:00,19.9762,104.727,20.12 +2016-08-09 06:47:00,22.3125,104.647,20.11 +2016-08-09 07:02:00,21.7312,104.602,20.1 +2016-08-09 07:17:00,23.3325,104.48,20.1 +2016-08-09 07:32:00,22.7525,104.48,20.09 +2016-08-09 07:47:00,21.4388,104.387,20.08 +2016-08-09 08:02:00,22.8538,104.432,20.07 +2016-08-09 08:17:00,24.7038,104.412,20.08 +2016-08-09 08:32:00,22.075,104.442,20.15 +2016-08-09 08:47:00,21.34,104.438,20.24 +2016-08-09 09:02:00,22.605,104.51,20.31 +2016-08-09 09:17:00,23.035,104.645,20.36 +2016-08-09 09:32:00,22.2262,104.4,20.38 +2016-08-09 09:47:00,21.6837,104.585,20.4 +2016-08-09 10:02:00,21.34,104.487,20.45 +2016-08-09 10:17:00,23.3763,104.667,20.49 +2016-08-09 10:32:00,23.3275,104.6,20.52 +2016-08-09 10:47:00,20.07,104.607,20.59 +2016-08-09 11:02:00,20.8913,104.555,20.66 +2016-08-09 11:17:00,21.5312,104.438,20.76 +2016-08-09 11:32:00,21.5338,104.365,20.81 +2016-08-09 11:47:00,20.17,104.45,20.86 +2016-08-09 12:02:00,21.7787,104.385,20.93 +2016-08-09 12:17:00,23.6212,104.115,20.95 +2016-08-09 12:32:00,21.6787,104.235,20.97 +2016-08-09 12:47:00,22.1712,104.55,20.96 +2016-08-09 13:02:00,20.7937,104.425,20.9 +2016-08-09 13:17:00,22.36,104.242,20.84 +2016-08-09 13:32:00,20.5125,104.242,20.77 +2016-08-09 13:47:00,18.6175,104.107,20.71 +2016-08-09 14:02:00,22.0275,104.033,20.65 +2016-08-09 14:17:00,20.7937,104.025,20.62 +2016-08-09 14:32:00,21.0912,103.97,20.63 +2016-08-09 14:47:00,24.0575,103.908,20.65 +2016-08-09 15:02:00,19.5888,104.05,20.66 +2016-08-09 15:17:00,21.045,103.832,20.68 +2016-08-09 15:32:00,21.6837,104.015,20.67 +2016-08-09 15:47:00,21.19,104.033,20.68 +2016-08-09 16:02:00,19.975,103.875,20.66 +2016-08-09 16:17:00,20.8438,103.795,20.63 +2016-08-09 16:32:00,19.8375,103.987,20.6 +2016-08-09 16:47:00,22.2663,103.875,20.56 +2016-08-09 17:02:00,24.105,103.84,20.53 +2016-08-09 17:17:00,22.4088,103.857,20.51 +2016-08-09 17:32:00,22.3625,103.79,20.5 +2016-08-09 17:47:00,19.3412,103.84,20.48 +2016-08-09 18:02:00,22.0737,103.727,20.46 +2016-08-09 18:17:00,23.8587,103.75,20.45 +2016-08-09 18:32:00,20.99,103.722,20.44 +2016-08-09 18:47:00,21.3887,103.79,20.43 +2016-08-09 19:02:00,24.2087,103.747,20.43 +2016-08-09 19:17:00,22.8475,103.72,20.42 +2016-08-09 19:32:00,18.765,103.712,20.41 +2016-08-09 19:47:00,21.1888,103.667,20.4 +2016-08-09 20:02:00,22.2188,103.637,20.39 +2016-08-09 20:17:00,22.0737,103.53,20.36 +2016-08-09 20:32:00,20.4137,103.5,20.33 +2016-08-09 20:47:00,22.9912,103.42,20.3 +2016-08-09 21:02:00,25.8412,103.34,20.27 +2016-08-09 21:17:00,22.655,103.28,20.24 +2016-08-09 21:32:00,21.58,103.3,20.19 +2016-08-09 21:47:00,20.365,103.38,20.15 +2016-08-09 22:02:00,23.9575,103.378,20.1 +2016-08-09 22:17:00,22.4025,103.37,20.07 +2016-08-09 22:32:00,23.525,103.378,20.02 +2016-08-09 22:47:00,21.3412,103.365,19.97 +2016-08-09 23:02:00,24.0625,103.27,19.91 +2016-08-09 23:17:00,22.46,103.287,19.87 +2016-08-09 23:32:00,21.19,103.227,19.85 +2016-08-09 23:47:00,23.3275,103.155,19.83 +2016-08-10 00:02:00,22.3125,103.087,19.79 +2016-08-10 00:17:00,22.31,103.033,19.75 +2016-08-10 00:32:00,22.4587,102.977,19.73 +2016-08-10 00:47:00,22.4088,103.052,19.7 +2016-08-10 01:02:00,21.735,102.97,19.66 +2016-08-10 01:17:00,25.4437,103.05,19.63 +2016-08-10 01:32:00,20.9388,103.057,19.61 +2016-08-10 01:47:00,21.78,103.072,19.6 +2016-08-10 02:02:00,23.2262,103.045,19.58 +2016-08-10 02:17:00,22.5525,102.995,19.56 +2016-08-10 02:32:00,21.835,102.962,19.53 +2016-08-10 02:47:00,22.025,102.93,19.49 +2016-08-10 03:02:00,23.8187,102.862,19.45 +2016-08-10 03:17:00,23.1275,102.825,19.41 +2016-08-10 03:32:00,20.3162,102.755,19.38 +2016-08-10 03:47:00,21.1875,102.777,19.36 +2016-08-10 04:02:00,22.455,102.798,19.34 +2016-08-10 04:17:00,22.3575,102.783,19.31 +2016-08-10 04:32:00,20.32,102.89,19.28 +2016-08-10 04:47:00,20.7975,102.96,19.26 +2016-08-10 05:02:00,23.7687,103.003,19.23 +2016-08-10 05:17:00,24.46,103.152,19.21 +2016-08-10 05:32:00,23.8112,103.18,19.17 +2016-08-10 05:47:00,21.625,103.212,19.15 +2016-08-10 06:02:00,20.2625,103.347,19.14 +2016-08-10 06:17:00,20.9837,103.505,19.14 +2016-08-10 06:32:00,21.7325,103.595,19.18 +2016-08-10 06:47:00,21.0387,103.685,19.24 +2016-08-10 07:02:00,21.2838,103.777,19.29 +2016-08-10 07:17:00,23.325,103.878,19.33 +2016-08-10 07:32:00,21.185,103.925,19.38 +2016-08-10 07:47:00,20.365,103.955,19.42 +2016-08-10 08:02:00,21.6775,104.072,19.51 +2016-08-10 08:17:00,23.7225,104.018,19.56 +2016-08-10 08:32:00,22.2213,103.99,19.61 +2016-08-10 08:47:00,21.3875,103.923,19.64 +2016-08-10 09:02:00,22.8925,103.995,19.65 +2016-08-10 09:17:00,22.8463,103.97,19.65 +2016-08-10 09:32:00,20.5575,104.112,19.68 +2016-08-10 09:47:00,21.8787,104.215,19.68 +2016-08-10 10:02:00,20.5075,104.147,19.61 +2016-08-10 10:17:00,22.5025,104.457,19.52 +2016-08-10 10:32:00,19.8812,104.455,19.48 +2016-08-10 10:47:00,24.6025,104.49,19.45 +2016-08-10 11:02:00,23.3213,104.54,19.44 +2016-08-10 11:17:00,22.4587,104.51,19.43 +2016-08-10 11:32:00,20.3637,104.472,19.44 +2016-08-10 11:47:00,21.9788,104.442,19.46 +2016-08-10 12:02:00,21.885,104.44,19.52 +2016-08-10 12:17:00,23.4287,104.255,19.58 +2016-08-10 12:32:00,24.7062,104.12,19.68 +2016-08-10 12:47:00,23.085,104.003,19.71 +2016-08-10 13:02:00,22.1225,103.893,19.71 +2016-08-10 13:17:00,23.035,103.893,19.65 +2016-08-10 13:32:00,19.8312,103.94,19.64 +2016-08-10 13:47:00,22.9475,103.947,19.63 +2016-08-10 14:02:00,20.075,103.75,19.59 +2016-08-10 14:17:00,21.4837,103.807,19.53 +2016-08-10 14:32:00,21.2875,103.768,19.46 +2016-08-10 14:47:00,22.4512,103.732,19.42 +2016-08-10 15:02:00,22.6963,103.632,19.41 +2016-08-10 15:17:00,25.1525,103.665,19.37 +2016-08-10 15:32:00,20.0212,103.533,19.32 +2016-08-10 15:47:00,22.7975,103.522,19.26 +2016-08-10 16:02:00,22.7537,103.253,19.2 +2016-08-10 16:17:00,19.8388,103.285,19.16 +2016-08-10 16:32:00,23.4713,103.455,19.11 +2016-08-10 16:47:00,23.62,103.317,19.1 +2016-08-10 17:02:00,21.8787,103.46,19.08 +2016-08-10 17:17:00,21.725,103.477,19.07 +2016-08-10 17:32:00,18.1787,103.45,19.08 +2016-08-10 17:47:00,22.4112,103.307,19.05 +2016-08-10 18:02:00,22.705,103.438,19.03 +2016-08-10 18:17:00,18.4225,103.277,19.01 +2016-08-10 18:32:00,20.5587,103.28,18.98 +2016-08-10 18:47:00,22.5987,103.207,18.96 +2016-08-10 19:02:00,21.6312,103.105,18.93 +2016-08-10 19:17:00,21.9212,103.065,18.91 +2016-08-10 19:32:00,21.5825,103.05,18.87 +2016-08-10 19:47:00,22.9,103.125,18.84 +2016-08-10 20:02:00,22.5075,103.095,18.83 +2016-08-10 20:17:00,22.8438,103.06,18.79 +2016-08-10 20:32:00,23.62,103.09,18.76 +2016-08-10 20:47:00,25.0062,103.045,18.73 +2016-08-10 21:02:00,22.2625,103.03,18.7 +2016-08-10 21:17:00,21.6775,102.915,18.65 +2016-08-10 21:32:00,19.9737,102.925,18.6 +2016-08-10 21:47:00,22.605,102.82,18.55 +2016-08-10 22:02:00,22.46,102.777,18.51 +2016-08-10 22:17:00,24.5062,102.745,18.47 +2016-08-10 22:32:00,24.1512,102.768,18.43 +2016-08-10 22:47:00,22.7,102.787,18.39 +2016-08-10 23:02:00,24.2575,102.798,18.34 +2016-08-10 23:17:00,23.2775,102.862,18.3 +2016-08-10 23:32:00,19.01,102.832,18.27 +2016-08-10 23:47:00,22.605,102.862,18.24 +2016-08-11 00:02:00,22.3613,102.86,18.21 +2016-08-11 00:17:00,23.3763,102.832,18.17 +2016-08-11 00:32:00,20.4613,102.755,18.14 +2016-08-11 00:47:00,22.1225,102.75,18.09 +2016-08-11 01:02:00,20.365,102.69,18.06 +2016-08-11 01:17:00,20.6588,102.615,18.02 +2016-08-11 01:32:00,20.5638,102.565,18.0 +2016-08-11 01:47:00,23.0413,102.552,17.96 +2016-08-11 02:02:00,21.1875,102.503,17.91 +2016-08-11 02:17:00,19.6362,102.537,17.88 +2016-08-11 02:32:00,22.6975,102.62,17.84 +2016-08-11 02:47:00,21.4788,102.635,17.8 +2016-08-11 03:02:00,22.2625,102.615,17.76 +2016-08-11 03:17:00,21.24,102.565,17.72 +2016-08-11 03:32:00,18.8613,102.557,17.68 +2016-08-11 03:47:00,22.2637,102.518,17.63 +2016-08-11 04:02:00,23.2787,102.467,17.58 +2016-08-11 04:17:00,23.375,102.415,17.54 +2016-08-11 04:32:00,24.355,102.408,17.5 +2016-08-11 04:47:00,24.1525,102.367,17.48 +2016-08-11 05:02:00,23.2275,102.35,17.46 +2016-08-11 05:17:00,21.6312,102.395,17.44 +2016-08-11 05:32:00,20.4613,102.408,17.43 +2016-08-11 05:47:00,21.625,102.35,17.43 +2016-08-11 06:02:00,22.6987,102.39,17.45 +2016-08-11 06:17:00,22.9887,102.387,17.46 +2016-08-11 06:32:00,25.2513,102.247,17.49 +2016-08-11 06:47:00,25.3012,102.283,17.53 +2016-08-11 07:02:00,24.7588,102.173,17.55 +2016-08-11 07:17:00,24.5587,102.075,17.59 +2016-08-11 07:32:00,19.9737,102.067,17.65 +2016-08-11 07:47:00,21.1888,102.06,17.68 +2016-08-11 08:02:00,22.0713,102.207,17.68 +2016-08-11 08:17:00,22.2612,102.2,17.74 +2016-08-11 08:32:00,23.2262,102.092,17.72 +2016-08-11 08:47:00,23.13,102.117,17.77 +2016-08-11 09:02:00,24.3575,102.175,17.76 +2016-08-11 09:17:00,26.0375,102.085,17.77 +2016-08-11 09:32:00,20.1175,102.177,17.88 +2016-08-11 09:47:00,23.425,102.025,18.02 +2016-08-11 10:02:00,23.6225,101.957,18.06 +2016-08-11 10:17:00,23.4275,101.96,18.19 +2016-08-11 10:32:00,21.6263,101.957,18.19 +2016-08-11 10:47:00,21.53,101.985,18.24 +2016-08-11 11:02:00,21.095,102.175,18.22 +2016-08-11 11:17:00,20.7,102.387,18.19 +2016-08-11 11:32:00,23.425,102.27,18.19 +2016-08-11 11:47:00,26.03,102.44,18.15 +2016-08-11 12:02:00,24.2562,102.312,18.15 +2016-08-11 12:17:00,21.8312,102.423,18.14 +2016-08-11 12:32:00,21.9775,102.245,18.16 +2016-08-11 12:47:00,21.3388,102.145,18.16 +2016-08-11 13:02:00,21.9775,102.438,18.17 +2016-08-11 13:17:00,22.8937,102.305,18.16 +2016-08-11 13:32:00,21.53,102.35,18.14 +2016-08-11 13:47:00,23.2738,102.46,18.13 +2016-08-11 14:02:00,22.7962,102.74,18.07 +2016-08-11 14:17:00,21.8787,102.742,18.04 +2016-08-11 14:32:00,24.0537,102.912,18.0 +2016-08-11 14:47:00,22.6537,102.96,17.99 +2016-08-11 15:02:00,27.2062,103.052,17.97 +2016-08-11 15:17:00,23.7175,103.08,17.92 +2016-08-11 15:32:00,21.2337,103.192,17.89 +2016-08-11 15:47:00,24.6537,103.092,17.87 +2016-08-11 16:02:00,23.4212,103.115,17.85 +2016-08-11 16:17:00,22.7937,103.393,17.82 +2016-08-11 16:32:00,21.53,103.465,17.8 +2016-08-11 16:47:00,23.475,103.462,17.79 +2016-08-11 17:02:00,24.6075,103.735,17.77 +2016-08-11 17:17:00,20.9825,103.855,17.75 +2016-08-11 17:32:00,22.0238,104.048,17.74 +2016-08-11 17:47:00,23.7663,104.087,17.74 +2016-08-11 18:02:00,22.3538,104.097,17.73 +2016-08-11 18:17:00,21.925,104.36,17.73 +2016-08-11 18:32:00,23.2288,104.393,17.72 +2016-08-11 18:47:00,25.835,104.425,17.7 +2016-08-11 19:02:00,21.525,104.505,17.67 +2016-08-11 19:17:00,24.0525,104.605,17.64 +2016-08-11 19:32:00,22.4013,104.658,17.6 +2016-08-11 19:47:00,23.5675,104.747,17.57 +2016-08-11 20:02:00,22.0675,104.87,17.55 +2016-08-11 20:17:00,21.8262,105.018,17.52 +2016-08-11 20:32:00,22.8525,105.14,17.49 +2016-08-11 20:47:00,22.5587,105.29,17.47 +2016-08-11 21:02:00,24.7525,105.35,17.46 +2016-08-11 21:17:00,25.8337,105.412,17.44 +2016-08-11 21:32:00,24.3063,105.452,17.41 +2016-08-11 21:47:00,23.5225,105.472,17.39 +2016-08-11 22:02:00,24.6062,105.44,17.36 +2016-08-11 22:17:00,25.1562,105.415,17.35 +2016-08-11 22:32:00,22.4075,105.482,17.33 +2016-08-11 22:47:00,21.1912,105.495,17.32 +2016-08-11 23:02:00,20.8412,105.582,17.3 +2016-08-11 23:17:00,20.5563,105.65,17.3 +2016-08-11 23:32:00,22.5512,105.747,17.29 +2016-08-11 23:47:00,22.3538,105.815,17.29 +2016-08-12 00:02:00,19.9225,105.798,17.28 +2016-08-12 00:17:00,23.0375,105.83,17.28 +2016-08-12 00:32:00,22.6513,105.812,17.28 +2016-08-12 00:47:00,23.4225,105.812,17.27 +2016-08-12 01:02:00,21.725,105.79,17.28 +2016-08-12 01:17:00,23.4713,105.725,17.27 +2016-08-12 01:32:00,24.25,105.705,17.26 +2016-08-12 01:47:00,23.2687,105.717,17.25 +2016-08-12 02:02:00,22.6,105.795,17.23 +2016-08-12 02:17:00,21.7288,105.81,17.22 +2016-08-12 02:32:00,21.625,105.835,17.2 +2016-08-12 02:47:00,23.7188,105.882,17.19 +2016-08-12 03:02:00,20.7425,105.88,17.18 +2016-08-12 03:17:00,21.4788,105.952,17.16 +2016-08-12 03:32:00,23.2738,105.875,17.15 +2016-08-12 03:47:00,23.5675,105.895,17.14 +2016-08-12 04:02:00,22.7975,105.81,17.12 +2016-08-12 04:17:00,25.4425,105.827,17.11 +2016-08-12 04:32:00,26.4637,105.717,17.09 +2016-08-12 04:47:00,21.6275,105.757,17.07 +2016-08-12 05:02:00,24.5563,105.745,17.05 +2016-08-12 05:17:00,24.6038,105.768,17.05 +2016-08-12 05:32:00,20.2125,105.768,17.04 +2016-08-12 05:47:00,24.6525,105.787,17.03 +2016-08-12 06:02:00,21.7325,105.747,17.03 +2016-08-12 06:17:00,22.5075,105.798,17.04 +2016-08-12 06:32:00,22.6025,105.85,17.04 +2016-08-12 06:47:00,25.2513,105.822,17.03 +2016-08-12 07:02:00,20.4575,105.772,17.02 +2016-08-12 07:17:00,21.185,105.71,17.01 +2016-08-12 07:32:00,22.6987,105.712,17.02 +2016-08-12 07:47:00,23.96,105.705,17.04 +2016-08-12 08:02:00,20.5125,105.688,17.07 +2016-08-12 08:17:00,20.6075,105.662,17.08 +2016-08-12 08:32:00,22.4538,105.57,17.1 +2016-08-12 08:47:00,25.2,105.565,17.09 +2016-08-12 09:02:00,24.205,105.545,17.1 +2016-08-12 09:17:00,24.355,105.525,17.11 +2016-08-12 09:32:00,22.5025,105.557,17.13 +2016-08-12 09:47:00,21.4388,105.635,17.15 +2016-08-12 10:02:00,22.9425,105.595,17.17 +2016-08-12 10:17:00,23.3737,105.662,17.2 +2016-08-12 10:32:00,24.1025,105.552,17.25 +2016-08-12 10:47:00,22.8937,105.497,17.28 +2016-08-12 11:02:00,21.9737,105.395,17.31 +2016-08-12 11:17:00,24.46,105.39,17.33 +2016-08-12 11:32:00,19.54,105.387,17.35 +2016-08-12 11:47:00,25.3063,105.205,17.39 +2016-08-12 12:02:00,22.9938,105.188,17.43 +2016-08-12 12:17:00,25.0525,105.188,17.49 +2016-08-12 12:32:00,25.2,105.158,17.53 +2016-08-12 12:47:00,24.3087,105.242,17.56 +2016-08-12 13:02:00,23.8138,105.287,17.62 +2016-08-12 13:17:00,23.1775,105.317,17.71 +2016-08-12 13:32:00,23.2288,105.342,17.77 +2016-08-12 13:47:00,23.28,105.415,17.81 +2016-08-12 14:02:00,23.3213,105.527,17.84 +2016-08-12 14:17:00,22.7475,105.605,17.86 +2016-08-12 14:32:00,21.48,105.625,17.88 +2016-08-12 14:47:00,22.2175,105.762,17.9 +2016-08-12 15:02:00,27.06,105.878,17.93 +2016-08-12 15:17:00,22.6038,106.037,17.95 +2016-08-12 15:32:00,20.9425,106.327,17.96 +2016-08-12 15:47:00,22.9487,106.732,17.97 +2016-08-12 16:02:00,20.6075,107.125,17.98 +2016-08-12 16:17:00,24.3075,107.365,17.98 +2016-08-12 16:32:00,25.0075,107.548,17.99 +2016-08-12 16:47:00,21.2862,107.68,18.0 +2016-08-12 17:02:00,23.3262,107.792,18.0 +2016-08-12 17:17:00,23.4788,107.81,18.0 +2016-08-12 17:32:00,23.9587,107.945,18.0 +2016-08-12 17:47:00,22.7513,107.875,18.0 +2016-08-12 18:02:00,22.455,107.897,17.99 +2016-08-12 18:17:00,23.7675,107.977,17.98 +2016-08-12 18:32:00,25.0037,107.97,17.97 +2016-08-12 18:47:00,25.2537,108.152,17.95 +2016-08-12 19:02:00,23.275,108.082,17.94 +2016-08-12 19:17:00,23.9587,108.188,17.93 +2016-08-12 19:32:00,22.8975,108.175,17.94 +2016-08-12 19:47:00,21.09,108.167,17.94 +2016-08-12 20:02:00,23.6188,108.173,17.95 +2016-08-12 20:17:00,24.0525,108.207,17.95 +2016-08-12 20:32:00,23.4275,108.102,17.94 +2016-08-12 20:47:00,21.4337,108.1,17.95 +2016-08-12 21:02:00,24.9587,108.033,17.96 +2016-08-12 21:17:00,23.0875,107.98,17.96 +2016-08-12 21:32:00,23.0875,107.893,17.96 +2016-08-12 21:47:00,24.0575,107.842,17.96 +2016-08-12 22:02:00,24.305,107.807,17.95 +2016-08-12 22:17:00,22.2625,107.835,17.96 +2016-08-12 22:32:00,22.7962,107.855,17.96 +2016-08-12 22:47:00,23.4275,107.852,17.96 +2016-08-12 23:02:00,23.6712,107.765,17.94 +2016-08-12 23:17:00,24.9037,107.72,17.93 +2016-08-12 23:32:00,22.0212,107.625,17.91 +2016-08-12 23:47:00,21.09,107.59,17.89 +2016-08-13 00:02:00,22.94,107.585,17.86 +2016-08-13 00:17:00,22.8438,107.482,17.83 +2016-08-13 00:32:00,23.3225,107.382,17.79 +2016-08-13 00:47:00,23.4737,107.378,17.74 +2016-08-13 01:02:00,25.6425,107.245,17.69 +2016-08-13 01:17:00,26.7675,107.195,17.66 +2016-08-13 01:32:00,22.5563,107.062,17.62 +2016-08-13 01:47:00,21.7312,107.07,17.59 +2016-08-13 02:02:00,22.0238,107.01,17.54 +2016-08-13 02:17:00,22.3562,106.917,17.5 +2016-08-13 02:32:00,25.7875,106.893,17.47 +2016-08-13 02:47:00,21.8787,106.908,17.44 +2016-08-13 03:02:00,25.545,106.96,17.42 +2016-08-13 03:17:00,20.94,106.895,17.4 +2016-08-13 03:32:00,20.985,106.925,17.39 +2016-08-13 03:47:00,21.9275,106.855,17.39 +2016-08-13 04:02:00,22.355,106.85,17.38 +2016-08-13 04:17:00,26.035,106.765,17.37 +2016-08-13 04:32:00,23.1813,106.712,17.36 +2016-08-13 04:47:00,25.985,106.692,17.35 +2016-08-13 05:02:00,24.96,106.688,17.34 +2016-08-13 05:17:00,23.5212,106.7,17.33 +2016-08-13 05:32:00,21.3363,106.685,17.35 +2016-08-13 05:47:00,25.0037,106.747,17.37 +2016-08-13 06:02:00,22.2612,106.8,17.4 +2016-08-13 06:17:00,23.4737,106.772,17.44 +2016-08-13 06:32:00,25.1512,106.83,17.49 +2016-08-13 06:47:00,23.8162,106.84,17.56 +2016-08-13 07:02:00,21.585,106.885,17.63 +2016-08-13 07:17:00,22.355,106.747,17.7 +2016-08-13 07:32:00,22.895,106.695,17.77 +2016-08-13 07:47:00,21.9275,106.505,17.85 +2016-08-13 08:02:00,24.5125,106.455,17.95 +2016-08-13 08:17:00,23.9575,106.545,18.02 +2016-08-13 08:32:00,22.5088,106.562,18.07 +2016-08-13 08:47:00,25.985,106.612,18.11 +2016-08-13 09:02:00,24.755,106.47,18.14 +2016-08-13 09:17:00,23.4275,106.51,18.24 +2016-08-13 09:32:00,20.2663,106.54,18.36 +2016-08-13 09:47:00,23.525,106.697,18.48 +2016-08-13 10:02:00,24.8538,106.735,18.61 +2016-08-13 10:17:00,24.5575,106.665,18.72 +2016-08-13 10:32:00,22.7025,106.72,18.85 +2016-08-13 10:47:00,25.3988,106.715,18.94 +2016-08-13 11:02:00,23.2325,106.673,19.05 +2016-08-13 11:17:00,23.81,106.62,19.14 +2016-08-13 11:32:00,23.4275,106.567,19.22 +2016-08-13 11:47:00,22.5013,106.647,19.29 +2016-08-13 12:02:00,22.8012,106.46,19.35 +2016-08-13 12:17:00,24.515,106.717,19.38 +2016-08-13 12:32:00,23.53,106.555,19.39 +2016-08-13 12:47:00,27.2562,106.533,19.43 +2016-08-13 13:02:00,25.6875,106.673,19.4 +2016-08-13 13:17:00,24.5587,106.727,19.39 +2016-08-13 13:32:00,22.3587,106.707,19.42 +2016-08-13 13:47:00,22.0275,106.822,19.39 +2016-08-13 14:02:00,22.0737,106.972,19.44 +2016-08-13 14:17:00,24.5625,106.955,19.5 +2016-08-13 14:32:00,23.4775,106.995,19.56 +2016-08-13 14:47:00,22.025,107.04,19.6 +2016-08-13 15:02:00,23.425,107.06,19.61 +2016-08-13 15:17:00,23.5262,107.122,19.62 +2016-08-13 15:32:00,22.9938,106.927,19.62 +2016-08-13 15:47:00,22.0238,107.17,19.61 +2016-08-13 16:02:00,21.2425,107.02,19.61 +2016-08-13 16:17:00,20.7537,107.117,19.6 +2016-08-13 16:32:00,22.8975,107.335,19.6 +2016-08-13 16:47:00,21.7325,107.417,19.6 +2016-08-13 17:02:00,21.7325,107.372,19.59 +2016-08-13 17:17:00,22.1212,107.47,19.57 +2016-08-13 17:32:00,19.5888,107.567,19.55 +2016-08-13 17:47:00,23.1338,107.643,19.51 +2016-08-13 18:02:00,24.9088,107.717,19.48 +2016-08-13 18:17:00,22.1275,107.76,19.44 +2016-08-13 18:32:00,23.8112,107.635,19.41 +2016-08-13 18:47:00,22.9962,107.71,19.38 +2016-08-13 19:02:00,22.6537,107.612,19.35 +2016-08-13 19:17:00,24.2588,107.492,19.33 +2016-08-13 19:32:00,22.8962,107.47,19.32 +2016-08-13 19:47:00,19.7375,107.533,19.29 +2016-08-13 20:02:00,24.66,107.5,19.25 +2016-08-13 20:17:00,23.7738,107.45,19.22 +2016-08-13 20:32:00,24.0563,107.587,19.2 +2016-08-13 20:47:00,23.9587,107.572,19.19 +2016-08-13 21:02:00,23.135,107.58,19.19 +2016-08-13 21:17:00,24.8562,107.595,19.18 +2016-08-13 21:32:00,24.21,107.637,19.16 +2016-08-13 21:47:00,22.1275,107.628,19.16 +2016-08-13 22:02:00,23.2812,107.552,19.15 +2016-08-13 22:17:00,22.8487,107.503,19.14 +2016-08-13 22:32:00,23.5275,107.417,19.13 +2016-08-13 22:47:00,24.3112,107.36,19.11 +2016-08-13 23:02:00,25.4,107.268,19.11 +2016-08-13 23:17:00,23.3275,107.2,19.11 +2016-08-13 23:32:00,22.945,107.145,19.12 +2016-08-13 23:47:00,21.535,107.107,19.14 +2016-08-14 00:02:00,21.7337,107.067,19.14 +2016-08-14 00:17:00,23.7225,107.067,19.17 +2016-08-14 00:32:00,23.325,107.052,19.18 +2016-08-14 00:47:00,22.605,107.02,19.2 +2016-08-14 01:02:00,23.77,106.995,19.2 +2016-08-14 01:17:00,23.5725,106.945,19.22 +2016-08-14 01:32:00,22.1712,106.902,19.22 +2016-08-14 01:47:00,23.4762,106.875,19.23 +2016-08-14 02:02:00,20.7962,106.73,19.22 +2016-08-14 02:17:00,26.465,106.652,19.22 +2016-08-14 02:32:00,23.7675,106.537,19.22 +2016-08-14 02:47:00,21.7337,106.435,19.21 +2016-08-14 03:02:00,22.7988,106.362,19.2 +2016-08-14 03:17:00,24.7513,106.317,19.18 +2016-08-14 03:32:00,22.8037,106.21,19.17 +2016-08-14 03:47:00,19.6888,106.19,19.17 +2016-08-14 04:02:00,22.6012,106.192,19.17 +2016-08-14 04:17:00,22.455,106.19,19.18 +2016-08-14 04:32:00,23.5725,106.197,19.19 +2016-08-14 04:47:00,23.7213,106.195,19.19 +2016-08-14 05:02:00,24.3562,106.245,19.2 +2016-08-14 05:17:00,23.3763,106.225,19.2 +2016-08-14 05:32:00,20.9912,106.207,19.21 +2016-08-14 05:47:00,21.9825,106.197,19.22 +2016-08-14 06:02:00,20.985,106.16,19.23 +2016-08-14 06:17:00,23.9575,106.062,19.23 +2016-08-14 06:32:00,25.7412,106.03,19.23 +2016-08-14 06:47:00,22.0275,105.982,19.23 +2016-08-14 07:02:00,22.6513,105.85,19.23 +2016-08-14 07:17:00,22.8988,105.878,19.25 +2016-08-14 07:32:00,22.2237,105.8,19.26 +2016-08-14 07:47:00,23.375,105.75,19.26 +2016-08-14 08:02:00,18.7675,105.837,19.26 +2016-08-14 08:17:00,20.7025,105.832,19.32 +2016-08-14 08:32:00,22.945,105.832,19.32 +2016-08-14 08:47:00,22.4075,105.805,19.31 +2016-08-14 09:02:00,22.9013,105.982,19.31 +2016-08-14 09:17:00,24.5587,105.955,19.31 +2016-08-14 09:32:00,21.88,105.99,19.33 +2016-08-14 09:47:00,23.57,105.897,19.35 +2016-08-14 10:02:00,23.0338,105.86,19.39 +2016-08-14 10:17:00,20.3162,106.035,19.4 +2016-08-14 10:32:00,22.7988,105.97,19.41 +2016-08-14 10:47:00,21.1888,106.11,19.43 +2016-08-14 11:02:00,23.77,105.99,19.46 +2016-08-14 11:17:00,23.28,105.967,19.49 +2016-08-14 11:32:00,20.9912,106.132,19.52 +2016-08-14 11:47:00,24.1025,106.185,19.54 +2016-08-14 12:02:00,22.7513,106.225,19.57 +2016-08-14 12:17:00,24.5587,106.472,19.61 +2016-08-14 12:32:00,23.2775,106.515,19.63 +2016-08-14 12:47:00,23.8625,106.56,19.65 +2016-08-14 13:02:00,24.76,106.56,19.65 +2016-08-14 13:17:00,24.6125,106.717,19.67 +2016-08-14 13:32:00,21.34,106.715,19.7 +2016-08-14 13:47:00,21.5338,106.715,19.71 +2016-08-14 14:02:00,23.6212,106.607,19.72 +2016-08-14 14:17:00,25.49,106.64,19.75 +2016-08-14 14:32:00,23.0837,106.53,19.77 +2016-08-14 14:47:00,22.4538,106.557,19.8 +2016-08-14 15:02:00,22.46,106.572,19.79 +2016-08-14 15:17:00,23.3288,106.665,19.78 +2016-08-14 15:32:00,23.0425,106.722,19.79 +2016-08-14 15:47:00,22.3587,106.735,19.8 +2016-08-14 16:02:00,24.3587,106.91,19.8 +2016-08-14 16:17:00,23.2288,106.935,19.79 +2016-08-14 16:32:00,22.4088,106.867,19.79 +2016-08-14 16:47:00,24.6588,106.975,19.79 +2016-08-14 17:02:00,21.44,106.905,19.78 +2016-08-14 17:17:00,22.6588,106.895,19.76 +2016-08-14 17:32:00,22.9938,106.942,19.74 +2016-08-14 17:47:00,23.9137,106.812,19.72 +2016-08-14 18:02:00,20.94,106.855,19.71 +2016-08-14 18:17:00,24.86,106.835,19.7 +2016-08-14 18:32:00,24.5587,106.88,19.69 +2016-08-14 18:47:00,24.8125,106.923,19.68 +2016-08-14 19:02:00,22.4125,106.94,19.66 +2016-08-14 19:17:00,24.465,106.977,19.64 +2016-08-14 19:32:00,20.025,107.007,19.63 +2016-08-14 19:47:00,19.8363,106.972,19.63 +2016-08-14 20:02:00,21.44,106.925,19.61 +2016-08-14 20:17:00,21.14,106.86,19.6 +2016-08-14 20:32:00,24.9062,106.827,19.59 +2016-08-14 20:47:00,24.1612,106.79,19.58 +2016-08-14 21:02:00,22.4112,106.785,19.57 +2016-08-14 21:17:00,22.6537,106.707,19.55 +2016-08-14 21:32:00,24.5112,106.753,19.54 +2016-08-14 21:47:00,21.3913,106.702,19.52 +2016-08-14 22:02:00,24.755,106.72,19.51 +2016-08-14 22:17:00,23.525,106.755,19.51 +2016-08-14 22:32:00,21.98,106.705,19.52 +2016-08-14 22:47:00,24.2113,106.63,19.5 +2016-08-14 23:02:00,22.2237,106.515,19.49 +2016-08-14 23:17:00,24.6075,106.423,19.46 +2016-08-14 23:32:00,22.22,106.39,19.42 +2016-08-14 23:47:00,24.56,106.285,19.33 +2016-08-15 00:02:00,22.9487,106.237,19.24 +2016-08-15 00:17:00,22.8988,106.257,19.15 +2016-08-15 00:32:00,22.6075,106.25,19.07 +2016-08-15 00:47:00,24.565,106.197,19.02 +2016-08-15 01:02:00,25.3975,106.202,18.98 +2016-08-15 01:17:00,21.8325,106.192,18.94 +2016-08-15 01:32:00,22.36,106.17,18.91 +2016-08-15 01:47:00,23.0375,106.107,18.88 +2016-08-15 02:02:00,24.6087,106.04,18.85 +2016-08-15 02:17:00,24.41,105.96,18.81 +2016-08-15 02:32:00,23.1837,105.88,18.77 +2016-08-15 02:47:00,24.515,105.825,18.73 +2016-08-15 03:02:00,25.8363,105.817,18.68 +2016-08-15 03:17:00,24.9587,105.845,18.65 +2016-08-15 03:32:00,23.0825,105.852,18.62 +2016-08-15 03:47:00,22.4575,105.9,18.59 +2016-08-15 04:02:00,24.2038,105.87,18.56 +2016-08-15 04:17:00,22.315,105.875,18.53 +2016-08-15 04:32:00,24.26,106.242,18.5 +2016-08-15 04:47:00,22.9475,107.21,18.47 +2016-08-15 05:02:00,23.2275,107.165,18.46 +2016-08-15 05:17:00,26.2712,106.878,18.48 +2016-08-15 05:32:00,23.6225,106.622,18.49 +2016-08-15 05:47:00,20.7513,106.408,18.5 +2016-08-15 06:02:00,22.7962,106.212,18.51 +2016-08-15 06:17:00,23.6263,105.995,18.5 +2016-08-15 06:32:00,23.915,105.923,18.51 +2016-08-15 06:47:00,24.4088,105.77,18.55 +2016-08-15 07:02:00,22.6987,105.71,18.59 +2016-08-15 07:17:00,23.3275,105.647,18.65 +2016-08-15 07:32:00,23.6687,105.5,18.7 +2016-08-15 07:47:00,23.96,105.577,18.77 +2016-08-15 08:02:00,25.4487,105.533,18.82 +2016-08-15 08:17:00,24.26,105.475,18.86 +2016-08-15 08:32:00,23.7213,105.362,18.88 +2016-08-15 08:47:00,25.5387,105.372,18.89 +2016-08-15 09:02:00,24.9562,105.177,18.86 +2016-08-15 09:17:00,24.6087,105.222,18.88 +2016-08-15 09:32:00,22.31,105.173,18.93 +2016-08-15 09:47:00,24.2562,105.027,18.98 +2016-08-15 10:02:00,23.9562,105.067,19.06 +2016-08-15 10:17:00,22.8475,105.065,19.13 +2016-08-15 10:32:00,25.49,105.035,19.21 +2016-08-15 10:47:00,24.31,105.18,19.26 +2016-08-15 11:02:00,24.7537,105.132,19.3 +2016-08-15 11:17:00,25.2525,105.253,19.31 +2016-08-15 11:32:00,22.7988,105.182,19.3 +2016-08-15 11:47:00,26.4175,105.08,19.37 +2016-08-15 12:02:00,21.8862,105.087,19.41 +2016-08-15 12:17:00,23.5287,105.102,19.41 +2016-08-15 12:32:00,24.3575,104.987,19.43 +2016-08-15 12:47:00,22.5075,104.872,19.45 +2016-08-15 13:02:00,23.1825,104.862,19.43 +2016-08-15 13:17:00,25.2025,104.725,19.45 +2016-08-15 13:32:00,19.6888,104.83,19.46 +2016-08-15 13:47:00,23.1825,104.857,19.47 +2016-08-15 14:02:00,22.0775,104.835,19.48 +2016-08-15 14:17:00,24.1062,104.855,19.49 +2016-08-15 14:32:00,22.705,104.857,19.49 +2016-08-15 14:47:00,26.8162,104.835,19.49 +2016-08-15 15:02:00,22.7475,104.855,19.51 +2016-08-15 15:17:00,22.17,104.757,19.52 +2016-08-15 15:32:00,23.5262,104.8,19.53 +2016-08-15 15:47:00,22.7075,104.83,19.53 +2016-08-15 16:02:00,22.755,104.775,19.54 +2016-08-15 16:17:00,26.7175,104.83,19.56 +2016-08-15 16:32:00,21.5338,104.753,19.59 +2016-08-15 16:47:00,23.1325,104.79,19.57 +2016-08-15 17:02:00,23.675,104.872,19.57 +2016-08-15 17:17:00,23.0863,104.917,19.55 +2016-08-15 17:32:00,24.2137,105.015,19.54 +2016-08-15 17:47:00,20.7962,105.17,19.52 +2016-08-15 18:02:00,20.7975,105.33,19.5 +2016-08-15 18:17:00,24.86,105.387,19.48 +2016-08-15 18:32:00,24.0075,105.43,19.46 +2016-08-15 18:47:00,25.4475,105.415,19.44 +2016-08-15 19:02:00,24.2125,105.432,19.42 +2016-08-15 19:17:00,23.2787,105.365,19.38 +2016-08-15 19:32:00,25.1575,105.357,19.35 +2016-08-15 19:47:00,24.365,105.253,19.32 +2016-08-15 20:02:00,25.7425,105.227,19.3 +2016-08-15 20:17:00,22.4562,105.182,19.27 +2016-08-15 20:32:00,24.7038,105.147,19.23 +2016-08-15 20:47:00,23.38,105.145,19.18 +2016-08-15 21:02:00,22.9938,105.012,19.15 +2016-08-15 21:17:00,23.435,104.923,19.11 +2016-08-15 21:32:00,24.7562,104.807,19.08 +2016-08-15 21:47:00,24.7575,104.643,19.05 +2016-08-15 22:02:00,23.77,104.497,19.02 +2016-08-15 22:17:00,23.765,104.36,18.98 +2016-08-15 22:32:00,22.7475,104.102,18.95 +2016-08-15 22:47:00,25.5462,103.932,18.92 +2016-08-15 23:02:00,27.3063,103.725,18.89 +2016-08-15 23:17:00,26.4713,103.512,18.87 +2016-08-15 23:32:00,23.53,103.347,18.85 +2016-08-15 23:47:00,26.04,103.227,18.85 +2016-08-16 00:02:00,23.0875,103.11,18.85 +2016-08-16 00:17:00,26.52,102.97,18.84 +2016-08-16 00:32:00,23.1325,102.837,18.82 +2016-08-16 00:47:00,26.0338,102.637,18.81 +2016-08-16 01:02:00,22.7988,102.47,18.81 +2016-08-16 01:17:00,26.3237,102.285,18.81 +2016-08-16 01:32:00,20.5662,102.137,18.79 +2016-08-16 01:47:00,24.4613,101.908,18.78 +2016-08-16 02:02:00,25.1562,101.78,18.77 +2016-08-16 02:17:00,24.0575,101.622,18.76 +2016-08-16 02:32:00,21.1912,101.512,18.75 +2016-08-16 02:47:00,23.9112,101.405,18.74 +2016-08-16 03:02:00,25.2087,101.347,18.72 +2016-08-16 03:17:00,25.94,101.3,18.7 +2016-08-16 03:32:00,23.77,101.21,18.69 +2016-08-16 03:47:00,23.8112,101.152,18.66 +2016-08-16 04:02:00,23.725,101.048,18.62 +2016-08-16 04:17:00,25.6425,100.977,18.58 +2016-08-16 04:32:00,26.225,100.885,18.55 +2016-08-16 04:47:00,26.0863,100.732,18.54 +2016-08-16 05:02:00,24.8575,100.655,18.52 +2016-08-16 05:17:00,25.8925,100.58,18.51 +2016-08-16 05:32:00,23.135,100.625,18.5 +2016-08-16 05:47:00,24.9625,100.667,18.48 +2016-08-16 06:02:00,25.4925,100.665,18.47 +2016-08-16 06:17:00,25.5887,100.69,18.45 +2016-08-16 06:32:00,22.5537,100.742,18.43 +2016-08-16 06:47:00,23.6225,100.647,18.41 +2016-08-16 07:02:00,25.205,100.61,18.44 +2016-08-16 07:17:00,26.035,100.537,18.54 +2016-08-16 07:32:00,22.6525,100.567,18.62 +2016-08-16 07:47:00,26.62,100.59,18.7 +2016-08-16 08:02:00,20.9863,100.607,18.78 +2016-08-16 08:17:00,25.2025,100.61,18.86 +2016-08-16 08:32:00,21.3875,100.682,18.91 +2016-08-16 08:47:00,24.5112,100.647,18.94 +2016-08-16 09:02:00,26.1825,100.665,18.98 +2016-08-16 09:17:00,22.1225,100.613,19.04 +2016-08-16 09:32:00,24.8087,100.475,19.05 +2016-08-16 09:47:00,22.4075,100.467,19.08 +2016-08-16 10:02:00,22.8463,100.445,19.13 +2016-08-16 10:17:00,24.6525,100.375,19.19 +2016-08-16 10:32:00,24.36,100.41,19.17 +2016-08-16 10:47:00,24.9112,100.36,19.22 +2016-08-16 11:02:00,23.5812,100.49,19.26 +2016-08-16 11:17:00,25.6888,100.402,19.35 +2016-08-16 11:32:00,24.1588,100.357,19.36 +2016-08-16 11:47:00,27.0587,100.442,19.42 +2016-08-16 12:02:00,23.475,100.495,19.38 +2016-08-16 12:17:00,24.7537,100.52,19.38 +2016-08-16 12:32:00,26.04,100.39,19.36 +2016-08-16 12:47:00,24.3138,100.495,19.3 +2016-08-16 13:02:00,24.5088,100.432,19.24 +2016-08-16 13:17:00,23.6237,100.36,19.28 +2016-08-16 13:32:00,24.3063,100.265,19.29 +2016-08-16 13:47:00,22.7975,100.275,19.32 +2016-08-16 14:02:00,23.085,100.42,19.33 +2016-08-16 14:17:00,26.9163,100.435,19.35 +2016-08-16 14:32:00,23.3812,100.387,19.35 +2016-08-16 14:47:00,23.7275,100.485,19.37 +2016-08-16 15:02:00,24.905,100.577,19.37 +2016-08-16 15:17:00,24.5137,100.47,19.34 +2016-08-16 15:32:00,22.7513,100.432,19.3 +2016-08-16 15:47:00,23.3763,100.335,19.27 +2016-08-16 16:02:00,25.0537,100.51,19.25 +2016-08-16 16:17:00,24.5125,100.31,19.22 +2016-08-16 16:32:00,24.01,100.275,19.2 +2016-08-16 16:47:00,24.4625,100.125,19.18 +2016-08-16 17:02:00,26.4688,100.317,19.16 +2016-08-16 17:17:00,21.44,100.217,19.15 +2016-08-16 17:32:00,23.67,100.272,19.14 +2016-08-16 17:47:00,24.705,100.365,19.14 +2016-08-16 18:02:00,25.3988,100.36,19.12 +2016-08-16 18:17:00,24.61,100.365,19.1 +2016-08-16 18:32:00,21.1437,100.25,19.08 +2016-08-16 18:47:00,22.9437,100.167,19.06 +2016-08-16 19:02:00,23.675,100.11,19.04 +2016-08-16 19:17:00,26.4175,100.072,19.03 +2016-08-16 19:32:00,24.4625,99.995,19.0 +2016-08-16 19:47:00,23.815,99.925,18.98 +2016-08-16 20:02:00,25.7425,99.9425,18.96 +2016-08-16 20:17:00,23.6762,99.935,18.92 +2016-08-16 20:32:00,24.5638,99.9225,18.9 +2016-08-16 20:47:00,23.77,99.8725,18.87 +2016-08-16 21:02:00,24.1575,99.8775,18.85 +2016-08-16 21:17:00,25.5437,99.97,18.82 +2016-08-16 21:32:00,27.3075,99.955,18.8 +2016-08-16 21:47:00,25.3025,99.8075,18.77 +2016-08-16 22:02:00,23.5762,99.8325,18.76 +2016-08-16 22:17:00,24.6588,99.7175,18.74 +2016-08-16 22:32:00,24.1588,99.6825,18.72 +2016-08-16 22:47:00,25.2513,99.6475,18.7 +2016-08-16 23:02:00,23.72,99.5775,18.69 +2016-08-16 23:17:00,26.6162,99.6225,18.66 +2016-08-16 23:32:00,25.7375,99.59,18.64 +2016-08-16 23:47:00,25.1038,99.59,18.62 +2016-08-17 00:02:00,24.66,99.625,18.6 +2016-08-17 00:17:00,24.5638,99.6075,18.58 +2016-08-17 00:32:00,25.3037,99.5625,18.57 +2016-08-17 00:47:00,24.8025,99.52,18.56 +2016-08-17 01:02:00,23.8625,99.4625,18.54 +2016-08-17 01:17:00,23.8125,99.3825,18.54 +2016-08-17 01:32:00,24.6562,99.3475,18.54 +2016-08-17 01:47:00,23.6738,99.2525,18.55 +2016-08-17 02:02:00,25.6437,99.175,18.54 +2016-08-17 02:17:00,23.3775,99.16,18.54 +2016-08-17 02:32:00,24.2537,99.175,18.54 +2016-08-17 02:47:00,24.0537,99.225,18.54 +2016-08-17 03:02:00,25.9337,99.2125,18.53 +2016-08-17 03:17:00,25.3962,99.2025,18.51 +2016-08-17 03:32:00,25.1537,99.1775,18.48 +2016-08-17 03:47:00,24.0575,99.1675,18.46 +2016-08-17 04:02:00,25.0088,99.1125,18.43 +2016-08-17 04:17:00,23.1762,99.17,18.4 +2016-08-17 04:32:00,25.0075,99.0525,18.36 +2016-08-17 04:47:00,25.6862,98.9875,18.34 +2016-08-17 05:02:00,26.4163,98.9975,18.32 +2016-08-17 05:17:00,25.885,98.995,18.3 +2016-08-17 05:32:00,24.5075,98.995,18.29 +2016-08-17 05:47:00,23.9112,98.98,18.31 +2016-08-17 06:02:00,26.0825,98.9975,18.31 +2016-08-17 06:17:00,24.1525,98.9875,18.31 +2016-08-17 06:32:00,25.3487,99.0225,18.31 +2016-08-17 06:47:00,25.5938,98.9875,18.33 +2016-08-17 07:02:00,25.3012,98.985,18.34 +2016-08-17 07:17:00,24.8037,98.99,18.35 +2016-08-17 07:32:00,24.9575,99.0425,18.36 +2016-08-17 07:47:00,23.23,99.13,18.35 +2016-08-17 08:02:00,25.0037,99.125,18.34 +2016-08-17 08:17:00,26.035,99.1925,18.37 +2016-08-17 08:32:00,25.25,99.2225,18.41 +2016-08-17 08:47:00,24.6038,99.235,18.5 +2016-08-17 09:02:00,24.4037,99.2575,18.59 +2016-08-17 09:17:00,25.2537,99.2275,18.67 +2016-08-17 09:32:00,26.1325,99.1825,18.76 +2016-08-17 09:47:00,22.4062,99.035,18.82 +2016-08-17 10:02:00,23.425,99.0225,18.81 +2016-08-17 10:17:00,25.2513,99.08,18.84 +2016-08-17 10:32:00,24.6038,99.1125,18.9 +2016-08-17 10:47:00,25.8363,99.175,18.96 +2016-08-17 11:02:00,23.6675,99.1925,19.03 +2016-08-17 11:17:00,25.1075,99.1775,19.07 +2016-08-17 11:32:00,24.6537,99.305,19.11 +2016-08-17 11:47:00,23.4287,99.19,19.16 +2016-08-17 12:02:00,23.9088,99.34,19.22 +2016-08-17 12:17:00,24.6512,99.145,19.28 +2016-08-17 12:32:00,26.5675,99.21,19.3 +2016-08-17 12:47:00,25.2025,99.0325,19.37 +2016-08-17 13:02:00,24.4088,99.12,19.32 +2016-08-17 13:17:00,24.96,99.1375,19.33 +2016-08-17 13:32:00,24.2588,98.93,19.31 +2016-08-17 13:47:00,24.6525,99.0875,19.33 +2016-08-17 14:02:00,24.9037,99.18,19.38 +2016-08-17 14:17:00,25.0037,99.2125,19.36 +2016-08-17 14:32:00,25.8862,99.24,19.34 +2016-08-17 14:47:00,26.0325,99.23,19.32 +2016-08-17 15:02:00,25.4463,99.08,19.3 +2016-08-17 15:17:00,24.4613,99.0575,19.28 +2016-08-17 15:32:00,24.91,99.1525,19.25 +2016-08-17 15:47:00,23.9562,99.0775,19.24 +2016-08-17 16:02:00,25.59,98.9625,19.21 +2016-08-17 16:17:00,24.66,99.0175,19.18 +2016-08-17 16:32:00,26.1775,99.055,19.14 +2016-08-17 16:47:00,25.4938,98.9925,19.1 +2016-08-17 17:02:00,24.7575,98.98,19.05 +2016-08-17 17:17:00,25.06,98.9875,19.01 +2016-08-17 17:32:00,23.8138,99.02,18.97 +2016-08-17 17:47:00,23.9075,99.015,18.93 +2016-08-17 18:02:00,23.5212,99.015,18.9 +2016-08-17 18:17:00,24.6562,98.9775,18.88 +2016-08-17 18:32:00,25.49,98.9225,18.87 +2016-08-17 18:47:00,24.9037,98.9,18.86 +2016-08-17 19:02:00,25.5437,98.865,18.84 +2016-08-17 19:17:00,26.42,98.7825,18.83 +2016-08-17 19:32:00,25.0088,98.7325,18.81 +2016-08-17 19:47:00,24.2537,98.6925,18.8 +2016-08-17 20:02:00,23.8625,98.7825,18.79 +2016-08-17 20:17:00,23.3775,98.7975,18.77 +2016-08-17 20:32:00,25.8387,98.83,18.75 +2016-08-17 20:47:00,26.0325,98.81,18.72 +2016-08-17 21:02:00,26.035,98.82,18.69 +2016-08-17 21:17:00,26.225,98.7975,18.66 +2016-08-17 21:32:00,24.705,98.7875,18.63 +2016-08-17 21:47:00,24.6537,98.73,18.6 +2016-08-17 22:02:00,24.705,98.725,18.56 +2016-08-17 22:17:00,24.9562,98.695,18.55 +2016-08-17 22:32:00,25.2012,98.6625,18.53 +2016-08-17 22:47:00,25.9362,98.64,18.5 +2016-08-17 23:02:00,26.1762,98.6975,18.48 +2016-08-17 23:17:00,26.5187,98.73,18.46 +2016-08-17 23:32:00,23.425,98.7875,18.44 +2016-08-17 23:47:00,24.2062,98.795,18.42 +2016-08-18 00:02:00,25.055,98.78,18.4 +2016-08-18 00:17:00,24.8037,98.7975,18.38 +2016-08-18 00:32:00,25.9362,98.765,18.38 +2016-08-18 00:47:00,26.2237,98.73,18.37 +2016-08-18 01:02:00,25.64,98.72,18.38 +2016-08-18 01:17:00,26.2675,98.68,18.4 +2016-08-18 01:32:00,24.3087,98.6325,18.41 +2016-08-18 01:47:00,24.5575,98.6225,18.42 +2016-08-18 02:02:00,25.3037,98.62,18.43 +2016-08-18 02:17:00,25.4887,98.6975,18.45 +2016-08-18 02:32:00,25.64,98.75,18.47 +2016-08-18 02:47:00,26.5187,98.7325,18.48 +2016-08-18 03:02:00,26.515,98.7725,18.49 +2016-08-18 03:17:00,26.4187,98.7675,18.48 +2016-08-18 03:32:00,25.2,98.7825,18.47 +2016-08-18 03:47:00,26.6175,98.77,18.45 +2016-08-18 04:02:00,24.9562,98.75,18.43 +2016-08-18 04:17:00,25.3512,98.7375,18.41 +2016-08-18 04:32:00,25.7975,98.6725,18.38 +2016-08-18 04:47:00,25.445,98.6925,18.34 +2016-08-18 05:02:00,26.175,98.685,18.35 +2016-08-18 05:17:00,28.51,98.7475,18.34 +2016-08-18 05:32:00,24.4037,98.8025,18.34 +2016-08-18 05:47:00,24.5563,98.78,18.35 +2016-08-18 06:02:00,25.005,98.78,18.37 +2016-08-18 06:17:00,26.9625,98.7925,18.39 +2016-08-18 06:32:00,25.2038,98.7575,18.41 +2016-08-18 06:47:00,26.7675,98.82,18.44 +2016-08-18 07:02:00,26.6125,98.7925,18.46 +2016-08-18 07:17:00,25.3475,98.8025,18.5 +2016-08-18 07:32:00,24.7537,98.865,18.55 +2016-08-18 07:47:00,25.25,98.9325,18.61 +2016-08-18 08:02:00,25.5362,99.0425,18.68 +2016-08-18 08:17:00,24.9062,99.0725,18.76 +2016-08-18 08:32:00,26.7213,99.1825,18.84 +2016-08-18 08:47:00,25.4925,99.16,18.91 +2016-08-18 09:02:00,25.1512,99.19,18.97 +2016-08-18 09:17:00,25.685,99.2725,19.04 +2016-08-18 09:32:00,23.5687,99.22,19.11 +2016-08-18 09:47:00,23.4262,99.1325,19.2 +2016-08-18 10:02:00,24.31,99.1575,19.28 +2016-08-18 10:17:00,24.755,99.195,19.32 +2016-08-18 10:32:00,24.2562,99.03,19.4 +2016-08-18 10:47:00,25.005,99.16,19.48 +2016-08-18 11:02:00,25.8862,99.1625,19.49 +2016-08-18 11:17:00,25.485,99.265,19.51 +2016-08-18 11:32:00,25.3487,99.37,19.52 +2016-08-18 11:47:00,25.2525,99.34,19.53 +2016-08-18 12:02:00,26.32,99.3675,19.52 +2016-08-18 12:17:00,25.9375,99.3525,19.46 +2016-08-18 12:32:00,23.955,99.3275,19.44 +2016-08-18 12:47:00,24.7525,99.2575,19.42 +2016-08-18 13:02:00,25.0537,99.36,19.41 +2016-08-18 13:17:00,24.905,99.2975,19.4 +2016-08-18 13:32:00,24.1025,99.3275,19.35 +2016-08-18 13:47:00,24.3037,99.195,19.32 +2016-08-18 14:02:00,26.0375,99.2825,19.32 +2016-08-18 14:17:00,24.8562,99.285,19.31 +2016-08-18 14:32:00,26.4163,99.37,19.28 +2016-08-18 14:47:00,24.8063,99.42,19.23 +2016-08-18 15:02:00,25.6362,99.4375,19.2 +2016-08-18 15:17:00,25.9388,99.505,19.19 +2016-08-18 15:32:00,24.3075,99.51,19.17 +2016-08-18 15:47:00,25.4,99.5625,19.14 +2016-08-18 16:02:00,26.2262,99.5425,19.13 +2016-08-18 16:17:00,25.205,99.4725,19.1 +2016-08-18 16:32:00,26.1738,99.485,19.08 +2016-08-18 16:47:00,25.885,99.4425,19.05 +2016-08-18 17:02:00,25.885,99.3925,19.04 +2016-08-18 17:17:00,26.0837,99.5375,19.03 +2016-08-18 17:32:00,26.4187,99.4575,19.0 +2016-08-18 17:47:00,23.7262,99.5475,18.96 +2016-08-18 18:02:00,25.3962,99.5475,18.92 +2016-08-18 18:17:00,25.9375,99.5975,18.89 +2016-08-18 18:32:00,24.9075,99.6025,18.86 +2016-08-18 18:47:00,26.0338,99.6075,18.84 +2016-08-18 19:02:00,25.7387,99.515,18.83 +2016-08-18 19:17:00,26.0837,99.4875,18.83 +2016-08-18 19:32:00,25.445,99.3825,18.82 +2016-08-18 19:47:00,26.2762,99.345,18.82 +2016-08-18 20:02:00,26.4725,99.2925,18.82 +2016-08-18 20:17:00,26.42,99.3,18.82 +2016-08-18 20:32:00,24.0563,99.32,18.82 +2016-08-18 20:47:00,26.13,99.3525,18.82 +2016-08-18 21:02:00,25.6888,99.3825,18.82 +2016-08-18 21:17:00,25.5912,99.4,18.83 +2016-08-18 21:32:00,25.0125,99.385,18.83 +2016-08-18 21:47:00,26.2262,99.415,18.83 +2016-08-18 22:02:00,24.4062,99.35,18.83 +2016-08-18 22:17:00,25.49,99.3025,18.81 +2016-08-18 22:32:00,25.445,99.245,18.8 +2016-08-18 22:47:00,28.0075,99.1525,18.79 +2016-08-18 23:02:00,24.4587,99.1125,18.77 +2016-08-18 23:17:00,26.0338,99.08,18.76 +2016-08-18 23:32:00,25.7425,99.0225,18.75 +2016-08-18 23:47:00,25.5462,99.0625,18.73 +2016-08-19 00:02:00,26.3688,99.0875,18.71 +2016-08-19 00:17:00,25.3487,99.1125,18.69 +2016-08-19 00:32:00,25.0062,99.105,18.68 +2016-08-19 00:47:00,25.1525,99.125,18.67 +2016-08-19 01:02:00,26.7125,99.065,18.66 +2016-08-19 01:17:00,26.2725,99.02,18.67 +2016-08-19 01:32:00,25.9887,98.9675,18.67 +2016-08-19 01:47:00,25.1562,98.94,18.67 +2016-08-19 02:02:00,26.7175,98.87,18.66 +2016-08-19 02:17:00,25.6387,98.8575,18.65 +2016-08-19 02:32:00,25.0075,98.74,18.65 +2016-08-19 02:47:00,26.8675,98.73,18.63 +2016-08-19 03:02:00,27.1075,98.735,18.62 +2016-08-19 03:17:00,26.6738,98.7375,18.6 +2016-08-19 03:32:00,23.3288,98.7675,18.57 +2016-08-19 03:47:00,25.3538,98.8125,18.56 +2016-08-19 04:02:00,23.8613,98.81,18.54 +2016-08-19 04:17:00,26.8675,98.785,18.51 +2016-08-19 04:32:00,26.13,98.7925,18.49 +2016-08-19 04:47:00,24.9562,98.76,18.46 +2016-08-19 05:02:00,27.105,98.7375,18.43 +2016-08-19 05:17:00,26.8213,98.7075,18.41 +2016-08-19 05:32:00,24.5163,98.615,18.39 +2016-08-19 05:47:00,24.51,102.11,18.38 +2016-08-19 06:02:00,25.3962,113.71,18.39 +2016-08-19 06:17:00,25.2012,113.935,18.4 +2016-08-19 06:32:00,27.5625,112.345,18.35 +2016-08-19 06:47:00,27.7113,110.54,18.23 +2016-08-19 07:02:00,26.1775,108.923,18.18 +2016-08-19 07:17:00,28.0062,107.5,18.14 +2016-08-19 07:32:00,24.4137,106.285,18.14 +2016-08-19 07:47:00,24.9562,105.122,18.16 +2016-08-19 08:02:00,25.74,104.17,18.2 +2016-08-19 08:17:00,26.2712,103.3,18.26 +2016-08-19 08:32:00,26.3237,102.557,18.35 +2016-08-19 08:47:00,26.465,101.775,18.46 +2016-08-19 09:02:00,27.7625,101.105,18.57 +2016-08-19 09:17:00,27.5088,100.55,18.67 +2016-08-19 09:32:00,26.8162,100.012,18.77 +2016-08-19 09:47:00,26.9625,99.5425,18.87 +2016-08-19 10:02:00,27.96,99.095,18.93 +2016-08-19 10:17:00,26.32,98.715,19.01 +2016-08-19 10:32:00,25.15,98.2875,19.1 +2016-08-19 10:47:00,27.7637,97.9775,19.15 +2016-08-19 11:02:00,26.1362,97.6375,19.21 +2016-08-19 11:17:00,25.7925,97.315,19.26 +2016-08-19 11:32:00,25.2537,96.9675,19.32 +2016-08-19 11:47:00,25.055,96.8,19.4 +2016-08-19 12:02:00,25.4463,96.5575,19.45 +2016-08-19 12:17:00,25.7387,96.34,19.46 +2016-08-19 12:32:00,25.9388,96.2575,19.49 +2016-08-19 12:47:00,25.2562,96.0925,19.5 +2016-08-19 13:02:00,25.745,95.9825,19.52 +2016-08-19 13:17:00,25.8862,95.87,19.54 +2016-08-19 13:32:00,26.225,95.89,19.52 +2016-08-19 13:47:00,25.7375,95.7525,19.53 +2016-08-19 14:02:00,25.6413,95.7325,19.51 +2016-08-19 14:17:00,25.4925,95.7175,19.47 +2016-08-19 14:32:00,25.5925,95.68,19.45 +2016-08-19 14:47:00,26.8225,95.7125,19.41 +2016-08-19 15:02:00,28.36,95.76,19.37 +2016-08-19 15:17:00,27.0575,95.785,19.32 +2016-08-19 15:32:00,24.5125,95.895,19.27 +2016-08-19 15:47:00,24.56,96.0075,19.24 +2016-08-19 16:02:00,25.3063,96.03,19.2 +2016-08-19 16:17:00,26.52,96.12,19.19 +2016-08-19 16:32:00,28.3637,96.1725,19.2 +2016-08-19 16:47:00,25.3587,96.23,19.21 +2016-08-19 17:02:00,26.6212,96.2825,19.21 +2016-08-19 17:17:00,24.9613,96.3275,19.21 +2016-08-19 17:32:00,24.3575,96.44,19.21 +2016-08-19 17:47:00,24.9562,96.4875,19.19 +2016-08-19 18:02:00,27.1612,96.485,19.18 +2016-08-19 18:17:00,25.5437,96.59,19.18 +2016-08-19 18:32:00,26.18,96.58,19.18 +2016-08-19 18:47:00,28.265,96.6775,19.2 +2016-08-19 19:02:00,26.3712,96.8075,19.22 +2016-08-19 19:17:00,26.0863,96.8425,19.24 +2016-08-19 19:32:00,25.7913,96.9125,19.27 +2016-08-19 19:47:00,25.7937,96.935,19.29 +2016-08-19 20:02:00,26.8688,96.9725,19.3 +2016-08-19 20:17:00,25.9425,97.02,19.31 +2016-08-19 20:32:00,26.5262,96.985,19.32 +2016-08-19 20:47:00,26.2762,97.0425,19.33 +2016-08-19 21:02:00,23.3763,97.04,19.34 +2016-08-19 21:17:00,26.4262,97.08,19.33 +2016-08-19 21:32:00,25.7937,97.09,19.33 +2016-08-19 21:47:00,27.5163,97.19,19.34 +2016-08-19 22:02:00,26.0875,97.27,19.34 +2016-08-19 22:17:00,24.8125,97.355,19.34 +2016-08-19 22:32:00,25.9425,97.4,19.34 +2016-08-19 22:47:00,27.26,97.42,19.34 +2016-08-19 23:02:00,27.9625,97.475,19.34 +2016-08-19 23:17:00,27.415,97.455,19.35 +2016-08-19 23:32:00,25.9875,97.455,19.37 +2016-08-19 23:47:00,26.5212,97.475,19.38 +2016-08-20 00:02:00,25.0575,97.4025,19.38 +2016-08-20 00:17:00,24.7625,97.4175,19.4 +2016-08-20 00:32:00,25.9437,97.415,19.41 +2016-08-20 00:47:00,24.76,97.42,19.43 +2016-08-20 01:02:00,27.0612,97.475,19.45 +2016-08-20 01:17:00,26.8187,97.595,19.46 +2016-08-20 01:32:00,25.64,97.54,19.49 +2016-08-20 01:47:00,27.3112,97.595,19.52 +2016-08-20 02:02:00,25.4512,97.6325,19.55 +2016-08-20 02:17:00,25.26,97.6125,19.58 +2016-08-20 02:32:00,25.2588,97.6775,19.61 +2016-08-20 02:47:00,25.3087,97.715,19.63 +2016-08-20 03:02:00,26.6175,97.7275,19.66 +2016-08-20 03:17:00,26.8237,97.745,19.68 +2016-08-20 03:32:00,24.5625,97.845,19.7 +2016-08-20 03:47:00,25.8887,97.9575,19.7 +2016-08-20 04:02:00,25.8463,97.9625,19.71 +2016-08-20 04:17:00,26.92,98.1175,19.72 +2016-08-20 04:32:00,28.8525,98.24,19.72 +2016-08-20 04:47:00,27.9088,98.3275,19.74 +2016-08-20 05:02:00,26.6225,98.3375,19.74 +2016-08-20 05:17:00,27.4662,98.4175,19.75 +2016-08-20 05:32:00,26.4688,98.4525,19.76 +2016-08-20 05:47:00,26.7213,98.4875,19.75 +2016-08-20 06:02:00,27.0638,98.5175,19.76 +2016-08-20 06:17:00,27.0137,98.5,19.76 +2016-08-20 06:30:59,27.5625,98.56,19.81 +2016-08-20 06:47:00,28.0638,98.5725,19.85 +2016-08-20 07:02:00,27.6663,98.6075,19.88 +2016-08-20 07:17:00,27.1125,98.5775,19.92 +2016-08-20 07:32:00,25.4487,98.61,19.95 +2016-08-20 07:47:00,25.6975,98.6325,19.98 +2016-08-20 08:02:00,25.1087,98.695,19.97 +2016-08-20 08:17:00,26.42,98.7575,19.99 +2016-08-20 08:32:00,27.06,98.7775,19.98 +2016-08-20 08:47:00,27.1075,98.7025,20.04 +2016-08-20 09:02:00,26.9637,98.8075,20.09 +2016-08-20 09:17:00,25.4487,98.865,20.09 +2016-08-20 09:32:00,25.8925,98.8675,20.12 +2016-08-20 09:47:00,27.6175,98.95,20.15 +2016-08-20 10:02:00,26.2237,98.9525,20.19 +2016-08-20 10:17:00,26.5212,98.8625,20.22 +2016-08-20 10:32:00,27.7612,98.9225,20.18 +2016-08-20 10:47:00,27.7162,98.9825,20.17 +2016-08-20 11:02:00,26.7738,98.875,20.12 +2016-08-20 11:17:00,27.2612,98.8975,20.07 +2016-08-20 11:32:00,26.8225,98.89,20.03 +2016-08-20 11:47:00,25.3988,98.77,19.97 +2016-08-20 12:02:00,25.255,98.7725,19.91 +2016-08-20 12:17:00,26.3213,98.765,19.84 +2016-08-20 12:32:00,26.665,98.805,19.81 +2016-08-20 12:47:00,28.0062,98.84,19.8 +2016-08-20 13:02:00,26.6675,98.86,19.81 +2016-08-20 13:17:00,27.115,98.895,19.82 +2016-08-20 13:32:00,25.9375,98.9225,19.83 +2016-08-20 13:47:00,25.9863,98.905,19.82 +2016-08-20 14:02:00,26.1325,98.8825,19.81 +2016-08-20 14:17:00,26.8187,98.8925,19.77 +2016-08-20 14:32:00,27.6663,98.8525,19.73 +2016-08-20 14:47:00,26.225,99.22,19.69 +2016-08-20 15:02:00,25.6437,99.5225,19.66 +2016-08-20 15:17:00,26.3225,100.025,19.64 +2016-08-20 15:32:00,27.06,100.305,19.63 +2016-08-20 15:47:00,25.5925,100.425,19.63 +2016-08-20 16:02:00,26.27,100.56,19.65 +2016-08-20 16:17:00,27.4075,100.63,19.66 +2016-08-20 16:32:00,26.4637,100.68,19.68 +2016-08-20 16:47:00,28.2125,100.742,19.72 +2016-08-20 17:02:00,27.36,100.762,19.75 +2016-08-20 17:17:00,26.275,100.785,19.76 +2016-08-20 17:32:00,26.57,100.812,19.76 +2016-08-20 17:47:00,29.9225,100.942,19.76 +2016-08-20 18:02:00,26.72,101.018,19.78 +2016-08-20 18:17:00,27.7137,101.152,19.8 +2016-08-20 18:32:00,29.0488,101.137,19.82 +2016-08-20 18:47:00,30.0238,101.225,19.85 +2016-08-20 19:02:00,28.1125,101.332,19.88 +2016-08-20 19:17:00,30.0275,101.405,19.92 +2016-08-20 19:32:00,26.7188,101.495,19.96 +2016-08-20 19:47:00,26.27,101.53,19.99 +2016-08-20 20:02:00,27.1075,101.567,20.02 +2016-08-20 20:17:00,27.7588,101.542,20.03 +2016-08-20 20:32:00,27.6637,101.587,20.05 +2016-08-20 20:47:00,28.8512,101.537,20.07 +2016-08-20 21:02:00,26.87,101.577,20.07 +2016-08-20 21:17:00,28.0612,101.57,20.09 +2016-08-20 21:32:00,26.0837,101.507,20.09 +2016-08-20 21:47:00,28.11,101.552,20.09 +2016-08-20 22:02:00,27.31,101.515,20.09 +2016-08-20 22:17:00,26.62,101.53,20.09 +2016-08-20 22:32:00,29.05,101.527,20.09 +2016-08-20 22:47:00,29.0537,101.46,20.09 +2016-08-20 23:02:00,28.22,101.445,20.07 +2016-08-20 23:17:00,29.195,101.375,20.06 +2016-08-20 23:32:00,25.3962,101.332,20.04 +2016-08-20 23:47:00,26.8675,101.225,20.03 +2016-08-21 00:02:00,25.7425,101.192,20.0 +2016-08-21 00:17:00,26.6663,101.162,19.98 +2016-08-21 00:32:00,27.7675,101.072,19.97 +2016-08-21 00:47:00,25.695,101.055,19.94 +2016-08-21 01:02:00,27.3112,101.048,19.92 +2016-08-21 01:17:00,27.21,100.992,19.92 +2016-08-21 01:32:00,25.5875,101.04,19.89 +2016-08-21 01:47:00,26.2225,100.995,19.86 +2016-08-21 02:02:00,26.0362,100.89,19.84 +2016-08-21 02:17:00,26.2225,100.872,19.83 +2016-08-21 02:32:00,25.8438,100.798,19.81 +2016-08-21 02:47:00,27.3662,100.722,19.79 +2016-08-21 03:02:00,26.9613,100.71,19.77 +2016-08-21 03:17:00,28.3125,100.613,19.74 +2016-08-21 03:32:00,26.9587,100.518,19.71 +2016-08-21 03:47:00,27.205,100.49,19.68 +2016-08-21 04:02:00,27.3613,100.405,19.63 +2016-08-21 04:17:00,27.3662,100.472,19.58 +2016-08-21 04:32:00,28.855,100.535,19.54 +2016-08-21 04:47:00,25.645,100.545,19.49 +2016-08-21 05:02:00,27.0112,100.555,19.46 +2016-08-21 05:17:00,26.3712,100.54,19.42 +2016-08-21 05:32:00,27.9075,100.605,19.37 +2016-08-21 05:47:00,26.225,100.452,19.34 +2016-08-21 06:02:00,27.1562,100.562,19.32 +2016-08-21 06:17:00,27.2113,100.452,19.31 +2016-08-21 06:32:00,24.01,100.43,19.3 +2016-08-21 06:47:00,26.57,100.42,19.31 +2016-08-21 07:02:00,28.4575,100.285,19.33 +2016-08-21 07:17:00,27.4125,100.337,19.33 +2016-08-21 07:32:00,26.52,100.137,19.29 +2016-08-21 07:47:00,28.2575,100.18,19.27 +2016-08-21 08:02:00,26.37,100.207,19.23 +2016-08-21 08:17:00,25.4475,100.21,19.21 +2016-08-21 08:32:00,27.26,100.167,19.15 +2016-08-21 08:47:00,26.6162,100.232,19.15 +2016-08-21 09:02:00,28.3587,100.242,19.23 +2016-08-21 09:17:00,27.3575,100.285,19.33 +2016-08-21 09:32:00,25.9825,100.39,19.42 +2016-08-21 09:47:00,26.3662,100.415,19.5 +2016-08-21 10:02:00,27.615,100.352,19.54 +2016-08-21 10:17:00,26.82,100.53,19.55 +2016-08-21 10:32:00,28.0575,100.495,19.58 +2016-08-21 10:47:00,27.905,100.495,19.61 +2016-08-21 11:02:00,25.9337,100.597,19.63 +2016-08-21 11:17:00,26.9137,100.255,19.72 +2016-08-21 11:32:00,25.8387,100.357,19.8 +2016-08-21 11:47:00,26.9587,100.225,19.78 +2016-08-21 12:02:00,27.6663,100.107,19.8 +2016-08-21 12:17:00,26.2262,100.185,19.81 +2016-08-21 12:32:00,27.3587,100.275,19.8 +2016-08-21 12:47:00,27.855,100.247,19.81 +2016-08-21 13:02:00,27.255,100.202,19.79 +2016-08-21 13:17:00,27.1537,100.302,19.78 +2016-08-21 13:32:00,28.5088,100.205,19.75 +2016-08-21 13:47:00,27.8587,100.337,19.72 +2016-08-21 14:02:00,26.3237,100.32,19.69 +2016-08-21 14:17:00,26.3225,100.277,19.65 +2016-08-21 14:32:00,25.1562,100.327,19.66 +2016-08-21 14:47:00,25.74,100.337,19.65 +2016-08-21 15:02:00,26.2712,100.31,19.69 +2016-08-21 15:17:00,26.4675,100.238,19.73 +2016-08-21 15:32:00,26.035,100.245,19.76 +2016-08-21 15:47:00,28.66,100.347,19.77 +2016-08-21 16:02:00,26.1825,100.315,19.74 +2016-08-21 16:17:00,27.1075,100.512,19.72 +2016-08-21 16:32:00,28.6025,100.55,19.69 +2016-08-21 16:47:00,27.8075,100.572,19.67 +2016-08-21 17:02:00,26.9187,100.637,19.66 +2016-08-21 17:17:00,27.2575,100.562,19.66 +2016-08-21 17:32:00,26.37,100.567,19.66 +2016-08-21 17:47:00,27.4125,100.475,19.66 +2016-08-21 18:02:00,27.415,100.452,19.67 +2016-08-21 18:17:00,25.8862,100.452,19.65 +2016-08-21 18:32:00,25.25,100.545,19.65 +2016-08-21 18:47:00,27.205,100.525,19.62 +2016-08-21 19:02:00,27.2025,100.533,19.6 +2016-08-21 19:17:00,25.055,100.62,19.59 +2016-08-21 19:32:00,25.8937,100.658,19.57 +2016-08-21 19:47:00,26.1338,100.715,19.55 +2016-08-21 20:02:00,25.7887,100.768,19.52 +2016-08-21 20:17:00,26.8187,100.785,19.49 +2016-08-21 20:32:00,26.9137,100.777,19.46 +2016-08-21 20:47:00,25.8412,100.753,19.42 +2016-08-21 21:02:00,25.4912,100.787,19.39 +2016-08-21 21:17:00,26.415,100.75,19.36 +2016-08-21 21:32:00,26.62,100.727,19.33 +2016-08-21 21:47:00,25.3525,100.667,19.3 +2016-08-21 22:02:00,26.765,100.73,19.29 +2016-08-21 22:17:00,25.7412,100.725,19.27 +2016-08-21 22:32:00,26.1312,100.715,19.25 +2016-08-21 22:47:00,27.8063,100.795,19.23 +2016-08-21 23:02:00,25.89,100.812,19.23 +2016-08-21 23:17:00,27.26,100.832,19.2 +2016-08-21 23:32:00,26.1338,100.787,19.21 +2016-08-21 23:47:00,26.9187,100.695,19.19 +2016-08-22 00:02:00,26.2712,100.67,19.18 +2016-08-22 00:17:00,25.0112,100.628,19.17 +2016-08-22 00:32:00,25.8387,100.572,19.17 +2016-08-22 00:47:00,26.9187,100.48,19.16 +2016-08-22 01:02:00,27.41,100.435,19.16 +2016-08-22 01:17:00,25.9388,100.397,19.18 +2016-08-22 01:32:00,26.9675,100.417,19.19 +2016-08-22 01:47:00,26.8688,100.522,19.21 +2016-08-22 02:02:00,24.805,100.527,19.22 +2016-08-22 02:17:00,26.225,100.557,19.22 +2016-08-22 02:32:00,27.765,100.54,19.2 +2016-08-22 02:47:00,27.0112,100.552,19.2 +2016-08-22 03:02:00,27.7137,100.527,19.19 +2016-08-22 03:17:00,27.06,100.467,19.19 +2016-08-22 03:32:00,26.4187,100.427,19.18 +2016-08-22 03:47:00,27.5625,100.43,19.16 +2016-08-22 04:02:00,27.5612,100.387,19.14 +2016-08-22 04:17:00,26.27,100.41,19.13 +2016-08-22 04:32:00,27.31,100.438,19.1 +2016-08-22 04:47:00,26.96,100.455,19.1 +2016-08-22 05:02:00,27.0163,100.507,19.09 +2016-08-22 05:17:00,27.0163,100.537,19.08 +2016-08-22 05:32:00,26.8175,100.575,19.07 +2016-08-22 05:47:00,25.8425,100.625,19.05 +2016-08-22 06:02:00,28.2125,100.673,19.03 +2016-08-22 06:17:00,27.665,100.66,19.0 +2016-08-22 06:32:00,26.47,100.705,18.97 +2016-08-22 06:47:00,27.16,100.637,18.95 +2016-08-22 07:02:00,26.325,100.647,18.93 +2016-08-22 07:17:00,27.4675,100.48,18.94 +2016-08-22 07:32:00,27.6137,100.488,18.96 +2016-08-22 07:47:00,27.1075,100.452,18.99 +2016-08-22 08:02:00,25.9825,100.445,19.01 +2016-08-22 08:17:00,28.5563,100.28,19.06 +2016-08-22 08:32:00,27.3125,100.167,19.13 +2016-08-22 08:47:00,28.4137,100.255,19.19 +2016-08-22 09:02:00,12.115,100.33,19.21 +2016-08-22 09:17:00,20.5287,100.352,19.27 +2016-08-22 09:32:00,17.6912,100.477,19.35 +2016-08-22 09:47:00,18.4225,100.497,19.46 +2016-08-22 10:02:00,18.4688,100.475,19.48 +2016-08-22 10:17:00,15.9987,100.465,19.49 +2016-08-22 10:32:00,17.3,100.53,19.5 +2016-08-22 10:47:00,19.93,100.503,19.45 +2016-08-22 11:02:00,18.0425,100.435,19.43 +2016-08-22 11:17:00,18.7675,100.382,19.4 +2016-08-22 11:32:00,16.91,100.408,19.49 +2016-08-22 11:47:00,18.0888,100.507,19.51 +2016-08-22 12:02:00,17.0037,100.317,19.56 +2016-08-22 12:17:00,17.9412,100.607,19.58 +2016-08-22 12:32:00,19.055,100.485,19.57 +2016-08-22 12:47:00,17.26,100.522,19.63 +2016-08-22 13:02:00,18.3787,100.647,19.7 +2016-08-22 13:17:00,17.895,100.405,19.74 +2016-08-22 13:32:00,17.355,100.505,19.78 +2016-08-22 13:47:00,17.99,100.385,19.78 +2016-08-22 14:02:00,17.9912,100.335,19.78 +2016-08-22 14:17:00,19.3438,100.268,19.78 +2016-08-22 14:32:00,15.955,100.165,19.79 +2016-08-22 14:47:00,17.31,100.147,19.77 +2016-08-22 15:02:00,17.9437,100.177,19.76 +2016-08-22 15:17:00,19.5425,100.1,19.79 +2016-08-22 15:32:00,17.5037,100.13,19.81 +2016-08-22 15:47:00,18.6625,100.197,19.83 +2016-08-22 16:02:00,18.3763,100.17,19.84 +2016-08-22 16:17:00,18.09,100.12,19.84 +2016-08-22 16:32:00,17.3562,100.1,19.84 +2016-08-22 16:47:00,18.3363,99.9525,19.82 +2016-08-22 17:02:00,19.54,99.8625,19.8 +2016-08-22 17:17:00,16.9587,99.8275,19.78 +2016-08-22 17:32:00,17.9925,99.875,19.76 +2016-08-22 17:47:00,18.0425,99.7675,19.75 +2016-08-22 18:02:00,15.4137,99.6525,19.75 +2016-08-22 18:17:00,17.9912,99.6975,19.75 +2016-08-22 18:32:00,17.5062,99.615,19.75 +2016-08-22 18:47:00,17.3613,99.725,19.74 +2016-08-22 19:02:00,17.1562,99.6625,19.73 +2016-08-22 19:17:00,18.9587,99.5675,19.72 +2016-08-22 19:32:00,18.1875,99.57,19.71 +2016-08-22 19:47:00,17.0075,99.57,19.7 +2016-08-22 20:02:00,17.9425,99.395,19.68 +2016-08-22 20:17:00,17.895,99.28,19.65 +2016-08-22 20:32:00,17.6963,99.3075,19.64 +2016-08-22 20:47:00,17.8425,99.2075,19.62 +2016-08-22 21:02:00,19.105,99.265,19.61 +2016-08-22 21:17:00,17.8937,99.1475,19.59 +2016-08-22 21:32:00,16.24,99.185,19.56 +2016-08-22 21:47:00,17.6937,99.135,19.54 +2016-08-22 22:02:00,20.025,99.1325,19.54 +2016-08-22 22:17:00,16.6813,99.1425,19.53 +2016-08-22 22:32:00,17.4075,99.0675,19.52 +2016-08-22 22:47:00,18.2862,99.055,19.51 +2016-08-22 23:02:00,19.3925,99.005,19.5 +2016-08-22 23:17:00,16.915,98.89,19.5 +2016-08-22 23:32:00,16.2412,98.8375,19.49 +2016-08-22 23:47:00,19.1025,98.8175,19.5 +2016-08-23 00:02:00,18.0425,98.6825,19.49 +2016-08-23 00:17:00,17.6025,98.67,19.48 +2016-08-23 00:32:00,19.11,98.675,19.45 +2016-08-23 00:47:00,19.4425,98.625,19.43 +2016-08-23 01:02:00,19.0062,98.67,19.41 +2016-08-23 01:17:00,17.255,98.65,19.42 +2016-08-23 01:32:00,19.6387,98.6075,19.4 +2016-08-23 01:47:00,17.0062,98.6025,19.38 +2016-08-23 02:02:00,15.8587,98.57,19.33 +2016-08-23 02:17:00,17.6987,98.52,19.31 +2016-08-23 02:32:00,18.77,98.47,19.28 +2016-08-23 02:47:00,19.735,98.405,19.25 +2016-08-23 03:02:00,17.5013,98.2475,19.21 +2016-08-23 03:17:00,18.52,98.2725,19.16 +2016-08-23 03:32:00,18.8625,98.175,19.12 +2016-08-23 03:47:00,17.695,98.1925,19.08 +2016-08-23 04:02:00,16.2925,98.1275,19.04 +2016-08-23 04:17:00,18.8187,98.185,19.0 +2016-08-23 04:32:00,19.245,98.1625,18.96 +2016-08-23 04:47:00,18.9613,98.15,18.92 +2016-08-23 05:02:00,19.1525,98.115,18.91 +2016-08-23 05:17:00,16.8175,98.0425,18.91 +2016-08-23 05:32:00,17.055,98.0175,18.9 +2016-08-23 05:47:00,14.5863,98.0475,18.9 +2016-08-23 06:02:00,15.27,98.095,18.93 +2016-08-23 06:17:00,19.3875,98.0825,18.95 +2016-08-23 06:32:00,16.0475,97.9725,18.95 +2016-08-23 06:47:00,17.5525,97.935,18.98 +2016-08-23 07:02:00,17.8925,97.9175,19.0 +2016-08-23 07:17:00,16.6775,97.8,19.04 +2016-08-23 07:32:00,17.745,97.8225,19.1 +2016-08-23 07:47:00,17.0112,97.7325,19.18 +2016-08-23 08:02:00,17.7975,97.6725,19.2 +2016-08-23 08:17:00,17.1038,97.735,19.18 +2016-08-23 08:32:00,17.89,97.74,19.17 +2016-08-23 08:47:00,17.0088,97.7725,19.2 +2016-08-23 09:02:00,17.2062,97.785,19.18 +2016-08-23 09:17:00,21.095,97.775,19.21 +2016-08-23 09:32:00,20.5163,97.79,19.22 +2016-08-23 09:47:00,17.6025,97.7375,19.25 +2016-08-23 10:02:00,17.2075,97.7275,19.26 +2016-08-23 10:17:00,17.9938,97.73,19.27 +2016-08-23 10:32:00,17.005,97.6725,19.29 +2016-08-23 10:47:00,19.0587,97.6175,19.29 +2016-08-23 11:02:00,16.2875,97.5775,19.31 +2016-08-23 11:17:00,19.6413,97.65,19.37 +2016-08-23 11:32:00,17.0575,97.705,19.41 +2016-08-23 11:47:00,18.7712,97.7775,19.47 +2016-08-23 12:02:00,21.3425,97.73,19.54 +2016-08-23 12:17:00,16.815,97.815,19.6 +2016-08-23 12:32:00,18.0875,97.7275,19.67 +2016-08-23 12:47:00,19.8388,97.5775,19.68 +2016-08-23 13:02:00,17.9425,97.58,19.71 +2016-08-23 13:17:00,19.295,97.655,19.74 +2016-08-23 13:32:00,19.8388,97.63,19.79 +2016-08-23 13:47:00,20.275,97.5375,19.77 +2016-08-23 14:02:00,20.0713,97.5275,19.79 +2016-08-23 14:17:00,18.8625,97.6325,19.79 +2016-08-23 14:32:00,15.5088,97.65,19.82 +2016-08-23 14:47:00,16.9125,97.7,19.83 +2016-08-23 15:02:00,17.3037,97.72,19.88 +2016-08-23 15:17:00,18.0437,97.685,19.92 +2016-08-23 15:32:00,16.4388,97.5525,19.96 +2016-08-23 15:47:00,17.305,97.4875,19.98 +2016-08-23 16:02:00,17.6012,97.41,19.98 +2016-08-23 16:17:00,17.0537,97.435,19.99 +2016-08-23 16:32:00,16.775,97.3425,19.97 +2016-08-23 16:47:00,17.6937,97.255,19.96 +2016-08-23 17:02:00,18.2825,97.2525,19.95 +2016-08-23 17:17:00,17.8,97.265,19.94 +2016-08-23 17:32:00,16.6813,97.3,19.93 +2016-08-23 17:47:00,18.285,97.23,19.93 +2016-08-23 18:02:00,19.1987,97.18,19.92 +2016-08-23 18:17:00,15.075,97.075,19.91 +2016-08-23 18:32:00,18.7188,97.0475,19.89 +2016-08-23 18:47:00,18.2337,96.9125,19.88 +2016-08-23 19:02:00,20.0762,96.81,19.86 +2016-08-23 19:17:00,18.72,96.77,19.85 +2016-08-23 19:32:00,18.09,96.705,19.83 +2016-08-23 19:47:00,16.5312,96.7225,19.82 +2016-08-23 20:02:00,19.4912,96.7,19.81 +2016-08-23 20:17:00,20.9887,96.7475,19.81 +2016-08-23 20:32:00,16.675,96.65,19.8 +2016-08-23 20:47:00,18.7675,96.59,19.79 +2016-08-23 21:02:00,18.9175,96.4875,19.76 +2016-08-23 21:17:00,18.0963,96.38,19.74 +2016-08-23 21:32:00,16.9587,96.3725,19.73 +2016-08-23 21:47:00,15.2675,96.3225,19.71 +2016-08-23 22:02:00,16.1425,96.2925,19.69 +2016-08-23 22:17:00,18.4238,96.2875,19.68 +2016-08-23 22:32:00,16.5825,96.285,19.66 +2016-08-23 22:47:00,18.1375,96.3075,19.67 +2016-08-23 23:02:00,17.7962,96.335,19.67 +2016-08-23 23:17:00,18.0938,96.2975,19.67 +2016-08-23 23:32:00,18.0888,96.2325,19.66 +2016-08-23 23:47:00,17.9388,96.1475,19.64 +2016-08-24 00:02:00,19.1987,96.1125,19.64 +2016-08-24 00:17:00,18.3337,96.1075,19.61 +2016-08-24 00:32:00,18.91,96.0075,19.59 +2016-08-24 00:47:00,18.1387,96.0025,19.57 +2016-08-24 01:02:00,18.7213,95.9075,19.57 +2016-08-24 01:17:00,19.105,95.9475,19.54 +2016-08-24 01:32:00,14.975,95.925,19.54 +2016-08-24 01:47:00,18.6675,95.8875,19.55 +2016-08-24 02:02:00,19.105,95.885,19.54 +2016-08-24 02:17:00,18.2838,95.82,19.53 +2016-08-24 02:32:00,18.185,95.86,19.53 +2016-08-24 02:47:00,18.6712,95.785,19.49 +2016-08-24 03:02:00,19.1975,95.6625,19.47 +2016-08-24 03:17:00,18.1837,95.6775,19.47 +2016-08-24 03:32:00,18.1862,95.675,19.43 +2016-08-24 03:47:00,19.3412,95.6575,19.42 +2016-08-24 04:02:00,18.3787,95.6775,19.42 +2016-08-24 04:17:00,17.7425,95.6725,19.45 +2016-08-24 04:32:00,19.6925,95.62,19.46 +2016-08-24 04:47:00,18.9137,95.67,19.48 +2016-08-24 05:02:00,17.5037,95.71,19.46 +2016-08-24 05:17:00,18.2862,95.7675,19.46 +2016-08-24 05:32:00,18.5212,95.8575,19.46 +2016-08-24 05:47:00,19.8775,95.8975,19.47 +2016-08-24 06:02:00,17.0525,95.88,19.49 +2016-08-24 06:17:00,17.205,95.89,19.52 +2016-08-24 06:32:00,18.425,95.86,19.56 +2016-08-24 06:47:00,16.145,95.83,19.6 +2016-08-24 07:02:00,19.1963,95.805,19.66 +2016-08-24 07:17:00,18.6175,95.73,19.71 +2016-08-24 07:32:00,19.8787,95.755,19.76 +2016-08-24 07:47:00,19.54,95.71,19.82 +2016-08-24 08:02:00,18.7162,95.58,19.89 +2016-08-24 08:17:00,18.2363,95.4175,19.96 +2016-08-24 08:32:00,18.19,95.51,20.03 +2016-08-24 08:47:00,18.19,95.665,20.12 +2016-08-24 09:02:00,18.865,95.595,20.22 +2016-08-24 09:17:00,18.6188,95.5425,20.32 +2016-08-24 09:32:00,20.1675,95.51,20.4 +2016-08-24 09:47:00,17.3512,95.4925,20.52 +2016-08-24 10:02:00,17.5975,95.52,20.61 +2016-08-24 10:17:00,19.2988,95.555,20.73 +2016-08-24 10:32:00,17.6475,95.4325,20.81 +2016-08-24 10:47:00,17.9887,95.32,20.89 +2016-08-24 11:02:00,18.5687,95.2275,20.95 +2016-08-24 11:17:00,18.8125,95.1175,20.99 +2016-08-24 11:32:00,18.4262,95.085,21.07 +2016-08-24 11:47:00,17.1537,95.2825,21.11 +2016-08-24 12:02:00,16.8225,95.1875,21.12 +2016-08-24 12:17:00,18.5263,95.09,21.17 +2016-08-24 12:32:00,18.4762,95.17,21.21 +2016-08-24 12:47:00,20.0713,95.095,21.16 +2016-08-24 13:02:00,19.9762,95.115,21.17 +2016-08-24 13:17:00,18.1375,95.0575,21.2 +2016-08-24 13:32:00,17.9425,94.925,21.23 +2016-08-24 13:47:00,15.7087,94.8475,21.19 +2016-08-24 14:02:00,18.8662,94.7425,21.17 +2016-08-24 14:17:00,20.4212,94.6375,21.17 +2016-08-24 14:32:00,16.7787,94.57,21.15 +2016-08-24 14:47:00,18.77,94.5875,21.18 +2016-08-24 15:02:00,17.01,94.5425,21.16 +2016-08-24 15:17:00,18.7663,94.75,21.11 +2016-08-24 15:32:00,16.435,94.9075,21.09 +2016-08-24 15:47:00,18.2337,95.0825,21.06 +2016-08-24 16:02:00,17.6475,95.16,21.04 +2016-08-24 16:17:00,19.1588,95.43,21.0 +2016-08-24 16:32:00,16.435,95.485,20.98 +2016-08-24 16:47:00,18.865,95.6725,20.94 +2016-08-24 17:02:00,16.3363,95.675,20.93 +2016-08-24 17:17:00,18.0425,95.7775,20.91 +2016-08-24 17:32:00,16.485,95.81,20.91 +2016-08-24 17:47:00,16.6787,95.8275,20.91 +2016-08-24 18:02:00,17.3575,95.9975,20.89 +2016-08-24 18:17:00,18.5212,96.095,20.89 +2016-08-24 18:32:00,17.5,96.185,20.89 +2016-08-24 18:47:00,16.7288,96.2725,20.88 +2016-08-24 19:02:00,17.845,96.3375,20.87 +2016-08-24 19:17:00,14.9762,96.3025,20.87 +2016-08-24 19:32:00,18.3337,96.2775,20.87 +2016-08-24 19:47:00,16.2,96.22,20.85 +2016-08-24 20:02:00,16.9638,96.1625,20.83 +2016-08-24 20:17:00,17.5963,96.0475,20.85 +2016-08-24 20:32:00,15.3175,95.99,20.85 +2016-08-24 20:47:00,17.0075,95.8925,20.81 +2016-08-24 21:02:00,17.4562,95.77,20.83 +2016-08-24 21:17:00,19.4875,95.5975,20.83 +2016-08-24 21:32:00,18.7175,95.445,20.81 +2016-08-24 21:47:00,17.1087,95.3925,20.81 +2016-08-24 22:02:00,18.9137,95.3275,20.8 +2016-08-24 22:17:00,17.1562,95.245,20.82 +2016-08-24 22:32:00,15.6113,95.1775,20.8 +2016-08-24 22:47:00,18.8175,95.125,20.82 +2016-08-24 23:02:00,18.72,94.995,20.82 +2016-08-24 23:17:00,16.1437,94.865,20.83 +2016-08-24 23:32:00,15.7138,94.775,20.77 +2016-08-24 23:47:00,17.945,94.5925,20.83 +2016-08-25 00:02:00,19.0137,94.4675,20.84 +2016-08-25 00:17:00,17.0575,94.3625,20.83 +2016-08-25 00:32:00,17.0062,94.195,20.84 +2016-08-25 00:47:00,18.0863,94.07,20.83 +2016-08-25 01:02:00,20.8425,94.035,20.86 +2016-08-25 01:17:00,19.7862,93.95,20.88 +2016-08-25 01:32:00,18.1437,93.9175,20.89 +2016-08-25 01:47:00,17.9512,93.88,20.87 +2016-08-25 02:02:00,20.7975,93.8225,20.91 +2016-08-25 02:17:00,21.485,93.6525,20.84 +2016-08-25 02:32:00,21.1375,93.6225,20.9 +2016-08-25 02:47:00,17.795,93.51,20.91 +2016-08-25 03:02:00,18.8637,93.3975,20.9 +2016-08-25 03:17:00,19.7875,93.3075,20.9 +2016-08-25 03:32:00,17.5062,93.16,20.85 +2016-08-25 03:47:00,17.5013,93.02,20.93 +2016-08-25 04:02:00,20.7462,92.955,20.89 +2016-08-25 04:17:00,20.6113,92.88,20.87 +2016-08-25 04:32:00,20.8487,92.85,20.83 +2016-08-25 04:47:00,17.2062,92.84,20.82 +2016-08-25 05:02:00,17.4538,92.8275,20.77 +2016-08-25 05:17:00,20.9425,92.885,20.74 +2016-08-25 05:32:00,19.4425,92.935,20.76 +2016-08-25 05:47:00,17.1575,92.9125,20.77 +2016-08-25 06:02:00,17.7412,93.0,20.78 +2016-08-25 06:17:00,18.57,93.0525,20.8 +2016-08-25 06:32:00,19.3412,93.01,20.8 +2016-08-25 06:47:00,18.4225,92.925,20.8 +2016-08-25 07:02:00,19.735,92.8725,20.81 +2016-08-25 07:17:00,18.5737,92.9175,20.79 +2016-08-25 07:32:00,16.39,92.7575,20.81 +2016-08-25 07:47:00,19.1062,92.8025,20.88 +2016-08-25 08:02:00,17.99,92.7375,20.89 +2016-08-25 08:17:00,15.2188,92.5475,20.96 +2016-08-25 08:32:00,15.8562,92.4625,21.0 +2016-08-25 08:47:00,18.865,92.405,21.08 +2016-08-25 09:02:00,15.9088,92.34,21.17 +2016-08-25 09:17:00,19.0625,92.2575,21.27 +2016-08-25 09:32:00,17.5037,92.0725,21.33 +2016-08-25 09:47:00,19.06,91.9675,21.44 +2016-08-25 10:02:00,18.28,91.8575,21.46 +2016-08-25 10:17:00,17.55,91.7225,21.53 +2016-08-25 10:32:00,16.58,91.9325,21.62 +2016-08-25 10:47:00,16.53,91.77,21.76 +2016-08-25 11:02:00,16.965,91.5825,21.68 +2016-08-25 11:17:00,18.9137,91.575,21.66 +2016-08-25 11:32:00,19.0587,91.7975,21.77 +2016-08-25 11:47:00,18.4725,91.89,21.73 +2016-08-25 12:02:00,17.0062,91.56,21.76 +2016-08-25 12:17:00,16.285,91.47,21.81 +2016-08-25 12:32:00,19.5425,91.4825,21.84 +2016-08-25 12:47:00,18.8637,91.5825,21.81 +2016-08-25 13:02:00,19.4412,91.275,21.8 +2016-08-25 13:17:00,17.895,91.5575,21.87 +2016-08-25 13:32:00,18.2387,91.32,21.83 +2016-08-25 13:47:00,17.105,91.015,21.77 +2016-08-25 14:02:00,19.9287,91.2375,21.79 +2016-08-25 14:17:00,15.6612,91.135,21.8 +2016-08-25 14:32:00,17.8913,91.06,21.77 +2016-08-25 14:47:00,18.5238,90.72,21.76 +2016-08-25 15:02:00,18.2913,90.8325,21.74 +2016-08-25 15:17:00,17.5987,90.7975,21.68 +2016-08-25 15:32:00,19.8363,90.7725,21.69 +2016-08-25 15:47:00,16.4837,90.7,21.66 +2016-08-25 16:02:00,20.0225,90.89,21.63 +2016-08-25 16:17:00,17.9388,90.6725,21.59 +2016-08-25 16:32:00,17.505,90.8125,21.58 +2016-08-25 16:47:00,18.915,90.6925,21.56 +2016-08-25 17:02:00,18.285,90.725,21.55 +2016-08-25 17:17:00,19.0587,90.655,21.56 +2016-08-25 17:32:00,18.8175,90.6975,21.53 +2016-08-25 17:47:00,18.2862,90.6475,21.54 +2016-08-25 18:02:00,20.7475,90.5675,21.51 +2016-08-25 18:17:00,16.5812,90.635,21.54 +2016-08-25 18:32:00,18.095,90.4925,21.53 +2016-08-25 18:47:00,19.5475,90.3525,21.54 +2016-08-25 19:02:00,17.4575,90.3825,21.57 +2016-08-25 19:17:00,19.01,90.305,21.58 +2016-08-25 19:32:00,18.1888,90.315,21.56 +2016-08-25 19:47:00,19.105,90.33,21.62 +2016-08-25 20:02:00,17.7925,90.3725,21.59 +2016-08-25 20:17:00,17.205,90.3425,21.56 +2016-08-25 20:32:00,16.0488,90.345,21.6 +2016-08-25 20:47:00,18.8688,90.285,21.62 +2016-08-25 21:02:00,19.1525,90.36,21.61 +2016-08-25 21:17:00,18.2887,90.305,21.61 +2016-08-25 21:32:00,16.44,90.2425,21.58 +2016-08-25 21:47:00,19.3463,90.2375,21.58 +2016-08-25 22:02:00,17.26,90.1675,21.55 +2016-08-25 22:17:00,18.29,90.2425,21.54 +2016-08-25 22:32:00,21.0963,90.16,21.48 +2016-08-25 22:47:00,16.1462,90.145,21.46 +2016-08-25 23:02:00,18.335,90.1325,21.42 +2016-08-25 23:17:00,19.1038,90.125,21.4 +2016-08-25 23:32:00,18.4737,90.1125,21.36 +2016-08-25 23:47:00,19.1513,90.195,21.36 +2016-08-26 00:02:00,19.4437,90.2075,21.33 +2016-08-26 00:17:00,19.1575,90.23,21.31 +2016-08-26 00:32:00,15.4187,90.2125,21.28 +2016-08-26 00:47:00,18.5212,90.2125,21.3 +2016-08-26 01:02:00,16.1925,90.105,21.28 +2016-08-26 01:17:00,18.4762,90.1375,21.24 +2016-08-26 01:32:00,16.0488,90.145,21.23 +2016-08-26 01:47:00,17.0088,90.075,21.22 +2016-08-26 02:02:00,16.4863,90.015,21.26 +2016-08-26 02:17:00,21.4025,89.985,21.25 +2016-08-26 02:32:00,18.9187,89.97,21.24 +2016-08-26 02:47:00,19.5425,89.9375,21.25 +2016-08-26 03:02:00,19.3975,89.925,21.26 +2016-08-26 03:17:00,17.945,89.9175,21.29 +2016-08-26 03:32:00,17.845,90.0,21.26 +2016-08-26 03:47:00,18.3363,90.0025,21.27 +2016-08-26 04:02:00,17.6012,89.9825,21.26 +2016-08-26 04:17:00,20.0788,90.0225,21.27 +2016-08-26 04:32:00,18.82,90.0025,21.21 +2016-08-26 04:47:00,18.3337,90.0675,21.19 +2016-08-26 05:02:00,21.1413,90.0175,21.21 +2016-08-26 05:17:00,19.5413,90.0325,21.18 +2016-08-26 05:32:00,19.3487,90.1275,21.23 +2016-08-26 05:47:00,19.25,90.1575,21.24 +2016-08-26 06:02:00,16.4875,90.2225,21.3 +2016-08-26 06:17:00,19.9337,90.315,21.3 +2016-08-26 06:32:00,17.5975,90.38,21.35 +2016-08-26 06:47:00,19.1087,90.4025,21.41 +2016-08-26 07:02:00,17.8425,90.4375,21.46 +2016-08-26 07:17:00,19.6888,90.485,21.53 +2016-08-26 07:32:00,17.1562,90.455,21.6 +2016-08-26 07:47:00,18.5238,90.5425,21.67 +2016-08-26 08:02:00,16.585,90.5125,21.77 +2016-08-26 08:17:00,19.5475,90.51,21.87 +2016-08-26 08:32:00,18.6188,90.4875,22.01 +2016-08-26 08:47:00,18.8675,90.5475,22.11 +2016-08-26 09:02:00,18.6188,90.4625,22.28 +2016-08-26 09:17:00,18.715,90.5325,22.38 +2016-08-26 09:32:00,17.795,90.5,22.54 +2016-08-26 09:47:00,19.2513,90.44,22.63 +2016-08-26 10:02:00,16.0987,90.365,22.72 +2016-08-26 10:17:00,16.0525,90.24,22.92 +2016-08-26 10:32:00,19.1987,90.425,22.91 +2016-08-26 10:47:00,18.6212,90.29,22.98 +2016-08-26 11:02:00,16.82,90.3225,23.05 +2016-08-26 11:17:00,17.9437,90.4,23.04 +2016-08-26 11:32:00,18.3787,90.3425,23.1 +2016-08-26 11:47:00,17.6062,90.53,23.07 +2016-08-26 12:02:00,19.2525,90.46,23.12 +2016-08-26 12:17:00,17.845,90.5775,23.11 +2016-08-26 12:32:00,16.6775,90.575,23.03 +2016-08-26 12:47:00,18.9175,90.79,22.99 +2016-08-26 13:02:00,20.6588,90.53,23.02 +2016-08-26 13:17:00,18.2875,90.6825,22.93 +2016-08-26 13:32:00,18.385,90.65,22.94 +2016-08-26 13:47:00,16.29,90.525,22.96 +2016-08-26 14:02:00,18.67,90.4725,22.88 +2016-08-26 14:17:00,16.73,90.41,22.83 +2016-08-26 14:32:00,17.4562,90.345,22.78 +2016-08-26 14:47:00,16.5413,90.29,22.8 +2016-08-26 15:02:00,16.1462,90.2825,22.78 +2016-08-26 15:17:00,15.0788,90.385,22.71 +2016-08-26 15:32:00,18.7225,90.315,22.69 +2016-08-26 15:47:00,18.5775,90.5025,22.61 +2016-08-26 16:02:00,17.605,90.5775,22.58 +2016-08-26 16:17:00,17.895,90.6175,22.53 +2016-08-26 16:32:00,18.4275,90.655,22.5 +2016-08-26 16:47:00,17.21,90.775,22.48 +2016-08-26 17:02:00,18.6687,90.69,22.46 +2016-08-26 17:17:00,17.555,90.71,22.45 +2016-08-26 17:32:00,16.7775,90.6825,22.44 +2016-08-26 17:47:00,19.0163,90.675,22.42 +2016-08-26 18:02:00,19.3925,90.715,22.42 +2016-08-26 18:17:00,18.8688,90.5825,22.41 +2016-08-26 18:32:00,19.2525,90.65,22.41 +2016-08-26 18:47:00,18.1437,90.5975,22.41 +2016-08-26 19:02:00,17.7487,90.5825,22.45 +2016-08-26 19:17:00,16.2487,90.645,22.43 +2016-08-26 19:32:00,17.36,90.7225,22.48 +2016-08-26 19:47:00,18.045,90.7675,22.47 +2016-08-26 20:02:00,18.14,90.785,22.52 +2016-08-26 20:17:00,19.2462,90.86,22.52 +2016-08-26 20:32:00,17.4075,90.87,22.55 +2016-08-26 20:47:00,18.2363,90.9225,22.53 +2016-08-26 21:02:00,16.7738,90.8825,22.52 +2016-08-26 21:17:00,17.1663,90.9375,22.51 +2016-08-26 21:32:00,18.8725,90.92,22.53 +2016-08-26 21:47:00,17.1588,90.88,22.52 +2016-08-26 22:02:00,18.2875,90.8875,22.53 +2016-08-26 22:17:00,19.155,90.8075,22.48 +2016-08-26 22:32:00,19.645,90.88,22.43 +2016-08-26 22:47:00,17.555,90.9075,22.42 +2016-08-26 23:02:00,18.5287,90.955,22.42 +2016-08-26 23:17:00,18.0488,90.9275,22.42 +2016-08-26 23:32:00,18.8688,91.0125,22.45 +2016-08-26 23:47:00,19.2513,91.09,22.42 +2016-08-27 00:02:00,19.79,91.135,22.42 +2016-08-27 00:17:00,19.6437,91.135,22.36 +2016-08-27 00:32:00,16.1025,91.09,22.41 +2016-08-27 00:47:00,17.8463,91.2075,22.41 +2016-08-27 01:02:00,17.0163,91.0525,22.4 +2016-08-27 01:17:00,18.6762,90.9975,22.38 +2016-08-27 01:32:00,15.9587,90.965,22.38 +2016-08-27 01:47:00,17.06,90.9075,22.36 +2016-08-27 02:02:00,16.5362,90.925,22.45 +2016-08-27 02:17:00,19.9313,90.9425,22.5 +2016-08-27 02:32:00,20.3688,90.9725,22.55 +2016-08-27 02:47:00,20.6175,90.9275,22.58 +2016-08-27 03:02:00,19.695,91.045,22.67 +2016-08-27 03:17:00,20.2262,90.9075,22.7 +2016-08-27 03:32:00,17.7475,91.125,22.76 +2016-08-27 03:47:00,16.4388,91.0225,22.82 +2016-08-27 04:02:00,19.0662,91.1175,22.78 +2016-08-27 04:17:00,15.5163,91.0575,22.78 +2016-08-27 04:32:00,19.8875,91.1125,22.74 +2016-08-27 04:47:00,17.215,91.105,22.66 +2016-08-27 05:02:00,20.6625,91.06,22.57 +2016-08-27 05:17:00,16.4825,90.965,22.56 +2016-08-27 05:32:00,18.3325,90.88,22.51 +2016-08-27 05:47:00,17.1575,90.845,22.55 +2016-08-27 06:02:00,18.82,90.8425,22.6 +2016-08-27 06:17:00,18.82,90.8225,22.62 +2016-08-27 06:32:00,17.8975,90.8325,22.71 +2016-08-27 06:47:00,20.9925,90.815,22.69 +2016-08-27 07:02:00,17.6537,90.94,22.77 +2016-08-27 07:17:00,19.8875,90.8775,22.78 +2016-08-27 07:32:00,18.38,90.885,22.79 +2016-08-27 07:47:00,19.9812,91.025,22.82 +2016-08-27 08:02:00,17.405,90.9675,22.9 +2016-08-27 08:17:00,15.8575,91.0375,22.96 +2016-08-27 08:32:00,19.3487,90.9725,23.0 +2016-08-27 08:47:00,19.2525,90.98,23.04 +2016-08-27 09:02:00,19.9313,90.9725,23.09 +2016-08-27 09:17:00,19.1562,90.945,23.11 +2016-08-27 09:32:00,18.0437,90.925,23.15 +2016-08-27 09:47:00,15.6612,90.9825,23.26 +2016-08-27 10:02:00,18.915,90.9675,23.3 +2016-08-27 10:17:00,20.2225,91.025,23.36 +2016-08-27 10:32:00,17.9487,91.1575,23.39 +2016-08-27 10:47:00,21.0975,91.135,23.41 +2016-08-27 11:02:00,17.26,91.2775,23.45 +2016-08-27 11:17:00,20.4187,91.135,23.45 +2016-08-27 11:32:00,16.8662,91.2025,23.43 +2016-08-27 11:47:00,16.0987,91.215,23.44 +2016-08-27 12:02:00,17.4575,91.18,23.48 +2016-08-27 12:17:00,17.0137,91.12,23.47 +2016-08-27 12:32:00,16.73,91.265,23.43 +2016-08-27 12:47:00,17.1625,91.095,23.45 +2016-08-27 13:02:00,19.205,90.9575,23.41 +2016-08-27 13:17:00,18.8175,90.97,23.45 +2016-08-27 13:32:00,17.8925,90.9825,23.41 +2016-08-27 13:47:00,18.9125,90.98,23.43 +2016-08-27 14:02:00,17.8512,90.99,23.41 +2016-08-27 14:17:00,19.1588,90.96,23.46 +2016-08-27 14:32:00,16.7312,91.0675,23.46 +2016-08-27 14:47:00,18.3838,91.0775,23.44 +2016-08-27 15:02:00,17.6012,91.0375,23.42 +2016-08-27 15:17:00,18.335,91.1675,23.4 +2016-08-27 15:32:00,18.9163,91.065,23.39 +2016-08-27 15:47:00,17.7,91.1425,23.34 +2016-08-27 16:02:00,16.7775,91.0425,23.31 +2016-08-27 16:17:00,17.165,91.0775,23.26 +2016-08-27 16:32:00,18.7262,90.9775,23.22 +2016-08-27 16:47:00,19.4463,90.85,23.19 +2016-08-27 17:02:00,18.92,90.785,23.15 +2016-08-27 17:17:00,19.4975,90.8,23.12 +2016-08-27 17:32:00,20.47,90.77,23.07 +2016-08-27 17:47:00,20.2738,90.755,23.04 +2016-08-27 18:02:00,15.0338,90.77,23.02 +2016-08-27 18:17:00,17.85,90.8125,23.01 +2016-08-27 18:32:00,19.8438,90.79,23.01 +2016-08-27 18:47:00,17.9487,90.8125,23.0 +2016-08-27 19:02:00,20.9475,90.77,23.0 +2016-08-27 19:17:00,17.9475,90.8,23.03 +2016-08-27 19:32:00,17.3587,90.78,23.06 +2016-08-27 19:47:00,19.0137,90.6525,23.07 +2016-08-27 20:02:00,18.4825,90.6575,23.08 +2016-08-27 20:17:00,17.0175,90.5675,23.07 +2016-08-27 20:32:00,17.4075,90.4975,23.09 +2016-08-27 20:47:00,18.7262,90.4075,23.09 +2016-08-27 21:02:00,19.84,90.3725,23.07 +2016-08-27 21:17:00,19.35,90.365,23.07 +2016-08-27 21:32:00,17.5575,90.335,23.03 +2016-08-27 21:47:00,15.7663,90.3975,23.03 +2016-08-27 22:02:00,19.0187,90.3975,23.02 +2016-08-27 22:17:00,16.7825,90.445,23.0 +2016-08-27 22:32:00,16.5387,90.4725,23.0 +2016-08-27 22:47:00,16.63,90.4725,22.93 +2016-08-27 23:02:00,17.3087,90.44,22.96 +2016-08-27 23:17:00,21.3475,90.4675,22.94 +2016-08-27 23:32:00,16.9137,90.4175,22.91 +2016-08-27 23:47:00,16.7375,90.3775,22.94 +2016-08-28 00:02:00,17.5587,90.395,22.98 +2016-08-28 00:17:00,18.385,90.385,22.95 +2016-08-28 00:32:00,18.2425,90.325,22.92 +2016-08-28 00:47:00,19.74,90.27,22.93 +2016-08-28 01:02:00,20.71,90.2725,22.93 +2016-08-28 01:17:00,20.6625,90.24,22.89 +2016-08-28 01:32:00,18.87,90.2975,22.88 +2016-08-28 01:47:00,17.8037,90.355,22.87 +2016-08-28 02:02:00,17.8037,90.3975,22.9 +2016-08-28 02:17:00,18.5225,90.435,22.91 +2016-08-28 02:32:00,18.4762,90.3625,22.9 +2016-08-28 02:47:00,19.3962,90.4325,22.86 +2016-08-28 03:02:00,17.7475,90.405,22.88 +2016-08-28 03:17:00,18.3838,90.41,22.89 +2016-08-28 03:32:00,18.0488,90.355,22.95 +2016-08-28 03:47:00,19.3012,90.335,22.96 +2016-08-28 04:02:00,19.695,90.28,22.93 +2016-08-28 04:17:00,17.4075,90.2175,22.9 +2016-08-28 04:32:00,18.3825,90.24,22.91 +2016-08-28 04:47:00,18.2425,90.24,22.93 +2016-08-28 05:02:00,19.9825,90.23,22.93 +2016-08-28 05:17:00,18.9662,90.245,22.89 +2016-08-28 05:32:00,17.3138,90.34,22.99 +2016-08-28 05:47:00,15.52,90.3725,22.98 +2016-08-28 06:02:00,18.8675,90.385,23.04 +2016-08-28 06:17:00,17.0137,90.4125,23.06 +2016-08-28 06:32:00,19.3538,90.3725,23.07 +2016-08-28 06:47:00,18.4775,90.36,23.09 +2016-08-28 07:02:00,17.9463,90.3425,23.14 +2016-08-28 07:17:00,17.5112,90.31,23.14 +2016-08-28 07:32:00,16.9212,90.2575,23.17 +2016-08-28 07:47:00,17.9,90.2575,23.2 +2016-08-28 08:02:00,19.5462,90.195,23.27 +2016-08-28 08:17:00,18.67,90.2225,23.34 +2016-08-28 08:32:00,17.8962,90.205,23.42 +2016-08-28 08:47:00,17.2575,90.2175,23.5 +2016-08-28 09:02:00,19.5925,90.1825,23.6 +2016-08-28 09:17:00,17.0187,90.13,23.68 +2016-08-28 09:32:00,18.9688,90.0725,23.76 +2016-08-28 09:47:00,16.6338,90.0625,23.79 +2016-08-28 10:02:00,18.4313,89.9275,23.83 +2016-08-28 10:17:00,16.915,89.98,23.83 +2016-08-28 10:32:00,18.5725,89.9475,23.92 +2016-08-28 10:47:00,15.91,90.005,23.85 +2016-08-28 11:02:00,18.3825,90.005,23.91 +2016-08-28 11:17:00,20.1787,89.995,23.92 +2016-08-28 11:32:00,17.0638,90.0425,23.93 +2016-08-28 11:47:00,16.095,89.84,23.98 +2016-08-28 12:02:00,19.8412,89.8825,24.01 +2016-08-28 12:17:00,17.7975,90.0225,23.99 +2016-08-28 12:32:00,16.0975,90.01,23.93 +2016-08-28 12:47:00,19.16,89.695,23.93 +2016-08-28 13:02:00,18.675,89.7275,23.85 +2016-08-28 13:17:00,19.5537,89.5775,23.88 +2016-08-28 13:32:00,17.5062,89.4825,23.84 +2016-08-28 13:47:00,16.3412,89.5425,23.79 +2016-08-28 14:02:00,19.25,89.46,23.82 +2016-08-28 14:17:00,17.9487,89.455,23.8 +2016-08-28 14:32:00,18.095,89.5275,23.79 +2016-08-28 14:47:00,17.3112,89.3325,23.78 +2016-08-28 15:02:00,18.9212,89.5425,23.78 +2016-08-28 15:17:00,16.6837,89.3725,23.67 +2016-08-28 15:32:00,16.345,89.3675,23.63 +2016-08-28 15:47:00,15.0312,89.395,23.6 +2016-08-28 16:02:00,17.31,89.3175,23.54 +2016-08-28 16:17:00,17.7513,89.29,23.5 +2016-08-28 16:32:00,15.2325,89.3,23.44 +2016-08-28 16:47:00,17.3138,89.265,23.42 +2016-08-28 17:02:00,20.76,89.2425,23.4 +2016-08-28 17:17:00,19.8913,89.13,23.39 +2016-08-28 17:32:00,16.7812,89.085,23.39 +2016-08-28 17:47:00,17.0137,88.9725,23.36 +2016-08-28 18:02:00,16.54,88.965,23.31 +2016-08-28 18:17:00,16.0525,88.9825,23.29 +2016-08-28 18:32:00,19.5512,88.9175,23.26 +2016-08-28 18:47:00,18.63,88.9725,23.25 +2016-08-28 19:02:00,19.5987,88.935,23.23 +2016-08-28 19:17:00,20.995,89.11,23.27 +2016-08-28 19:32:00,18.43,89.11,23.31 +2016-08-28 19:47:00,18.5287,89.04,23.28 +2016-08-28 20:02:00,18.24,89.06,23.35 +2016-08-28 20:17:00,16.4912,89.075,23.34 +2016-08-28 20:32:00,19.5975,89.0825,23.34 +2016-08-28 20:47:00,17.5625,89.235,23.39 +2016-08-28 21:02:00,22.135,89.2375,23.32 +2016-08-28 21:17:00,20.6663,89.175,23.34 +2016-08-28 21:32:00,16.6362,89.1425,23.35 +2016-08-28 21:47:00,15.1338,89.275,23.32 +2016-08-28 22:02:00,18.2425,89.19,23.35 +2016-08-28 22:17:00,18.5762,89.2525,23.33 +2016-08-28 22:32:00,17.5638,89.2975,23.36 +2016-08-28 22:47:00,16.3037,89.3875,23.39 +2016-08-28 23:02:00,18.7725,89.3925,23.38 +2016-08-28 23:17:00,20.6612,89.445,23.38 +2016-08-28 23:32:00,18.8712,89.4475,23.4 +2016-08-28 23:47:00,16.1475,89.465,23.36 +2016-08-29 00:02:00,20.2775,89.38,23.36 +2016-08-29 00:17:00,19.0662,89.4,23.3 +2016-08-29 00:32:00,17.3112,89.3125,23.27 +2016-08-29 00:47:00,17.3138,89.255,23.27 +2016-08-29 01:02:00,17.8463,89.22,23.23 +2016-08-29 01:17:00,19.4475,89.195,23.19 +2016-08-29 01:32:00,17.06,89.2225,23.21 +2016-08-29 01:47:00,16.7275,89.22,23.21 +2016-08-29 02:02:00,18.095,89.29,23.25 +2016-08-29 02:17:00,17.1637,89.315,23.23 +2016-08-29 02:32:00,17.46,89.315,23.26 +2016-08-29 02:47:00,18.7262,89.3325,23.26 +2016-08-29 03:02:00,19.5,89.3325,23.29 +2016-08-29 03:17:00,19.2087,89.2625,23.27 +2016-08-29 03:32:00,15.9112,89.2875,23.22 +2016-08-29 03:47:00,16.6338,89.215,23.28 +2016-08-29 04:02:00,19.8875,89.1475,23.22 +2016-08-29 04:17:00,18.875,89.17,23.26 +2016-08-29 04:32:00,18.145,89.0225,23.17 +2016-08-29 04:47:00,20.5187,88.975,23.16 +2016-08-29 05:02:00,19.3487,88.995,23.18 +2016-08-29 05:17:00,18.9238,88.98,23.2 +2016-08-29 05:32:00,16.9638,88.8925,23.19 +2016-08-29 05:47:00,16.2462,88.8025,23.19 +2016-08-29 06:02:00,18.6312,88.7375,23.21 +2016-08-29 06:17:00,17.8037,88.69,23.23 +2016-08-29 06:32:00,19.7937,88.71,23.19 +2016-08-29 06:47:00,19.1162,88.6475,23.11 +2016-08-29 07:02:00,17.06,88.6275,23.03 +2016-08-29 07:17:00,19.695,88.5625,22.98 +2016-08-29 07:32:00,16.6338,88.6225,23.0 +2016-08-29 07:47:00,17.7487,88.745,23.05 +2016-08-29 08:02:00,19.5987,88.72,23.08 +2016-08-29 08:17:00,18.675,88.8125,23.12 +2016-08-29 08:32:00,18.045,88.9725,23.08 +2016-08-29 08:47:00,15.2725,88.9025,23.11 +2016-08-29 09:02:00,16.2438,89.05,23.18 +2016-08-29 09:17:00,18.7763,89.025,23.23 +2016-08-29 09:32:00,17.3112,89.125,23.2 +2016-08-29 09:47:00,16.8675,89.1775,23.15 +2016-08-29 10:02:00,16.7337,89.2,23.08 +2016-08-29 10:17:00,18.4812,89.2925,23.06 +2016-08-29 10:32:00,19.2513,89.2525,22.97 +2016-08-29 10:47:00,17.0587,89.225,22.91 +2016-08-29 11:02:00,17.9463,89.4175,22.79 +2016-08-29 11:17:00,17.5575,89.095,22.79 +2016-08-29 11:32:00,18.4275,89.1475,22.74 +2016-08-29 11:47:00,19.6937,89.2125,22.78 +2016-08-29 12:02:00,16.4925,89.0925,22.87 +2016-08-29 12:17:00,17.7988,89.125,22.85 +2016-08-29 12:32:00,19.7412,89.1625,22.88 +2016-08-29 12:47:00,16.82,89.09,22.91 +2016-08-29 13:02:00,16.9187,89.165,22.91 +2016-08-29 13:17:00,19.79,89.115,22.98 +2016-08-29 13:32:00,14.5375,89.0625,22.92 +2016-08-29 13:47:00,17.75,89.0525,22.89 +2016-08-29 14:02:00,18.0025,88.8775,22.85 +2016-08-29 14:17:00,18.3875,89.0075,22.83 +2016-08-29 14:32:00,19.2038,88.865,22.8 +2016-08-29 14:47:00,19.5,89.0125,22.72 +2016-08-29 15:02:00,19.2537,88.865,22.62 +2016-08-29 15:17:00,20.52,88.84,22.57 +2016-08-29 15:32:00,18.195,88.895,22.45 +2016-08-29 15:47:00,18.0037,88.86,22.38 +2016-08-29 16:02:00,18.3825,88.77,22.3 +2016-08-29 16:17:00,17.36,88.81,22.25 +2016-08-29 16:32:00,16.635,88.7825,22.22 +2016-08-29 16:47:00,19.9837,88.7875,22.18 +2016-08-29 17:02:00,21.2462,88.68,22.14 +2016-08-29 17:17:00,17.3138,88.74,22.16 +2016-08-29 17:32:00,18.8225,88.86,22.1 +2016-08-29 17:47:00,17.8037,88.7475,22.09 +2016-08-29 18:02:00,17.4613,88.825,22.1 +2016-08-29 18:17:00,19.9837,88.9975,22.06 +2016-08-29 18:32:00,19.4437,88.9925,21.99 +2016-08-29 18:47:00,18.8688,89.1575,22.02 +2016-08-29 19:02:00,17.7,89.2075,22.08 +2016-08-29 19:17:00,15.8637,89.31,22.05 +2016-08-29 19:32:00,18.1,89.39,22.02 +2016-08-29 19:47:00,18.725,89.4075,21.95 +2016-08-29 20:02:00,20.0762,89.445,22.01 +2016-08-29 20:17:00,18.5762,89.4525,21.98 +2016-08-29 20:32:00,20.2262,89.4725,21.93 +2016-08-29 20:47:00,15.8138,89.4125,21.93 +2016-08-29 21:02:00,18.5287,89.3925,21.92 +2016-08-29 21:17:00,20.23,89.37,21.92 +2016-08-29 21:32:00,17.33,89.2425,21.8 +2016-08-29 21:47:00,17.6012,89.1975,21.86 +2016-08-29 22:02:00,20.8037,89.0575,21.78 +2016-08-29 22:17:00,19.1562,88.925,21.75 +2016-08-29 22:32:00,18.095,88.795,21.74 +2016-08-29 22:47:00,19.695,88.685,21.71 +2016-08-29 23:02:00,16.965,88.595,21.72 +2016-08-29 23:17:00,16.4938,88.4525,21.67 +2016-08-29 23:32:00,20.3725,88.28,21.62 +2016-08-29 23:47:00,18.5775,88.13,21.62 +2016-08-30 00:02:00,19.445,88.0,21.6 +2016-08-30 00:17:00,20.0762,87.795,21.57 +2016-08-30 00:32:00,18.4362,87.5375,21.53 +2016-08-30 00:47:00,20.0788,87.42,21.52 +2016-08-30 01:02:00,20.805,87.225,21.45 +2016-08-30 01:17:00,19.3512,87.0275,21.46 +2016-08-30 01:32:00,17.7,86.8525,21.41 +2016-08-30 01:47:00,17.75,86.6875,21.38 +2016-08-30 02:02:00,17.7975,86.5425,21.4 +2016-08-30 02:17:00,18.8187,86.375,21.36 +2016-08-30 02:32:00,19.8875,86.2175,21.36 +2016-08-30 02:47:00,18.3375,86.035,21.33 +2016-08-30 03:02:00,19.1162,85.8575,21.29 +2016-08-30 03:17:00,17.265,85.795,21.26 +2016-08-30 03:32:00,17.845,85.64,21.25 +2016-08-30 03:47:00,16.1462,85.505,21.26 +2016-08-30 04:02:00,18.1413,85.3975,21.21 +2016-08-30 04:17:00,17.2075,85.275,21.18 +2016-08-30 04:32:00,17.0587,85.1575,21.14 +2016-08-30 04:47:00,16.8688,85.045,21.15 +2016-08-30 05:02:00,20.6625,84.8775,21.12 +2016-08-30 05:17:00,18.435,84.685,21.13 +2016-08-30 05:32:00,19.445,84.475,21.15 +2016-08-30 05:47:00,19.3937,84.2025,21.12 +2016-08-30 06:02:00,20.27,84.025,21.15 +2016-08-30 06:17:00,17.995,83.82,21.17 +2016-08-30 06:32:00,21.0963,83.6675,21.16 +2016-08-30 06:47:00,19.4962,83.4775,21.15 +2016-08-30 07:02:00,19.7438,83.415,21.18 +2016-08-30 07:17:00,20.0713,83.3225,21.2 +2016-08-30 07:32:00,19.0125,83.16,21.16 +2016-08-30 07:47:00,16.6787,83.08,21.25 +2016-08-30 08:02:00,17.1025,82.98,21.27 +2016-08-30 08:17:00,19.54,82.825,21.37 +2016-08-30 08:32:00,19.3438,82.7575,21.47 +2016-08-30 08:47:00,19.595,82.7275,21.5 +2016-08-30 09:02:00,16.9175,82.61,21.51 +2016-08-30 09:17:00,18.965,82.6075,21.58 +2016-08-30 09:32:00,19.2525,82.445,21.64 +2016-08-30 09:47:00,19.1537,82.535,21.8 +2016-08-30 10:02:00,18.4238,82.3725,21.87 +2016-08-30 10:17:00,16.4863,82.28,22.12 +2016-08-30 10:32:00,17.65,82.2775,22.1 +2016-08-30 10:47:00,17.7012,82.21,22.26 +2016-08-30 11:02:00,20.3688,82.175,22.26 +2016-08-30 11:17:00,17.9938,82.1875,22.3 +2016-08-30 11:32:00,17.7487,82.0775,22.33 +2016-08-30 11:47:00,17.5062,82.1825,22.32 +2016-08-30 12:02:00,18.1825,82.06,22.34 +2016-08-30 12:17:00,18.8162,81.9925,22.33 +2016-08-30 12:32:00,18.1925,81.995,22.25 +2016-08-30 12:47:00,17.1612,81.95,22.21 +2016-08-30 13:02:00,15.61,81.94,22.14 +2016-08-30 13:17:00,18.8162,81.8225,22.13 +2016-08-30 13:32:00,20.5112,81.8025,22.1 +2016-08-30 13:47:00,18.3737,81.68,22.05 +2016-08-30 14:02:00,17.3575,81.8,21.95 +2016-08-30 14:17:00,19.2025,81.76,21.85 +2016-08-30 14:32:00,20.6637,81.8375,21.78 +2016-08-30 14:47:00,20.8512,81.8675,21.64 +2016-08-30 15:02:00,18.1875,81.815,21.59 +2016-08-30 15:17:00,20.8438,81.905,21.5 +2016-08-30 15:32:00,17.405,81.985,21.41 +2016-08-30 15:47:00,18.1888,81.985,21.31 +2016-08-30 16:02:00,19.1075,81.9725,21.24 +2016-08-30 16:17:00,16.5837,81.9875,21.09 +2016-08-30 16:32:00,19.8875,82.0,21.02 +2016-08-30 16:47:00,18.72,81.97,20.97 +2016-08-30 17:02:00,17.7962,81.9775,20.92 +2016-08-30 17:17:00,17.5037,81.9275,20.87 +2016-08-30 17:32:00,20.4175,81.9225,20.81 +2016-08-30 17:47:00,20.42,81.9175,20.76 +2016-08-30 18:02:00,18.4775,81.9475,20.7 +2016-08-30 18:17:00,19.4463,81.9825,20.67 +2016-08-30 18:32:00,18.0425,82.025,20.64 +2016-08-30 18:47:00,21.145,82.0725,20.61 +2016-08-30 19:02:00,21.2425,82.1125,20.58 +2016-08-30 19:17:00,19.545,82.1425,20.58 +2016-08-30 19:32:00,19.4925,82.2075,20.53 +2016-08-30 19:47:00,18.2862,82.21,20.52 +2016-08-30 20:02:00,18.5275,82.2075,20.51 +2016-08-30 20:17:00,20.1312,82.22,20.43 +2016-08-30 20:32:00,18.1875,82.255,20.44 +2016-08-30 20:47:00,17.945,82.195,20.42 +2016-08-30 21:02:00,18.77,82.2175,20.43 +2016-08-30 21:17:00,16.8187,82.2375,20.43 +2016-08-30 21:32:00,15.4662,82.245,20.38 +2016-08-30 21:47:00,17.7438,82.27,20.37 +2016-08-30 22:02:00,20.1287,82.2875,20.35 +2016-08-30 22:17:00,18.4313,82.3725,20.28 +2016-08-30 22:32:00,19.4962,82.4425,20.25 +2016-08-30 22:47:00,18.3775,82.5675,20.2 +2016-08-30 23:02:00,18.3812,82.64,20.15 +2016-08-30 23:17:00,17.5537,82.735,20.14 +2016-08-30 23:32:00,19.06,82.7325,20.15 +2016-08-30 23:47:00,18.2887,82.6625,20.11 +2016-08-31 00:02:00,17.8463,82.69,20.05 +2016-08-31 00:17:00,17.4575,82.745,20.05 +2016-08-31 00:32:00,18.7188,82.74,20.04 +2016-08-31 00:47:00,16.73,82.7375,20.02 +2016-08-31 01:02:00,19.9325,82.7825,19.98 +2016-08-31 01:17:00,18.5713,82.8,19.95 +2016-08-31 01:32:00,17.9437,82.795,19.9 +2016-08-31 01:47:00,18.6725,82.8225,19.89 +2016-08-31 02:02:00,18.6712,82.945,19.89 +2016-08-31 02:17:00,18.185,83.0375,19.92 +2016-08-31 02:32:00,19.8337,83.115,19.95 +2016-08-31 02:47:00,20.9412,83.18,19.94 +2016-08-31 03:02:00,20.99,83.23,19.9 +2016-08-31 03:17:00,18.6687,83.2675,19.98 +2016-08-31 03:32:00,17.9975,83.295,19.98 +2016-08-31 03:47:00,18.1413,83.29,20.06 +2016-08-31 04:02:00,18.8162,83.3,20.04 +2016-08-31 04:17:00,19.5912,83.2925,20.0 +2016-08-31 04:32:00,19.6837,83.295,20.05 +2016-08-31 04:47:00,17.0088,83.4125,20.02 +2016-08-31 05:02:00,20.7025,83.55,20.03 +2016-08-31 05:17:00,20.5612,83.675,20.1 +2016-08-31 05:32:00,19.4925,83.875,20.07 +2016-08-31 05:47:00,19.5938,84.025,20.14 +2016-08-31 06:02:00,19.1987,84.185,20.12 +2016-08-31 06:17:00,18.1875,84.34,20.19 +2016-08-31 06:32:00,20.3675,84.4825,20.16 +2016-08-31 06:47:00,17.9938,84.61,20.22 +2016-08-31 07:02:00,20.745,84.6575,20.3 +2016-08-31 07:17:00,18.0825,84.7025,20.37 +2016-08-31 07:32:00,19.9313,84.8225,20.44 +2016-08-31 07:47:00,18.5212,84.805,20.46 +2016-08-31 08:02:00,18.8625,84.8475,20.54 +2016-08-31 08:17:00,17.595,84.895,20.64 +2016-08-31 08:32:00,19.2875,84.9425,20.7 +2016-08-31 08:47:00,19.88,85.0025,20.84 +2016-08-31 09:02:00,20.215,85.095,20.91 +2016-08-31 09:17:00,19.93,85.095,21.02 +2016-08-31 09:32:00,19.2438,85.01,21.16 +2016-08-31 09:47:00,19.5437,84.98,21.26 +2016-08-31 10:02:00,18.5675,84.96,21.31 +2016-08-31 10:17:00,18.715,85.0225,21.51 +2016-08-31 10:32:00,17.94,85.08,21.55 +2016-08-31 10:47:00,15.405,85.055,21.65 +2016-08-31 11:02:00,18.6612,85.0,21.59 +2016-08-31 11:17:00,17.0563,84.965,21.64 +2016-08-31 11:32:00,21.24,85.02,21.58 +2016-08-31 11:47:00,19.01,85.0325,21.54 +2016-08-31 12:02:00,18.6637,84.905,21.56 +2016-08-31 12:17:00,18.085,84.93,21.52 +2016-08-31 12:32:00,19.4912,84.945,21.42 +2016-08-31 12:47:00,18.5675,85.01,21.42 +2016-08-31 13:02:00,19.9725,84.945,21.29 +2016-08-31 13:17:00,20.4638,84.9075,21.19 +2016-08-31 13:32:00,17.745,84.895,21.16 +2016-08-31 13:47:00,15.5563,84.67,21.1 +2016-08-31 14:02:00,17.4512,84.59,20.95 +2016-08-31 14:17:00,21.9737,84.5725,20.92 +2016-08-31 14:32:00,19.2913,84.59,20.84 +2016-08-31 14:47:00,18.7175,84.52,20.76 +2016-08-31 15:02:00,21.4812,84.415,20.69 +2016-08-31 15:17:00,20.8925,84.345,20.61 +2016-08-31 15:32:00,18.86,84.255,20.49 +2016-08-31 15:47:00,18.6625,84.3325,20.43 +2016-08-31 16:02:00,19.7363,84.2025,20.33 +2016-08-31 16:17:00,19.8812,84.08,20.22 +2016-08-31 16:32:00,18.6625,83.97,20.17 +2016-08-31 16:47:00,19.7838,83.9675,20.12 +2016-08-31 17:02:00,19.6875,83.955,20.08 +2016-08-31 17:17:00,18.915,83.905,20.04 +2016-08-31 17:32:00,18.8587,83.925,20.01 +2016-08-31 17:47:00,19.1975,83.9625,19.97 +2016-08-31 18:02:00,21.83,83.9425,19.94 +2016-08-31 18:17:00,19.4875,83.9425,19.9 +2016-08-31 18:32:00,19.2925,83.9425,19.92 +2016-08-31 18:47:00,19.9313,83.97,19.92 +2016-08-31 19:02:00,17.6475,83.925,19.92 +2016-08-31 19:17:00,19.93,83.875,19.93 +2016-08-31 19:32:00,18.665,83.845,19.93 +2016-08-31 19:47:00,20.5587,83.845,19.93 +2016-08-31 20:02:00,19.5888,83.7725,19.88 +2016-08-31 20:17:00,19.1975,83.6575,19.9 +2016-08-31 20:32:00,18.7663,83.69,19.99 +2016-08-31 20:47:00,19.1087,83.59,19.98 +2016-08-31 21:02:00,18.3312,83.6075,19.98 +2016-08-31 21:17:00,19.005,83.5575,19.97 +2016-08-31 21:32:00,17.8862,83.5175,19.95 +2016-08-31 21:47:00,20.1712,83.5325,19.93 +2016-08-31 22:02:00,18.52,83.565,19.99 +2016-08-31 22:17:00,20.655,83.5725,19.96 +2016-08-31 22:32:00,19.8325,83.58,19.95 +2016-08-31 22:47:00,18.24,83.555,19.87 +2016-08-31 23:02:00,19.4412,83.545,19.85 +2016-08-31 23:17:00,18.33,83.5725,19.88 +2016-08-31 23:32:00,19.6375,83.5275,19.91 +2016-08-31 23:47:00,19.975,83.4475,19.88 +2016-09-01 00:02:00,21.2875,83.4725,19.88 +2016-09-01 00:17:00,18.6188,83.4525,19.8 +2016-09-01 00:32:00,20.0762,83.425,19.84 +2016-09-01 00:47:00,21.2925,83.37,19.85 +2016-09-01 01:02:00,21.3363,83.345,19.84 +2016-09-01 01:17:00,21.1888,83.2825,19.9 +2016-09-01 01:32:00,18.0863,83.2275,19.84 +2016-09-01 01:47:00,16.6787,83.1825,19.89 +2016-09-01 02:02:00,19.1488,83.2025,19.91 +2016-09-01 02:17:00,20.2175,83.22,19.95 +2016-09-01 02:32:00,18.915,83.2525,19.93 +2016-09-01 02:47:00,20.0762,83.3075,20.04 +2016-09-01 03:02:00,21.1862,83.36,20.01 +2016-09-01 03:17:00,18.91,83.345,20.02 +2016-09-01 03:32:00,18.915,83.355,20.02 +2016-09-01 03:47:00,18.3288,83.37,20.03 +2016-09-01 04:02:00,20.0713,83.3175,20.08 +2016-09-01 04:17:00,19.1062,83.28,20.1 +2016-09-01 04:32:00,20.37,83.28,20.16 +2016-09-01 04:47:00,18.425,83.295,20.12 +2016-09-01 05:02:00,20.0263,83.2675,20.16 +2016-09-01 05:17:00,20.5587,83.35,20.15 +2016-09-01 05:32:00,18.7612,83.37,20.24 +2016-09-01 05:47:00,18.96,83.4375,20.28 +2016-09-01 06:02:00,20.2175,83.47,20.29 +2016-09-01 06:17:00,16.865,83.495,20.34 +2016-09-01 06:32:00,16.9587,83.5225,20.39 +2016-09-01 06:47:00,18.0375,83.5225,20.39 +2016-09-01 07:02:00,21.0387,83.5025,20.44 +2016-09-01 07:17:00,20.2675,83.4775,20.49 +2016-09-01 07:32:00,18.1338,83.4675,20.49 +2016-09-01 07:47:00,16.3375,83.4675,20.56 +2016-09-01 08:02:00,19.93,83.4325,20.62 +2016-09-01 08:17:00,20.8438,83.375,20.63 +2016-09-01 08:32:00,19.1975,83.33,20.66 +2016-09-01 08:47:00,19.0075,83.3375,20.7 +2016-09-01 09:02:00,18.7125,83.1675,20.71 +2016-09-01 09:17:00,16.9075,83.1975,20.84 +2016-09-01 09:32:00,19.5863,83.1775,21.0 +2016-09-01 09:47:00,20.2175,83.3875,21.17 +2016-09-01 10:02:00,17.7438,83.4975,21.31 +2016-09-01 10:17:00,20.6087,83.61,21.36 +2016-09-01 10:32:00,20.4638,83.6975,21.38 +2016-09-01 10:47:00,19.3412,83.935,21.29 +2016-09-01 11:02:00,20.3162,83.9925,21.23 +2016-09-01 11:17:00,19.3913,84.12,21.21 +2016-09-01 11:32:00,16.0462,84.2475,21.13 +2016-09-01 11:47:00,20.6075,84.33,21.12 +2016-09-01 12:02:00,17.8925,84.38,21.01 +2016-09-01 12:17:00,20.4675,84.39,20.88 +2016-09-01 12:32:00,21.0888,84.4575,20.75 +2016-09-01 12:47:00,20.4125,84.525,20.72 +2016-09-01 13:02:00,22.2588,84.67,20.68 +2016-09-01 13:17:00,22.945,84.6675,20.52 +2016-09-01 13:32:00,16.2337,84.8225,20.58 +2016-09-01 13:47:00,19.3438,84.8625,20.44 +2016-09-01 14:02:00,20.2687,84.86,20.39 +2016-09-01 14:17:00,20.94,85.0175,20.34 +2016-09-01 14:32:00,18.5675,84.945,20.29 +2016-09-01 14:47:00,18.2312,85.0075,20.22 +2016-09-01 15:02:00,20.1175,85.1425,20.16 +2016-09-01 15:17:00,19.6312,85.055,20.17 +2016-09-01 15:32:00,19.0537,85.0325,20.13 +2016-09-01 15:47:00,19.8812,85.0675,20.1 +2016-09-01 16:02:00,20.4163,85.065,20.07 +2016-09-01 16:17:00,21.73,85.2175,20.04 +2016-09-01 16:32:00,22.17,85.2875,20.03 +2016-09-01 16:47:00,19.0088,85.255,20.02 +2016-09-01 17:02:00,20.6525,85.345,19.99 +2016-09-01 17:17:00,19.4887,85.4275,19.97 +2016-09-01 17:32:00,17.4512,85.3975,19.93 +2016-09-01 17:47:00,18.8662,85.45,19.94 +2016-09-01 18:02:00,20.465,85.45,19.93 +2016-09-01 18:17:00,20.6562,85.445,19.93 +2016-09-01 18:32:00,18.7675,85.395,19.91 +2016-09-01 18:47:00,18.0387,85.3875,19.93 +2016-09-01 19:02:00,21.68,85.39,19.89 +2016-09-01 19:17:00,21.5312,85.37,19.9 +2016-09-01 19:32:00,19.5462,85.4425,19.92 +2016-09-01 19:47:00,19.5437,85.465,19.95 +2016-09-01 20:02:00,19.1038,85.485,19.97 +2016-09-01 20:17:00,17.5,85.51,19.97 +2016-09-01 20:32:00,18.8625,85.5825,19.98 +2016-09-01 20:47:00,19.2913,85.595,19.96 +2016-09-01 21:02:00,21.9737,85.6,19.99 +2016-09-01 21:17:00,19.7337,85.5525,19.97 +2016-09-01 21:32:00,17.9437,85.505,19.99 +2016-09-01 21:47:00,18.1888,85.505,20.04 +2016-09-01 22:02:00,19.5413,85.47,20.03 +2016-09-01 22:17:00,18.7625,85.4075,20.05 +2016-09-01 22:32:00,18.8613,85.345,20.0 +2016-09-01 22:47:00,17.8875,85.3775,20.04 +2016-09-01 23:02:00,21.0375,85.3975,20.01 +2016-09-01 23:17:00,20.075,85.4025,20.03 +2016-09-01 23:32:00,19.245,85.4025,20.03 +2016-09-01 23:47:00,18.2862,85.4525,20.04 +2016-09-02 00:02:00,19.1475,85.4325,20.05 +2016-09-02 00:17:00,19.29,85.4225,20.06 +2016-09-02 00:32:00,18.8587,85.395,20.04 +2016-09-02 00:47:00,20.6062,85.4025,20.02 +2016-09-02 01:02:00,21.1362,85.31,20.06 +2016-09-02 01:17:00,22.3138,85.26,20.09 +2016-09-02 01:32:00,18.665,85.205,20.05 +2016-09-02 01:47:00,17.6888,85.215,20.07 +2016-09-02 02:02:00,18.3288,85.22,20.13 +2016-09-02 02:17:00,22.7988,85.3025,20.14 +2016-09-02 02:32:00,20.2663,85.3525,20.12 +2016-09-02 02:47:00,20.22,85.4075,20.13 +2016-09-02 03:02:00,20.9388,85.395,20.12 +2016-09-02 03:17:00,20.9463,85.4,20.13 +2016-09-02 03:32:00,19.8862,85.41,20.12 +2016-09-02 03:47:00,21.1362,85.415,20.14 +2016-09-02 04:02:00,20.32,85.4325,20.17 +2016-09-02 04:17:00,21.19,85.4075,20.18 +2016-09-02 04:32:00,22.22,85.4075,20.14 +2016-09-02 04:47:00,21.2887,85.395,20.17 +2016-09-02 05:02:00,16.9613,85.41,20.19 +2016-09-02 05:17:00,19.7387,85.45,20.18 +2016-09-02 05:32:00,20.6075,85.415,20.24 +2016-09-02 05:47:00,21.5812,85.41,20.22 +2016-09-02 06:02:00,19.4912,85.3775,20.25 +2016-09-02 06:17:00,17.2525,85.375,20.26 +2016-09-02 06:32:00,19.3425,85.425,20.29 +2016-09-02 06:47:00,22.2663,85.44,20.29 +2016-09-02 07:02:00,20.1738,85.335,20.28 +2016-09-02 07:17:00,20.9425,85.3275,20.26 +2016-09-02 07:32:00,18.6175,85.3125,20.27 +2016-09-02 07:47:00,17.3025,85.32,20.36 +2016-09-02 08:02:00,22.1237,85.285,20.42 +2016-09-02 08:17:00,20.7925,85.2475,20.44 +2016-09-02 08:32:00,19.7337,85.1775,20.47 +2016-09-02 08:47:00,19.1525,85.1525,20.51 +2016-09-02 09:02:00,20.0762,85.08,20.57 +2016-09-02 09:17:00,22.3613,85.1125,20.66 +2016-09-02 09:32:00,20.5125,85.095,20.76 +2016-09-02 09:47:00,20.6987,85.1,20.85 +2016-09-02 10:02:00,19.435,85.0925,20.84 +2016-09-02 10:17:00,20.2637,85.1575,20.91 +2016-09-02 10:32:00,17.69,85.1775,20.92 +2016-09-02 10:47:00,19.59,85.2675,20.94 +2016-09-02 11:02:00,19.785,85.2775,20.9 +2016-09-02 11:17:00,21.3862,85.17,21.06 +2016-09-02 11:32:00,19.9238,85.1975,20.99 +2016-09-02 11:47:00,19.6813,85.175,20.94 +2016-09-02 12:02:00,19.8787,85.1125,20.79 +2016-09-02 12:17:00,22.1225,85.12,20.77 +2016-09-02 12:32:00,21.39,85.1525,20.76 +2016-09-02 12:47:00,17.005,85.0475,20.73 +2016-09-02 13:02:00,21.0387,84.95,20.73 +2016-09-02 13:17:00,19.7787,85.03,20.76 +2016-09-02 13:32:00,22.9437,85.085,20.71 +2016-09-02 13:47:00,19.9725,85.0075,20.7 +2016-09-02 14:02:00,19.145,85.02,20.72 +2016-09-02 14:17:00,18.715,84.9775,20.69 +2016-09-02 14:32:00,20.5587,85.005,20.64 +2016-09-02 14:47:00,18.235,85.0075,20.58 +2016-09-02 15:02:00,20.9837,85.1,20.54 +2016-09-02 15:17:00,19.4875,85.1275,20.57 +2016-09-02 15:32:00,19.9713,85.1575,20.46 +2016-09-02 15:47:00,18.7625,85.21,20.41 +2016-09-02 16:02:00,20.415,85.1775,20.38 +2016-09-02 16:17:00,18.9075,85.1625,20.34 +2016-09-02 16:32:00,17.2062,85.1475,20.3 +2016-09-02 16:47:00,21.8838,85.1475,20.27 +2016-09-02 17:02:00,20.0662,85.1125,20.24 +2016-09-02 17:17:00,16.9125,85.1225,20.21 +2016-09-02 17:32:00,21.1413,85.125,20.18 +2016-09-02 17:47:00,21.0863,85.095,20.14 +2016-09-02 18:02:00,19.9262,85.065,20.15 +2016-09-02 18:17:00,21.5863,85.04,20.15 +2016-09-02 18:32:00,19.6413,85.05,20.15 +2016-09-02 18:47:00,22.8512,85.0225,20.16 +2016-09-02 19:02:00,20.51,85.0825,20.2 +2016-09-02 19:17:00,19.6362,85.1175,20.22 +2016-09-02 19:32:00,19.06,85.1225,20.27 +2016-09-02 19:47:00,19.0575,85.1025,20.21 +2016-09-02 20:02:00,18.7637,85.1275,20.28 +2016-09-02 20:17:00,15.9088,85.145,20.33 +2016-09-02 20:32:00,21.485,85.12,20.3 +2016-09-02 20:47:00,23.3237,85.0775,20.3 +2016-09-02 21:02:00,22.605,85.065,20.34 +2016-09-02 21:17:00,20.3213,85.0275,20.34 +2016-09-02 21:32:00,18.665,85.0425,20.35 +2016-09-02 21:47:00,17.9362,84.9675,20.37 +2016-09-02 22:02:00,18.4225,84.96,20.35 +2016-09-02 22:17:00,16.8187,84.9475,20.33 +2016-09-02 22:32:00,19.5912,84.9225,20.33 +2016-09-02 22:47:00,18.7175,84.93,20.25 +2016-09-02 23:02:00,17.35,84.975,20.31 +2016-09-02 23:17:00,18.1837,85.015,20.3 +2016-09-02 23:32:00,18.0375,85.07,20.26 +2016-09-02 23:47:00,19.0088,85.085,20.3 +2016-09-03 00:02:00,21.485,85.1,20.29 +2016-09-03 00:17:00,20.0238,85.1475,20.28 +2016-09-03 00:32:00,18.0875,85.135,20.27 +2016-09-03 00:47:00,20.3162,85.15,20.27 +2016-09-03 01:02:00,22.2612,85.1525,20.27 +2016-09-03 01:17:00,18.3312,85.12,20.27 +2016-09-03 01:32:00,19.34,85.11,20.2 +2016-09-03 01:47:00,22.7975,85.055,20.28 +2016-09-03 02:02:00,18.6162,85.0375,20.33 +2016-09-03 02:17:00,18.9587,85.05,20.32 +2016-09-03 02:32:00,19.7325,85.035,20.38 +2016-09-03 02:47:00,19.4925,85.0375,20.39 +2016-09-03 03:02:00,19.925,85.035,20.44 +2016-09-03 03:17:00,19.925,85.08,20.49 +2016-09-03 03:32:00,20.9362,85.1625,20.47 +2016-09-03 03:47:00,21.6387,85.17,20.46 +2016-09-03 04:02:00,19.295,85.2575,20.53 +2016-09-03 04:17:00,18.425,85.215,20.52 +2016-09-03 04:32:00,18.76,85.275,20.49 +2016-09-03 04:47:00,20.6987,85.24,20.5 +2016-09-03 05:02:00,19.4362,85.2175,20.51 +2016-09-03 05:17:00,20.6513,85.2425,20.43 +2016-09-03 05:32:00,19.4337,85.235,20.5 +2016-09-03 05:47:00,20.5125,85.205,20.52 +2016-09-03 06:02:00,18.1888,85.1575,20.5 +2016-09-03 06:17:00,19.6813,85.1,20.55 +2016-09-03 06:32:00,18.085,85.04,20.54 +2016-09-03 06:47:00,22.4512,84.9825,20.57 +2016-09-03 07:02:00,21.8763,84.9875,20.64 +2016-09-03 07:17:00,21.2363,84.9275,20.68 +2016-09-03 07:32:00,22.355,84.87,20.71 +2016-09-03 07:47:00,20.7012,84.925,20.77 +2016-09-03 08:02:00,21.7312,84.92,20.8 +2016-09-03 08:17:00,20.1162,84.8925,20.84 +2016-09-03 08:32:00,19.34,84.905,20.87 +2016-09-03 08:47:00,19.7312,84.975,20.9 +2016-09-03 09:02:00,18.9575,84.9275,20.93 +2016-09-03 09:17:00,21.0387,85.015,20.96 +2016-09-03 09:32:00,20.4613,84.92,21.0 +2016-09-03 09:47:00,16.9625,84.91,21.03 +2016-09-03 10:02:00,20.1675,84.88,21.09 +2016-09-03 10:17:00,18.5163,84.93,21.14 +2016-09-03 10:32:00,19.835,84.825,21.17 +2016-09-03 10:47:00,19.7875,84.9775,21.24 +2016-09-03 11:02:00,19.1025,85.015,21.16 +2016-09-03 11:17:00,18.6663,85.1475,21.16 +2016-09-03 11:32:00,17.995,85.27,21.19 +2016-09-03 11:47:00,17.7937,85.295,21.16 +2016-09-03 12:02:00,21.5312,85.26,21.2 +2016-09-03 12:17:00,20.3625,85.3025,21.21 +2016-09-03 12:32:00,19.975,85.305,21.17 +2016-09-03 12:47:00,20.3662,85.2875,21.23 +2016-09-03 13:02:00,18.2337,85.3425,21.1 +2016-09-03 13:17:00,18.5225,85.3275,21.01 +2016-09-03 13:32:00,18.9613,85.4575,20.95 +2016-09-03 13:47:00,22.3138,85.4525,20.9 +2016-09-03 14:02:00,22.31,85.395,20.84 +2016-09-03 14:17:00,19.1062,85.39,20.79 +2016-09-03 14:32:00,18.375,85.33,20.78 +2016-09-03 14:47:00,19.54,85.3725,20.78 +2016-09-03 15:02:00,19.785,85.435,20.77 +2016-09-03 15:17:00,21.3412,85.43,20.72 +2016-09-03 15:32:00,19.2975,85.5325,20.73 +2016-09-03 15:47:00,20.075,85.605,20.69 +2016-09-03 16:02:00,22.36,85.6575,20.6 +2016-09-03 16:17:00,19.4375,85.6125,20.57 +2016-09-03 16:32:00,20.56,85.64,20.54 +2016-09-03 16:47:00,21.5338,85.59,20.51 +2016-09-03 17:02:00,18.6675,85.5775,20.5 +2016-09-03 17:17:00,23.0837,85.55,20.5 +2016-09-03 17:32:00,20.0275,85.525,20.49 +2016-09-03 17:47:00,21.4887,85.4625,20.48 +2016-09-03 18:02:00,21.9762,85.4625,20.47 +2016-09-03 18:17:00,19.8825,85.4,20.48 +2016-09-03 18:32:00,20.3162,85.3775,20.49 +2016-09-03 18:47:00,21.0375,85.3175,20.46 +2016-09-03 19:02:00,20.2712,85.285,20.47 +2016-09-03 19:17:00,19.8875,85.31,20.51 +2016-09-03 19:32:00,19.54,85.3375,20.51 +2016-09-03 19:47:00,18.1862,85.36,20.48 +2016-09-03 20:02:00,18.9112,85.4225,20.52 +2016-09-03 20:17:00,20.515,85.4275,20.52 +2016-09-03 20:32:00,19.4362,85.4,20.53 +2016-09-03 20:47:00,20.7937,85.3825,20.51 +2016-09-03 21:02:00,22.13,85.385,20.53 +2016-09-03 21:17:00,23.0875,85.4225,20.52 +2016-09-03 21:32:00,20.5575,85.31,20.5 +2016-09-03 21:47:00,19.2438,85.2875,20.53 +2016-09-03 22:02:00,20.61,85.2575,20.54 +2016-09-03 22:17:00,20.8925,85.235,20.5 +2016-09-03 22:32:00,21.09,85.2,20.5 +2016-09-03 22:47:00,18.8187,85.155,20.49 +2016-09-03 23:02:00,21.2887,85.115,20.48 +2016-09-03 23:17:00,22.3562,85.0325,20.48 +2016-09-03 23:32:00,18.2812,85.005,20.45 +2016-09-03 23:47:00,18.3288,84.99,20.47 +2016-09-04 00:02:00,20.2663,84.9975,20.43 +2016-09-04 00:17:00,17.89,85.035,20.45 +2016-09-04 00:32:00,19.9725,85.09,20.46 +2016-09-04 00:47:00,22.8037,85.08,20.44 +2016-09-04 01:02:00,21.785,85.1175,20.45 +2016-09-04 01:17:00,21.0413,85.09,20.42 +2016-09-04 01:32:00,20.0713,85.04,20.4 +2016-09-04 01:47:00,20.02,85.0825,20.41 +2016-09-04 02:02:00,19.8838,85.0275,20.37 +2016-09-04 02:17:00,23.8162,85.02,20.37 +2016-09-04 02:32:00,22.7988,85.03,20.37 +2016-09-04 02:47:00,20.7025,85.0125,20.37 +2016-09-04 03:02:00,21.1425,84.9825,20.39 +2016-09-04 03:17:00,22.3112,84.9375,20.37 +2016-09-04 03:32:00,17.9425,84.8975,20.36 +2016-09-04 03:47:00,21.8275,84.8975,20.36 +2016-09-04 04:02:00,18.475,84.8875,20.33 +2016-09-04 04:17:00,20.8438,84.9825,20.34 +2016-09-04 04:32:00,20.8975,84.9975,20.34 +2016-09-04 04:47:00,21.6375,85.01,20.36 +2016-09-04 05:02:00,22.0275,85.02,20.34 +2016-09-04 05:17:00,23.33,85.07,20.36 +2016-09-04 05:32:00,21.7288,85.025,20.35 +2016-09-04 05:47:00,17.2513,85.05,20.36 +2016-09-04 06:02:00,22.075,85.0075,20.38 +2016-09-04 06:17:00,20.415,85.0025,20.38 +2016-09-04 06:32:00,20.465,84.955,20.37 +2016-09-04 06:47:00,22.2675,84.9175,20.39 +2016-09-04 07:02:00,20.9375,84.8375,20.39 +2016-09-04 07:17:00,21.8787,84.8225,20.39 +2016-09-04 07:32:00,22.36,84.81,20.39 +2016-09-04 07:47:00,17.8388,84.765,20.38 +2016-09-04 08:02:00,18.8587,84.7675,20.38 +2016-09-04 08:17:00,20.2725,84.6975,20.38 +2016-09-04 08:32:00,18.62,84.705,20.37 +2016-09-04 08:47:00,21.4863,84.64,20.35 +2016-09-04 09:02:00,17.7425,84.64,20.33 +2016-09-04 09:17:00,21.5812,84.6225,20.31 +2016-09-04 09:32:00,20.75,84.6275,20.3 +2016-09-04 09:47:00,22.7975,84.6025,20.25 +2016-09-04 10:02:00,19.0075,84.505,20.2 +2016-09-04 10:17:00,21.5375,84.3825,20.19 +2016-09-04 10:32:00,20.1725,84.51,20.12 +2016-09-04 10:47:00,20.0263,84.4225,20.07 +2016-09-04 11:02:00,21.8825,84.455,20.03 +2016-09-04 11:17:00,20.125,84.4375,20.01 +2016-09-04 11:32:00,20.5575,84.3875,20.04 +2016-09-04 11:47:00,20.515,84.4425,20.04 +2016-09-04 12:02:00,21.4388,84.395,20.13 +2016-09-04 12:17:00,21.7325,84.4375,20.14 +2016-09-04 12:32:00,20.2237,84.55,20.22 +2016-09-04 12:47:00,18.4225,84.6375,20.26 +2016-09-04 13:02:00,21.4825,84.605,20.26 +2016-09-04 13:17:00,22.2225,84.645,20.36 +2016-09-04 13:32:00,18.7663,84.6125,20.3 +2016-09-04 13:47:00,21.68,84.585,20.28 +2016-09-04 14:02:00,21.9825,84.64,20.18 +2016-09-04 14:17:00,19.495,84.5675,20.19 +2016-09-04 14:32:00,23.91,84.495,20.09 +2016-09-04 14:47:00,21.14,84.565,19.99 +2016-09-04 15:02:00,21.29,84.7375,19.88 +2016-09-04 15:17:00,18.185,84.87,19.85 +2016-09-04 15:32:00,19.8337,85.0175,19.86 +2016-09-04 15:47:00,18.33,85.11,19.87 +2016-09-04 16:02:00,20.365,85.235,19.87 +2016-09-04 16:17:00,20.8438,85.38,19.89 +2016-09-04 16:32:00,21.0875,85.425,19.86 +2016-09-04 16:47:00,21.7775,85.545,19.87 +2016-09-04 17:02:00,22.845,85.5325,19.96 +2016-09-04 17:17:00,23.1338,85.4825,20.14 +2016-09-04 17:32:00,20.795,85.625,20.17 +2016-09-04 17:47:00,21.935,85.63,20.22 +2016-09-04 18:02:00,23.0413,85.6325,20.25 +2016-09-04 18:17:00,20.935,85.5725,20.34 +2016-09-04 18:32:00,22.6537,85.645,20.3 +2016-09-04 18:47:00,21.1387,85.5275,20.3 +2016-09-04 19:02:00,20.4613,85.555,20.25 +2016-09-04 19:17:00,21.5837,85.49,20.11 +2016-09-04 19:32:00,20.66,85.4825,19.96 +2016-09-04 19:47:00,23.9125,85.4575,19.85 +2016-09-04 20:02:00,22.2738,85.5275,19.78 +2016-09-04 20:17:00,19.9275,85.47,19.72 +2016-09-04 20:32:00,20.0225,85.545,19.67 +2016-09-04 20:47:00,20.7975,85.575,19.65 +2016-09-04 21:02:00,22.4562,85.6625,19.72 +2016-09-04 21:17:00,23.62,85.6375,19.72 +2016-09-04 21:32:00,17.4525,85.5825,19.73 +2016-09-04 21:47:00,20.99,85.5,19.76 +2016-09-04 22:02:00,22.3175,85.44,19.76 +2016-09-04 22:17:00,22.025,85.35,19.76 +2016-09-04 22:32:00,22.3587,85.2725,19.75 +2016-09-04 22:47:00,21.63,85.2075,19.71 +2016-09-04 23:02:00,22.7487,85.145,19.68 +2016-09-04 23:17:00,22.7988,85.0975,19.73 +2016-09-04 23:32:00,19.84,84.9975,19.71 +2016-09-04 23:47:00,22.7025,84.92,19.67 +2016-09-05 00:02:00,20.8913,84.8825,19.65 +2016-09-05 00:17:00,22.0775,84.895,19.63 +2016-09-05 00:32:00,22.0762,84.8875,19.56 +2016-09-05 00:47:00,20.0725,84.88,19.54 +2016-09-05 01:02:00,23.1825,84.65,19.56 +2016-09-05 01:17:00,19.1513,84.8,19.57 +2016-09-05 01:32:00,19.3937,84.7475,19.5 +2016-09-05 01:47:00,19.5437,84.7275,19.51 +2016-09-05 02:02:00,19.64,84.5075,19.48 +2016-09-05 02:17:00,18.6663,84.5125,19.49 +2016-09-05 02:32:00,21.1413,84.5375,19.45 +2016-09-05 02:47:00,19.635,84.4675,19.46 +2016-09-05 03:02:00,20.1212,84.4375,19.4 +2016-09-05 03:17:00,22.5088,84.3275,19.36 +2016-09-05 03:32:00,18.475,84.2775,19.37 +2016-09-05 03:47:00,23.3262,84.1375,19.33 +2016-09-05 04:02:00,23.6762,84.2075,19.36 +2016-09-05 04:17:00,19.1062,84.065,19.28 +2016-09-05 04:32:00,21.8325,84.065,19.32 +2016-09-05 04:47:00,21.34,84.0925,19.3 +2016-09-05 05:02:00,23.0375,84.08,19.3 +2016-09-05 05:17:00,21.29,83.9875,19.29 +2016-09-05 05:32:00,19.2462,83.8525,19.26 +2016-09-05 05:47:00,20.0212,83.7,19.27 +2016-09-05 06:02:00,20.9375,83.655,19.23 +2016-09-05 06:17:00,21.1875,83.5075,19.26 +2016-09-05 06:32:00,23.0825,83.43,19.24 +2016-09-05 06:47:00,22.6,83.4525,19.26 +2016-09-05 07:02:00,21.1888,83.4375,19.26 +2016-09-05 07:17:00,22.7537,83.35,19.28 +2016-09-05 07:32:00,18.0425,83.4175,19.28 +2016-09-05 07:47:00,18.9062,83.3975,19.28 +2016-09-05 08:02:00,22.9437,83.5025,19.25 +2016-09-05 08:17:00,21.235,83.6175,19.26 +2016-09-05 08:32:00,21.4825,83.44,19.29 +2016-09-05 08:47:00,22.8988,83.4,19.28 +2016-09-05 09:02:00,20.6113,83.3725,19.3 +2016-09-05 09:17:00,22.4613,83.3125,19.32 +2016-09-05 09:32:00,18.33,83.3525,19.31 +2016-09-05 09:47:00,19.6362,83.21,19.26 +2016-09-05 10:02:00,21.035,83.1675,19.27 +2016-09-05 10:17:00,21.7763,83.15,19.29 +2016-09-05 10:32:00,19.1475,83.2375,19.37 +2016-09-05 10:47:00,24.0512,83.1675,19.39 +2016-09-05 11:02:00,21.9313,83.13,19.3 +2016-09-05 11:17:00,20.4662,83.0375,19.38 +2016-09-05 11:32:00,19.9262,83.255,19.29 +2016-09-05 11:47:00,19.5863,83.365,19.29 +2016-09-05 12:02:00,23.5713,83.375,19.36 +2016-09-05 12:17:00,21.44,83.55,19.39 +2016-09-05 12:32:00,22.1188,83.5525,19.48 +2016-09-05 12:47:00,21.1437,83.74,19.45 +2016-09-05 13:02:00,22.9437,83.83,19.54 +2016-09-05 13:17:00,20.3175,83.915,19.58 +2016-09-05 13:32:00,20.2162,83.9075,19.63 +2016-09-05 13:47:00,22.3075,84.0375,19.52 +2016-09-05 14:02:00,22.5987,84.08,19.57 +2016-09-05 14:17:00,21.7825,84.2625,19.36 +2016-09-05 14:32:00,21.3862,84.4675,19.27 +2016-09-05 14:47:00,19.1963,84.395,19.26 +2016-09-05 15:02:00,23.2337,84.485,19.25 +2016-09-05 15:17:00,22.3112,84.6425,19.26 +2016-09-05 15:32:00,21.0938,84.735,19.2 +2016-09-05 15:47:00,22.1675,84.855,19.2 +2016-09-05 16:02:00,20.5575,85.1625,19.16 +2016-09-05 16:17:00,22.7038,85.3675,19.11 +2016-09-05 16:32:00,21.0888,85.5875,19.09 +2016-09-05 16:47:00,23.5262,85.77,19.07 +2016-09-05 17:02:00,21.6825,85.8375,19.04 +2016-09-05 17:17:00,19.105,85.9175,19.01 +2016-09-05 17:32:00,22.7937,85.995,19.01 +2016-09-05 17:47:00,22.12,85.9925,18.99 +2016-09-05 18:02:00,20.655,86.0825,19.0 +2016-09-05 18:17:00,21.44,86.0775,18.97 +2016-09-05 18:32:00,20.7012,86.09,18.99 +2016-09-05 18:47:00,26.0863,86.025,18.96 +2016-09-05 19:02:00,20.6087,86.0125,18.98 +2016-09-05 19:17:00,24.8587,86.025,18.97 +2016-09-05 19:32:00,17.9912,85.95,18.99 +2016-09-05 19:47:00,23.4275,85.9825,19.0 +2016-09-05 20:02:00,21.04,85.9325,19.02 +2016-09-05 20:17:00,20.5125,85.9925,19.0 +2016-09-05 20:32:00,19.6413,86.0125,19.0 +2016-09-05 20:47:00,20.9375,86.0575,19.04 +2016-09-05 21:02:00,23.18,86.0725,19.03 +2016-09-05 21:17:00,22.9437,86.1325,19.03 +2016-09-05 21:32:00,19.9788,86.0675,19.03 +2016-09-05 21:47:00,22.5525,86.0325,19.03 +2016-09-05 22:02:00,20.3175,85.975,19.01 +2016-09-05 22:17:00,19.5938,85.95,19.01 +2016-09-05 22:32:00,20.8475,85.8775,19.0 +2016-09-05 22:47:00,21.0413,85.85,19.02 +2016-09-05 23:02:00,20.7487,85.7925,18.99 +2016-09-05 23:17:00,21.73,85.725,19.02 +2016-09-05 23:32:00,21.6312,85.665,19.06 +2016-09-05 23:47:00,20.4137,85.6475,19.06 +2016-09-06 00:02:00,19.88,85.71,19.08 +2016-09-06 00:17:00,21.2937,85.6625,19.11 +2016-09-06 00:32:00,21.7337,85.72,19.13 +2016-09-06 00:47:00,22.51,85.75,19.14 +2016-09-06 01:02:00,23.0825,85.6975,19.16 +2016-09-06 01:17:00,22.17,85.665,19.13 +2016-09-06 01:32:00,20.555,85.6175,19.13 +2016-09-06 01:47:00,21.5338,85.5525,19.13 +2016-09-06 02:02:00,20.795,85.5225,19.15 +2016-09-06 02:17:00,25.355,85.4825,19.17 +2016-09-06 02:32:00,24.415,85.3875,19.15 +2016-09-06 02:47:00,23.3275,85.3375,19.16 +2016-09-06 03:02:00,25.69,85.245,19.18 +2016-09-06 03:17:00,22.7,85.105,19.16 +2016-09-06 03:32:00,21.5325,85.04,19.17 +2016-09-06 03:47:00,21.09,84.9525,19.17 +2016-09-06 04:02:00,18.6188,84.8925,19.15 +2016-09-06 04:17:00,21.7825,84.87,19.16 +2016-09-06 04:32:00,23.3262,84.8475,19.15 +2016-09-06 04:47:00,22.7012,84.78,19.17 +2016-09-06 05:02:00,19.1987,84.755,19.2 +2016-09-06 05:17:00,21.2875,84.7225,19.19 +2016-09-06 05:32:00,19.9238,84.7275,19.17 +2016-09-06 05:47:00,19.64,84.7325,19.17 +2016-09-06 06:02:00,19.785,84.725,19.18 +2016-09-06 06:17:00,21.5875,84.7075,19.19 +2016-09-06 06:32:00,23.5238,84.68,19.18 +2016-09-06 06:47:00,21.5287,84.7025,19.18 +2016-09-06 07:02:00,24.1038,84.6475,19.18 +2016-09-06 07:17:00,21.095,84.6675,19.17 +2016-09-06 07:32:00,20.0687,84.6525,19.19 +2016-09-06 07:47:00,21.3913,84.6,19.19 +2016-09-06 08:02:00,22.8525,84.645,19.19 +2016-09-06 08:17:00,20.8925,84.6125,19.21 +2016-09-06 08:32:00,21.2375,84.555,19.23 +2016-09-06 08:47:00,21.68,84.5,19.26 +2016-09-06 09:02:00,19.4375,84.4125,19.32 +2016-09-06 09:17:00,22.1225,84.3775,19.29 +2016-09-06 09:32:00,20.0662,84.36,19.29 +2016-09-06 09:47:00,21.7312,84.3575,19.27 +2016-09-06 10:02:00,19.9762,84.4725,19.29 +2016-09-06 10:17:00,23.13,84.4775,19.27 +2016-09-06 10:32:00,18.8613,84.5125,19.35 +2016-09-06 10:47:00,22.4013,84.52,19.45 +2016-09-06 11:02:00,23.0362,84.58,19.54 +2016-09-06 11:17:00,23.375,84.4825,19.61 +2016-09-06 11:32:00,20.415,84.4775,19.6 +2016-09-06 11:47:00,21.5338,84.425,19.57 +2016-09-06 12:02:00,22.41,84.39,19.5 +2016-09-06 12:17:00,19.7375,84.3925,19.46 +2016-09-06 12:32:00,22.4562,84.3525,19.42 +2016-09-06 12:47:00,19.4362,84.2575,19.35 +2016-09-06 13:02:00,19.2937,84.175,19.35 +2016-09-06 13:17:00,25.1025,84.1675,19.4 +2016-09-06 13:32:00,19.4425,84.12,19.43 +2016-09-06 13:47:00,19.98,84.0625,19.47 +2016-09-06 14:02:00,19.9275,84.055,19.42 +2016-09-06 14:17:00,19.785,84.135,19.42 +2016-09-06 14:32:00,20.4625,84.225,19.48 +2016-09-06 14:47:00,24.0075,84.2025,19.46 +2016-09-06 15:02:00,23.8587,84.25,19.45 +2016-09-06 15:17:00,19.5387,84.1775,19.43 +2016-09-06 15:32:00,21.3425,84.0825,19.36 +2016-09-06 15:47:00,21.3887,84.17,19.33 +2016-09-06 16:02:00,20.7913,84.055,19.35 +2016-09-06 16:17:00,20.0212,83.9875,19.28 +2016-09-06 16:32:00,24.355,83.955,19.25 +2016-09-06 16:47:00,24.3075,83.9075,19.23 +2016-09-06 17:02:00,23.9562,83.865,19.23 +2016-09-06 17:17:00,22.7025,83.805,19.2 +2016-09-06 17:32:00,20.845,83.7275,19.2 +2016-09-06 17:47:00,20.8425,83.6975,19.18 +2016-09-06 18:02:00,20.7913,83.68,19.17 +2016-09-06 18:17:00,21.5762,83.6975,19.18 +2016-09-06 18:32:00,22.845,83.745,19.15 +2016-09-06 18:47:00,22.5525,83.8,19.17 +2016-09-06 19:02:00,22.7962,83.825,19.2 +2016-09-06 19:17:00,20.8937,83.78,19.21 +2016-09-06 19:32:00,20.7513,83.82,19.22 +2016-09-06 19:47:00,21.63,83.745,19.23 +2016-09-06 20:02:00,21.7288,83.67,19.23 +2016-09-06 20:17:00,21.2375,83.65,19.23 +2016-09-06 20:32:00,22.6525,83.6225,19.21 +2016-09-06 20:47:00,20.32,83.5725,19.22 +2016-09-06 21:02:00,22.5075,83.5425,19.23 +2016-09-06 21:17:00,25.8937,83.5025,19.24 +2016-09-06 21:32:00,19.1113,83.445,19.24 +2016-09-06 21:47:00,19.685,83.3375,19.24 +2016-09-06 22:02:00,20.7962,83.31,19.22 +2016-09-06 22:17:00,21.8812,83.35,19.22 +2016-09-06 22:32:00,22.1775,83.365,19.19 +2016-09-06 22:47:00,21.98,83.425,19.15 +2016-09-06 23:02:00,22.2225,83.405,19.14 +2016-09-06 23:17:00,23.2375,83.4275,19.13 +2016-09-06 23:32:00,20.4638,83.42,19.11 +2016-09-06 23:47:00,20.5575,83.435,19.08 +2016-09-07 00:02:00,22.945,83.4125,19.07 +2016-09-07 00:17:00,22.75,83.3575,19.05 +2016-09-07 00:32:00,23.1325,83.3325,19.03 +2016-09-07 00:47:00,21.8825,83.2875,18.99 +2016-09-07 01:02:00,23.2337,83.2125,18.99 +2016-09-07 01:17:00,21.9788,83.13,18.99 +2016-09-07 01:32:00,23.2763,83.105,18.94 +2016-09-07 01:47:00,20.7462,83.04,18.93 +2016-09-07 02:02:00,23.8625,83.04,18.93 +2016-09-07 02:17:00,20.89,83.0375,18.94 +2016-09-07 02:32:00,21.6287,83.09,18.94 +2016-09-07 02:47:00,24.3112,83.09,18.93 +2016-09-07 03:02:00,21.6875,83.105,18.89 +2016-09-07 03:17:00,20.9887,83.115,18.89 +2016-09-07 03:32:00,21.9313,83.1125,18.87 +2016-09-07 03:47:00,21.78,83.1125,18.89 +2016-09-07 04:02:00,23.3725,83.06,18.84 +2016-09-07 04:17:00,23.4225,83.015,18.87 +2016-09-07 04:32:00,21.9775,82.97,18.87 +2016-09-07 04:47:00,23.0925,82.9425,18.87 +2016-09-07 05:02:00,14.6813,82.8775,18.86 +2016-09-07 05:17:00,22.1738,82.8475,18.85 +2016-09-07 05:32:00,20.3637,82.7725,18.86 +2016-09-07 05:47:00,22.265,82.8,18.87 +2016-09-07 06:02:00,20.2175,82.7675,18.89 +2016-09-07 06:17:00,21.5312,82.7875,18.88 +2016-09-07 06:32:00,22.1738,82.725,18.93 +2016-09-07 06:47:00,22.0263,82.725,18.91 +2016-09-07 07:02:00,20.8,82.71,18.97 +2016-09-07 07:17:00,24.2575,82.6275,19.01 +2016-09-07 07:32:00,22.7513,82.57,19.04 +2016-09-07 07:47:00,19.8825,82.5175,19.07 +2016-09-07 08:02:00,22.0713,82.4325,19.14 +2016-09-07 08:17:00,24.0563,82.3525,19.21 +2016-09-07 08:32:00,22.0762,82.36,19.28 +2016-09-07 08:47:00,25.1087,82.315,19.29 +2016-09-07 09:02:00,23.6738,82.35,19.36 +2016-09-07 09:17:00,22.31,82.255,19.48 +2016-09-07 09:32:00,24.0563,82.225,19.55 +2016-09-07 09:47:00,20.7012,82.25,19.63 +2016-09-07 10:02:00,22.1212,82.365,19.75 +2016-09-07 10:17:00,20.89,82.425,19.94 +2016-09-07 10:32:00,23.4788,82.445,19.84 +2016-09-07 10:47:00,19.9313,82.4575,19.88 +2016-09-07 11:02:00,24.6087,82.6275,20.0 +2016-09-07 11:17:00,23.5238,82.6,19.97 +2016-09-07 11:32:00,21.9762,82.545,19.9 +2016-09-07 11:47:00,21.4362,82.4275,19.87 +2016-09-07 12:02:00,20.7462,82.26,19.79 +2016-09-07 12:17:00,23.1338,82.1125,19.77 +2016-09-07 12:32:00,20.3225,81.8325,19.76 +2016-09-07 12:47:00,18.5225,81.945,19.71 +2016-09-07 13:02:00,23.4725,81.7175,19.78 +2016-09-07 13:17:00,20.5112,81.955,19.6 +2016-09-07 13:32:00,21.8812,81.8325,19.47 +2016-09-07 13:47:00,21.5812,81.87,19.45 +2016-09-07 14:02:00,23.2312,82.03,19.28 +2016-09-07 14:17:00,20.7988,82.025,19.19 +2016-09-07 14:32:00,23.2812,82.0625,19.18 +2016-09-07 14:47:00,24.805,82.1825,19.05 +2016-09-07 15:02:00,23.3787,82.1625,19.11 +2016-09-07 15:17:00,23.23,82.1775,18.92 +2016-09-07 15:32:00,22.5525,82.2725,18.91 +2016-09-07 15:47:00,24.1012,82.145,18.88 +2016-09-07 16:02:00,21.7812,82.17,18.83 +2016-09-07 16:17:00,22.3613,82.18,18.81 +2016-09-07 16:32:00,23.7237,82.185,18.81 +2016-09-07 16:47:00,24.01,82.1625,18.81 +2016-09-07 17:02:00,22.605,82.135,18.81 +2016-09-07 17:17:00,22.31,82.2025,18.79 +2016-09-07 17:32:00,23.675,82.2575,18.78 +2016-09-07 17:47:00,24.01,82.31,18.76 +2016-09-07 18:02:00,22.4112,82.4175,18.77 +2016-09-07 18:17:00,22.4125,82.48,18.79 +2016-09-07 18:32:00,23.9112,82.4475,18.81 +2016-09-07 18:47:00,23.2312,82.465,18.84 +2016-09-07 19:02:00,20.7462,82.425,18.89 +2016-09-07 19:17:00,23.18,82.4175,18.96 +2016-09-07 19:32:00,21.6813,82.4025,19.0 +2016-09-07 19:47:00,21.88,82.445,19.03 +2016-09-07 20:02:00,22.0788,82.46,19.08 +2016-09-07 20:17:00,21.3925,82.4975,19.1 +2016-09-07 20:32:00,24.4062,82.565,19.1 +2016-09-07 20:47:00,23.5238,82.6025,19.14 +2016-09-07 21:02:00,22.7475,82.6625,19.13 +2016-09-07 21:17:00,25.6375,82.6825,19.13 +2016-09-07 21:32:00,19.4863,82.655,19.11 +2016-09-07 21:47:00,23.28,82.6275,19.1 +2016-09-07 22:02:00,18.4275,82.59,19.08 +2016-09-07 22:17:00,22.95,82.5375,19.06 +2016-09-07 22:32:00,22.75,82.5275,19.04 +2016-09-07 22:47:00,23.1787,82.585,19.03 +2016-09-07 23:02:00,24.8063,82.6125,19.0 +2016-09-07 23:17:00,23.7213,82.585,18.98 +2016-09-07 23:32:00,21.73,82.63,18.98 +2016-09-07 23:47:00,22.315,82.6625,18.95 +2016-09-08 00:02:00,19.7887,82.645,18.96 +2016-09-08 00:17:00,21.7787,82.65,18.97 +2016-09-08 00:32:00,22.455,82.5975,18.98 +2016-09-08 00:47:00,23.7213,82.5025,18.97 +2016-09-08 01:02:00,24.3625,82.4675,18.96 +2016-09-08 01:17:00,23.4262,82.435,18.95 +2016-09-08 01:32:00,21.535,82.405,18.94 +2016-09-08 01:47:00,22.1775,82.3525,18.96 +2016-09-08 02:02:00,25.3075,82.3925,18.98 +2016-09-08 02:17:00,23.4762,82.425,18.99 +2016-09-08 02:32:00,22.995,82.48,19.02 +2016-09-08 02:47:00,23.8162,82.5,19.03 +2016-09-08 03:02:00,25.1537,82.525,19.04 +2016-09-08 03:17:00,23.38,82.49,19.03 +2016-09-08 03:32:00,21.6338,82.4975,19.05 +2016-09-08 03:47:00,23.8175,82.4,19.05 +2016-09-08 04:02:00,21.8312,82.3425,19.04 +2016-09-08 04:17:00,22.8463,82.34,19.02 +2016-09-08 04:32:00,22.505,82.3575,19.02 +2016-09-08 04:47:00,23.7225,82.37,19.03 +2016-09-08 05:02:00,23.9587,82.42,19.02 +2016-09-08 05:17:00,25.5413,82.45,19.0 +2016-09-08 05:32:00,19.9788,82.5375,19.03 +2016-09-08 05:47:00,23.1362,82.6025,19.04 +2016-09-08 06:02:00,22.7012,82.55,19.04 +2016-09-08 06:17:00,24.41,82.6225,19.04 +2016-09-08 06:32:00,21.3375,82.65,19.06 +2016-09-08 06:47:00,24.5587,82.6325,19.08 +2016-09-08 07:02:00,24.7062,82.585,19.13 +2016-09-08 07:17:00,23.43,82.5475,19.21 +2016-09-08 07:32:00,20.8937,82.3475,19.29 +2016-09-08 07:47:00,20.895,82.3275,19.34 +2016-09-08 08:02:00,22.7962,82.27,19.38 +2016-09-08 08:17:00,19.1963,82.1775,19.43 +2016-09-08 08:32:00,23.3237,82.22,19.52 +2016-09-08 08:47:00,20.7475,82.1125,19.58 +2016-09-08 09:02:00,22.8475,82.0375,19.66 +2016-09-08 09:17:00,21.535,81.96,19.75 +2016-09-08 09:32:00,18.815,81.925,19.84 +2016-09-08 09:47:00,21.4825,81.925,19.84 +2016-09-08 10:02:00,20.8463,81.915,19.91 +2016-09-08 10:17:00,20.8425,81.8175,20.06 +2016-09-08 10:32:00,21.1387,81.795,20.09 +2016-09-08 10:47:00,20.5587,81.9275,20.02 +2016-09-08 11:02:00,22.1225,81.8225,20.05 +2016-09-08 11:17:00,22.4625,81.71,20.08 +2016-09-08 11:32:00,24.06,81.805,20.06 +2016-09-08 11:47:00,24.5112,81.9275,20.06 +2016-09-08 12:02:00,22.9463,81.875,20.02 +2016-09-08 12:17:00,23.3763,81.9,20.03 +2016-09-08 12:32:00,24.3613,81.915,20.03 +2016-09-08 12:47:00,18.3787,81.875,19.99 +2016-09-08 13:02:00,21.3438,81.7975,19.97 +2016-09-08 13:17:00,21.44,81.8,20.01 +2016-09-08 13:32:00,25.255,81.6725,19.98 +2016-09-08 13:47:00,23.1775,81.6125,19.99 +2016-09-08 14:02:00,20.7012,81.475,19.94 +2016-09-08 14:17:00,22.8475,81.5125,19.93 +2016-09-08 14:32:00,21.5825,81.5,19.93 +2016-09-08 14:47:00,23.9075,81.485,19.9 +2016-09-08 15:02:00,23.725,81.6,19.91 +2016-09-08 15:17:00,25.59,81.57,19.87 +2016-09-08 15:32:00,22.0275,81.6775,19.87 +2016-09-08 15:47:00,21.93,81.6725,19.85 +2016-09-08 16:02:00,22.505,81.6525,19.86 +2016-09-08 16:17:00,22.6525,81.61,19.85 +2016-09-08 16:32:00,21.9762,81.61,19.85 +2016-09-08 16:47:00,20.4662,81.56,19.87 +2016-09-08 17:02:00,21.1963,81.54,19.88 +2016-09-08 17:17:00,23.7738,81.4675,19.88 +2016-09-08 17:32:00,20.8425,81.4175,19.87 +2016-09-08 17:47:00,22.5537,81.4475,19.87 +2016-09-08 18:02:00,20.2175,81.415,19.88 +2016-09-08 18:17:00,23.6738,81.5075,19.89 +2016-09-08 18:32:00,21.14,81.56,19.89 +2016-09-08 18:47:00,19.9313,81.5925,19.95 +2016-09-08 19:02:00,22.3162,81.665,19.98 +2016-09-08 19:17:00,23.91,81.605,20.03 +2016-09-08 19:32:00,22.8975,81.655,20.06 +2016-09-08 19:47:00,21.6325,81.6675,20.08 +2016-09-08 20:02:00,19.7875,81.635,20.09 +2016-09-08 20:17:00,24.0037,81.6,20.1 +2016-09-08 20:32:00,21.44,81.59,20.1 +2016-09-08 20:47:00,22.2213,81.5625,20.11 +2016-09-08 21:02:00,22.5537,81.52,20.11 +2016-09-08 21:17:00,24.2113,81.5175,20.11 +2016-09-08 21:32:00,22.6,81.47,20.11 +2016-09-08 21:47:00,24.0075,81.455,20.11 +2016-09-08 22:02:00,23.86,81.4575,20.1 +2016-09-08 22:17:00,24.105,81.46,20.11 +2016-09-08 22:32:00,20.27,81.495,20.11 +2016-09-08 22:47:00,22.4112,81.5475,20.09 +2016-09-08 23:02:00,24.46,81.5575,20.08 +2016-09-08 23:17:00,24.105,81.5775,20.09 +2016-09-08 23:32:00,22.1237,81.585,20.09 +2016-09-08 23:47:00,24.6087,81.5375,20.09 +2016-09-09 00:02:00,21.4375,81.5125,20.08 +2016-09-09 00:17:00,23.8575,81.5225,20.08 +2016-09-09 00:32:00,22.5088,81.465,20.07 +2016-09-09 00:47:00,22.9487,81.4725,20.09 +2016-09-09 01:02:00,24.3063,81.4525,20.11 +2016-09-09 01:17:00,24.0037,81.4025,20.1 +2016-09-09 01:32:00,21.7825,81.35,20.14 +2016-09-09 01:47:00,19.685,81.3125,20.15 +2016-09-09 02:02:00,22.9938,81.2525,20.16 +2016-09-09 02:17:00,22.4112,81.22,20.2 +2016-09-09 02:32:00,20.9925,81.235,20.21 +2016-09-09 02:47:00,23.7738,81.205,20.23 +2016-09-09 03:02:00,20.0212,81.2875,20.24 +2016-09-09 03:17:00,20.51,81.2875,20.25 +2016-09-09 03:32:00,22.8463,81.305,20.24 +2016-09-09 03:47:00,21.83,81.3525,20.26 +2016-09-09 04:02:00,20.6562,81.3425,20.26 +2016-09-09 04:17:00,20.37,81.3875,20.25 +2016-09-09 04:32:00,22.27,81.3525,20.23 +2016-09-09 04:47:00,25.3525,81.3775,20.19 +2016-09-09 05:02:00,24.3613,81.3325,20.19 +2016-09-09 05:17:00,24.6087,81.285,20.17 +2016-09-09 05:32:00,23.8637,81.245,20.16 +2016-09-09 05:47:00,23.4775,81.2025,20.16 +2016-09-09 06:02:00,22.85,81.24,20.17 +2016-09-09 06:17:00,22.2663,81.17,20.15 +2016-09-09 06:32:00,19.9775,81.0475,20.14 +2016-09-09 06:47:00,21.9762,81.1525,20.14 +2016-09-09 07:02:00,21.7787,81.105,20.11 +2016-09-09 07:17:00,20.2213,81.0425,20.13 +2016-09-09 07:32:00,22.36,81.015,20.17 +2016-09-09 07:47:00,20.99,81.06,20.2 +2016-09-09 08:02:00,23.6263,81.065,20.24 +2016-09-09 08:17:00,20.8962,81.025,20.28 +2016-09-09 08:32:00,23.4713,80.9575,20.33 +2016-09-09 08:47:00,22.4562,80.885,20.36 +2016-09-09 09:02:00,22.9425,80.8575,20.41 +2016-09-09 09:17:00,23.18,80.76,20.48 +2016-09-09 09:32:00,22.6525,80.795,20.56 +2016-09-09 09:47:00,20.9388,80.655,20.57 +2016-09-09 10:02:00,22.0775,80.6575,20.65 +2016-09-09 10:17:00,24.96,80.6675,20.71 +2016-09-09 10:32:00,22.4025,80.78,20.69 +2016-09-09 10:47:00,21.14,80.7575,20.84 +2016-09-09 11:02:00,21.5812,80.8225,20.74 +2016-09-09 11:17:00,21.3425,80.9125,20.79 +2016-09-09 11:32:00,23.5725,80.9875,20.83 +2016-09-09 11:47:00,23.0875,80.9925,20.76 +2016-09-09 12:02:00,22.7537,81.0725,20.77 +2016-09-09 12:17:00,23.43,81.0375,20.77 +2016-09-09 12:32:00,23.3737,81.14,20.8 +2016-09-09 12:47:00,21.095,81.135,20.76 +2016-09-09 13:02:00,22.9,81.135,20.74 +2016-09-09 13:17:00,22.8,81.08,20.77 +2016-09-09 13:32:00,20.2675,81.1325,20.71 +2016-09-09 13:47:00,20.6113,81.0875,20.62 +2016-09-09 14:02:00,21.4412,81.1025,20.6 +2016-09-09 14:17:00,20.7487,81.2425,20.57 +2016-09-09 14:32:00,20.3675,81.33,20.58 +2016-09-09 14:47:00,21.8275,81.345,20.48 +2016-09-09 15:02:00,19.9725,81.5675,20.48 +2016-09-09 15:17:00,21.88,81.725,20.44 +2016-09-09 15:32:00,25.495,82.0825,20.45 +2016-09-09 15:47:00,25.21,82.3225,20.45 +2016-09-09 16:02:00,22.755,82.58,20.46 +2016-09-09 16:17:00,21.5825,82.785,20.46 +2016-09-09 16:32:00,24.5625,82.98,20.46 +2016-09-09 16:47:00,25.89,83.175,20.47 +2016-09-09 17:02:00,23.33,83.36,20.46 +2016-09-09 17:17:00,22.1263,83.5625,20.44 +2016-09-09 17:32:00,22.1275,83.6625,20.44 +2016-09-09 17:47:00,21.635,83.76,20.43 +2016-09-09 18:02:00,23.6225,83.805,20.44 +2016-09-09 18:17:00,21.2875,83.9175,20.44 +2016-09-09 18:32:00,24.5612,83.925,20.48 +2016-09-09 18:47:00,23.8625,83.9175,20.51 +2016-09-09 19:02:00,23.9613,83.9675,20.54 +2016-09-09 19:17:00,23.9112,84.0,20.57 +2016-09-09 19:32:00,23.48,84.05,20.57 +2016-09-09 19:47:00,23.2812,84.1675,20.58 +2016-09-09 20:02:00,20.9388,84.15,20.6 +2016-09-09 20:17:00,25.3,84.155,20.61 +2016-09-09 20:32:00,23.9137,84.135,20.61 +2016-09-09 20:47:00,23.5775,84.1475,20.61 +2016-09-09 21:02:00,24.1575,84.0275,20.62 +2016-09-09 21:17:00,24.3112,83.9575,20.6 +2016-09-09 21:32:00,19.3937,83.8925,20.58 +2016-09-09 21:47:00,22.2687,83.8525,20.57 +2016-09-09 22:02:00,25.3988,83.7525,20.56 +2016-09-09 22:17:00,22.8975,83.6275,20.54 +2016-09-09 22:32:00,24.1575,83.555,20.53 +2016-09-09 22:47:00,21.7825,83.4325,20.51 +2016-09-09 23:02:00,25.6413,83.3275,20.49 +2016-09-09 23:17:00,24.1625,83.22,20.47 +2016-09-09 23:32:00,21.8862,83.1325,20.48 +2016-09-09 23:47:00,24.1062,83.085,20.46 +2016-09-10 00:02:00,24.3063,83.0,20.46 +2016-09-10 00:17:00,24.2562,82.9375,20.45 +2016-09-10 00:32:00,21.4825,82.945,20.45 +2016-09-10 00:47:00,22.0263,82.945,20.45 +2016-09-10 01:02:00,25.0563,82.8925,20.46 +2016-09-10 01:17:00,25.2625,82.87,20.47 +2016-09-10 01:32:00,19.2025,82.82,20.46 +2016-09-10 01:47:00,24.6525,82.73,20.44 +2016-09-10 02:02:00,23.3275,82.6475,20.44 +2016-09-10 02:17:00,24.0587,82.59,20.42 +2016-09-10 02:32:00,22.5563,82.5325,20.4 +2016-09-10 02:47:00,25.5887,82.445,20.38 +2016-09-10 03:02:00,23.7712,82.3175,20.34 +2016-09-10 03:17:00,25.0112,82.215,20.34 +2016-09-10 03:32:00,19.4388,82.135,20.33 +2016-09-10 03:47:00,24.0537,82.0475,20.34 +2016-09-10 04:02:00,23.6225,81.925,20.34 +2016-09-10 04:17:00,26.2725,81.8625,20.32 +2016-09-10 04:32:00,24.0563,81.79,20.33 +2016-09-10 04:47:00,25.5925,81.745,20.3 +2016-09-10 05:02:00,23.7712,81.7275,20.3 +2016-09-10 05:17:00,25.5475,81.7,20.28 +2016-09-10 05:32:00,19.5912,81.645,20.26 +2016-09-10 05:47:00,20.94,81.6375,20.26 +2016-09-10 06:02:00,24.655,81.595,20.26 +2016-09-10 06:17:00,22.1275,81.595,20.26 +2016-09-10 06:32:00,22.41,81.485,20.23 +2016-09-10 06:47:00,24.2612,81.4375,20.22 +2016-09-10 07:02:00,23.8162,81.4475,20.23 +2016-09-10 07:17:00,23.8162,81.4725,20.22 +2016-09-10 07:32:00,18.5175,81.455,20.23 +2016-09-10 07:47:00,20.2687,81.48,20.25 +2016-09-10 08:02:00,25.8875,81.5325,20.29 +2016-09-10 08:17:00,22.7,81.625,20.34 +2016-09-10 08:32:00,22.7988,81.72,20.36 +2016-09-10 08:47:00,21.1912,81.77,20.42 +2016-09-10 09:02:00,26.325,81.81,20.48 +2016-09-10 09:17:00,24.5563,81.8275,20.54 +2016-09-10 09:32:00,22.2188,81.935,20.58 +2016-09-10 09:47:00,21.8275,81.7975,20.63 +2016-09-10 10:02:00,22.6537,81.855,20.71 +2016-09-10 10:17:00,21.63,81.9175,20.78 +2016-09-10 10:32:00,22.99,81.875,20.79 +2016-09-10 10:47:00,23.1837,81.8475,20.81 +2016-09-10 11:02:00,23.9613,81.795,20.84 +2016-09-10 11:17:00,23.3275,81.735,20.83 +2016-09-10 11:32:00,24.255,81.7,20.85 +2016-09-10 11:47:00,22.3063,81.6475,20.86 +2016-09-10 12:02:00,21.4812,81.605,20.89 +2016-09-10 12:17:00,22.9437,81.39,20.86 +2016-09-10 12:32:00,24.8625,81.575,20.87 +2016-09-10 12:47:00,22.4575,81.595,20.9 +2016-09-10 13:02:00,24.4613,81.7,20.91 +2016-09-10 13:17:00,24.3587,81.8275,20.92 +2016-09-10 13:32:00,24.3112,81.775,21.03 +2016-09-10 13:47:00,26.1325,81.845,20.99 +2016-09-10 14:02:00,24.56,81.8425,20.93 +2016-09-10 14:17:00,23.96,81.8675,20.88 +2016-09-10 14:32:00,24.1612,81.8775,20.84 +2016-09-10 14:47:00,23.0,81.8975,20.79 +2016-09-10 15:02:00,24.21,81.8375,20.82 +2016-09-10 15:17:00,26.13,81.8375,20.74 +2016-09-10 15:32:00,22.3625,81.77,20.72 +2016-09-10 15:47:00,22.455,81.765,20.75 +2016-09-10 16:02:00,20.8425,81.755,20.71 +2016-09-10 16:17:00,23.8625,81.75,20.7 +2016-09-10 16:32:00,21.045,81.7025,20.7 +2016-09-10 16:47:00,22.2225,81.7625,20.71 +2016-09-10 17:02:00,26.4163,81.7875,20.72 +2016-09-10 17:17:00,24.66,81.8275,20.71 +2016-09-10 17:32:00,21.1375,81.82,20.71 +2016-09-10 17:47:00,20.17,81.9175,20.7 +2016-09-10 18:02:00,20.12,81.8725,20.71 +2016-09-10 18:17:00,24.055,81.875,20.73 +2016-09-10 18:32:00,25.1062,81.8725,20.75 +2016-09-10 18:47:00,24.7025,81.83,20.79 +2016-09-10 19:02:00,24.5075,81.795,20.79 +2016-09-10 19:17:00,24.705,81.815,20.81 +2016-09-10 19:32:00,21.3925,81.725,20.86 +2016-09-10 19:47:00,22.8962,81.6925,20.88 +2016-09-10 20:02:00,25.5437,81.6275,20.92 +2016-09-10 20:17:00,24.7588,81.5825,20.95 +2016-09-10 20:32:00,22.7537,81.53,20.95 +2016-09-10 20:47:00,22.5088,81.4725,20.96 +2016-09-10 21:02:00,24.6062,81.45,20.96 +2016-09-10 21:17:00,23.2288,81.435,20.94 +2016-09-10 21:32:00,21.6275,81.455,20.93 +2016-09-10 21:47:00,20.12,81.4875,20.93 +2016-09-10 22:02:00,25.2087,81.46,20.91 +2016-09-10 22:17:00,21.9325,81.4225,20.9 +2016-09-10 22:32:00,20.7012,81.4275,20.87 +2016-09-10 22:47:00,23.3275,81.4475,20.84 +2016-09-10 23:02:00,24.5575,81.3925,20.82 +2016-09-10 23:17:00,24.1575,81.355,20.78 +2016-09-10 23:32:00,21.4863,81.28,20.77 +2016-09-10 23:47:00,25.8375,81.2075,20.75 +2016-09-11 00:02:00,20.7038,81.175,20.73 +2016-09-11 00:17:00,21.6825,81.135,20.71 +2016-09-11 00:32:00,23.1813,81.07,20.7 +2016-09-11 00:47:00,24.2125,81.0,20.68 +2016-09-11 01:02:00,26.8675,80.935,20.69 +2016-09-11 01:17:00,25.0575,80.86,20.69 +2016-09-11 01:32:00,24.1062,80.8025,20.69 +2016-09-11 01:47:00,25.7412,80.785,20.66 +2016-09-11 02:02:00,24.81,80.7675,20.64 +2016-09-11 02:17:00,23.7225,80.82,20.64 +2016-09-11 02:32:00,24.21,80.78,20.64 +2016-09-11 02:47:00,25.5425,80.7775,20.64 +2016-09-11 03:02:00,24.0587,80.7525,20.65 +2016-09-11 03:17:00,23.9112,80.6975,20.64 +2016-09-11 03:32:00,23.5287,80.705,20.61 +2016-09-11 03:47:00,20.13,80.6325,20.61 +2016-09-11 04:02:00,23.28,80.515,20.6 +2016-09-11 04:17:00,25.8363,80.485,20.6 +2016-09-11 04:32:00,24.255,80.4025,20.55 +2016-09-11 04:47:00,26.42,80.3475,20.58 +2016-09-11 05:02:00,26.415,80.315,20.58 +2016-09-11 05:17:00,25.445,80.27,20.6 +2016-09-11 05:32:00,21.34,80.2175,20.6 +2016-09-11 05:47:00,23.6738,80.2475,20.6 +2016-09-11 06:02:00,23.4262,80.2425,20.62 +2016-09-11 06:17:00,23.8637,80.27,20.66 +2016-09-11 06:32:00,21.6787,80.24,20.67 +2016-09-11 06:47:00,24.8562,80.1825,20.69 +2016-09-11 07:02:00,23.4313,80.1,20.75 +2016-09-11 07:17:00,25.7412,79.9425,20.77 +2016-09-11 07:32:00,23.775,79.9425,20.81 +2016-09-11 07:47:00,22.755,79.88,20.87 +2016-09-11 08:02:00,22.3562,79.795,20.9 +2016-09-11 08:17:00,23.0387,79.695,20.91 +2016-09-11 08:32:00,24.6038,79.6475,20.94 +2016-09-11 08:47:00,24.3613,79.57,21.0 +2016-09-11 09:02:00,24.6075,79.4675,21.06 +2016-09-11 09:17:00,22.31,79.385,21.14 +2016-09-11 09:32:00,21.5387,79.34,21.2 +2016-09-11 09:47:00,22.655,79.43,21.27 +2016-09-11 10:02:00,25.8862,79.41,21.32 +2016-09-11 10:17:00,23.4287,79.5,21.48 +2016-09-11 10:32:00,22.6025,79.42,21.45 +2016-09-11 10:47:00,24.3575,79.38,21.42 +2016-09-11 11:02:00,23.9125,79.305,21.5 +2016-09-11 11:17:00,23.725,79.285,21.58 +2016-09-11 11:32:00,21.4912,79.1875,21.49 +2016-09-11 11:47:00,22.7075,79.0775,21.54 +2016-09-11 12:02:00,23.6712,79.05,21.49 +2016-09-11 12:17:00,24.755,79.0575,21.51 +2016-09-11 12:32:00,21.7325,79.0025,21.48 +2016-09-11 12:47:00,22.9962,78.8725,21.45 +2016-09-11 13:02:00,24.1012,78.8675,21.42 +2016-09-11 13:17:00,22.6062,78.84,21.45 +2016-09-11 13:32:00,20.7537,78.755,21.43 +2016-09-11 13:47:00,23.1362,78.7575,21.42 +2016-09-11 14:02:00,20.8937,78.8,21.32 +2016-09-11 14:17:00,22.7562,78.7775,21.21 +2016-09-11 14:32:00,23.43,78.82,21.15 +2016-09-11 14:47:00,26.6225,78.7875,21.23 +2016-09-11 15:02:00,21.8337,78.775,21.14 +2016-09-11 15:17:00,23.1875,78.77,21.12 +2016-09-11 15:32:00,25.0125,78.7725,21.01 +2016-09-11 15:47:00,21.6325,78.765,20.98 +2016-09-11 16:02:00,22.36,78.7125,20.95 +2016-09-11 16:17:00,23.9125,78.69,20.92 +2016-09-11 16:32:00,21.83,78.64,20.9 +2016-09-11 16:47:00,24.1038,78.57,20.88 +2016-09-11 17:02:00,24.0587,78.525,20.87 +2016-09-11 17:17:00,24.61,78.475,20.86 +2016-09-11 17:32:00,23.3262,78.4,20.87 +2016-09-11 17:47:00,20.8913,78.3575,20.85 +2016-09-11 18:02:00,23.4325,78.2975,20.84 +2016-09-11 18:17:00,24.4625,78.3625,20.83 +2016-09-11 18:32:00,24.7062,78.315,20.82 +2016-09-11 18:47:00,24.6588,78.36,20.78 +2016-09-11 19:02:00,22.315,78.3025,20.8 +2016-09-11 19:17:00,25.015,78.3025,20.83 +2016-09-11 19:32:00,23.2812,78.29,20.82 +2016-09-11 19:47:00,23.5762,78.2225,20.85 +2016-09-11 20:02:00,22.36,78.175,20.89 +2016-09-11 20:17:00,25.4487,78.1525,20.91 +2016-09-11 20:32:00,24.6125,78.135,20.89 +2016-09-11 20:47:00,24.0125,78.02,20.93 +2016-09-11 21:02:00,24.7113,78.0275,20.99 +2016-09-11 21:17:00,24.2137,77.9875,20.96 +2016-09-11 21:32:00,25.105,77.9725,21.01 +2016-09-11 21:47:00,22.8475,77.8825,21.0 +2016-09-11 22:02:00,24.855,77.865,20.99 +2016-09-11 22:17:00,22.36,77.84,21.0 +2016-09-11 22:32:00,23.0888,77.8175,20.98 +2016-09-11 22:47:00,21.2937,77.845,20.98 +2016-09-11 23:02:00,24.515,77.835,20.96 +2016-09-11 23:17:00,21.685,77.875,20.91 +2016-09-11 23:32:00,21.39,77.845,20.9 +2016-09-11 23:47:00,24.6562,77.86,20.9 +2016-09-12 00:02:00,24.6575,77.915,20.89 +2016-09-12 00:17:00,19.59,77.8925,20.87 +2016-09-12 00:32:00,23.5737,77.8725,20.83 +2016-09-12 00:47:00,20.8962,77.855,20.78 +2016-09-12 01:02:00,20.4175,77.8375,20.75 +2016-09-12 01:17:00,22.6038,77.835,20.72 +2016-09-12 01:32:00,24.5125,77.775,20.7 +2016-09-12 01:47:00,21.6837,77.76,20.7 +2016-09-12 02:02:00,24.5137,77.7575,20.73 +2016-09-12 02:17:00,21.5338,77.73,20.77 +2016-09-12 02:32:00,23.77,77.6825,20.82 +2016-09-12 02:47:00,22.61,77.695,20.82 +2016-09-12 03:02:00,22.9437,77.7,20.88 +2016-09-12 03:17:00,25.0075,77.7675,20.89 +2016-09-12 03:32:00,21.0413,77.7625,20.88 +2016-09-12 03:47:00,23.7725,77.8125,20.9 +2016-09-12 04:02:00,24.26,77.8275,20.86 +2016-09-12 04:17:00,21.0875,77.8325,20.9 +2016-09-12 04:32:00,23.6275,77.835,20.85 +2016-09-12 04:47:00,24.6113,77.735,20.91 +2016-09-12 05:02:00,23.5275,77.52,20.92 +2016-09-12 05:17:00,24.3112,77.3075,20.96 +2016-09-12 05:32:00,23.23,77.2,21.01 +2016-09-12 05:47:00,22.9925,77.065,20.97 +2016-09-12 06:02:00,23.5238,76.9575,21.0 +2016-09-12 06:17:00,24.4625,76.8525,20.96 +2016-09-12 06:32:00,23.675,76.7525,21.04 +2016-09-12 06:47:00,22.5075,76.62,21.02 +2016-09-12 07:02:00,24.7562,76.485,20.99 +2016-09-12 07:17:00,23.135,76.3525,21.01 +2016-09-12 07:32:00,23.0863,76.2125,21.09 +2016-09-12 07:47:00,24.0563,76.085,21.14 +2016-09-12 08:02:00,22.4575,75.9725,21.17 +2016-09-12 08:17:00,24.3637,75.9,21.24 +2016-09-12 08:32:00,23.9613,75.7875,21.33 +2016-09-12 08:47:00,24.5625,75.73,21.43 +2016-09-12 09:02:00,25.3112,75.63,21.53 +2016-09-12 09:17:00,23.33,75.58,21.68 +2016-09-12 09:32:00,24.4088,75.49,21.8 +2016-09-12 09:47:00,23.0387,75.4525,21.94 +2016-09-12 10:02:00,24.9562,75.3975,22.03 +2016-09-12 10:17:00,21.6338,75.355,22.26 +2016-09-12 10:32:00,24.7612,75.4125,22.23 +2016-09-12 10:47:00,24.3063,75.275,22.29 +2016-09-12 11:02:00,19.345,75.2975,22.4 +2016-09-12 11:17:00,24.7588,75.2225,22.29 +2016-09-12 11:32:00,23.6237,75.2275,22.35 +2016-09-12 11:47:00,23.3775,75.155,22.27 +2016-09-12 12:02:00,22.8512,75.2525,22.24 +2016-09-12 12:17:00,22.8525,75.265,22.15 +2016-09-12 12:32:00,23.955,75.245,22.12 +2016-09-12 12:47:00,23.7213,75.305,22.03 +2016-09-12 13:02:00,23.6225,75.365,22.01 +2016-09-12 13:17:00,25.055,75.3575,21.98 +2016-09-12 13:32:00,22.995,75.4725,21.93 +2016-09-12 13:47:00,22.8475,75.495,21.92 +2016-09-12 14:02:00,23.0875,75.81,21.92 +2016-09-12 14:17:00,22.5625,75.9175,21.87 +2016-09-12 14:32:00,23.8613,76.0675,21.83 +2016-09-12 14:47:00,22.4575,76.21,21.78 +2016-09-12 15:02:00,22.03,76.2925,21.62 +2016-09-12 15:17:00,23.1312,76.405,21.58 +2016-09-12 15:32:00,23.2775,76.4475,21.5 +2016-09-12 15:47:00,23.43,76.5875,21.43 +2016-09-12 16:02:00,24.6125,76.72,21.39 +2016-09-12 16:17:00,23.5238,76.805,21.33 +2016-09-12 16:32:00,24.6075,76.9025,21.25 +2016-09-12 16:47:00,24.2062,77.025,21.25 +2016-09-12 17:02:00,23.4762,77.145,21.19 +2016-09-12 17:17:00,24.9587,77.23,21.16 +2016-09-12 17:32:00,23.725,77.2625,21.15 +2016-09-12 17:47:00,24.8087,77.3075,21.12 +2016-09-12 18:02:00,24.36,77.31,21.11 +2016-09-12 18:17:00,22.8012,77.3025,21.1 +2016-09-12 18:32:00,24.1575,77.3575,21.1 +2016-09-12 18:47:00,23.8162,77.295,21.13 +2016-09-12 19:02:00,23.6237,77.2825,21.14 +2016-09-12 19:17:00,22.9,77.31,21.15 +2016-09-12 19:32:00,23.6738,77.2825,21.14 +2016-09-12 19:47:00,22.8037,77.27,21.16 +2016-09-12 20:02:00,23.6762,77.2875,21.11 +2016-09-12 20:17:00,23.9112,77.2225,21.08 +2016-09-12 20:32:00,24.605,77.2725,21.07 +2016-09-12 20:47:00,23.8162,77.24,21.03 +2016-09-12 21:02:00,24.155,77.27,21.03 +2016-09-12 21:17:00,23.1825,77.34,21.04 +2016-09-12 21:32:00,23.4313,77.3475,21.04 +2016-09-12 21:47:00,23.8675,77.3475,21.0 +2016-09-12 22:02:00,21.9262,77.4025,20.99 +2016-09-12 22:17:00,21.7325,77.3775,20.97 +2016-09-12 22:32:00,24.0587,77.3925,20.96 +2016-09-12 22:47:00,22.5475,77.38,20.91 +2016-09-12 23:02:00,24.6562,77.3125,20.88 +2016-09-12 23:17:00,23.7687,77.2925,20.85 +2016-09-12 23:32:00,24.3112,77.1875,20.86 +2016-09-12 23:47:00,23.1362,77.0425,20.86 +2016-09-13 00:02:00,23.725,76.89,20.85 +2016-09-13 00:17:00,24.8538,76.75,20.86 +2016-09-13 00:32:00,23.1825,76.625,20.82 +2016-09-13 00:47:00,23.9112,76.57,20.8 +2016-09-13 01:02:00,25.1537,76.485,20.78 +2016-09-13 01:17:00,23.2812,76.47,20.77 +2016-09-13 01:32:00,23.4325,76.3875,20.7 +2016-09-13 01:47:00,24.71,76.3375,20.69 +2016-09-13 02:02:00,23.81,76.28,20.77 +2016-09-13 02:17:00,23.6725,76.2575,20.78 +2016-09-13 02:32:00,23.2288,76.225,20.78 +2016-09-13 02:47:00,23.3275,76.155,20.76 +2016-09-13 03:02:00,23.035,76.1075,20.77 +2016-09-13 03:17:00,22.175,76.045,20.78 +2016-09-13 03:32:00,23.3838,76.0075,20.79 +2016-09-13 03:47:00,23.8613,75.9575,20.81 +2016-09-13 04:02:00,22.4062,75.925,20.8 +2016-09-13 04:17:00,23.9088,75.8625,20.79 +2016-09-13 04:32:00,25.0112,75.8475,20.82 +2016-09-13 04:47:00,23.085,75.8425,20.83 +2016-09-13 05:02:00,22.9475,75.945,20.87 +2016-09-13 05:17:00,24.6612,76.015,20.88 +2016-09-13 05:32:00,22.9025,76.0125,20.92 +2016-09-13 05:47:00,24.655,75.8975,20.92 +2016-09-13 06:02:00,22.5525,75.77,20.93 +2016-09-13 06:17:00,24.5137,75.675,20.94 +2016-09-13 06:32:00,23.1837,75.63,21.0 +2016-09-13 06:47:00,24.7075,75.5975,21.0 +2016-09-13 07:02:00,23.0437,75.485,20.98 +2016-09-13 07:17:00,22.315,75.4125,21.08 +2016-09-13 07:32:00,23.4287,75.3025,21.12 +2016-09-13 07:47:00,24.96,75.23,21.15 +2016-09-13 08:02:00,22.7,75.1125,21.24 +2016-09-13 08:17:00,24.855,75.0525,21.29 +2016-09-13 08:32:00,21.9737,75.0625,21.37 +2016-09-13 08:47:00,23.7213,75.185,21.48 +2016-09-13 09:02:00,23.6275,75.0825,21.54 +2016-09-13 09:17:00,23.6275,75.1525,21.65 +2016-09-13 09:32:00,24.1038,75.1475,21.75 +2016-09-13 09:47:00,24.9075,75.0775,21.86 +2016-09-13 10:02:00,22.8012,74.995,21.98 +2016-09-13 10:17:00,23.2787,75.085,22.07 +2016-09-13 10:32:00,22.7012,74.9825,22.15 +2016-09-13 10:47:00,24.2637,74.93,22.16 +2016-09-13 11:02:00,23.3812,75.0625,22.16 +2016-09-13 11:17:00,24.1588,74.9025,22.15 +2016-09-13 11:32:00,23.675,74.78,22.14 +2016-09-13 11:47:00,24.3625,74.7075,22.07 +2016-09-13 12:02:00,22.9463,74.6375,22.04 +2016-09-13 12:17:00,21.8325,74.6325,21.99 +2016-09-13 12:32:00,24.0575,74.5225,21.93 +2016-09-13 12:47:00,22.7575,74.63,21.92 +2016-09-13 13:02:00,24.3662,74.545,21.89 +2016-09-13 13:17:00,24.7588,74.5175,21.83 +2016-09-13 13:32:00,24.0037,74.735,21.79 +2016-09-13 13:47:00,21.7288,75.0125,21.75 +2016-09-13 14:02:00,22.8487,75.125,21.68 +2016-09-13 14:17:00,24.055,75.2775,21.59 +2016-09-13 14:32:00,23.6212,75.49,21.51 +2016-09-13 14:47:00,23.9637,75.685,21.44 +2016-09-13 15:02:00,24.1125,75.89,21.33 +2016-09-13 15:17:00,25.1575,76.2175,21.27 +2016-09-13 15:32:00,24.6075,76.5225,21.19 +2016-09-13 15:47:00,25.1562,76.785,21.13 +2016-09-13 16:02:00,24.7562,77.0,21.07 +2016-09-13 16:17:00,23.6263,77.22,21.01 +2016-09-13 16:32:00,23.2363,77.3975,20.98 +2016-09-13 16:47:00,25.3087,77.4875,20.93 +2016-09-13 17:02:00,23.4313,77.65,20.91 +2016-09-13 17:17:00,25.1087,77.75,20.88 +2016-09-13 17:32:00,23.6263,77.7775,20.86 +2016-09-13 17:47:00,24.0112,77.825,20.85 +2016-09-13 18:02:00,24.055,77.8725,20.86 +2016-09-13 18:17:00,25.305,77.96,20.86 +2016-09-13 18:32:00,24.11,77.925,20.88 +2016-09-13 18:47:00,23.915,77.9125,20.87 +2016-09-13 19:02:00,22.3625,77.95,20.89 +2016-09-13 19:17:00,25.0563,77.955,20.91 +2016-09-13 19:32:00,23.1875,77.9925,20.96 +2016-09-13 19:47:00,25.1062,78.0575,20.96 +2016-09-13 20:02:00,24.4075,78.0425,20.95 +2016-09-13 20:17:00,22.18,78.07,20.99 +2016-09-13 20:32:00,25.1137,78.0925,21.02 +2016-09-13 20:47:00,23.4275,78.0675,21.01 +2016-09-13 21:02:00,24.26,78.075,21.0 +2016-09-13 21:17:00,22.5563,78.0225,21.05 +2016-09-13 21:32:00,23.0888,78.0,21.07 +2016-09-13 21:47:00,22.85,77.895,21.06 +2016-09-13 22:02:00,24.4625,77.8275,21.08 +2016-09-13 22:17:00,23.0912,77.78,21.06 +2016-09-13 22:32:00,23.14,77.7175,21.07 +2016-09-13 22:47:00,23.9625,77.6325,21.06 +2016-09-13 23:02:00,24.8587,77.6025,21.04 +2016-09-13 23:17:00,24.0625,77.49,21.03 +2016-09-13 23:32:00,24.7038,77.505,21.02 +2016-09-13 23:47:00,23.9613,77.51,21.0 +2016-09-14 00:02:00,21.8825,77.535,21.0 +2016-09-14 00:17:00,23.8688,77.49,21.0 +2016-09-14 00:32:00,22.6137,77.4825,21.01 +2016-09-14 00:47:00,24.7062,77.4375,21.02 +2016-09-14 01:02:00,25.6413,77.4025,20.96 +2016-09-14 01:17:00,22.9962,77.4075,20.97 +2016-09-14 01:32:00,24.515,77.32,20.97 +2016-09-14 01:47:00,23.8162,77.265,20.98 +2016-09-14 02:02:00,26.6725,77.25,21.02 +2016-09-14 02:17:00,23.8688,77.2025,20.98 +2016-09-14 02:32:00,24.655,77.1725,20.99 +2016-09-14 02:47:00,24.0563,77.095,21.02 +2016-09-14 03:02:00,25.3075,77.0875,21.03 +2016-09-14 03:17:00,24.8075,77.0375,21.01 +2016-09-14 03:32:00,23.5762,77.0025,21.02 +2016-09-14 03:47:00,24.9587,76.9725,21.08 +2016-09-14 04:02:00,23.2862,76.9575,21.06 +2016-09-14 04:17:00,23.6775,76.9775,21.03 +2016-09-14 04:32:00,24.7062,76.95,21.08 +2016-09-14 04:47:00,26.0375,76.89,21.12 +2016-09-14 05:02:00,23.96,76.5975,21.12 +2016-09-14 05:17:00,24.8075,76.3825,21.15 +2016-09-14 05:32:00,23.0437,76.1675,21.19 +2016-09-14 05:47:00,22.805,75.98,21.2 +2016-09-14 06:02:00,23.3825,75.7975,21.26 +2016-09-14 06:17:00,22.8525,75.7,21.26 +2016-09-14 06:32:00,25.01,75.51,21.28 +2016-09-14 06:47:00,24.4125,75.3775,21.25 +2016-09-14 07:02:00,25.5462,75.26,21.28 +2016-09-14 07:17:00,25.99,75.17,21.31 +2016-09-14 07:32:00,22.2675,75.15,21.37 +2016-09-14 07:47:00,22.6113,75.0575,21.38 +2016-09-14 08:02:00,24.9625,75.01,21.45 +2016-09-14 08:17:00,25.5938,74.98,21.49 +2016-09-14 08:32:00,25.1525,74.8825,21.58 +2016-09-14 08:47:00,24.8587,74.8725,21.65 +2016-09-14 09:02:00,23.53,74.7975,21.75 +2016-09-14 09:17:00,25.64,74.765,21.83 +2016-09-14 09:32:00,22.6087,74.735,21.93 +2016-09-14 09:47:00,23.9137,74.67,22.01 +2016-09-14 10:02:00,24.91,74.6375,22.08 +2016-09-14 10:17:00,25.01,74.6325,22.2 +2016-09-14 10:32:00,24.5125,74.6225,22.27 +2016-09-14 10:47:00,25.7425,74.57,22.34 +2016-09-14 11:02:00,26.6675,74.7225,22.32 +2016-09-14 11:17:00,24.4637,74.765,22.3 +2016-09-14 11:32:00,24.2137,74.9925,22.32 +2016-09-14 11:47:00,24.2625,75.08,22.24 +2016-09-14 12:02:00,23.9587,75.0125,22.17 +2016-09-14 12:17:00,24.6575,75.215,22.1 +2016-09-14 12:32:00,23.625,75.4325,21.99 +2016-09-14 12:47:00,24.8075,75.65,21.9 +2016-09-14 13:02:00,24.3613,75.755,21.9 +2016-09-14 13:17:00,24.4613,75.885,21.84 +2016-09-14 13:32:00,24.8112,75.915,21.83 +2016-09-14 13:47:00,24.9637,76.1825,21.81 +2016-09-14 14:02:00,25.1062,76.2725,21.76 +2016-09-14 14:17:00,24.21,76.3175,21.71 +2016-09-14 14:32:00,25.2038,76.495,21.61 +2016-09-14 14:47:00,25.495,76.56,21.57 +2016-09-14 15:02:00,25.8412,76.5775,21.45 +2016-09-14 15:17:00,25.015,76.665,21.37 +2016-09-14 15:32:00,22.755,76.5925,21.35 +2016-09-14 15:47:00,23.53,76.655,21.24 +2016-09-14 16:02:00,25.2087,76.7575,21.17 +2016-09-14 16:17:00,24.8675,76.77,21.12 +2016-09-14 16:32:00,24.4675,76.845,21.07 +2016-09-14 16:47:00,25.4012,76.93,21.03 +2016-09-14 17:02:00,25.2062,76.9725,20.99 +2016-09-14 17:17:00,25.5425,77.06,20.95 +2016-09-14 17:32:00,23.9613,77.03,20.92 +2016-09-14 17:47:00,24.5125,76.9,20.89 +2016-09-14 18:02:00,23.7262,76.87,20.84 +2016-09-14 18:17:00,25.7925,76.795,20.86 +2016-09-14 18:32:00,25.2062,76.7175,20.86 +2016-09-14 18:47:00,24.5638,76.6675,20.85 +2016-09-14 19:02:00,26.325,76.5875,20.84 +2016-09-14 19:17:00,26.625,76.61,20.85 +2016-09-14 19:32:00,24.6125,76.5925,20.85 +2016-09-14 19:47:00,24.5612,76.57,20.86 +2016-09-14 20:02:00,23.185,76.505,20.86 +2016-09-14 20:17:00,25.1087,76.5125,20.85 +2016-09-14 20:32:00,25.8425,76.5675,20.85 +2016-09-14 20:47:00,23.5312,76.635,20.86 +2016-09-14 21:02:00,24.76,76.695,20.84 +2016-09-14 21:17:00,25.4037,76.8675,20.84 +2016-09-14 21:32:00,25.695,76.9175,20.83 +2016-09-14 21:47:00,26.7725,76.98,20.82 +2016-09-14 22:02:00,25.4,77.1225,20.83 +2016-09-14 22:17:00,25.3538,77.1725,20.84 +2016-09-14 22:32:00,25.4463,77.135,20.84 +2016-09-14 22:47:00,23.9137,77.075,20.82 +2016-09-14 23:02:00,26.1825,77.0575,20.78 +2016-09-14 23:17:00,25.0187,76.9825,20.75 +2016-09-14 23:32:00,24.2137,76.99,20.72 +2016-09-14 23:47:00,25.89,77.0875,20.7 +2016-09-15 00:02:00,23.3312,77.125,20.7 +2016-09-15 00:17:00,24.415,77.1225,20.65 +2016-09-15 00:32:00,24.9088,77.1825,20.66 +2016-09-15 00:47:00,27.1137,77.1925,20.65 +2016-09-15 01:02:00,24.1075,77.295,20.65 +2016-09-15 01:17:00,26.6725,77.3775,20.64 +2016-09-15 01:32:00,24.415,77.48,20.63 +2016-09-15 01:47:00,24.8063,77.5425,20.65 +2016-09-15 02:02:00,24.5638,77.5625,20.64 +2016-09-15 02:17:00,25.5963,77.645,20.64 +2016-09-15 02:32:00,26.52,77.7275,20.63 +2016-09-15 02:47:00,26.8225,77.675,20.62 +2016-09-15 03:02:00,26.3262,77.735,20.66 +2016-09-15 03:17:00,24.7062,77.6975,20.68 +2016-09-15 03:32:00,24.9625,77.675,20.71 +2016-09-15 03:47:00,25.4962,77.675,20.7 +2016-09-15 04:02:00,24.7575,77.6525,20.7 +2016-09-15 04:17:00,23.525,77.6475,20.69 +2016-09-15 04:30:59,25.5963,77.575,20.7 +2016-09-15 04:47:00,27.6125,77.5675,20.73 +2016-09-15 05:02:00,26.9175,77.555,20.68 +2016-09-15 05:17:00,27.3637,77.465,20.7 +2016-09-15 05:32:00,26.6212,77.3425,20.75 +2016-09-15 05:47:00,24.5125,77.185,20.77 +2016-09-15 06:02:00,24.6087,76.9725,20.77 +2016-09-15 06:17:00,26.1837,76.925,20.79 +2016-09-15 06:32:00,24.565,76.8,20.75 +2016-09-15 06:47:00,28.4625,76.715,20.74 +2016-09-15 07:02:00,27.06,76.5025,20.82 +2016-09-15 07:17:00,27.8112,76.37,20.82 +2016-09-15 07:32:00,23.2787,76.2975,20.88 +2016-09-15 07:47:00,25.305,76.2375,20.87 +2016-09-15 08:02:00,25.94,76.185,20.89 +2016-09-15 08:17:00,26.14,76.11,20.99 +2016-09-15 08:32:00,24.3125,76.0325,21.05 +2016-09-15 08:47:00,24.4637,76.005,21.12 +2016-09-15 09:02:00,24.4613,75.9325,21.15 +2016-09-15 09:17:00,26.225,75.845,21.2 +2016-09-15 09:32:00,25.105,75.7475,21.31 +2016-09-15 09:47:00,23.5775,75.6925,21.42 +2016-09-15 10:02:00,24.8112,75.605,21.5 +2016-09-15 10:17:00,24.9125,75.5225,21.61 +2016-09-15 10:32:00,26.1362,75.4825,21.66 +2016-09-15 10:47:00,26.1775,75.3325,21.74 +2016-09-15 11:02:00,25.74,75.2525,21.75 +2016-09-15 11:17:00,25.9875,75.13,21.73 +2016-09-15 11:32:00,25.3525,75.1025,21.67 +2016-09-15 11:47:00,25.3962,74.9475,21.54 +2016-09-15 12:02:00,26.1825,74.9625,21.49 +2016-09-15 12:17:00,24.7125,74.8575,21.42 +2016-09-15 12:32:00,24.9575,74.7675,21.35 +2016-09-15 12:47:00,24.6075,74.8175,21.31 +2016-09-15 13:02:00,25.445,74.7475,21.26 +2016-09-15 13:17:00,25.6425,74.765,21.22 +2016-09-15 13:32:00,26.37,74.74,21.27 +2016-09-15 13:47:00,24.26,74.695,21.27 +2016-09-15 14:02:00,25.3538,74.6075,21.19 +2016-09-15 14:17:00,24.6075,74.58,21.16 +2016-09-15 14:32:00,25.105,74.5325,21.05 +2016-09-15 14:47:00,25.0088,74.5125,20.96 +2016-09-15 15:02:00,26.4675,74.7,20.85 +2016-09-15 15:17:00,26.0387,74.8125,20.75 +2016-09-15 15:32:00,24.1612,74.975,20.6 +2016-09-15 15:47:00,24.865,75.045,20.5 +2016-09-15 16:02:00,25.1125,75.2,20.39 +2016-09-15 16:17:00,25.1075,75.23,20.35 +2016-09-15 16:32:00,24.3637,75.3375,20.29 +2016-09-15 16:47:00,26.1312,75.4325,20.26 +2016-09-15 17:02:00,25.2537,75.5525,20.21 +2016-09-15 17:17:00,26.5737,75.64,20.15 +2016-09-15 17:32:00,26.5762,75.74,20.08 +2016-09-15 17:47:00,25.4025,75.815,20.07 +2016-09-15 18:02:00,24.0112,75.9425,20.03 +2016-09-15 18:17:00,24.81,76.0025,20.03 +2016-09-15 18:32:00,25.6437,76.105,20.01 +2016-09-15 18:47:00,25.1062,76.1225,20.0 +2016-09-15 19:02:00,24.8575,76.1525,20.06 +2016-09-15 19:17:00,24.91,76.2275,20.09 +2016-09-15 19:32:00,23.7275,76.2975,20.1 +2016-09-15 19:47:00,25.0625,76.3525,20.06 +2016-09-15 20:02:00,23.725,76.405,20.06 +2016-09-15 20:17:00,25.3075,76.415,20.03 +2016-09-15 20:32:00,25.16,76.4725,20.05 +2016-09-15 20:47:00,25.6912,76.575,20.06 +2016-09-15 21:02:00,24.3138,76.695,20.05 +2016-09-15 21:17:00,24.3637,76.785,20.08 +2016-09-15 21:32:00,25.5,76.93,20.12 +2016-09-15 21:47:00,24.6625,77.0625,20.09 +2016-09-15 22:02:00,26.6712,77.21,20.08 +2016-09-15 22:17:00,27.0587,77.28,20.08 +2016-09-15 22:32:00,23.9587,77.34,20.06 +2016-09-15 22:47:00,25.4938,77.42,20.03 +2016-09-15 23:02:00,24.96,77.4975,19.97 +2016-09-15 23:17:00,26.135,77.5125,19.96 +2016-09-15 23:32:00,25.5963,77.555,19.97 +2016-09-15 23:47:00,26.0387,77.6025,19.95 +2016-09-16 00:02:00,25.0112,77.5725,19.93 +2016-09-16 00:17:00,24.71,77.62,19.93 +2016-09-16 00:32:00,23.9163,77.585,19.9 +2016-09-16 00:47:00,25.2062,77.5675,19.85 +2016-09-16 01:02:00,24.1588,77.61,19.85 +2016-09-16 01:17:00,24.1075,77.6475,19.82 +2016-09-16 01:32:00,26.675,77.6325,19.81 +2016-09-16 01:47:00,26.4187,77.6925,19.78 +2016-09-16 02:02:00,25.2012,77.72,19.79 +2016-09-16 02:17:00,24.61,77.7275,19.82 +2016-09-16 02:32:00,24.26,77.73,19.8 +2016-09-16 02:47:00,25.9412,77.715,19.84 +2016-09-16 03:02:00,27.4625,77.655,19.82 +2016-09-16 03:17:00,25.7475,77.65,19.84 +2016-09-16 03:32:00,24.7062,77.6,19.82 +2016-09-16 03:47:00,25.0062,77.5275,19.81 +2016-09-16 04:02:00,26.8175,77.49,19.79 +2016-09-16 04:17:00,25.4975,77.425,19.78 +2016-09-16 04:32:00,25.8412,77.36,19.78 +2016-09-16 04:47:00,23.96,77.255,19.79 +2016-09-16 05:02:00,25.595,77.15,19.74 +2016-09-16 05:17:00,26.0387,76.96,19.82 +2016-09-16 05:32:00,25.4412,76.6475,19.81 +2016-09-16 05:47:00,25.4938,76.3525,19.81 +2016-09-16 06:02:00,25.985,76.14,19.82 +2016-09-16 06:17:00,23.91,75.91,19.88 +2016-09-16 06:32:00,26.1325,75.705,19.92 +2016-09-16 06:47:00,25.1075,75.52,19.99 +2016-09-16 07:02:00,24.7575,75.33,20.01 +2016-09-16 07:17:00,24.9062,75.0925,20.0 +2016-09-16 07:32:00,24.46,74.8875,20.07 +2016-09-16 07:47:00,25.8363,74.71,20.15 +2016-09-16 08:02:00,25.3487,74.5325,20.22 +2016-09-16 08:17:00,23.1325,74.355,20.23 +2016-09-16 08:32:00,27.2525,74.1925,20.36 +2016-09-16 08:47:00,25.7925,74.0025,20.5 +2016-09-16 09:02:00,25.3562,73.8325,20.61 +2016-09-16 09:17:00,24.855,73.765,20.68 +2016-09-16 09:32:00,25.2025,73.6725,20.82 +2016-09-16 09:47:00,25.2537,73.54,20.91 +2016-09-16 10:02:00,26.0325,73.4925,20.95 +2016-09-16 10:17:00,25.3,73.41,21.01 +2016-09-16 10:32:00,25.0062,73.29,21.04 +2016-09-16 10:47:00,25.1087,73.2425,21.08 +2016-09-16 11:02:00,25.0575,73.06,21.18 +2016-09-16 11:17:00,25.4412,72.9875,21.12 +2016-09-16 11:32:00,25.495,72.9125,21.09 +2016-09-16 11:47:00,27.3063,72.8125,21.02 +2016-09-16 12:02:00,25.4925,72.785,21.05 +2016-09-16 12:17:00,26.415,72.74,21.05 +2016-09-16 12:32:00,26.2725,72.7175,21.05 +2016-09-16 12:47:00,25.7975,72.7225,21.0 +2016-09-16 13:02:00,26.5675,72.695,20.85 +2016-09-16 13:17:00,25.4912,72.73,20.72 +2016-09-16 13:32:00,27.2537,72.7175,20.62 +2016-09-16 13:47:00,25.2525,72.7475,20.47 +2016-09-16 14:02:00,24.6525,72.8225,20.35 +2016-09-16 14:17:00,24.8575,72.8225,20.29 +2016-09-16 14:32:00,27.1062,72.8775,20.19 +2016-09-16 14:47:00,26.2738,73.0225,20.12 +2016-09-16 15:02:00,25.3975,73.03,20.12 +2016-09-16 15:17:00,25.2038,73.0825,20.09 +2016-09-16 15:32:00,25.01,73.0775,20.02 +2016-09-16 15:47:00,25.8375,73.115,19.98 +2016-09-16 16:02:00,25.1062,73.13,19.95 +2016-09-16 16:17:00,27.56,73.1975,19.91 +2016-09-16 16:32:00,24.9088,73.225,19.86 +2016-09-16 16:47:00,26.37,73.2325,19.79 +2016-09-16 17:02:00,25.3025,73.265,19.73 +2016-09-16 17:17:00,26.1312,73.2875,19.7 +2016-09-16 17:32:00,25.0537,73.3075,19.69 +2016-09-16 17:47:00,25.5387,73.36,19.67 +2016-09-16 18:02:00,27.6113,73.4,19.64 +2016-09-16 18:17:00,25.8412,73.4425,19.62 +2016-09-16 18:32:00,27.6162,73.54,19.6 +2016-09-16 18:47:00,27.205,73.6125,19.6 +2016-09-16 19:02:00,23.28,73.7225,19.6 +2016-09-16 19:17:00,26.0387,73.745,19.6 +2016-09-16 19:32:00,25.0563,73.8075,19.62 +2016-09-16 19:47:00,26.5175,73.8225,19.63 +2016-09-16 20:02:00,25.935,73.92,19.67 +2016-09-16 20:17:00,26.7687,73.9525,19.7 +2016-09-16 20:32:00,26.0863,73.925,19.72 +2016-09-16 20:47:00,25.4437,73.96,19.71 +2016-09-16 21:02:00,26.175,73.94,19.78 +2016-09-16 21:17:00,26.7175,73.9575,19.82 +2016-09-16 21:32:00,25.4437,73.9775,19.84 +2016-09-16 21:47:00,24.2075,74.0175,19.84 +2016-09-16 22:02:00,25.79,74.055,19.83 +2016-09-16 22:17:00,26.4713,74.0975,19.8 +2016-09-16 22:32:00,25.545,74.135,19.76 +2016-09-16 22:47:00,27.6125,74.22,19.77 +2016-09-16 23:02:00,24.41,74.3325,19.76 +2016-09-16 23:17:00,26.27,74.4425,19.75 +2016-09-16 23:32:00,25.9388,74.5675,19.71 +2016-09-16 23:47:00,25.7387,74.64,19.73 +2016-09-17 00:02:00,25.0062,74.7475,19.71 +2016-09-17 00:17:00,26.6212,74.8625,19.71 +2016-09-17 00:32:00,24.7537,75.025,19.71 +2016-09-17 00:47:00,26.8675,75.3225,19.67 +2016-09-17 01:02:00,26.6175,76.64,19.64 +2016-09-17 01:17:00,29.05,77.8,19.66 +2016-09-17 01:32:00,28.11,79.1025,19.62 +2016-09-17 01:47:00,27.1588,80.08,19.54 +2016-09-17 02:02:00,29.9262,80.7775,19.58 +2016-09-17 02:17:00,29.3412,81.0775,19.62 +2016-09-17 02:32:00,29.4788,81.13,19.63 +2016-09-17 02:47:00,28.85,81.0825,19.64 +2016-09-17 03:02:00,30.5075,81.16,19.68 +2016-09-17 03:17:00,33.5575,81.2125,19.67 +2016-09-17 03:32:00,28.1087,81.4175,19.64 +2016-09-17 03:47:00,30.6125,81.895,19.65 +2016-09-17 04:02:00,29.9262,81.8675,19.67 +2016-09-17 04:17:00,30.7025,81.815,19.69 +2016-09-17 04:32:00,29.3387,81.655,19.71 +2016-09-17 04:47:00,31.3925,81.61,19.71 +2016-09-17 05:02:00,28.9487,81.56,19.74 +2016-09-17 05:17:00,29.3875,81.5775,19.77 +2016-09-17 05:32:00,28.5525,81.5975,19.75 +2016-09-17 05:47:00,29.145,81.66,19.78 +2016-09-17 06:02:00,27.2575,81.595,19.79 +2016-09-17 06:17:00,28.7012,81.59,19.79 +2016-09-17 06:32:00,28.405,81.5825,19.84 +2016-09-17 06:47:00,28.7988,81.5075,19.91 +2016-09-17 07:02:00,31.0912,81.445,19.9 +2016-09-17 07:17:00,31.1937,81.44,19.83 +2016-09-17 07:32:00,29.2475,81.485,19.76 +2016-09-17 07:47:00,27.3138,81.485,19.71 +2016-09-17 08:02:00,27.2575,81.3325,19.63 +2016-09-17 08:17:00,28.8475,81.3225,19.57 +2016-09-17 08:32:00,27.205,81.38,19.54 +2016-09-17 08:47:00,27.3575,81.56,19.52 +2016-09-17 09:02:00,27.3037,81.8075,19.52 +2016-09-17 09:17:00,28.4137,82.1225,19.48 +2016-09-17 09:32:00,29.1025,82.3575,19.44 +2016-09-17 09:47:00,27.0125,82.3775,19.38 +2016-09-17 10:02:00,27.5075,82.49,19.36 +2016-09-17 10:17:00,28.4575,82.575,19.32 +2016-09-17 10:32:00,27.905,82.6425,19.29 +2016-09-17 10:47:00,29.8225,82.73,19.26 +2016-09-17 11:02:00,28.9475,82.8275,19.21 +2016-09-17 11:17:00,27.9037,83.13,19.15 +2016-09-17 11:32:00,27.8087,83.4275,19.13 +2016-09-17 11:47:00,27.1588,83.6275,19.1 +2016-09-17 12:02:00,27.2062,83.7525,19.07 +2016-09-17 12:17:00,28.3587,83.785,19.09 +2016-09-17 12:32:00,27.7537,83.8225,19.08 +2016-09-17 12:47:00,26.8688,83.8,19.05 +2016-09-17 13:02:00,26.27,83.805,19.04 +2016-09-17 13:17:00,28.605,83.85,19.01 +2016-09-17 13:32:00,28.41,83.87,19.01 +2016-09-17 13:47:00,28.0062,83.975,19.0 +2016-09-17 14:02:00,28.1562,84.0725,18.99 +2016-09-17 14:17:00,30.755,84.11,18.96 +2016-09-17 14:32:00,29.1963,84.115,18.94 +2016-09-17 14:47:00,29.5737,84.2,18.93 +2016-09-17 15:02:00,29.3812,84.43,18.89 +2016-09-17 15:17:00,27.41,84.6725,18.89 +2016-09-17 15:32:00,26.915,84.7825,18.89 +2016-09-17 15:47:00,28.405,85.0725,18.89 +2016-09-17 16:02:00,29.045,85.6125,18.88 +2016-09-17 16:17:00,29.24,86.105,18.88 +2016-09-17 16:32:00,30.5075,86.35,18.85 +2016-09-17 16:47:00,30.2075,86.55,18.89 +2016-09-17 17:02:00,28.9012,86.675,18.88 +2016-09-17 17:17:00,30.56,86.9825,18.91 +2016-09-17 17:32:00,26.9625,87.235,18.92 +2016-09-17 17:47:00,30.0662,87.625,18.92 +2016-09-17 18:02:00,28.4575,88.0175,18.87 +2016-09-17 18:17:00,30.3063,88.48,18.85 +2016-09-17 18:32:00,30.3087,88.975,18.87 +2016-09-17 18:47:00,28.305,89.5425,18.89 +2016-09-17 19:02:00,28.3613,90.1225,18.9 +2016-09-17 19:17:00,29.9762,90.705,18.9 +2016-09-17 19:32:00,26.9088,91.295,18.91 +2016-09-17 19:47:00,28.7937,91.955,18.93 +2016-09-17 20:02:00,29.19,92.6375,18.95 +2016-09-17 20:17:00,29.045,93.475,18.95 +2016-09-17 20:32:00,28.3037,94.24,18.95 +2016-09-17 20:47:00,28.7975,94.94,18.93 +2016-09-17 21:02:00,28.8988,95.5575,18.92 +2016-09-17 21:17:00,29.7762,96.3,18.91 +2016-09-17 21:32:00,28.1025,96.97,18.89 +2016-09-17 21:47:00,28.0575,97.55,18.86 +2016-09-17 22:02:00,27.8512,98.13,18.84 +2016-09-17 22:17:00,29.7237,98.6375,18.81 +2016-09-17 22:32:00,27.1012,99.265,18.78 +2016-09-17 22:47:00,28.5075,99.795,18.74 +2016-09-17 23:02:00,28.4075,100.55,18.7 +2016-09-17 23:17:00,28.4538,101.188,18.68 +2016-09-17 23:32:00,28.8962,101.977,18.65 +2016-09-17 23:47:00,25.7812,102.712,18.61 +2016-09-18 00:02:00,27.4538,103.497,18.56 +2016-09-18 00:17:00,28.795,104.22,18.51 +2016-09-18 00:32:00,27.1,104.962,18.46 +2016-09-18 00:47:00,28.055,105.6,18.41 +2016-09-18 01:02:00,26.4625,106.292,18.36 +2016-09-18 01:17:00,28.1525,107.055,18.32 +2016-09-18 01:32:00,27.8025,107.71,18.26 +2016-09-18 01:47:00,27.4075,108.302,18.21 +2016-09-18 02:02:00,26.8138,108.972,18.16 +2016-09-18 02:17:00,27.3,109.655,18.09 +2016-09-18 02:32:00,28.6488,110.372,18.02 +2016-09-18 02:47:00,28.3112,111.173,17.95 +2016-09-18 03:02:00,28.305,111.725,17.88 +2016-09-18 03:17:00,27.9012,112.362,17.81 +2016-09-18 03:32:00,27.7537,112.845,17.76 +2016-09-18 03:47:00,29.4262,113.32,17.7 +2016-09-18 04:02:00,27.45,113.81,17.66 +2016-09-18 04:17:00,28.3525,114.175,17.63 +2016-09-18 04:32:00,28.2588,114.565,17.6 +2016-09-18 04:47:00,28.4587,114.952,17.57 +2016-09-18 05:02:00,28.0525,115.327,17.55 +2016-09-18 05:17:00,29.1413,115.692,17.54 +2016-09-18 05:32:00,28.2012,116.192,17.53 +2016-09-18 05:47:00,29.5737,116.592,17.53 +2016-09-18 06:02:00,27.0512,116.935,17.51 +2016-09-18 06:17:00,29.5238,117.355,17.5 +2016-09-18 06:32:00,28.5525,117.707,17.5 +2016-09-18 06:47:00,28.46,118.042,17.5 +2016-09-18 07:02:00,29.045,118.57,17.51 +2016-09-18 07:17:00,29.575,118.977,17.54 +2016-09-18 07:32:00,28.05,119.515,17.55 +2016-09-18 07:47:00,27.505,120.135,17.55 +2016-09-18 08:02:00,29.67,123.347,17.55 +2016-09-18 08:17:00,28.65,126.897,17.57 +2016-09-18 08:32:00,29.0462,129.415,17.59 +2016-09-18 08:47:00,29.3312,131.217,17.58 +2016-09-18 09:02:00,29.19,132.817,17.53 +2016-09-18 09:17:00,28.5975,134.257,17.53 +2016-09-18 09:32:00,28.8412,135.335,17.53 +2016-09-18 09:47:00,29.3288,136.533,17.52 +2016-09-18 10:02:00,28.5488,137.465,17.51 +2016-09-18 10:17:00,28.5537,138.13,17.48 +2016-09-18 10:32:00,29.2875,138.64,17.45 +2016-09-18 10:47:00,29.67,139.173,17.45 +2016-09-18 11:02:00,30.1575,139.63,17.47 +2016-09-18 11:17:00,29.1387,140.02,17.49 +2016-09-18 11:32:00,28.5975,140.257,17.49 +2016-09-18 11:47:00,29.2375,140.57,17.5 +2016-09-18 12:02:00,28.5512,140.68,17.5 +2016-09-18 12:17:00,30.4037,140.815,17.48 +2016-09-18 12:32:00,28.4538,140.8,17.5 +2016-09-18 12:47:00,28.645,140.97,17.53 +2016-09-18 13:02:00,29.4275,140.95,17.56 +2016-09-18 13:17:00,30.205,140.98,17.59 +2016-09-18 13:32:00,29.2363,140.783,17.63 +2016-09-18 13:47:00,28.05,140.722,17.67 +2016-09-18 14:02:00,28.205,140.365,17.69 +2016-09-18 14:17:00,28.8463,140.207,17.71 +2016-09-18 14:32:00,27.005,139.812,17.72 +2016-09-18 14:47:00,28.3025,139.412,17.75 +2016-09-18 15:02:00,29.0925,138.875,17.76 +2016-09-18 15:17:00,28.7475,138.367,17.78 +2016-09-18 15:32:00,28.255,137.752,17.8 +2016-09-18 15:47:00,28.6462,137.117,17.81 +2016-09-18 16:02:00,28.5062,136.43,17.82 +2016-09-18 16:17:00,29.4275,135.548,17.84 +2016-09-18 16:32:00,27.8025,134.49,17.84 +2016-09-18 16:47:00,29.1375,133.46,17.84 +2016-09-18 17:02:00,27.2475,132.54,17.85 +2016-09-18 17:17:00,29.0413,131.893,17.86 +2016-09-18 17:32:00,29.2375,131.11,17.88 +2016-09-18 17:47:00,28.4088,130.367,17.89 +2016-09-18 18:02:00,28.205,129.855,17.93 +2016-09-18 18:17:00,26.86,129.257,17.98 +2016-09-18 18:32:00,28.5963,128.635,18.0 +2016-09-18 18:47:00,28.3525,128.015,18.03 +2016-09-18 19:02:00,28.2038,127.518,18.04 +2016-09-18 19:17:00,28.4088,126.88,18.06 +2016-09-18 19:32:00,27.4538,126.337,18.07 +2016-09-18 19:47:00,28.85,125.77,18.08 +2016-09-18 20:02:00,29.0437,125.18,18.08 +2016-09-18 20:17:00,27.7537,124.535,18.09 +2016-09-18 20:32:00,27.5025,123.965,18.1 +2016-09-18 20:47:00,28.3037,123.283,18.1 +2016-09-18 21:02:00,28.745,122.607,18.1 +2016-09-18 21:17:00,28.6462,121.952,18.1 +2016-09-18 21:32:00,27.8512,121.257,18.09 +2016-09-18 21:47:00,29.5775,120.605,18.06 +2016-09-18 22:02:00,29.6775,120.018,18.05 +2016-09-18 22:17:00,29.6725,119.457,18.02 +2016-09-18 22:32:00,28.355,118.935,18.0 +2016-09-18 22:47:00,30.4,118.412,17.97 +2016-09-18 23:02:00,29.33,117.99,17.95 +2016-09-18 23:17:00,29.7687,117.49,17.91 +2016-09-18 23:32:00,29.29,117.065,17.88 +2016-09-18 23:47:00,28.4075,116.677,17.84 +2016-09-19 00:02:00,30.065,116.32,17.81 +2016-09-19 00:17:00,33.4512,115.908,17.75 +2016-09-19 00:32:00,30.5037,115.53,17.7 +2016-09-19 00:47:00,29.3763,115.222,17.66 +2016-09-19 01:02:00,29.8662,114.882,17.63 +2016-09-19 01:17:00,29.0912,114.577,17.6 +2016-09-19 01:32:00,29.3375,114.32,17.57 +2016-09-19 01:47:00,29.3325,114.05,17.56 +2016-09-19 02:02:00,28.945,113.827,17.55 +2016-09-19 02:17:00,29.6212,113.552,17.55 +2016-09-19 02:32:00,29.8637,113.37,17.56 +2016-09-19 02:47:00,30.0612,113.112,17.57 +2016-09-19 03:02:00,30.1562,112.865,17.56 +2016-09-19 03:17:00,28.5075,112.312,17.57 +2016-09-19 03:32:00,29.1925,108.56,17.56 +2016-09-19 03:47:00,29.7188,105.162,17.56 +2016-09-19 04:02:00,28.8913,102.217,17.54 +2016-09-19 04:17:00,29.2363,99.59,17.51 +2016-09-19 04:32:00,29.9688,97.3425,17.48 +2016-09-19 04:47:00,31.1375,95.23,17.44 +2016-09-19 05:02:00,31.8312,93.525,17.48 +2016-09-19 05:17:00,30.0225,92.2,17.58 +2016-09-19 05:32:00,30.0687,91.37,17.72 +2016-09-19 05:47:00,29.87,90.9925,17.91 +2016-09-19 06:02:00,29.9688,91.0275,18.02 +2016-09-19 06:17:00,29.97,91.43,18.08 +2016-09-19 06:32:00,27.5563,91.92,18.05 +2016-09-19 06:47:00,30.9425,92.6325,17.95 +2016-09-19 07:02:00,28.7513,93.3525,17.83 +2016-09-19 07:17:00,28.75,94.195,17.7 +2016-09-19 07:32:00,28.2562,95.01,17.61 +2016-09-19 07:47:00,29.5238,95.87,17.54 +2016-09-19 08:02:00,29.29,96.64,17.48 +2016-09-19 08:17:00,30.5013,97.4725,17.45 +2016-09-19 08:32:00,31.2875,98.1,17.42 +2016-09-19 08:47:00,30.2025,98.71,17.4 +2016-09-19 09:02:00,30.6012,99.3025,17.38 +2016-09-19 09:17:00,33.755,99.805,17.38 +2016-09-19 09:32:00,28.4538,100.245,17.38 +2016-09-19 09:47:00,29.285,100.73,17.37 +2016-09-19 10:02:00,30.6975,101.122,17.32 +2016-09-19 10:17:00,30.8975,101.585,17.29 +2016-09-19 10:32:00,29.8213,101.995,17.28 +2016-09-19 10:47:00,30.2537,102.27,17.3 +2016-09-19 11:02:00,29.4275,102.512,17.32 +2016-09-19 11:17:00,30.3063,102.807,17.34 +2016-09-19 11:32:00,28.3525,103.012,17.36 +2016-09-19 11:47:00,28.995,103.107,17.36 +2016-09-19 12:02:00,29.14,103.245,17.35 +2016-09-19 12:17:00,34.1275,103.38,17.34 +2016-09-19 12:32:00,30.2062,103.485,17.32 +2016-09-19 12:47:00,30.07,103.533,17.31 +2016-09-19 13:02:00,29.6738,103.725,17.32 +2016-09-19 13:17:00,29.575,103.69,17.33 +2016-09-19 13:32:00,29.8225,103.783,17.31 +2016-09-19 13:47:00,29.6212,103.805,17.28 +2016-09-19 14:02:00,29.2438,103.72,17.26 +2016-09-19 14:17:00,29.7213,103.705,17.24 +2016-09-19 14:32:00,29.525,103.587,17.22 +2016-09-19 14:47:00,30.505,103.48,17.2 +2016-09-19 15:02:00,30.02,103.457,17.18 +2016-09-19 15:17:00,33.5,103.352,17.16 +2016-09-19 15:32:00,29.4275,103.332,17.14 +2016-09-19 15:47:00,30.8,103.285,17.13 +2016-09-19 16:02:00,29.915,103.36,17.11 +2016-09-19 16:17:00,29.9187,103.298,17.1 +2016-09-19 16:32:00,29.0437,103.262,17.08 +2016-09-19 16:47:00,28.5075,103.19,17.07 +2016-09-19 17:02:00,30.9887,103.065,17.06 +2016-09-19 17:17:00,29.8675,102.962,17.04 +2016-09-19 17:32:00,30.3037,102.757,17.03 +2016-09-19 17:47:00,29.3775,102.562,17.02 +2016-09-19 18:02:00,30.5037,102.482,17.02 +2016-09-19 18:17:00,32.5713,102.315,17.02 +2016-09-19 18:32:00,29.8737,102.17,17.0 +2016-09-19 18:47:00,30.2113,102.117,17.01 +2016-09-19 19:02:00,30.1125,101.982,17.01 +2016-09-19 19:17:00,29.8213,101.95,17.01 +2016-09-19 19:32:00,30.7513,101.912,17.02 +2016-09-19 19:47:00,28.9437,101.87,17.01 +2016-09-19 20:02:00,29.9688,101.72,17.01 +2016-09-19 20:17:00,29.6212,101.643,17.0 +2016-09-19 20:32:00,30.2612,101.467,17.0 +2016-09-19 20:47:00,30.605,101.37,17.01 +2016-09-19 21:02:00,30.6537,101.192,17.0 +2016-09-19 21:17:00,31.1387,101.057,17.0 +2016-09-19 21:32:00,29.5262,100.902,16.99 +2016-09-19 21:47:00,29.5788,100.757,16.98 +2016-09-19 22:02:00,28.9487,100.652,16.97 +2016-09-19 22:17:00,29.2412,100.58,16.96 +2016-09-19 22:32:00,29.53,100.552,16.94 +2016-09-19 22:47:00,28.9987,100.525,16.92 +2016-09-19 23:02:00,29.6738,100.472,16.91 +2016-09-19 23:17:00,30.4025,100.283,16.89 +2016-09-19 23:32:00,28.7962,100.195,16.88 +2016-09-19 23:47:00,29.24,100.005,16.84 +2016-09-20 00:02:00,28.9463,99.8525,16.81 +2016-09-20 00:17:00,29.1462,99.7375,16.79 +2016-09-20 00:32:00,31.74,99.505,16.76 +2016-09-20 00:47:00,30.2562,99.365,16.73 +2016-09-20 01:02:00,31.0875,99.1475,16.68 +2016-09-20 01:17:00,31.59,99.0825,16.63 +2016-09-20 01:32:00,28.7475,98.9525,16.6 +2016-09-20 01:47:00,29.5287,98.9525,16.56 +2016-09-20 02:02:00,30.16,98.9275,16.52 +2016-09-20 02:17:00,29.825,98.8375,16.49 +2016-09-20 02:32:00,30.1612,98.75,16.45 +2016-09-20 02:47:00,30.8012,98.5925,16.41 +2016-09-20 03:02:00,30.6512,98.445,16.38 +2016-09-20 03:17:00,31.1875,98.2925,16.35 +2016-09-20 03:32:00,30.2062,98.1075,16.32 +2016-09-20 03:47:00,29.4762,97.94,16.27 +2016-09-20 04:02:00,30.1137,97.795,16.23 +2016-09-20 04:17:00,29.48,97.66,16.21 +2016-09-20 04:32:00,29.7725,97.57,16.19 +2016-09-20 04:47:00,29.775,97.5425,16.15 +2016-09-20 05:02:00,29.7738,97.5575,16.13 +2016-09-20 05:17:00,30.6525,97.455,16.13 +2016-09-20 05:32:00,29.0425,97.4675,16.13 +2016-09-20 05:47:00,30.0175,97.395,16.11 +2016-09-20 06:02:00,29.1437,97.3525,16.11 +2016-09-20 06:17:00,30.2612,97.365,16.1 +2016-09-20 06:32:00,30.505,97.1575,16.09 +2016-09-20 06:47:00,29.725,97.0825,16.1 +2016-09-20 07:02:00,31.2438,96.9875,16.12 +2016-09-20 07:17:00,32.5725,96.8725,16.14 +2016-09-20 07:32:00,44.0887,96.7675,12.09 +2016-09-20 07:47:00,13.8,96.7025,11.88 +2016-09-20 08:02:00,13.8,96.5275,12.4 +2016-09-20 08:17:00,17.45,96.465,12.56 +2016-09-20 08:32:00,19.5387,96.34,16.29 +2016-09-20 08:47:00,20.3787,96.24,16.33 +2016-09-20 09:02:00,20.7,96.1575,16.37 +2016-09-20 09:17:00,21.78,96.1475,16.4 +2016-09-20 09:32:00,20.6038,96.1,16.44 +2016-09-20 09:47:00,20.9875,96.1725,16.48 +2016-09-20 10:02:00,19.44,96.1775,16.52 +2016-09-20 10:17:00,21.3875,96.1775,16.58 +2016-09-20 10:32:00,19.1963,96.215,16.62 +2016-09-20 10:47:00,20.1637,96.025,16.66 +2016-09-20 11:02:00,18.5687,95.8625,16.7 +2016-09-20 11:17:00,20.1663,95.5625,16.66 +2016-09-20 11:32:00,19.7325,95.3775,16.65 +2016-09-20 11:47:00,20.7975,95.2425,16.59 +2016-09-20 12:02:00,21.6338,95.225,16.58 +2016-09-20 12:17:00,20.1188,95.1025,16.57 +2016-09-20 12:32:00,19.4875,95.03,16.56 +2016-09-20 12:47:00,19.0088,95.0125,16.57 +2016-09-20 13:02:00,19.9262,95.055,16.61 +2016-09-20 13:17:00,19.3887,95.0875,16.62 +2016-09-20 13:32:00,20.4175,95.0775,16.62 +2016-09-20 13:47:00,20.7462,95.0325,16.6 +2016-09-20 14:02:00,17.7913,94.99,16.55 +2016-09-20 14:17:00,20.795,94.8825,16.56 +2016-09-20 14:32:00,20.9875,94.8225,16.53 +2016-09-20 14:47:00,19.735,94.7075,16.5 +2016-09-20 15:02:00,19.1462,94.555,16.47 +2016-09-20 15:17:00,20.9388,94.43,16.46 +2016-09-20 15:32:00,18.0912,94.37,16.44 +2016-09-20 15:47:00,21.4388,94.33,16.42 +2016-09-20 16:02:00,18.4238,94.2,16.39 +2016-09-20 16:17:00,20.7975,94.1,16.38 +2016-09-20 16:32:00,21.2375,93.97,16.35 +2016-09-20 16:47:00,18.7612,93.855,16.33 +2016-09-20 17:02:00,18.9562,93.78,16.33 +2016-09-20 17:17:00,19.4375,93.6725,16.33 +2016-09-20 17:32:00,22.03,93.545,16.33 +2016-09-20 17:47:00,19.8312,93.445,16.32 +2016-09-20 18:02:00,21.1362,93.3925,16.32 +2016-09-20 18:17:00,20.5075,93.4275,16.3 +2016-09-20 18:32:00,17.55,93.425,16.3 +2016-09-20 18:47:00,18.8112,93.3975,16.3 +2016-09-20 19:02:00,20.1175,93.2925,16.3 +2016-09-20 19:17:00,21.2875,93.285,16.3 +2016-09-20 19:32:00,21.4412,93.175,16.31 +2016-09-20 19:47:00,20.215,93.0475,16.32 +2016-09-20 20:02:00,21.1387,92.9775,16.33 +2016-09-20 20:17:00,20.5575,92.835,16.35 +2016-09-20 20:32:00,18.7663,92.77,16.37 +2016-09-20 20:47:00,19.88,92.6725,16.38 +2016-09-20 21:02:00,17.4538,92.5325,16.38 +2016-09-20 21:17:00,18.38,92.4575,16.41 +2016-09-20 21:32:00,18.475,92.34,16.43 +2016-09-20 21:47:00,20.1675,92.2125,16.46 +2016-09-20 22:02:00,18.9125,92.08,16.48 +2016-09-20 22:17:00,19.975,92.045,16.5 +2016-09-20 22:32:00,19.1937,91.95,16.51 +2016-09-20 22:47:00,19.29,91.7925,16.52 +2016-09-20 23:02:00,19.8375,91.6475,16.54 +2016-09-20 23:17:00,19.9812,91.525,16.56 +2016-09-20 23:32:00,18.91,91.475,16.57 +2016-09-20 23:47:00,19.1038,91.3875,16.57 +2016-09-21 00:02:00,17.5975,91.3475,16.57 +2016-09-21 00:17:00,18.6125,91.34,16.57 +2016-09-21 00:32:00,19.3913,91.3975,16.57 +2016-09-21 00:47:00,20.2162,91.3925,16.56 +2016-09-21 01:02:00,20.7025,91.3275,16.54 +2016-09-21 01:17:00,18.8187,91.275,16.52 +2016-09-21 01:32:00,19.835,91.205,16.49 +2016-09-21 01:47:00,20.8887,91.19,16.46 +2016-09-21 02:02:00,19.54,91.1275,16.43 +2016-09-21 02:17:00,16.675,91.0275,16.42 +2016-09-21 02:32:00,18.23,90.93,16.4 +2016-09-21 02:47:00,20.5612,90.8225,16.38 +2016-09-21 03:02:00,19.4412,90.72,16.36 +2016-09-21 03:17:00,21.6312,90.5875,16.34 +2016-09-21 03:32:00,18.96,90.4975,16.31 +2016-09-21 03:47:00,21.14,90.425,16.29 +2016-09-21 04:02:00,18.04,90.245,16.26 +2016-09-21 04:17:00,18.7637,90.215,16.24 +2016-09-21 04:32:00,19.195,90.13,16.22 +2016-09-21 04:47:00,21.7825,90.0775,16.21 +2016-09-21 05:02:00,19.8363,89.9975,16.19 +2016-09-21 05:17:00,20.1188,90.0425,16.17 +2016-09-21 05:32:00,20.0225,89.985,16.16 +2016-09-21 05:47:00,19.5387,89.89,16.16 +2016-09-21 06:02:00,18.7138,89.9425,16.15 +2016-09-21 06:17:00,18.6162,89.8775,16.15 +2016-09-21 06:32:00,19.5413,89.8425,16.15 +2016-09-21 06:47:00,21.7825,89.72,16.16 +2016-09-21 07:02:00,20.655,89.4375,16.17 +2016-09-21 07:17:00,18.765,89.28,16.21 +2016-09-21 07:32:00,21.0875,89.1725,16.26 +2016-09-21 07:47:00,21.4812,89.0875,16.29 +2016-09-21 08:02:00,17.3,88.97,16.3 +2016-09-21 08:17:00,18.9062,88.91,16.36 +2016-09-21 08:32:00,19.06,88.765,16.45 +2016-09-21 08:47:00,17.6462,88.66,16.5 +2016-09-21 09:02:00,19.6387,88.6,16.54 +2016-09-21 09:17:00,19.1937,88.5725,16.61 +2016-09-21 09:32:00,20.655,88.59,16.69 +2016-09-21 09:47:00,20.4587,88.5775,16.79 +2016-09-21 10:02:00,19.88,88.5425,16.81 +2016-09-21 10:17:00,17.5025,88.5125,16.81 +2016-09-21 10:32:00,20.2188,88.515,16.87 +2016-09-21 10:47:00,18.0413,88.4275,16.84 +2016-09-21 11:02:00,19.2475,88.3775,16.86 +2016-09-21 11:17:00,21.0387,88.42,16.9 +2016-09-21 11:32:00,17.6425,88.355,16.96 +2016-09-21 11:47:00,19.6825,88.4475,16.99 +2016-09-21 12:02:00,18.04,88.4625,17.02 +2016-09-21 12:17:00,20.2225,88.4825,17.09 +2016-09-21 12:32:00,22.0762,88.6375,17.12 +2016-09-21 12:47:00,19.3412,88.785,17.09 +2016-09-21 13:02:00,20.215,89.065,17.08 +2016-09-21 13:17:00,22.3087,89.18,17.11 +2016-09-21 13:32:00,19.635,89.4575,17.15 +2016-09-21 13:47:00,22.7975,89.67,17.12 +2016-09-21 14:02:00,20.0713,89.9425,17.07 +2016-09-21 14:17:00,19.545,90.1725,16.99 +2016-09-21 14:32:00,21.98,90.35,16.97 +2016-09-21 14:47:00,20.5587,90.5825,16.91 +2016-09-21 15:02:00,19.4375,90.7025,16.88 +2016-09-21 15:17:00,19.9275,90.73,16.82 +2016-09-21 15:32:00,18.91,90.875,16.77 +2016-09-21 15:47:00,20.9863,90.8175,16.73 +2016-09-21 16:02:00,20.5112,90.87,16.7 +2016-09-21 16:17:00,20.705,90.84,16.68 +2016-09-21 16:32:00,21.2412,90.6825,16.66 +2016-09-21 16:47:00,20.7462,90.665,16.63 +2016-09-21 17:02:00,19.1987,90.58,16.6 +2016-09-21 17:17:00,19.49,90.465,16.57 +2016-09-21 17:32:00,20.3688,90.4075,16.54 +2016-09-21 17:47:00,21.19,90.3175,16.54 +2016-09-21 18:02:00,20.5137,90.1975,16.52 +2016-09-21 18:17:00,18.2887,90.06,16.5 +2016-09-21 18:32:00,18.1325,89.845,16.49 +2016-09-21 18:47:00,18.4238,89.6225,16.46 +2016-09-21 19:02:00,20.4125,89.4875,16.46 +2016-09-21 19:17:00,19.8337,89.225,16.45 +2016-09-21 19:32:00,19.0575,89.04,16.43 +2016-09-21 19:47:00,20.7012,88.8075,16.42 +2016-09-21 20:02:00,18.0875,88.6325,16.41 +2016-09-21 20:17:00,20.4662,88.385,16.4 +2016-09-21 20:32:00,19.7312,88.1875,16.41 +2016-09-21 20:47:00,20.6513,87.9775,16.41 +2016-09-21 21:02:00,18.615,87.79,16.42 +2016-09-21 21:17:00,18.9075,87.64,16.44 +2016-09-21 21:32:00,19.34,87.5475,16.45 +2016-09-21 21:47:00,19.7887,87.445,16.46 +2016-09-21 22:02:00,22.2237,87.445,16.47 +2016-09-21 22:17:00,19.01,87.405,16.49 +2016-09-21 22:32:00,18.085,87.3525,16.51 +2016-09-21 22:47:00,19.0088,87.2925,16.53 +2016-09-21 23:02:00,19.49,87.1625,16.54 +2016-09-21 23:17:00,18.7138,87.0375,16.56 +2016-09-21 23:32:00,19.8812,86.91,16.58 +2016-09-21 23:47:00,17.6937,86.8225,16.6 +2016-09-22 00:02:00,22.36,86.72,16.61 +2016-09-22 00:17:00,19.8812,86.6125,16.62 +2016-09-22 00:32:00,19.835,86.5425,16.62 +2016-09-22 00:47:00,19.0088,86.4325,16.62 +2016-09-22 01:02:00,19.6875,86.2575,16.61 +2016-09-22 01:17:00,20.6075,86.1475,16.61 +2016-09-22 01:32:00,19.8375,86.1175,16.59 +2016-09-22 01:47:00,20.75,86.0225,16.6 +2016-09-22 02:02:00,17.4562,85.9925,16.6 +2016-09-22 02:17:00,18.235,86.0375,16.6 +2016-09-22 02:32:00,21.8325,86.0625,16.6 +2016-09-22 02:47:00,19.3438,86.075,16.58 +2016-09-22 03:02:00,19.0075,86.0625,16.57 +2016-09-22 03:17:00,20.5075,86.0125,16.54 +2016-09-22 03:32:00,18.0888,86.0225,16.52 +2016-09-22 03:47:00,20.0737,85.9775,16.5 +2016-09-22 04:02:00,18.86,85.9325,16.48 +2016-09-22 04:17:00,19.8312,85.85,16.45 +2016-09-22 04:32:00,20.17,85.805,16.41 +2016-09-22 04:47:00,19.9275,85.715,16.39 +2016-09-22 05:02:00,21.2838,85.67,16.36 +2016-09-22 05:17:00,20.22,85.67,16.33 +2016-09-22 05:32:00,20.42,85.665,16.31 +2016-09-22 05:47:00,20.0287,85.6075,16.28 +2016-09-22 06:02:00,19.5413,85.615,16.26 +2016-09-22 06:17:00,20.2663,85.5475,16.24 +2016-09-22 06:32:00,18.9587,85.5625,16.21 +2016-09-22 06:47:00,18.7637,85.5375,16.19 +2016-09-22 07:02:00,20.315,85.5075,16.18 +2016-09-22 07:17:00,20.27,85.485,16.18 +2016-09-22 07:32:00,20.4638,85.495,16.2 +2016-09-22 07:47:00,21.3425,85.465,16.22 +2016-09-22 08:02:00,22.4525,85.455,16.29 +2016-09-22 08:17:00,18.52,85.41,16.31 +2016-09-22 08:32:00,19.1462,85.3975,16.32 +2016-09-22 08:47:00,21.3425,85.2875,16.38 +2016-09-22 09:02:00,20.6087,85.1975,16.45 +2016-09-22 09:17:00,20.56,85.215,16.5 +2016-09-22 09:32:00,20.94,85.2525,16.57 +2016-09-22 09:47:00,21.6825,85.1825,16.64 +2016-09-22 10:02:00,18.235,85.1025,16.72 +2016-09-22 10:17:00,18.9575,85.1225,16.78 +2016-09-22 10:32:00,18.4688,85.1675,16.84 +2016-09-22 10:47:00,20.3175,85.22,16.86 +2016-09-22 11:02:00,19.49,85.305,16.86 +2016-09-22 11:17:00,19.1513,85.4075,16.86 +2016-09-22 11:32:00,21.2913,85.4775,16.88 +2016-09-22 11:47:00,20.07,85.5075,16.94 +2016-09-22 12:02:00,18.135,85.5725,17.0 +2016-09-22 12:17:00,18.8112,85.62,17.08 +2016-09-22 12:32:00,18.2375,85.67,17.15 +2016-09-22 12:47:00,17.89,85.665,17.14 +2016-09-22 13:02:00,21.585,85.65,17.12 +2016-09-22 13:17:00,19.1525,85.6525,17.09 +2016-09-22 13:32:00,17.6425,85.6875,17.06 +2016-09-22 13:47:00,19.3913,85.7575,17.04 +2016-09-22 14:02:00,21.2887,85.715,17.04 +2016-09-22 14:17:00,19.7887,85.72,17.02 +2016-09-22 14:32:00,19.8825,85.665,17.02 +2016-09-22 14:47:00,20.99,85.58,17.02 +2016-09-22 15:02:00,18.965,85.5925,17.03 +2016-09-22 15:17:00,17.7412,85.6925,17.02 +2016-09-22 15:32:00,19.59,85.7225,17.02 +2016-09-22 15:47:00,18.375,85.78,17.03 +2016-09-22 16:02:00,20.3175,85.7575,17.02 +2016-09-22 16:17:00,19.79,85.7775,17.0 +2016-09-22 16:32:00,19.1075,85.7125,16.97 +2016-09-22 16:47:00,20.5175,85.65,16.93 +2016-09-22 17:02:00,19.4425,85.6075,16.89 +2016-09-22 17:17:00,20.8425,85.56,16.84 +2016-09-22 17:32:00,17.8438,85.55,16.79 +2016-09-22 17:47:00,19.4437,85.4475,16.73 +2016-09-22 18:02:00,20.89,85.46,16.69 +2016-09-22 18:17:00,19.69,85.4,16.65 +2016-09-22 18:32:00,21.6837,85.34,16.62 +2016-09-22 18:47:00,18.3325,85.2925,16.58 +2016-09-22 19:02:00,17.7487,85.205,16.52 +2016-09-22 19:17:00,18.3737,85.2275,16.51 +2016-09-22 19:32:00,20.9425,85.26,16.49 +2016-09-22 19:47:00,19.4412,85.375,16.47 +2016-09-22 20:02:00,21.98,85.4275,16.47 +2016-09-22 20:17:00,19.635,85.45,16.45 +2016-09-22 20:32:00,21.58,85.44,16.44 +2016-09-22 20:47:00,21.8875,85.3875,16.43 +2016-09-22 21:02:00,19.0137,85.315,16.41 +2016-09-22 21:17:00,19.9275,85.3225,16.41 +2016-09-22 21:32:00,18.9587,85.255,16.39 +2016-09-22 21:47:00,21.0925,85.2325,16.35 +2016-09-22 22:02:00,20.8925,85.14,16.31 +2016-09-22 22:17:00,20.655,85.12,16.28 +2016-09-22 22:32:00,20.6137,85.0525,16.28 +2016-09-22 22:47:00,17.6975,84.99,16.29 +2016-09-22 23:02:00,18.7625,84.97,16.3 +2016-09-22 23:17:00,19.6362,84.98,16.3 +2016-09-22 23:32:00,19.3425,85.0525,16.3 +2016-09-22 23:47:00,19.2937,85.05,16.29 +2016-09-23 00:02:00,18.09,85.135,16.29 +2016-09-23 00:17:00,20.4625,85.04,16.28 +2016-09-23 00:32:00,19.9762,85.03,16.28 +2016-09-23 00:47:00,19.9775,84.93,16.28 +2016-09-23 01:02:00,19.2937,84.8075,16.28 +2016-09-23 01:17:00,20.2213,84.7725,16.27 +2016-09-23 01:32:00,21.6325,84.7575,16.27 +2016-09-23 01:47:00,18.375,84.745,16.28 +2016-09-23 02:02:00,19.7337,84.77,16.29 +2016-09-23 02:17:00,19.2,84.87,16.29 +2016-09-23 02:32:00,20.75,84.86,16.28 +2016-09-23 02:47:00,19.5362,84.8975,16.24 +2016-09-23 03:02:00,19.2925,84.8325,16.21 +2016-09-23 03:17:00,21.4837,84.77,16.18 +2016-09-23 03:32:00,20.56,84.745,16.17 +2016-09-23 03:47:00,21.14,84.705,16.17 +2016-09-23 04:02:00,19.3913,84.5525,16.17 +2016-09-23 04:17:00,17.6012,84.4975,16.16 +2016-09-23 04:32:00,17.8962,84.5,16.16 +2016-09-23 04:47:00,20.1687,84.535,16.15 +2016-09-23 05:02:00,20.3162,84.6025,16.14 +2016-09-23 05:17:00,19.3412,84.5875,16.13 +2016-09-23 05:32:00,21.3862,84.56,16.11 +2016-09-23 05:47:00,19.8838,84.5025,16.08 +2016-09-23 06:02:00,21.2875,84.4475,16.04 +2016-09-23 06:17:00,20.8425,84.45,15.97 +2016-09-23 06:32:00,19.79,84.3575,15.83 +2016-09-23 06:47:00,21.6312,84.3075,15.73 +2016-09-23 07:02:00,19.6888,84.2525,15.73 +2016-09-23 07:17:00,21.3388,84.195,15.79 +2016-09-23 07:32:00,19.0587,84.17,15.87 +2016-09-23 07:47:00,20.7937,84.115,15.92 +2016-09-23 08:02:00,20.9887,84.0675,15.96 +2016-09-23 08:17:00,18.6675,84.0975,16.0 +2016-09-23 08:32:00,18.5687,84.0325,16.06 +2016-09-23 08:47:00,19.4925,83.9225,16.12 +2016-09-23 09:02:00,20.4137,83.855,16.2 +2016-09-23 09:17:00,18.8613,83.8625,16.28 +2016-09-23 09:32:00,18.8162,83.695,16.34 +2016-09-23 09:47:00,19.4362,83.6075,16.4 +2016-09-23 10:02:00,19.4425,83.395,16.48 +2016-09-23 10:17:00,19.0088,83.315,16.54 +2016-09-23 10:32:00,22.2162,83.145,16.57 +2016-09-23 10:47:00,18.8613,83.01,16.62 +2016-09-23 11:02:00,19.06,83.045,16.65 +2016-09-23 11:17:00,20.7012,82.945,16.7 +2016-09-23 11:32:00,20.2175,82.9525,16.74 +2016-09-23 11:47:00,22.1738,82.97,16.77 +2016-09-23 12:02:00,15.4613,82.9575,16.78 +2016-09-23 12:17:00,18.1338,82.82,16.81 +2016-09-23 12:32:00,19.4887,82.83,16.83 +2016-09-23 12:47:00,18.1325,82.87,16.86 +2016-09-23 13:02:00,18.4238,82.8325,16.91 +2016-09-23 13:17:00,19.8288,82.78,16.93 +2016-09-23 13:32:00,21.2375,82.81,16.95 +2016-09-23 13:47:00,18.9613,82.5325,16.95 +2016-09-23 14:02:00,19.2025,82.495,16.94 +2016-09-23 14:17:00,21.3913,82.44,16.95 +2016-09-23 14:32:00,19.735,82.2725,16.93 +2016-09-23 14:47:00,16.53,82.02,16.92 +2016-09-23 15:02:00,17.695,81.555,16.9 +2016-09-23 15:17:00,20.4638,81.27,16.88 +2016-09-23 15:32:00,20.2687,80.855,16.86 +2016-09-23 15:47:00,18.4713,80.3775,16.85 +2016-09-23 16:02:00,20.515,79.965,16.83 +2016-09-23 16:17:00,18.3325,79.5625,16.82 +2016-09-23 16:32:00,20.745,79.1225,16.81 +2016-09-23 16:47:00,20.27,78.75,16.83 +2016-09-23 17:02:00,18.9112,78.34,16.84 +2016-09-23 17:17:00,18.135,78.0325,16.82 +2016-09-23 17:32:00,19.34,77.5925,16.81 +2016-09-23 17:47:00,17.6963,77.14,16.8 +2016-09-23 18:02:00,18.0375,76.7025,16.79 +2016-09-23 18:17:00,18.7125,76.3,16.78 +2016-09-23 18:32:00,17.99,75.865,16.78 +2016-09-23 18:47:00,16.9062,75.565,16.77 +2016-09-23 19:02:00,18.8587,75.315,16.75 +2016-09-23 19:17:00,18.7675,75.1075,16.71 +2016-09-23 19:32:00,17.7438,74.8925,16.68 +2016-09-23 19:47:00,17.7937,74.8275,16.66 +2016-09-23 20:02:00,20.2188,74.7425,16.64 +2016-09-23 20:17:00,18.2838,74.6775,16.62 +2016-09-23 20:32:00,18.135,74.5775,16.58 +2016-09-23 20:47:00,17.4037,74.4625,16.52 +2016-09-23 21:02:00,20.3637,74.4225,16.48 +2016-09-23 21:17:00,18.0938,74.365,16.44 +2016-09-23 21:32:00,18.9175,74.4425,16.39 +2016-09-23 21:47:00,18.5212,74.545,16.34 +2016-09-23 22:02:00,20.7025,74.6175,16.29 +2016-09-23 22:17:00,18.715,74.7825,16.28 +2016-09-23 22:32:00,20.17,74.92,16.27 +2016-09-23 22:47:00,18.4225,75.0875,16.27 +2016-09-23 23:02:00,20.5612,75.25,16.26 +2016-09-23 23:17:00,18.915,75.4175,16.3 +2016-09-23 23:32:00,18.2387,75.5925,16.32 +2016-09-23 23:47:00,19.39,75.77,16.4 +2016-09-24 00:02:00,18.185,75.87,16.49 +2016-09-24 00:17:00,21.19,76.0225,16.57 +2016-09-24 00:32:00,18.7138,76.16,16.62 +2016-09-24 00:47:00,17.5975,76.375,16.65 +2016-09-24 01:02:00,17.645,76.585,16.66 +2016-09-24 01:17:00,19.1537,76.9175,16.63 +2016-09-24 01:32:00,18.8175,77.1675,16.6 +2016-09-24 01:47:00,18.52,77.395,16.58 +2016-09-24 02:02:00,18.0863,77.5175,16.57 +2016-09-24 02:17:00,19.6862,77.7225,16.55 +2016-09-24 02:32:00,17.9425,77.83,16.57 +2016-09-24 02:47:00,18.2337,77.9075,16.56 +2016-09-24 03:02:00,18.47,77.9875,16.58 +2016-09-24 03:17:00,17.3562,78.0225,16.6 +2016-09-24 03:32:00,19.1963,78.1375,16.65 +2016-09-24 03:47:00,20.0225,78.255,16.7 +2016-09-24 04:02:00,19.7325,78.4975,16.75 +2016-09-24 04:17:00,18.4238,78.6875,16.8 +2016-09-24 04:32:00,18.6663,78.825,16.87 +2016-09-24 04:47:00,18.86,78.9575,16.92 +2016-09-24 05:02:00,17.8425,79.0625,16.97 +2016-09-24 05:17:00,17.21,79.16,16.97 +2016-09-24 05:32:00,19.7363,79.25,16.96 +2016-09-24 05:47:00,18.0875,79.2975,17.04 +2016-09-24 06:02:00,18.7663,79.355,17.04 +2016-09-24 06:17:00,17.645,79.3925,17.03 +2016-09-24 06:32:00,17.4525,79.4275,17.0 +2016-09-24 06:47:00,17.9938,79.43,16.99 +2016-09-24 07:02:00,19.5875,79.4625,16.98 +2016-09-24 07:17:00,18.3312,79.58,16.99 +2016-09-24 07:32:00,18.0413,79.615,16.97 +2016-09-24 07:47:00,17.155,79.6775,16.97 +2016-09-24 08:02:00,19.1025,79.785,16.97 +2016-09-24 08:17:00,17.0075,79.7925,16.96 +2016-09-24 08:32:00,17.1537,79.8325,16.97 +2016-09-24 08:47:00,19.4912,79.91,16.99 +2016-09-24 09:02:00,20.75,79.8725,17.01 +2016-09-24 09:17:00,16.4825,79.935,17.01 +2016-09-24 09:32:00,17.4538,79.9575,17.02 +2016-09-24 09:47:00,17.6937,80.05,17.03 +2016-09-24 10:02:00,18.2363,79.9775,17.05 +2016-09-24 10:17:00,19.2925,80.0025,17.09 +2016-09-24 10:32:00,19.3475,80.0175,17.07 +2016-09-24 10:47:00,16.4362,80.07,17.02 +2016-09-24 11:02:00,19.015,79.9575,17.02 +2016-09-24 11:17:00,17.0075,80.08,17.06 +2016-09-24 11:32:00,19.105,80.1525,17.11 +2016-09-24 11:47:00,18.7675,80.33,17.09 +2016-09-24 12:02:00,20.465,80.4325,17.1 +2016-09-24 12:17:00,18.1862,80.5275,17.16 +2016-09-24 12:32:00,18.7225,80.505,17.22 +2016-09-24 12:47:00,20.1712,80.535,17.26 +2016-09-24 13:02:00,19.3425,80.495,17.26 +2016-09-24 13:17:00,20.17,80.5375,17.26 +2016-09-24 13:32:00,19.2925,80.48,17.27 +2016-09-24 13:47:00,18.6663,80.49,17.31 +2016-09-24 14:02:00,17.4013,80.46,17.35 +2016-09-24 14:17:00,18.0413,80.54,17.39 +2016-09-24 14:32:00,18.82,80.47,17.41 +2016-09-24 14:47:00,17.845,80.42,17.42 +2016-09-24 15:02:00,17.8875,80.42,17.42 +2016-09-24 15:17:00,19.9775,80.4325,17.43 +2016-09-24 15:32:00,17.1575,80.3425,17.42 +2016-09-24 15:47:00,20.5088,80.38,17.42 +2016-09-24 16:02:00,19.0612,80.445,17.42 +2016-09-24 16:17:00,19.4412,80.535,17.38 +2016-09-24 16:32:00,17.3587,80.5875,17.35 +2016-09-24 16:47:00,18.285,80.64,17.34 +2016-09-24 17:02:00,17.4512,80.62,17.32 +2016-09-24 17:17:00,16.8162,80.6075,17.29 +2016-09-24 17:32:00,19.1963,80.615,17.27 +2016-09-24 17:47:00,16.48,80.6,17.26 +2016-09-24 18:02:00,19.7325,80.54,17.27 +2016-09-24 18:17:00,17.3087,80.5225,17.29 +2016-09-24 18:32:00,17.1062,80.4775,17.29 +2016-09-24 18:47:00,20.17,80.43,17.27 +2016-09-24 19:02:00,18.4225,80.42,17.26 +2016-09-24 19:17:00,19.8838,80.3375,17.23 +2016-09-24 19:32:00,18.815,80.3725,17.21 +2016-09-24 19:47:00,19.2487,80.33,17.16 +2016-09-24 20:02:00,18.9125,80.2925,17.14 +2016-09-24 20:17:00,20.0275,80.3475,17.09 +2016-09-24 20:32:00,18.4762,80.4275,17.05 +2016-09-24 20:47:00,17.5975,80.555,17.01 +2016-09-24 21:02:00,17.8887,80.6,16.95 +2016-09-24 21:17:00,18.5687,80.63,16.91 +2016-09-24 21:32:00,16.91,80.64,16.86 +2016-09-24 21:47:00,18.2375,80.71,16.8 +2016-09-24 22:02:00,18.19,80.7275,16.75 +2016-09-24 22:17:00,17.1062,80.7225,16.7 +2016-09-24 22:32:00,17.8937,80.7125,16.66 +2016-09-24 22:47:00,15.2237,80.78,16.63 +2016-09-24 23:02:00,17.0563,80.6725,16.6 +2016-09-24 23:17:00,17.2537,80.64,16.58 +2016-09-24 23:32:00,18.1387,80.615,16.56 +2016-09-24 23:47:00,18.815,80.6825,16.55 +2016-09-25 00:02:00,19.1562,80.65,16.52 +2016-09-25 00:17:00,16.39,80.705,16.51 +2016-09-25 00:32:00,17.4013,80.8175,16.5 +2016-09-25 00:47:00,19.9262,80.9125,16.49 +2016-09-25 01:02:00,18.235,81.0175,16.46 +2016-09-25 01:17:00,17.0563,81.0825,16.41 +2016-09-25 01:32:00,16.6762,81.18,16.36 +2016-09-25 01:47:00,16.6813,81.2025,16.32 +2016-09-25 02:02:00,15.9062,81.25,16.32 +2016-09-25 02:17:00,19.2475,81.2375,16.31 +2016-09-25 02:32:00,18.9175,81.2375,16.33 +2016-09-25 02:47:00,19.1975,81.235,16.33 +2016-09-25 03:02:00,18.1888,81.175,16.34 +2016-09-25 03:17:00,17.4525,81.205,16.36 +2016-09-25 03:32:00,19.4375,81.1275,16.38 +2016-09-25 03:47:00,17.3562,81.115,16.38 +2016-09-25 04:02:00,16.5812,81.0,16.35 +2016-09-25 04:17:00,18.615,81.0075,16.33 +2016-09-25 04:32:00,18.1875,81.0225,16.31 +2016-09-25 04:47:00,15.3162,81.0225,16.26 +2016-09-25 05:02:00,17.1537,81.0225,16.23 +2016-09-25 05:17:00,18.1387,81.1375,16.22 +2016-09-25 05:32:00,17.5025,81.1675,16.21 +2016-09-25 05:47:00,20.1712,81.175,16.19 +2016-09-25 06:02:00,18.4275,81.1975,16.18 +2016-09-25 06:17:00,16.9538,81.1525,16.17 +2016-09-25 06:32:00,16.9075,81.1625,16.16 +2016-09-25 06:47:00,20.795,81.0825,16.16 +2016-09-25 07:02:00,17.205,81.125,16.15 +2016-09-25 07:17:00,17.89,81.26,16.17 +2016-09-25 07:32:00,16.3887,81.2775,16.17 +2016-09-25 07:47:00,18.2363,81.2575,16.18 +2016-09-25 08:02:00,19.835,81.3525,16.19 +2016-09-25 08:17:00,18.2838,81.3825,16.22 +2016-09-25 08:32:00,19.1062,81.4725,16.26 +2016-09-25 08:47:00,16.7687,81.38,16.31 +2016-09-25 09:02:00,17.645,81.455,16.37 +2016-09-25 09:17:00,19.3887,81.435,16.43 +2016-09-25 09:32:00,18.5212,81.365,16.48 +2016-09-25 09:47:00,17.795,81.3525,16.56 +2016-09-25 10:02:00,16.4337,81.4125,16.63 +2016-09-25 10:17:00,17.2012,81.2375,16.71 +2016-09-25 10:32:00,16.7712,81.19,16.81 +2016-09-25 10:47:00,19.4388,81.1225,16.83 +2016-09-25 11:02:00,16.955,81.0775,16.89 +2016-09-25 11:17:00,18.2363,80.9975,16.94 +2016-09-25 11:32:00,17.405,80.895,16.99 +2016-09-25 11:47:00,17.5488,80.8325,17.03 +2016-09-25 12:02:00,17.3012,80.7175,17.07 +2016-09-25 12:17:00,19.2887,80.8425,17.12 +2016-09-25 12:32:00,20.2663,80.8875,17.19 +2016-09-25 12:47:00,19.785,81.045,17.22 +2016-09-25 13:02:00,17.9912,80.9,17.27 +2016-09-25 13:17:00,19.445,80.955,17.28 +2016-09-25 13:32:00,19.1075,80.9725,17.27 +2016-09-25 13:47:00,19.6387,80.97,17.27 +2016-09-25 14:02:00,18.4737,81.01,17.3 +2016-09-25 14:17:00,17.8412,80.94,17.3 +2016-09-25 14:32:00,19.1975,80.8625,17.29 +2016-09-25 14:47:00,18.3325,80.89,17.29 +2016-09-25 15:02:00,17.645,80.8425,17.28 +2016-09-25 15:17:00,18.5238,80.7675,17.27 +2016-09-25 15:32:00,16.1475,80.765,17.27 +2016-09-25 15:47:00,18.4262,80.675,17.25 +2016-09-25 16:02:00,17.9437,80.6825,17.23 +2016-09-25 16:17:00,19.15,80.585,17.23 +2016-09-25 16:32:00,17.5525,80.5775,17.22 +2016-09-25 16:47:00,17.305,80.6,17.2 +2016-09-25 17:02:00,19.2525,80.6725,17.21 +2016-09-25 17:17:00,16.4887,80.7825,17.19 +2016-09-25 17:32:00,19.44,80.84,17.19 +2016-09-25 17:47:00,16.2887,80.8675,17.2 +2016-09-25 18:02:00,19.1975,80.845,17.2 +2016-09-25 18:17:00,18.9112,80.83,17.2 +2016-09-25 18:32:00,17.005,80.775,17.19 +2016-09-25 18:47:00,19.4875,80.7675,17.17 +2016-09-25 19:02:00,18.7712,80.6225,17.14 +2016-09-25 19:17:00,20.7062,80.68,17.1 +2016-09-25 19:32:00,17.5025,80.64,17.07 +2016-09-25 19:47:00,16.6762,80.5625,17.05 +2016-09-25 20:02:00,18.1813,80.5125,17.03 +2016-09-25 20:17:00,16.96,80.49,17.0 +2016-09-25 20:32:00,17.3988,80.4425,16.95 +2016-09-25 20:47:00,16.24,80.39,16.88 +2016-09-25 21:02:00,17.5525,80.3725,16.79 +2016-09-25 21:17:00,19.295,80.365,16.72 +2016-09-25 21:32:00,17.2062,80.4275,16.67 +2016-09-25 21:47:00,18.0912,80.565,16.62 +2016-09-25 22:02:00,18.5212,80.65,16.57 +2016-09-25 22:17:00,18.7663,80.7,16.53 +2016-09-25 22:32:00,18.4725,80.6875,16.49 +2016-09-25 22:47:00,17.9987,80.7225,16.45 +2016-09-25 23:02:00,17.6475,80.7175,16.4 +2016-09-25 23:17:00,19.8363,80.6925,16.38 +2016-09-25 23:32:00,19.4912,80.6625,16.36 +2016-09-25 23:47:00,16.58,80.65,16.35 +2016-09-26 00:02:00,19.5425,80.6325,16.33 +2016-09-26 00:17:00,18.4713,80.5625,16.33 +2016-09-26 00:32:00,17.7412,80.5125,16.32 +2016-09-26 00:47:00,16.7738,80.55,16.32 +2016-09-26 01:02:00,17.79,80.495,16.3 +2016-09-26 01:17:00,19.0587,80.4825,16.31 +2016-09-26 01:32:00,17.2575,80.58,16.33 +2016-09-26 01:47:00,20.61,80.715,16.34 +2016-09-26 02:02:00,17.7425,80.8075,16.36 +2016-09-26 02:17:00,16.7725,80.7775,16.36 +2016-09-26 02:32:00,16.82,80.8525,16.36 +2016-09-26 02:47:00,18.2387,80.835,16.36 +2016-09-26 03:02:00,18.5675,80.8775,16.37 +2016-09-26 03:17:00,18.5687,80.915,16.33 +2016-09-26 03:32:00,18.235,80.9125,16.32 +2016-09-26 03:47:00,20.0713,80.8925,16.33 +2016-09-26 04:02:00,16.1413,80.82,16.35 +2016-09-26 04:17:00,20.365,80.835,16.38 +2016-09-26 04:32:00,19.9287,80.8375,16.42 +2016-09-26 04:47:00,19.8838,80.8025,16.46 +2016-09-26 05:02:00,17.7412,80.7775,16.49 +2016-09-26 05:17:00,19.4388,80.83,16.52 +2016-09-26 05:32:00,19.5888,80.8525,16.54 +2016-09-26 05:47:00,15.0225,80.82,16.55 +2016-09-26 06:02:00,18.2825,80.8475,16.54 +2016-09-26 06:17:00,17.8438,80.84,16.56 +2016-09-26 06:32:00,18.285,80.905,16.56 +2016-09-26 06:47:00,18.3775,80.9525,16.55 +2016-09-26 07:02:00,18.47,80.9125,16.52 +2016-09-26 07:17:00,17.9912,80.83,16.53 +2016-09-26 07:32:00,18.1875,80.9025,16.55 +2016-09-26 07:47:00,18.0875,80.87,16.58 +2016-09-26 08:02:00,18.6637,80.855,16.6 +2016-09-26 08:17:00,19.0612,80.8875,16.62 +2016-09-26 08:32:00,17.8913,80.8825,16.63 +2016-09-26 08:47:00,17.5,81.045,16.65 +2016-09-26 09:02:00,18.2838,81.3225,16.69 +2016-09-26 09:17:00,18.085,81.575,16.72 +2016-09-26 09:32:00,17.0987,81.81,16.74 +2016-09-26 09:47:00,15.9962,82.0325,16.9 +2016-09-26 10:02:00,15.8562,82.115,17.09 +2016-09-26 10:17:00,18.135,82.19,17.25 +2016-09-26 10:32:00,16.2412,82.1775,17.34 +2016-09-26 10:47:00,17.005,82.115,17.37 +2016-09-26 11:02:00,20.0713,82.045,17.42 +2016-09-26 11:17:00,16.53,81.87,17.45 +2016-09-26 11:32:00,17.45,81.655,17.51 +2016-09-26 11:47:00,18.5675,81.735,17.52 +2016-09-26 12:02:00,18.6675,81.705,17.51 +2016-09-26 12:17:00,18.425,81.6175,17.43 +2016-09-26 12:32:00,18.9575,81.5925,17.38 +2016-09-26 12:47:00,17.7425,81.71,17.3 +2016-09-26 13:02:00,17.84,81.5625,17.29 +2016-09-26 13:17:00,17.2038,81.5325,17.25 +2016-09-26 13:32:00,17.99,81.615,17.24 +2016-09-26 13:47:00,19.0088,81.67,17.26 +2016-09-26 14:02:00,19.7862,81.8025,17.25 +2016-09-26 14:17:00,19.4925,81.945,17.24 +2016-09-26 14:32:00,16.0437,82.145,17.23 +2016-09-26 14:47:00,16.8138,82.3375,17.26 +2016-09-26 15:02:00,19.0575,82.5175,17.29 +2016-09-26 15:17:00,18.6175,82.775,17.27 +2016-09-26 15:32:00,15.5062,82.86,17.24 +2016-09-26 15:47:00,18.1375,82.9075,17.23 +2016-09-26 16:02:00,19.155,82.8975,17.22 +2016-09-26 16:17:00,20.0725,82.7875,17.19 +2016-09-26 16:32:00,19.2462,82.6875,17.18 +2016-09-26 16:47:00,15.81,82.5925,17.17 +2016-09-26 17:02:00,16.4362,82.37,17.15 +2016-09-26 17:17:00,17.8412,82.255,17.12 +2016-09-26 17:32:00,17.6912,82.175,17.1 +2016-09-26 17:47:00,16.8213,82.045,17.08 +2016-09-26 18:02:00,18.0413,81.96,17.06 +2016-09-26 18:17:00,18.3763,81.8475,17.03 +2016-09-26 18:32:00,18.235,81.6675,17.0 +2016-09-26 18:47:00,18.09,81.4275,17.0 +2016-09-26 19:02:00,16.14,81.19,16.99 +2016-09-26 19:17:00,18.3763,81.0175,16.98 +2016-09-26 19:32:00,17.0075,80.76,16.98 +2016-09-26 19:47:00,20.0238,80.5275,16.97 +2016-09-26 20:02:00,17.5088,80.355,16.94 +2016-09-26 20:17:00,17.2038,80.25,16.93 +2016-09-26 20:32:00,17.7425,80.1375,16.92 +2016-09-26 20:47:00,18.1362,80.04,16.9 +2016-09-26 21:02:00,17.055,79.94,16.87 +2016-09-26 21:17:00,14.9725,79.795,16.85 +2016-09-26 21:32:00,17.7475,79.6925,16.82 +2016-09-26 21:47:00,15.9538,79.5825,16.77 +2016-09-26 22:02:00,16.3337,79.4375,16.73 +2016-09-26 22:17:00,17.4487,79.2975,16.7 +2016-09-26 22:32:00,17.6437,79.155,16.67 +2016-09-26 22:47:00,18.7175,79.0,16.65 +2016-09-26 23:02:00,17.0512,78.8925,16.65 +2016-09-26 23:17:00,19.2475,78.85,16.65 +2016-09-26 23:32:00,17.745,78.7775,16.62 +2016-09-26 23:47:00,18.9175,78.825,16.59 +2016-09-27 00:02:00,18.4238,78.79,16.57 +2016-09-27 00:17:00,16.7275,78.8075,16.54 +2016-09-27 00:32:00,19.4375,78.6875,16.52 +2016-09-27 00:47:00,18.4238,78.655,16.48 +2016-09-27 01:02:00,19.4375,78.5625,16.46 +2016-09-27 01:17:00,18.915,78.515,16.45 +2016-09-27 01:32:00,18.09,78.4225,16.44 +2016-09-27 01:47:00,16.6775,78.4025,16.42 +2016-09-27 02:02:00,18.4713,78.3325,16.42 +2016-09-27 02:17:00,19.2937,78.4225,16.37 +2016-09-27 02:32:00,15.9975,78.4525,16.34 +2016-09-27 02:47:00,17.9938,78.515,16.32 +2016-09-27 03:02:00,18.3763,78.4825,16.29 +2016-09-27 03:17:00,17.01,78.355,16.27 +2016-09-27 03:32:00,16.82,78.2275,16.26 +2016-09-27 03:47:00,18.5175,78.095,16.29 +2016-09-27 04:02:00,19.1987,78.015,16.3 +2016-09-27 04:17:00,18.9112,77.905,16.33 +2016-09-27 04:32:00,18.865,77.8075,16.35 +2016-09-27 04:47:00,19.1975,77.8025,16.36 +2016-09-27 05:02:00,18.6637,77.6675,16.39 +2016-09-27 05:17:00,17.0587,77.66,16.41 +2016-09-27 05:32:00,17.2575,77.6,16.42 +2016-09-27 05:47:00,16.96,77.5475,16.45 +2016-09-27 06:02:00,18.5662,77.4575,16.43 +2016-09-27 06:17:00,17.2087,77.43,16.42 +2016-09-27 06:32:00,19.5425,77.345,16.41 +2016-09-27 06:47:00,16.7725,77.3175,16.37 +2016-09-27 07:02:00,16.29,77.2175,16.36 +2016-09-27 07:17:00,17.555,77.205,16.36 +2016-09-27 07:32:00,17.4013,77.2175,16.38 +2016-09-27 07:47:00,15.61,77.28,16.36 +2016-09-27 08:02:00,18.9137,77.385,16.35 +2016-09-27 08:17:00,19.3887,77.4325,16.33 +2016-09-27 08:32:00,17.8388,77.5775,16.35 +2016-09-27 08:47:00,17.4075,77.56,16.41 +2016-09-27 09:02:00,16.2438,77.54,16.46 +2016-09-27 09:17:00,14.2962,77.505,16.54 +2016-09-27 09:32:00,16.1375,77.505,16.64 +2016-09-27 09:47:00,16.8613,77.515,16.77 +2016-09-27 10:02:00,18.185,77.5725,16.85 +2016-09-27 10:17:00,19.49,77.65,16.92 +2016-09-27 10:32:00,17.5987,77.67,17.02 +2016-09-27 10:47:00,18.96,77.7125,17.1 +2016-09-27 11:02:00,20.0275,77.7525,17.15 +2016-09-27 11:17:00,18.1362,77.825,17.22 +2016-09-27 11:32:00,16.6263,77.84,17.22 +2016-09-27 11:47:00,15.805,77.7775,17.18 +2016-09-27 12:02:00,17.9437,77.8175,17.24 +2016-09-27 12:17:00,17.255,77.855,17.33 +2016-09-27 12:32:00,18.2825,77.8675,17.36 +2016-09-27 12:47:00,19.79,77.8875,17.4 +2016-09-27 13:02:00,19.0137,77.9275,17.43 +2016-09-27 13:17:00,17.8425,78.045,17.48 +2016-09-27 13:32:00,18.0888,78.065,17.46 +2016-09-27 13:47:00,17.6937,78.1175,17.47 +2016-09-27 14:02:00,17.3037,78.07,17.46 +2016-09-27 14:17:00,18.2337,78.0825,17.41 +2016-09-27 14:32:00,18.0425,78.075,17.39 +2016-09-27 14:47:00,17.3575,77.9575,17.38 +2016-09-27 15:02:00,17.155,77.885,17.37 +2016-09-27 15:17:00,18.4737,77.825,17.37 +2016-09-27 15:32:00,19.0137,77.79,17.39 +2016-09-27 15:47:00,18.5225,77.845,17.41 +2016-09-27 16:02:00,18.62,77.895,17.4 +2016-09-27 16:17:00,18.285,77.955,17.39 +2016-09-27 16:32:00,17.7475,77.99,17.37 +2016-09-27 16:47:00,20.3213,77.995,17.35 +2016-09-27 17:02:00,16.8175,77.9525,17.33 +2016-09-27 17:17:00,20.89,77.9225,17.3 +2016-09-27 17:32:00,15.8587,77.8425,17.29 +2016-09-27 17:47:00,15.51,77.8,17.27 +2016-09-27 18:02:00,20.2188,77.725,17.25 +2016-09-27 18:17:00,19.6375,77.645,17.26 +2016-09-27 18:32:00,17.355,77.605,17.27 +2016-09-27 18:47:00,18.5212,77.6175,17.26 +2016-09-27 19:02:00,17.7925,77.6775,17.24 +2016-09-27 19:17:00,17.055,77.7375,17.23 +2016-09-27 19:32:00,16.0462,77.7325,17.22 +2016-09-27 19:47:00,17.9925,77.7425,17.21 +2016-09-27 20:02:00,18.38,77.695,17.2 +2016-09-27 20:17:00,16.5837,77.6925,17.19 +2016-09-27 20:32:00,18.575,77.615,17.16 +2016-09-27 20:47:00,18.0437,77.5925,17.15 +2016-09-27 21:02:00,18.4275,77.5275,17.11 +2016-09-27 21:17:00,16.2875,77.465,17.09 +2016-09-27 21:32:00,20.025,77.5075,17.05 +2016-09-27 21:47:00,16.5312,77.545,17.02 +2016-09-27 22:02:00,18.6663,77.6125,16.99 +2016-09-27 22:17:00,18.1888,77.6425,16.94 +2016-09-27 22:32:00,17.6012,77.695,16.91 +2016-09-27 22:47:00,17.255,77.685,16.89 +2016-09-27 23:02:00,18.6188,77.675,16.88 +2016-09-27 23:17:00,17.6975,77.625,16.87 +2016-09-27 23:32:00,17.2075,77.545,16.85 +2016-09-27 23:47:00,18.235,77.49,16.84 +2016-09-28 00:02:00,18.5725,77.4575,16.84 +2016-09-28 00:17:00,17.6513,77.465,16.83 +2016-09-28 00:32:00,15.7175,77.485,16.83 +2016-09-28 00:47:00,16.73,77.5275,16.81 +2016-09-28 01:02:00,17.155,77.5625,16.8 +2016-09-28 01:17:00,19.3463,77.6175,16.77 +2016-09-28 01:32:00,17.5987,77.6275,16.74 +2016-09-28 01:47:00,20.3675,77.5725,16.74 +2016-09-28 02:02:00,18.14,77.57,16.75 +2016-09-28 02:17:00,14.9788,77.5575,16.75 +2016-09-28 02:32:00,17.5525,77.465,16.76 +2016-09-28 02:47:00,18.04,77.42,16.75 +2016-09-28 03:02:00,16.29,77.32,16.72 +2016-09-28 03:17:00,19.7862,77.3275,16.7 +2016-09-28 03:32:00,19.01,77.2425,16.67 +2016-09-28 03:47:00,19.5875,77.2825,16.68 +2016-09-28 04:02:00,18.5713,77.3775,16.7 +2016-09-28 04:17:00,19.1562,77.345,16.71 +2016-09-28 04:32:00,17.6413,77.39,16.71 +2016-09-28 04:47:00,17.8925,77.37,16.72 +2016-09-28 05:02:00,17.0563,77.31,16.72 +2016-09-28 05:17:00,18.57,77.2775,16.71 +2016-09-28 05:32:00,18.7213,77.2275,16.69 +2016-09-28 05:47:00,18.8187,77.1725,16.66 +2016-09-28 06:02:00,17.6537,77.14,16.62 +2016-09-28 06:17:00,18.57,77.1675,16.57 +2016-09-28 06:32:00,17.7925,77.195,16.52 +2016-09-28 06:47:00,18.2387,77.19,16.49 +2016-09-28 07:02:00,18.1338,77.17,16.47 +2016-09-28 07:17:00,17.1025,77.135,16.48 +2016-09-28 07:32:00,17.5037,77.155,16.49 +2016-09-28 07:47:00,16.865,77.195,16.5 +2016-09-28 08:02:00,18.1875,77.2725,16.53 +2016-09-28 08:17:00,15.46,77.38,16.56 +2016-09-28 08:32:00,18.865,77.3375,16.6 +2016-09-28 08:47:00,17.2562,77.315,16.67 +2016-09-28 09:02:00,19.0612,77.4075,16.73 +2016-09-28 09:17:00,17.9425,77.185,16.77 +2016-09-28 09:32:00,17.5537,77.1725,16.76 +2016-09-28 09:47:00,14.9287,77.325,16.76 +2016-09-28 10:02:00,17.4538,77.285,16.75 +2016-09-28 10:17:00,17.8412,77.415,16.74 +2016-09-28 10:32:00,20.0238,77.4825,16.75 +2016-09-28 10:47:00,18.235,77.5925,16.77 +2016-09-28 11:02:00,18.8138,77.625,16.8 +2016-09-28 11:17:00,18.0888,77.7275,16.84 +2016-09-28 11:32:00,16.485,77.605,16.87 +2016-09-28 11:47:00,15.6125,77.575,16.91 +2016-09-28 12:02:00,19.5413,77.455,16.98 +2016-09-28 12:17:00,18.8175,77.465,17.02 +2016-09-28 12:32:00,17.89,77.25,17.06 +2016-09-28 12:47:00,17.8412,77.22,17.11 +2016-09-28 13:02:00,19.3463,77.3075,17.15 +2016-09-28 13:17:00,19.2925,77.375,17.14 +2016-09-28 13:32:00,17.9938,77.38,17.13 +2016-09-28 13:47:00,18.4775,77.4225,17.14 +2016-09-28 14:02:00,17.5963,77.4275,17.15 +2016-09-28 14:17:00,17.555,77.4225,17.17 +2016-09-28 14:32:00,17.0075,77.3575,17.16 +2016-09-28 14:47:00,19.5437,77.36,17.19 +2016-09-28 15:02:00,16.7262,77.3425,17.21 +2016-09-28 15:17:00,18.7225,77.2025,17.25 +2016-09-28 15:32:00,17.84,77.0425,17.29 +2016-09-28 15:47:00,16.485,77.1075,17.31 +2016-09-28 16:02:00,16.725,77.1975,17.29 +2016-09-28 16:17:00,20.4625,77.21,17.25 +2016-09-28 16:32:00,16.5762,77.2625,17.2 +2016-09-28 16:47:00,16.7225,77.2675,17.16 +2016-09-28 17:02:00,16.4812,77.2175,17.12 +2016-09-28 17:17:00,16.9137,77.185,17.09 +2016-09-28 17:32:00,18.425,77.105,17.05 +2016-09-28 17:47:00,19.6862,77.05,17.02 +2016-09-28 18:02:00,18.0375,76.9675,16.97 +2016-09-28 18:17:00,17.9912,76.9925,16.92 +2016-09-28 18:32:00,16.6287,77.03,16.87 +2016-09-28 18:47:00,17.35,77.1125,16.84 +2016-09-28 19:02:00,17.5075,77.095,16.81 +2016-09-28 19:17:00,17.0563,77.1375,16.79 +2016-09-28 19:32:00,16.29,77.1525,16.77 +2016-09-28 19:47:00,18.2825,77.105,16.75 +2016-09-28 20:02:00,19.7337,76.9725,16.74 +2016-09-28 20:17:00,16.72,76.895,16.72 +2016-09-28 20:32:00,20.5575,76.8225,16.7 +2016-09-28 20:47:00,17.9875,76.6675,16.69 +2016-09-28 21:02:00,19.3438,76.685,16.66 +2016-09-28 21:17:00,17.0563,76.545,16.63 +2016-09-28 21:32:00,16.86,76.455,16.61 +2016-09-28 21:47:00,16.9088,76.5225,16.61 +2016-09-28 22:02:00,18.8625,76.3975,16.61 +2016-09-28 22:17:00,17.5025,76.3625,16.59 +2016-09-28 22:32:00,17.1537,76.2275,16.57 +2016-09-28 22:47:00,19.055,76.045,16.57 +2016-09-28 23:02:00,18.4225,75.89,16.56 +2016-09-28 23:17:00,17.4575,75.7625,16.55 +2016-09-28 23:32:00,17.4525,75.5425,16.56 +2016-09-28 23:47:00,18.9075,75.36,16.58 +2016-09-29 00:02:00,17.2062,75.28,16.59 +2016-09-29 00:17:00,16.9538,75.1125,16.58 +2016-09-29 00:32:00,18.765,74.955,16.55 +2016-09-29 00:47:00,17.1038,74.7325,16.52 +2016-09-29 01:02:00,19.15,74.5,16.5 +2016-09-29 01:17:00,19.1038,74.2375,16.48 +2016-09-29 01:32:00,18.8112,73.94,16.48 +2016-09-29 01:47:00,19.5863,73.7075,16.47 +2016-09-29 02:02:00,17.8925,73.4325,16.45 +2016-09-29 02:17:00,19.5875,73.2025,16.44 +2016-09-29 02:32:00,18.7675,72.97,16.43 +2016-09-29 02:47:00,18.285,72.79,16.44 +2016-09-29 03:02:00,19.0137,72.6425,16.45 +2016-09-29 03:17:00,19.4388,72.5275,16.44 +2016-09-29 03:32:00,17.4013,72.2675,16.44 +2016-09-29 03:47:00,17.7412,72.075,16.43 +2016-09-29 04:02:00,15.9013,71.86,16.4 +2016-09-29 04:17:00,16.7237,71.7225,16.42 +2016-09-29 04:32:00,18.5187,71.545,16.41 +2016-09-29 04:47:00,17.1087,71.32,16.39 +2016-09-29 05:02:00,17.6975,71.15,16.38 +2016-09-29 05:17:00,18.6137,71.15,16.37 +2016-09-29 05:32:00,17.8937,71.14,16.37 +2016-09-29 05:47:00,18.135,71.095,16.37 +2016-09-29 06:02:00,17.2025,71.1125,16.41 +2016-09-29 06:17:00,18.3312,71.1,16.43 +2016-09-29 06:32:00,18.3775,71.005,16.51 +2016-09-29 06:47:00,18.0938,71.0275,16.63 +2016-09-29 07:02:00,17.6925,70.94,16.79 +2016-09-29 07:17:00,17.1537,70.86,16.84 +2016-09-29 07:32:00,18.5687,70.7775,16.93 +2016-09-29 07:47:00,18.4688,70.775,16.92 +2016-09-29 08:02:00,15.22,70.615,16.9 +2016-09-29 08:17:00,16.4337,70.585,16.89 +2016-09-29 08:32:00,19.79,70.535,16.92 +2016-09-29 08:47:00,19.3463,70.6975,16.97 +2016-09-29 09:02:00,17.89,70.78,17.02 +2016-09-29 09:17:00,16.1425,70.885,17.12 +2016-09-29 09:32:00,20.8412,70.935,17.16 +2016-09-29 09:47:00,20.9388,70.975,17.2 +2016-09-29 10:02:00,17.1012,70.98,17.31 +2016-09-29 10:17:00,20.4675,71.12,17.27 +2016-09-29 10:32:00,16.775,71.0875,17.41 +2016-09-29 10:47:00,19.5875,71.2175,17.38 +2016-09-29 11:02:00,18.47,71.315,17.29 +2016-09-29 11:17:00,20.7012,71.4675,17.34 +2016-09-29 11:32:00,19.2937,71.575,17.3 +2016-09-29 11:47:00,17.8887,71.775,17.31 +2016-09-29 12:02:00,19.0112,71.9,17.27 +2016-09-29 12:17:00,17.895,71.8975,17.32 +2016-09-29 12:32:00,18.3337,72.0375,17.36 +2016-09-29 12:47:00,19.7337,72.0525,17.43 +2016-09-29 13:02:00,18.0413,72.0575,17.48 +2016-09-29 13:17:00,17.79,72.2025,17.52 +2016-09-29 13:32:00,17.6425,72.35,17.52 +2016-09-29 13:47:00,18.5675,72.355,17.45 +2016-09-29 14:02:00,18.8637,72.56,17.45 +2016-09-29 14:17:00,17.2075,72.62,17.37 +2016-09-29 14:32:00,18.1413,72.785,17.34 +2016-09-29 14:47:00,17.2038,72.755,17.32 +2016-09-29 15:02:00,17.5525,72.735,17.28 +2016-09-29 15:17:00,17.155,72.8225,17.27 +2016-09-29 15:32:00,18.7675,72.89,17.26 +2016-09-29 15:47:00,19.3913,72.97,17.26 +2016-09-29 16:02:00,17.65,73.12,17.29 +2016-09-29 16:17:00,19.9313,73.215,17.33 +2016-09-29 16:32:00,17.2075,73.3625,17.39 +2016-09-29 16:47:00,18.3787,73.485,17.42 +2016-09-29 17:02:00,17.1525,73.595,17.45 +2016-09-29 17:17:00,17.89,73.7425,17.46 +2016-09-29 17:32:00,18.8637,73.7975,17.44 +2016-09-29 17:47:00,17.9887,73.9,17.4 +2016-09-29 18:02:00,18.5725,73.9925,17.38 +2016-09-29 18:17:00,19.3475,74.035,17.38 +2016-09-29 18:32:00,18.135,74.125,17.39 +2016-09-29 18:47:00,20.3637,74.2575,17.4 +2016-09-29 19:02:00,20.5625,74.46,17.4 +2016-09-29 19:17:00,18.52,74.58,17.39 +2016-09-29 19:32:00,19.3438,74.76,17.39 +2016-09-29 19:47:00,17.2087,74.895,17.4 +2016-09-29 20:02:00,18.1937,74.7875,17.42 +2016-09-29 20:17:00,18.52,74.9175,17.43 +2016-09-29 20:32:00,18.915,75.0325,17.45 +2016-09-29 20:47:00,21.6825,75.1025,17.45 +2016-09-29 21:02:00,17.405,75.08,17.46 +2016-09-29 21:17:00,18.865,75.135,17.5 +2016-09-29 21:32:00,16.1413,75.1225,17.52 +2016-09-29 21:47:00,19.9325,75.18,17.51 +2016-09-29 22:02:00,17.255,75.295,17.52 +2016-09-29 22:17:00,16.6787,75.3225,17.5 +2016-09-29 22:32:00,16.0013,75.4775,17.48 +2016-09-29 22:47:00,16.24,75.4625,17.47 +2016-09-29 23:02:00,19.1987,75.4925,17.46 +2016-09-29 23:17:00,14.8275,75.525,17.48 +2016-09-29 23:32:00,18.3363,75.5825,17.51 +2016-09-29 23:47:00,17.9475,75.58,17.5 +2016-09-30 00:02:00,16.6312,75.6175,17.51 +2016-09-30 00:17:00,15.4613,75.545,17.53 +2016-09-30 00:32:00,18.3775,75.5625,17.5 +2016-09-30 00:47:00,17.745,75.5875,17.5 +2016-09-30 01:02:00,17.2988,75.8025,17.49 +2016-09-30 01:17:00,19.9788,75.8225,17.47 +2016-09-30 01:32:00,18.1437,75.8625,17.43 +2016-09-30 01:47:00,18.575,75.945,17.42 +2016-09-30 02:02:00,18.4713,75.84,17.4 +2016-09-30 02:17:00,16.5338,75.8975,17.4 +2016-09-30 02:32:00,17.1562,75.84,17.4 +2016-09-30 02:47:00,15.5112,75.7625,17.4 +2016-09-30 03:02:00,19.9287,75.745,17.4 +2016-09-30 03:17:00,18.9613,75.69,17.41 +2016-09-30 03:32:00,19.2975,75.6775,17.42 +2016-09-30 03:47:00,17.9975,75.7775,17.5 +2016-09-30 04:02:00,16.91,75.8475,17.54 +2016-09-30 04:17:00,18.8637,75.9075,17.58 +2016-09-30 04:32:00,17.2062,75.9525,17.61 +2016-09-30 04:47:00,19.59,76.04,17.62 +2016-09-30 05:02:00,16.725,76.0275,17.59 +2016-09-30 05:17:00,19.1575,76.0025,17.55 +2016-09-30 05:32:00,16.9587,75.99,17.53 +2016-09-30 05:47:00,18.285,75.99,17.5 +2016-09-30 06:02:00,18.2838,75.9375,17.46 +2016-09-30 06:17:00,19.0575,75.9275,17.42 +2016-09-30 06:32:00,20.1712,75.8125,17.4 +2016-09-30 06:47:00,16.9125,75.6675,17.41 +2016-09-30 07:02:00,17.6462,75.5825,17.43 +2016-09-30 07:17:00,18.0925,75.445,17.39 +2016-09-30 07:32:00,16.63,75.3075,17.37 +2016-09-30 07:47:00,18.375,75.2325,17.36 +2016-09-30 08:02:00,18.4225,75.1475,17.34 +2016-09-30 08:17:00,18.865,75.1225,17.34 +2016-09-30 08:32:00,16.2875,75.2175,17.3 +2016-09-30 08:47:00,16.625,75.3575,17.27 +2016-09-30 09:02:00,18.8625,75.4475,17.22 +2016-09-30 09:17:00,18.5212,75.6175,17.18 +2016-09-30 09:32:00,18.3337,75.6075,17.16 +2016-09-30 09:47:00,15.7575,75.7525,17.12 +2016-09-30 10:02:00,17.355,75.8225,17.09 +2016-09-30 10:17:00,17.2562,75.8,17.07 +2016-09-30 10:32:00,19.1062,75.835,17.14 +2016-09-30 10:47:00,19.0125,75.87,17.24 +2016-09-30 11:02:00,16.4388,75.7525,17.38 +2016-09-30 11:17:00,17.2575,75.81,17.42 +2016-09-30 11:32:00,15.5587,75.84,17.4 +2016-09-30 11:47:00,18.915,75.9425,17.35 +2016-09-30 12:02:00,17.5013,75.955,17.3 +2016-09-30 12:17:00,18.9613,76.0225,17.27 +2016-09-30 12:32:00,19.2937,76.125,17.27 +2016-09-30 12:47:00,17.0975,76.095,17.33 +2016-09-30 13:02:00,18.2363,76.1325,17.39 +2016-09-30 13:17:00,17.6937,76.1925,17.39 +2016-09-30 13:32:00,16.095,76.33,17.37 +2016-09-30 13:47:00,17.6437,76.3975,17.35 +2016-09-30 14:02:00,15.555,76.5125,17.37 +2016-09-30 14:17:00,18.6175,76.6825,17.38 +2016-09-30 14:32:00,14.5312,76.8425,17.42 +2016-09-30 14:47:00,19.7862,77.0375,17.45 +2016-09-30 15:02:00,18.2875,77.1475,17.49 +2016-09-30 15:17:00,16.8637,77.2875,17.52 +2016-09-30 15:32:00,17.4025,77.2925,17.54 +2016-09-30 15:47:00,16.9575,77.325,17.53 +2016-09-30 16:02:00,18.765,77.3075,17.51 +2016-09-30 16:17:00,16.5325,77.21,17.5 +2016-09-30 16:32:00,19.785,77.055,17.49 +2016-09-30 16:47:00,18.09,76.93,17.48 +2016-09-30 17:02:00,18.77,76.81,17.48 +2016-09-30 17:17:00,15.3625,76.735,17.48 +2016-09-30 17:32:00,17.0025,76.64,17.47 +2016-09-30 17:47:00,18.9112,76.635,17.47 +2016-09-30 18:02:00,18.2838,76.5975,17.47 +2016-09-30 18:17:00,18.0387,76.505,17.48 +2016-09-30 18:32:00,19.8812,76.39,17.48 +2016-09-30 18:47:00,18.475,76.3125,17.46 +2016-09-30 19:02:00,18.2412,76.1325,17.46 +2016-09-30 19:17:00,17.745,75.9925,17.43 +2016-09-30 19:32:00,17.8913,75.8875,17.42 +2016-09-30 19:47:00,16.6725,75.7325,17.4 +2016-09-30 20:02:00,19.0563,75.63,17.39 +2016-09-30 20:17:00,18.9613,75.515,17.36 +2016-09-30 20:32:00,16.7312,75.425,17.32 +2016-09-30 20:47:00,17.1575,75.435,17.28 +2016-09-30 21:02:00,19.8838,75.44,17.23 +2016-09-30 21:17:00,18.7162,75.41,17.17 +2016-09-30 21:32:00,19.8825,75.3675,17.13 +2016-09-30 21:47:00,18.4262,75.305,17.08 +2016-09-30 22:02:00,18.815,75.3275,17.05 +2016-09-30 22:17:00,17.8913,75.215,17.05 +2016-09-30 22:32:00,18.6188,75.1325,17.04 +2016-09-30 22:47:00,16.9638,75.125,17.04 +2016-09-30 23:02:00,17.1038,75.065,17.06 +2016-09-30 23:17:00,17.8913,74.9875,17.03 +2016-09-30 23:32:00,18.285,75.0475,17.02 +2016-09-30 23:47:00,17.5037,75.045,16.97 +2016-10-01 00:02:00,19.1525,75.1,16.94 +2016-10-01 00:17:00,17.6987,75.13,16.9 +2016-10-01 00:32:00,18.38,75.1125,16.85 +2016-10-01 00:47:00,15.075,75.095,16.79 +2016-10-01 01:02:00,18.865,75.0675,16.73 +2016-10-01 01:17:00,18.4737,75.035,16.67 +2016-10-01 01:32:00,19.5912,74.985,16.62 +2016-10-01 01:47:00,18.915,74.935,16.61 +2016-10-01 02:02:00,17.2537,74.9525,16.62 +2016-10-01 02:17:00,17.7487,74.93,16.6 +2016-10-01 02:32:00,17.7937,75.01,16.59 +2016-10-01 02:47:00,16.7687,75.08,16.59 +2016-10-01 03:02:00,18.3775,75.1625,16.59 +2016-10-01 03:17:00,16.5325,75.16,16.6 +2016-10-01 03:32:00,16.5788,75.185,16.58 +2016-10-01 03:47:00,17.5512,75.175,16.59 +2016-10-01 04:02:00,18.14,75.11,16.59 +2016-10-01 04:17:00,18.3312,75.12,16.58 +2016-10-01 04:32:00,18.6725,75.105,16.57 +2016-10-01 04:47:00,18.7162,74.99,16.55 +2016-10-01 05:02:00,19.6875,75.06,16.56 +2016-10-01 05:17:00,19.1963,75.095,16.57 +2016-10-01 05:32:00,19.5888,75.165,16.59 +2016-10-01 05:47:00,18.715,75.2875,16.58 +2016-10-01 06:02:00,20.7937,75.36,16.57 +2016-10-01 06:17:00,17.9962,75.4275,16.56 +2016-10-01 06:32:00,17.6912,75.5025,16.55 +2016-10-01 06:47:00,17.3012,75.5025,16.53 +2016-10-01 07:02:00,18.7637,75.55,16.52 +2016-10-01 07:17:00,18.9575,75.55,16.5 +2016-10-01 07:32:00,20.505,75.535,16.47 +2016-10-01 07:47:00,18.9575,75.7675,16.44 +2016-10-01 08:02:00,16.095,75.895,16.39 +2016-10-01 08:17:00,19.2475,76.0775,16.35 +2016-10-01 08:32:00,18.57,76.185,16.31 +2016-10-01 08:47:00,19.4425,76.3225,16.26 +2016-10-01 09:02:00,17.69,76.3275,16.23 +2016-10-01 09:17:00,18.6175,76.335,16.2 +2016-10-01 09:32:00,16.6725,76.255,16.17 +2016-10-01 09:47:00,18.91,76.2375,16.16 +2016-10-01 10:02:00,19.8375,76.2425,16.15 +2016-10-01 10:17:00,17.5512,76.3025,16.16 +2016-10-01 10:32:00,18.5187,76.3425,16.17 +2016-10-01 10:47:00,17.5975,76.4675,16.2 +2016-10-01 11:02:00,20.2675,76.52,16.24 +2016-10-01 11:17:00,19.8825,76.5875,16.26 +2016-10-01 11:32:00,20.2225,76.555,16.27 +2016-10-01 11:47:00,18.0437,76.5925,16.27 +2016-10-01 12:02:00,17.405,76.55,16.28 +2016-10-01 12:17:00,17.105,76.485,16.3 +2016-10-01 12:32:00,19.8363,76.445,16.32 +2016-10-01 12:47:00,20.025,76.3475,16.34 +2016-10-01 13:02:00,17.8913,76.32,16.35 +2016-10-01 13:17:00,16.4362,76.345,16.35 +2016-10-01 13:32:00,20.7012,76.3375,16.36 +2016-10-01 13:47:00,16.295,76.39,16.36 +2016-10-01 14:02:00,21.2412,76.435,16.36 +2016-10-01 14:17:00,18.8637,76.4375,16.36 +2016-10-01 14:32:00,17.8887,76.4525,16.37 +2016-10-01 14:47:00,17.9425,76.3625,16.37 +2016-10-01 15:02:00,18.0375,76.29,16.39 +2016-10-01 15:17:00,18.5163,76.255,16.4 +2016-10-01 15:32:00,18.335,76.1875,16.39 +2016-10-01 15:47:00,16.9125,76.1,16.39 +2016-10-01 16:02:00,20.32,76.0425,16.39 +2016-10-01 16:17:00,18.0888,76.0675,16.39 +2016-10-01 16:32:00,18.2325,76.0775,16.38 +2016-10-01 16:47:00,17.9912,76.1175,16.38 +2016-10-01 17:02:00,18.3337,76.1225,16.38 +2016-10-01 17:17:00,16.7237,76.125,16.37 +2016-10-01 17:32:00,19.4425,76.1075,16.34 +2016-10-01 17:47:00,19.5888,76.025,16.31 +2016-10-01 18:02:00,19.9275,76.0,16.31 +2016-10-01 18:17:00,18.3763,76.055,16.32 +2016-10-01 18:32:00,20.4125,76.05,16.31 +2016-10-01 18:47:00,16.7213,76.0675,16.28 +2016-10-01 19:02:00,17.9863,76.0475,16.29 +2016-10-01 19:17:00,21.2412,76.0725,16.31 +2016-10-01 19:32:00,17.7962,76.115,16.32 +2016-10-01 19:47:00,17.9412,76.1825,16.35 +2016-10-01 20:02:00,18.235,76.18,16.37 +2016-10-01 20:17:00,17.4512,76.1625,16.4 +2016-10-01 20:32:00,18.1375,76.1325,16.41 +2016-10-01 20:47:00,21.4375,76.1275,16.42 +2016-10-01 21:02:00,16.0938,76.0925,16.44 +2016-10-01 21:17:00,18.72,76.0775,16.45 +2016-10-01 21:32:00,19.5413,76.0375,16.44 +2016-10-01 21:47:00,18.375,76.005,16.43 +2016-10-01 22:02:00,19.3425,76.02,16.41 +2016-10-01 22:17:00,20.84,76.12,16.39 +2016-10-01 22:32:00,17.6937,76.17,16.34 +2016-10-01 22:47:00,18.3763,76.2025,16.31 +2016-10-01 23:02:00,19.3425,76.1575,16.26 +2016-10-01 23:17:00,18.9625,76.195,16.19 +2016-10-01 23:32:00,17.55,76.1575,16.13 +2016-10-01 23:47:00,19.8812,76.1175,16.08 +2016-10-02 00:02:00,18.0863,76.025,16.04 +2016-10-02 00:17:00,18.565,75.9725,16.0 +2016-10-02 00:32:00,18.4212,75.8875,15.97 +2016-10-02 00:47:00,17.4987,75.895,15.96 +2016-10-02 01:02:00,18.3775,75.9175,15.93 +2016-10-02 01:17:00,16.3375,75.9525,15.92 +2016-10-02 01:32:00,19.3913,76.0325,15.91 +2016-10-02 01:47:00,20.7475,76.1375,15.88 +2016-10-02 02:02:00,19.5875,76.1825,15.84 +2016-10-02 02:17:00,19.4362,76.21,15.78 +2016-10-02 02:32:00,21.19,76.1975,15.74 +2016-10-02 02:47:00,17.1537,76.175,15.7 +2016-10-02 03:02:00,16.9625,76.2175,15.65 +2016-10-02 03:17:00,16.5312,76.1875,15.59 +2016-10-02 03:32:00,18.2312,76.1825,15.54 +2016-10-02 03:47:00,17.5475,76.155,15.51 +2016-10-02 04:02:00,18.1813,76.2125,15.47 +2016-10-02 04:17:00,18.42,76.3025,15.44 +2016-10-02 04:32:00,19.3412,76.35,15.39 +2016-10-02 04:47:00,18.9587,76.44,15.32 +2016-10-02 05:02:00,18.3775,76.4525,15.28 +2016-10-02 05:17:00,18.375,76.4475,15.3 +2016-10-02 05:32:00,17.8388,76.42,15.33 +2016-10-02 05:47:00,18.8625,76.445,15.35 +2016-10-02 06:02:00,18.0888,76.455,15.34 +2016-10-02 06:17:00,18.28,76.3525,15.34 +2016-10-02 06:32:00,17.9388,76.345,15.33 +2016-10-02 06:47:00,17.5488,76.3525,15.31 +2016-10-02 07:02:00,19.7337,76.2625,15.3 +2016-10-02 07:17:00,18.6162,76.25,15.29 +2016-10-02 07:32:00,21.5812,76.225,15.28 +2016-10-02 07:47:00,19.3425,76.235,15.27 +2016-10-02 08:02:00,16.7213,76.3075,15.26 +2016-10-02 08:17:00,20.79,76.44,15.28 +2016-10-02 08:32:00,20.8937,76.5575,15.3 +2016-10-02 08:47:00,17.5975,76.725,15.38 +2016-10-02 09:02:00,19.9275,76.8125,15.49 +2016-10-02 09:17:00,17.3487,76.91,15.59 +2016-10-02 09:32:00,18.47,76.9875,15.64 +2016-10-02 09:47:00,19.495,76.99,15.65 +2016-10-02 10:02:00,18.715,77.04,15.66 +2016-10-02 10:17:00,18.4688,76.9675,15.69 +2016-10-02 10:32:00,20.2188,76.96,15.79 +2016-10-02 10:47:00,17.255,77.1175,15.82 +2016-10-02 11:02:00,17.4538,77.06,15.81 +2016-10-02 11:17:00,19.6338,77.0975,15.85 +2016-10-02 11:32:00,17.6425,77.125,15.87 +2016-10-02 11:47:00,18.375,77.12,15.9 +2016-10-02 12:02:00,19.4925,77.1425,15.89 +2016-10-02 12:17:00,17.9912,77.2275,15.88 +2016-10-02 12:32:00,20.0713,77.31,15.9 +2016-10-02 12:47:00,16.9062,77.3975,15.92 +2016-10-02 13:02:00,18.7625,77.465,15.91 +2016-10-02 13:17:00,16.86,77.525,15.93 +2016-10-02 13:32:00,18.42,77.6225,15.92 +2016-10-02 13:47:00,18.6675,77.615,15.9 +2016-10-02 14:02:00,17.0037,77.5625,15.89 +2016-10-02 14:17:00,17.4512,77.5875,15.85 +2016-10-02 14:32:00,16.1912,77.495,15.81 +2016-10-02 14:47:00,17.0037,77.595,15.75 +2016-10-02 15:02:00,17.35,77.6825,15.71 +2016-10-02 15:17:00,18.465,77.7125,15.68 +2016-10-02 15:32:00,16.4337,77.8975,15.65 +2016-10-02 15:47:00,19.0075,77.8825,15.62 +2016-10-02 16:02:00,18.8112,78.005,15.61 +2016-10-02 16:17:00,17.9912,78.0275,15.6 +2016-10-02 16:32:00,17.305,78.0875,15.59 +2016-10-02 16:47:00,17.7387,78.05,15.58 +2016-10-02 17:02:00,20.4587,78.0675,15.57 +2016-10-02 17:17:00,17.7913,78.055,15.55 +2016-10-02 17:32:00,20.22,78.08,15.54 +2016-10-02 17:47:00,19.1975,78.1825,15.56 +2016-10-02 18:02:00,20.1663,78.285,15.59 +2016-10-02 18:17:00,18.9125,78.3625,15.61 +2016-10-02 18:32:00,17.7412,78.48,15.61 +2016-10-02 18:47:00,16.0925,78.52,15.58 +2016-10-02 19:02:00,18.425,78.6175,15.56 +2016-10-02 19:17:00,19.7325,78.595,15.5 +2016-10-02 19:32:00,18.1338,78.5775,15.46 +2016-10-02 19:47:00,18.2312,78.5475,15.46 +2016-10-02 20:02:00,17.7913,78.58,15.43 +2016-10-02 20:17:00,18.7675,78.505,15.45 +2016-10-02 20:32:00,18.4675,78.49,15.45 +2016-10-02 20:47:00,18.7625,78.5375,15.46 +2016-10-02 21:02:00,18.6137,78.665,15.47 +2016-10-02 21:17:00,17.7387,78.72,15.47 +2016-10-02 21:32:00,17.4025,78.8675,15.45 +2016-10-02 21:47:00,18.04,78.8825,15.45 +2016-10-02 22:02:00,20.7513,78.895,15.44 +2016-10-02 22:17:00,18.5212,78.8825,15.42 +2016-10-02 22:32:00,20.8412,78.81,15.39 +2016-10-02 22:47:00,17.99,78.8275,15.37 +2016-10-02 23:02:00,17.2525,78.77,15.39 +2016-10-02 23:17:00,18.91,78.755,15.39 +2016-10-02 23:32:00,18.3725,78.82,15.41 +2016-10-02 23:47:00,17.0062,78.915,15.38 +2016-10-03 00:02:00,20.27,78.9575,15.39 +2016-10-03 00:17:00,18.5163,79.095,15.4 +2016-10-03 00:32:00,18.4662,79.21,15.43 +2016-10-03 00:47:00,18.1325,79.2625,15.42 +2016-10-03 01:02:00,16.5775,79.2875,15.4 +2016-10-03 01:17:00,20.0175,79.2875,15.38 +2016-10-03 01:32:00,19.4875,79.24,15.38 +2016-10-03 01:47:00,18.4725,79.2725,15.36 +2016-10-03 02:02:00,19.835,79.305,15.35 +2016-10-03 02:17:00,18.9088,79.25,15.34 +2016-10-03 02:32:00,19.1462,79.3,15.34 +2016-10-03 02:47:00,18.2325,79.41,15.37 +2016-10-03 03:02:00,18.91,79.5325,15.4 +2016-10-03 03:17:00,20.165,79.58,15.43 +2016-10-03 03:32:00,17.4512,79.6625,15.45 +2016-10-03 03:47:00,16.2838,79.655,15.46 +2016-10-03 04:02:00,17.05,79.71,15.46 +2016-10-03 04:17:00,19.63,79.6925,15.45 +2016-10-03 04:32:00,18.4175,79.69,15.45 +2016-10-03 04:47:00,18.6113,79.6525,15.44 +2016-10-03 05:02:00,18.1312,79.63,15.42 +2016-10-03 05:17:00,18.0837,79.6525,15.4 +2016-10-03 05:32:00,19.1475,79.72,15.38 +2016-10-03 05:47:00,16.9575,79.815,15.34 +2016-10-03 06:02:00,18.9575,79.9,15.28 +2016-10-03 06:17:00,15.8012,80.0225,15.23 +2016-10-03 06:32:00,19.6375,80.1,15.19 +2016-10-03 06:47:00,18.4675,80.2,15.15 +2016-10-03 07:02:00,19.0987,80.165,15.08 +2016-10-03 07:17:00,17.9362,80.18,15.03 +2016-10-03 07:32:00,17.2012,80.165,14.99 +2016-10-03 07:47:00,16.5812,80.1775,14.93 +2016-10-03 08:02:00,17.5925,80.1775,14.85 +2016-10-03 08:17:00,18.9538,80.2125,14.81 +2016-10-03 08:32:00,19.3388,80.185,14.79 +2016-10-03 08:47:00,19.2387,80.1225,14.77 +2016-10-03 09:02:00,16.23,80.0775,14.78 +2016-10-03 09:17:00,21.58,79.995,14.77 +2016-10-03 09:32:00,19.2875,79.995,14.76 +2016-10-03 09:47:00,17.6387,80.0225,14.76 +2016-10-03 10:02:00,18.8575,80.005,14.76 +2016-10-03 10:17:00,18.1338,80.305,14.78 +2016-10-03 10:32:00,18.6588,81.08,14.81 +2016-10-03 10:47:00,18.9538,82.22,14.81 +2016-10-03 11:02:00,19.7825,83.15,14.85 +2016-10-03 11:17:00,17.6888,83.5775,14.9 +2016-10-03 11:32:00,19.88,83.815,14.96 +2016-10-03 11:47:00,17.7363,83.8675,15.0 +2016-10-03 12:02:00,17.985,83.7825,15.05 +2016-10-03 12:17:00,20.5037,83.625,15.06 +2016-10-03 12:32:00,22.4512,83.425,15.05 +2016-10-03 12:47:00,20.5537,83.2875,15.05 +2016-10-03 13:02:00,21.58,83.1925,15.06 +2016-10-03 13:17:00,20.7925,83.15,15.1 +2016-10-03 13:32:00,18.1312,83.22,15.15 +2016-10-03 13:47:00,19.24,83.305,15.21 +2016-10-03 14:02:00,17.1975,83.3875,15.25 +2016-10-03 14:17:00,19.9662,83.43,15.28 +2016-10-03 14:32:00,22.3075,83.465,15.3 +2016-10-03 14:47:00,17.6862,83.4775,15.31 +2016-10-03 15:02:00,18.7675,83.4175,15.3 +2016-10-03 15:17:00,18.6612,83.385,15.29 +2016-10-03 15:32:00,17.0987,83.305,15.28 +2016-10-03 15:47:00,19.0987,83.3225,15.27 +2016-10-03 16:02:00,18.1312,83.285,15.28 +2016-10-03 16:17:00,18.9062,83.35,15.28 +2016-10-03 16:32:00,18.3262,83.29,15.28 +2016-10-03 16:47:00,19.5362,83.3625,15.28 +2016-10-03 17:02:00,20.2687,83.3425,15.27 +2016-10-03 17:17:00,19.4863,83.265,15.25 +2016-10-03 17:32:00,20.8875,83.2125,15.23 +2016-10-03 17:47:00,19.435,83.1675,15.22 +2016-10-03 18:02:00,20.9825,82.9825,15.22 +2016-10-03 18:17:00,19.7312,82.85,15.19 +2016-10-03 18:32:00,19.8775,82.7175,15.16 +2016-10-03 18:47:00,20.4613,82.6,15.12 +2016-10-03 19:02:00,17.3012,82.6025,15.09 +2016-10-03 19:17:00,17.735,82.505,15.06 +2016-10-03 19:32:00,16.5275,82.5175,15.01 +2016-10-03 19:47:00,19.83,82.5225,14.97 +2016-10-03 20:02:00,21.335,82.465,14.94 +2016-10-03 20:17:00,19.3375,82.4125,14.9 +2016-10-03 20:32:00,17.785,82.3,14.88 +2016-10-03 20:47:00,19.2412,82.2275,14.87 +2016-10-03 21:02:00,18.2337,82.095,14.87 +2016-10-03 21:17:00,20.8412,81.9375,14.86 +2016-10-03 21:32:00,18.2812,81.9075,14.85 +2016-10-03 21:47:00,17.69,81.805,14.81 +2016-10-03 22:02:00,20.6513,81.7675,14.76 +2016-10-03 22:17:00,20.605,81.7825,14.73 +2016-10-03 22:32:00,17.9875,81.85,14.72 +2016-10-03 22:47:00,19.4362,81.905,14.71 +2016-10-03 23:02:00,17.5488,81.99,14.7 +2016-10-03 23:17:00,17.05,81.955,14.71 +2016-10-03 23:32:00,19.9713,82.005,14.69 +2016-10-03 23:47:00,18.0837,81.9425,14.66 +2016-10-04 00:02:00,18.7113,81.9775,14.61 +2016-10-04 00:17:00,19.7312,82.0325,14.56 +2016-10-04 00:32:00,20.12,82.0825,14.51 +2016-10-04 00:47:00,18.8138,82.2175,14.48 +2016-10-04 01:02:00,19.8288,82.4125,14.45 +2016-10-04 01:17:00,19.285,82.705,14.43 +2016-10-04 01:32:00,17.685,82.9775,14.42 +2016-10-04 01:47:00,18.0375,83.1675,14.42 +2016-10-04 02:02:00,19.6813,83.3025,14.42 +2016-10-04 02:17:00,19.8288,83.335,14.42 +2016-10-04 02:32:00,19.7325,83.3675,14.4 +2016-10-04 02:47:00,20.17,83.38,14.38 +2016-10-04 03:02:00,20.7925,83.3975,14.38 +2016-10-04 03:17:00,18.3712,83.4825,14.38 +2016-10-04 03:32:00,19.3363,83.53,14.39 +2016-10-04 03:47:00,19.4825,83.6525,14.4 +2016-10-04 04:02:00,17.4962,83.84,14.41 +2016-10-04 04:17:00,19.2438,83.87,14.42 +2016-10-04 04:32:00,21.1862,84.01,14.45 +2016-10-04 04:47:00,19.2387,84.01,14.47 +2016-10-04 05:02:00,18.3288,84.09,14.47 +2016-10-04 05:17:00,18.5163,84.1275,14.48 +2016-10-04 05:32:00,18.6125,84.1375,14.48 +2016-10-04 05:47:00,18.1813,84.175,14.48 +2016-10-04 06:02:00,20.9837,84.14,14.47 +2016-10-04 06:17:00,18.0375,84.2125,14.46 +2016-10-04 06:32:00,18.0362,84.2025,14.43 +2016-10-04 06:47:00,18.1325,84.1925,14.43 +2016-10-04 07:02:00,19.9688,84.18,14.45 +2016-10-04 07:17:00,19.9675,84.2025,14.46 +2016-10-04 07:32:00,18.8575,84.2375,14.48 +2016-10-04 07:47:00,17.0475,84.235,14.52 +2016-10-04 08:02:00,20.7937,84.32,14.51 +2016-10-04 08:17:00,17.3025,84.3675,14.53 +2016-10-04 08:32:00,21.3838,84.3475,14.55 +2016-10-04 08:47:00,18.6087,84.2925,14.55 +2016-10-04 09:02:00,18.4662,84.375,14.54 +2016-10-04 09:17:00,22.0187,84.2775,14.55 +2016-10-04 09:32:00,20.2637,84.31,14.58 +2016-10-04 09:47:00,20.1663,84.2775,14.61 +2016-10-04 10:02:00,19.585,84.27,14.62 +2016-10-04 10:17:00,20.6975,84.335,14.63 +2016-10-04 10:32:00,17.7387,84.4475,14.63 +2016-10-04 10:47:00,19.4325,84.5,14.64 +2016-10-04 11:02:00,17.1513,84.48,14.68 +2016-10-04 11:17:00,19.7288,84.49,14.73 +2016-10-04 11:32:00,19.7312,84.4425,14.74 +2016-10-04 11:47:00,20.1113,84.3175,14.76 +2016-10-04 12:02:00,19.8775,84.2875,14.79 +2016-10-04 12:17:00,17.6912,84.275,14.81 +2016-10-04 12:32:00,18.6562,84.0675,14.84 +2016-10-04 12:47:00,18.61,83.895,14.86 +2016-10-04 13:02:00,19.05,83.77,14.87 +2016-10-04 13:17:00,19.925,83.67,14.86 +2016-10-04 13:32:00,18.7588,83.6375,14.85 +2016-10-04 13:47:00,16.09,83.565,14.82 +2016-10-04 14:02:00,20.2687,83.5725,14.78 +2016-10-04 14:17:00,18.18,83.5925,14.75 +2016-10-04 14:32:00,19.4875,83.3475,14.73 +2016-10-04 14:47:00,18.1362,83.2725,14.72 +2016-10-04 15:02:00,17.79,83.2075,14.69 +2016-10-04 15:17:00,22.0212,83.05,14.66 +2016-10-04 15:32:00,16.5737,82.885,14.63 +2016-10-04 15:47:00,18.3712,82.72,14.62 +2016-10-04 16:02:00,18.955,82.72,14.58 +2016-10-04 16:17:00,19.3363,82.72,14.55 +2016-10-04 16:32:00,18.7612,82.7025,14.52 +2016-10-04 16:47:00,18.2312,82.7075,14.49 +2016-10-04 17:02:00,17.9375,82.7725,14.49 +2016-10-04 17:17:00,17.9388,82.705,14.5 +2016-10-04 17:32:00,18.7175,82.7025,14.5 +2016-10-04 17:47:00,19.4863,82.5675,14.49 +2016-10-04 18:02:00,18.0888,82.49,14.51 +2016-10-04 18:17:00,21.6287,82.39,14.49 +2016-10-04 18:32:00,19.4825,82.3425,14.48 +2016-10-04 18:47:00,19.6813,82.3425,14.46 +2016-10-04 19:02:00,18.4662,82.43,14.4 +2016-10-04 19:17:00,17.2012,82.515,14.35 +2016-10-04 19:32:00,20.5112,82.7575,14.3 +2016-10-04 19:47:00,22.0713,82.8925,14.26 +2016-10-04 20:02:00,16.8587,83.1475,14.21 +2016-10-04 20:17:00,20.0662,83.2975,14.18 +2016-10-04 20:32:00,18.3725,83.45,14.14 +2016-10-04 20:47:00,21.0863,83.63,14.11 +2016-10-04 21:02:00,18.7612,83.7625,14.08 +2016-10-04 21:17:00,20.5075,83.895,14.06 +2016-10-04 21:32:00,17.7425,84.0575,14.04 +2016-10-04 21:47:00,21.73,84.2975,14.02 +2016-10-04 22:02:00,18.1312,84.5725,13.99 +2016-10-04 22:17:00,19.9713,84.7775,13.97 +2016-10-04 22:32:00,18.13,84.9675,13.99 +2016-10-04 22:47:00,20.4125,85.1375,13.97 +2016-10-04 23:02:00,18.4688,85.2575,13.94 +2016-10-04 23:17:00,18.9587,85.32,13.91 +2016-10-04 23:32:00,17.7412,85.3725,13.89 +2016-10-04 23:47:00,18.2787,85.4375,13.87 +2016-10-05 00:02:00,21.4337,85.445,13.86 +2016-10-05 00:17:00,19.9713,85.415,13.85 +2016-10-05 00:32:00,18.1787,85.39,13.84 +2016-10-05 00:47:00,20.1675,85.465,13.85 +2016-10-05 01:02:00,19.0987,85.5225,13.88 +2016-10-05 01:17:00,21.19,85.595,13.88 +2016-10-05 01:32:00,19.2913,85.6375,13.89 +2016-10-05 01:47:00,18.0325,85.685,13.88 +2016-10-05 02:02:00,19.7312,85.6525,13.88 +2016-10-05 02:17:00,18.0287,85.64,13.91 +2016-10-05 02:32:00,19.145,85.5725,13.89 +2016-10-05 02:47:00,18.1338,85.5025,13.87 +2016-10-05 03:02:00,18.135,85.4075,13.86 +2016-10-05 03:17:00,20.4088,85.365,13.85 +2016-10-05 03:32:00,20.935,85.365,13.82 +2016-10-05 03:47:00,17.9875,85.4125,13.79 +2016-10-05 04:02:00,19.0512,85.495,13.75 +2016-10-05 04:17:00,19.4337,85.55,13.7 +2016-10-05 04:32:00,18.3712,85.56,13.64 +2016-10-05 04:47:00,19.1925,85.5475,13.59 +2016-10-05 05:02:00,17.84,85.4975,13.55 +2016-10-05 05:17:00,18.035,85.3925,13.52 +2016-10-05 05:32:00,21.2325,85.3725,13.52 +2016-10-05 05:47:00,18.2312,85.265,13.51 +2016-10-05 06:02:00,19.2387,85.2525,13.5 +2016-10-05 06:17:00,19.4325,85.19,13.46 +2016-10-05 06:32:00,17.2462,85.19,13.39 +2016-10-05 06:47:00,17.6425,85.18,13.33 +2016-10-05 07:02:00,19.2438,85.2425,13.3 +2016-10-05 07:17:00,17.2487,85.3675,13.26 +2016-10-05 07:32:00,17.7862,85.525,13.25 +2016-10-05 07:47:00,18.325,85.59,13.25 +2016-10-05 08:02:00,18.7612,85.6975,13.24 +2016-10-05 08:17:00,18.4662,85.7875,13.24 +2016-10-05 08:32:00,17.1475,85.7375,13.26 +2016-10-05 08:47:00,20.5062,85.8075,13.3 +2016-10-05 09:02:00,18.9613,85.695,13.31 +2016-10-05 09:17:00,19.3838,85.765,13.31 +2016-10-05 09:32:00,18.1312,85.79,13.33 +2016-10-05 09:47:00,16.6663,85.815,13.38 +2016-10-05 10:02:00,18.9525,85.935,13.5 +2016-10-05 10:17:00,20.6012,85.99,13.59 +2016-10-05 10:32:00,17.5888,86.0625,13.66 +2016-10-05 10:47:00,17.6875,86.0925,13.74 +2016-10-05 11:02:00,19.0525,86.1775,13.79 +2016-10-05 11:17:00,18.6087,86.445,13.8 +2016-10-05 11:32:00,18.5612,86.56,13.77 +2016-10-05 11:47:00,19.05,86.7625,13.71 +2016-10-05 12:02:00,20.0638,87.0025,13.68 +2016-10-05 12:17:00,18.08,87.385,13.66 +2016-10-05 12:32:00,20.8887,87.7025,13.66 +2016-10-05 12:47:00,19.5362,88.075,13.62 +2016-10-05 13:02:00,19.6775,88.55,13.62 +2016-10-05 13:17:00,17.34,89.1075,13.59 +2016-10-05 13:32:00,19.3325,89.665,13.55 +2016-10-05 13:47:00,20.98,90.2125,13.52 +2016-10-05 14:02:00,17.7337,90.8775,13.47 +2016-10-05 14:17:00,18.61,91.415,13.44 +2016-10-05 14:32:00,17.5462,92.0225,13.4 +2016-10-05 14:47:00,19.485,92.5,13.36 +2016-10-05 15:02:00,19.4837,92.8225,13.33 +2016-10-05 15:17:00,17.8375,93.2525,13.26 +2016-10-05 15:32:00,17.7862,93.68,13.21 +2016-10-05 15:47:00,19.9187,93.9225,13.17 +2016-10-05 16:02:00,19.0963,94.07,13.12 +2016-10-05 16:17:00,18.2275,94.2275,13.07 +2016-10-05 16:32:00,17.9863,94.315,13.05 +2016-10-05 16:47:00,19.7288,94.6175,13.02 +2016-10-05 17:02:00,19.6813,94.745,12.98 +2016-10-05 17:17:00,19.3363,94.945,12.94 +2016-10-05 17:32:00,21.2312,95.0375,12.91 +2016-10-05 17:47:00,19.0975,95.025,12.87 +2016-10-05 18:02:00,19.97,94.98,12.83 +2016-10-05 18:17:00,17.4975,94.9125,12.79 +2016-10-05 18:32:00,18.6612,94.82,12.75 +2016-10-05 18:47:00,18.855,94.665,12.71 +2016-10-05 19:02:00,18.6087,94.4375,12.67 +2016-10-05 19:17:00,20.31,94.3075,12.65 +2016-10-05 19:32:00,18.8037,94.215,12.63 +2016-10-05 19:47:00,18.51,94.0525,12.61 +2016-10-05 20:02:00,20.2612,93.985,12.59 +2016-10-05 20:17:00,19.2425,93.91,12.58 +2016-10-05 20:32:00,18.08,93.8275,12.57 +2016-10-05 20:47:00,19.875,93.645,12.56 +2016-10-05 21:02:00,20.3562,93.455,12.56 +2016-10-05 21:17:00,17.7825,93.245,12.58 +2016-10-05 21:32:00,19.4313,93.1325,12.61 +2016-10-05 21:47:00,21.7725,92.9225,12.6 +2016-10-05 22:02:00,17.735,92.785,12.63 +2016-10-05 22:17:00,19.34,92.58,12.63 +2016-10-05 22:32:00,17.1963,92.46,12.64 +2016-10-05 22:47:00,17.6362,92.265,12.63 +2016-10-05 23:02:00,19.5825,92.255,12.64 +2016-10-05 23:17:00,20.93,92.13,12.64 +2016-10-05 23:32:00,17.4938,91.9225,12.63 +2016-10-05 23:47:00,18.7588,91.895,12.63 +2016-10-06 00:02:00,18.2288,91.625,12.61 +2016-10-06 00:17:00,18.3712,91.51,12.59 +2016-10-06 00:32:00,19.9175,91.34,12.58 +2016-10-06 00:47:00,17.095,91.055,12.57 +2016-10-06 01:02:00,20.0137,90.89,12.56 +2016-10-06 01:17:00,18.2775,90.6675,12.56 +2016-10-06 01:32:00,18.8538,90.63,12.56 +2016-10-06 01:47:00,17.2487,90.6675,12.53 +2016-10-06 02:02:00,19.0013,90.675,12.51 +2016-10-06 02:17:00,20.6937,90.6025,12.49 +2016-10-06 02:32:00,19.725,90.4425,12.47 +2016-10-06 02:47:00,17.7337,90.2125,12.46 +2016-10-06 03:02:00,18.2738,90.16,12.45 +2016-10-06 03:17:00,19.775,89.9375,12.45 +2016-10-06 03:32:00,20.6888,89.7725,12.45 +2016-10-06 03:47:00,17.59,89.565,12.45 +2016-10-06 04:02:00,18.515,89.4,12.43 +2016-10-06 04:17:00,22.3988,89.36,12.42 +2016-10-06 04:32:00,20.405,89.2925,12.4 +2016-10-06 04:47:00,18.6075,89.2525,12.39 +2016-10-06 05:02:00,18.9975,89.2175,12.39 +2016-10-06 05:17:00,20.0612,89.1275,12.39 +2016-10-06 05:32:00,18.7562,89.125,12.38 +2016-10-06 05:47:00,18.7562,88.95,12.37 +2016-10-06 06:02:00,18.9037,88.905,12.37 +2016-10-06 06:17:00,18.855,88.8325,12.37 +2016-10-06 06:32:00,20.2113,88.81,12.36 +2016-10-06 06:47:00,21.3787,88.685,12.36 +2016-10-06 07:02:00,18.655,88.59,12.36 +2016-10-06 07:17:00,19.3812,88.57,12.36 +2016-10-06 07:32:00,20.1625,88.375,12.38 +2016-10-06 07:47:00,18.8087,88.1975,12.39 +2016-10-06 08:02:00,21.0812,88.1975,12.4 +2016-10-06 08:17:00,18.6087,88.1825,12.42 +2016-10-06 08:32:00,19.965,88.1775,12.44 +2016-10-06 08:47:00,19.6762,88.2675,12.47 +2016-10-06 09:02:00,17.5875,88.2775,12.49 +2016-10-06 09:17:00,18.1762,88.2675,12.52 +2016-10-06 09:32:00,18.4688,88.39,12.54 +2016-10-06 09:47:00,20.505,88.2125,12.56 +2016-10-06 10:02:00,19.4812,88.2825,12.57 +2016-10-06 10:17:00,20.6475,88.105,12.59 +2016-10-06 10:32:00,17.835,88.285,12.6 +2016-10-06 10:47:00,15.2113,88.36,12.64 +2016-10-06 11:02:00,19.5825,88.265,12.7 +2016-10-06 11:17:00,20.4137,88.3425,12.78 +2016-10-06 11:32:00,17.9325,88.405,12.84 +2016-10-06 11:47:00,16.9,88.4725,12.88 +2016-10-06 12:02:00,17.8337,88.5575,12.89 +2016-10-06 12:17:00,17.9825,88.62,12.88 +2016-10-06 12:32:00,19.7288,88.6425,12.85 +2016-10-06 12:47:00,16.5675,88.6225,12.83 +2016-10-06 13:02:00,19.6275,88.575,12.82 +2016-10-06 13:17:00,19.0512,88.5725,12.79 +2016-10-06 13:32:00,21.3337,88.5075,12.78 +2016-10-06 13:47:00,18.3275,88.54,12.76 +2016-10-06 14:02:00,20.165,88.615,12.73 +2016-10-06 14:17:00,18.3237,88.675,12.69 +2016-10-06 14:32:00,20.2113,88.7675,12.66 +2016-10-06 14:47:00,18.6562,88.8725,12.62 +2016-10-06 15:02:00,18.3737,88.8925,12.61 +2016-10-06 15:17:00,19.4863,89.0025,12.58 +2016-10-06 15:32:00,17.1975,89.1075,12.55 +2016-10-06 15:47:00,19.3812,89.14,12.51 +2016-10-06 16:02:00,18.4638,89.15,12.48 +2016-10-06 16:17:00,16.6188,89.1775,12.46 +2016-10-06 16:32:00,19.4825,89.155,12.44 +2016-10-06 16:47:00,19.7237,89.205,12.42 +2016-10-06 17:02:00,17.4962,89.3225,12.39 +2016-10-06 17:17:00,20.315,89.4775,12.36 +2016-10-06 17:32:00,17.5888,89.62,12.34 +2016-10-06 17:47:00,18.2763,89.785,12.33 +2016-10-06 18:02:00,18.2262,89.99,12.31 +2016-10-06 18:17:00,19.4337,90.0025,12.3 +2016-10-06 18:32:00,18.3675,90.08,12.28 +2016-10-06 18:47:00,19.1875,90.1275,12.27 +2016-10-06 19:02:00,21.2312,90.0825,12.27 +2016-10-06 19:17:00,18.3237,90.075,12.26 +2016-10-06 19:32:00,18.7575,90.1325,12.27 +2016-10-06 19:47:00,19.5325,90.12,12.27 +2016-10-06 20:02:00,17.1975,90.16,12.27 +2016-10-06 20:17:00,21.525,90.38,12.27 +2016-10-06 20:32:00,19.0512,90.505,12.28 +2016-10-06 20:47:00,17.8388,90.5375,12.29 +2016-10-06 21:02:00,18.3737,90.6475,12.3 +2016-10-06 21:17:00,17.5425,90.59,12.31 +2016-10-06 21:32:00,19.6775,90.505,12.31 +2016-10-06 21:47:00,17.6875,90.5175,12.33 +2016-10-06 22:02:00,19.5338,90.4475,12.34 +2016-10-06 22:17:00,19.005,90.3775,12.35 +2016-10-06 22:32:00,18.8063,90.3,12.37 +2016-10-06 22:47:00,20.3613,90.2775,12.39 +2016-10-06 23:02:00,17.8875,90.27,12.4 +2016-10-06 23:17:00,18.7062,90.3325,12.42 +2016-10-06 23:32:00,19.4313,90.4,12.44 +2016-10-06 23:47:00,21.43,90.43,12.46 +2016-10-07 00:02:00,15.6537,90.36,12.45 +2016-10-07 00:17:00,18.76,90.345,12.47 +2016-10-07 00:32:00,19.635,90.2525,12.48 +2016-10-07 00:47:00,17.4475,90.1675,12.48 +2016-10-07 01:02:00,20.4062,90.0625,12.47 +2016-10-07 01:17:00,17.5425,89.9625,12.47 +2016-10-07 01:32:00,22.26,89.925,12.48 +2016-10-07 01:47:00,17.1462,89.8825,12.48 +2016-10-07 02:02:00,18.66,89.9325,12.47 +2016-10-07 02:17:00,19.5325,89.9025,12.47 +2016-10-07 02:32:00,18.7663,89.91,12.47 +2016-10-07 02:47:00,19.925,89.8675,12.46 +2016-10-07 03:02:00,20.55,89.825,12.44 +2016-10-07 03:17:00,17.045,89.69,12.43 +2016-10-07 03:32:00,17.985,89.5975,12.42 +2016-10-07 03:47:00,20.1125,89.505,12.4 +2016-10-07 04:02:00,18.6087,89.475,12.4 +2016-10-07 04:17:00,17.5888,89.4,12.41 +2016-10-07 04:32:00,16.3825,89.28,12.39 +2016-10-07 04:47:00,19.4337,89.25,12.37 +2016-10-07 05:02:00,17.4938,89.22,12.37 +2016-10-07 05:17:00,20.6012,89.21,12.38 +2016-10-07 05:32:00,20.3125,89.205,12.38 +2016-10-07 05:47:00,16.8112,89.1675,12.37 +2016-10-07 06:02:00,18.3262,89.1,12.37 +2016-10-07 06:17:00,19.195,89.045,12.38 +2016-10-07 06:32:00,19.3875,88.985,12.39 +2016-10-07 06:47:00,19.3375,89.01,12.39 +2016-10-07 07:02:00,17.8375,88.88,12.39 +2016-10-07 07:17:00,19.2875,88.83,12.4 +2016-10-07 07:32:00,19.3375,88.82,12.41 +2016-10-07 07:47:00,20.0638,88.8325,12.45 +2016-10-07 08:02:00,21.8213,88.895,12.49 +2016-10-07 08:17:00,19.5825,88.92,12.52 +2016-10-07 08:32:00,18.1325,88.895,12.53 +2016-10-07 08:47:00,17.6837,88.97,12.55 +2016-10-07 09:02:00,19.1437,88.855,12.56 +2016-10-07 09:17:00,20.4088,88.9025,12.57 +2016-10-07 09:32:00,20.6025,88.915,12.57 +2016-10-07 09:47:00,19.19,88.9275,12.57 +2016-10-07 10:02:00,18.955,88.88,12.56 +2016-10-07 10:17:00,17.095,88.795,12.59 +2016-10-07 10:32:00,21.3838,88.85,12.64 +2016-10-07 10:47:00,19.5325,88.8375,12.73 +2016-10-07 11:02:00,18.8112,88.8675,12.81 +2016-10-07 11:17:00,19.5812,88.8675,12.83 +2016-10-07 11:32:00,19.6312,88.7825,12.82 +2016-10-07 11:47:00,20.7913,88.72,12.8 +2016-10-07 12:02:00,18.8112,88.7,12.8 +2016-10-07 12:17:00,17.2025,88.6575,12.81 +2016-10-07 12:32:00,19.2862,88.5075,12.79 +2016-10-07 12:47:00,17.6375,88.4475,12.75 +2016-10-07 13:02:00,19.0512,88.365,12.72 +2016-10-07 13:17:00,16.855,88.215,12.7 +2016-10-07 13:32:00,20.3112,88.145,12.69 +2016-10-07 13:47:00,17.985,88.065,12.69 +2016-10-07 14:02:00,19.7812,87.9325,12.71 +2016-10-07 14:17:00,20.7462,87.79,12.71 +2016-10-07 14:32:00,20.1637,87.525,12.71 +2016-10-07 14:47:00,19.1437,87.2175,12.71 +2016-10-07 15:02:00,19.2862,86.8725,12.7 +2016-10-07 15:17:00,18.3737,86.4275,12.69 +2016-10-07 15:32:00,18.905,85.9475,12.67 +2016-10-07 15:47:00,18.4638,85.4675,12.66 +2016-10-07 16:02:00,18.4662,84.95,12.65 +2016-10-07 16:17:00,19.9688,84.52,12.64 +2016-10-07 16:32:00,19.19,84.08,12.62 +2016-10-07 16:47:00,17.4487,83.635,12.61 +2016-10-07 17:02:00,19.385,83.225,12.6 +2016-10-07 17:17:00,19.2387,82.815,12.58 +2016-10-07 17:32:00,19.4863,82.4025,12.57 +2016-10-07 17:47:00,19.635,82.0425,12.56 +2016-10-07 18:02:00,18.86,81.7425,12.56 +2016-10-07 18:17:00,19.0975,81.4625,12.58 +2016-10-07 18:32:00,18.8087,81.27,12.59 +2016-10-07 18:47:00,19.73,81.085,12.6 +2016-10-07 19:02:00,20.36,81.0775,12.62 +2016-10-07 19:17:00,17.6437,81.105,12.63 +2016-10-07 19:32:00,18.5675,81.21,12.65 +2016-10-07 19:47:00,19.7838,81.415,12.66 +2016-10-07 20:02:00,16.5238,81.825,12.66 +2016-10-07 20:17:00,17.7875,82.19,12.65 +2016-10-07 20:32:00,19.1912,82.5825,12.63 +2016-10-07 20:47:00,19.24,83.0325,12.6 +2016-10-07 21:02:00,17.59,83.5125,12.58 +2016-10-07 21:17:00,21.4788,84.0925,12.56 +2016-10-07 21:32:00,20.02,84.655,12.54 +2016-10-07 21:47:00,16.4313,85.3225,12.53 +2016-10-07 22:02:00,17.3925,86.05,12.51 +2016-10-07 22:17:00,19.9212,86.82,12.5 +2016-10-07 22:32:00,20.6937,87.725,12.49 +2016-10-07 22:47:00,17.6362,88.6925,12.49 +2016-10-07 23:02:00,19.5338,89.6975,12.49 +2016-10-07 23:17:00,21.4337,90.565,12.47 +2016-10-07 23:32:00,19.5362,91.535,12.46 +2016-10-07 23:47:00,20.41,92.3725,12.45 +2016-10-08 00:02:00,21.13,93.1975,12.42 +2016-10-08 00:17:00,16.9962,94.045,12.42 +2016-10-08 00:32:00,17.445,94.9275,12.4 +2016-10-08 00:47:00,19.0975,95.695,12.39 +2016-10-08 01:02:00,19.9675,96.56,12.41 +2016-10-08 01:17:00,19.8825,97.39,12.41 +2016-10-08 01:32:00,19.4325,98.2525,12.39 +2016-10-08 01:47:00,19.2875,98.9925,12.36 +2016-10-08 02:02:00,20.0625,99.7775,12.34 +2016-10-08 02:17:00,19.0037,100.492,12.31 +2016-10-08 02:32:00,18.3237,101.033,12.28 +2016-10-08 02:47:00,17.5925,101.415,12.25 +2016-10-08 03:02:00,21.5762,101.842,12.21 +2016-10-08 03:17:00,18.6137,102.268,12.18 +2016-10-08 03:32:00,19.1925,102.787,12.15 +2016-10-08 03:47:00,18.8525,103.115,12.12 +2016-10-08 04:02:00,17.44,103.607,12.09 +2016-10-08 04:17:00,18.9562,104.19,12.06 +2016-10-08 04:32:00,19.1413,104.665,12.03 +2016-10-08 04:47:00,18.175,105.188,12.02 +2016-10-08 05:02:00,17.9875,105.5,12.0 +2016-10-08 05:17:00,19.3363,105.923,11.98 +2016-10-08 05:32:00,18.565,106.22,11.96 +2016-10-08 05:47:00,20.5987,106.477,11.95 +2016-10-08 06:02:00,18.76,106.677,11.96 +2016-10-08 06:17:00,20.0125,106.905,11.99 +2016-10-08 06:32:00,18.655,107.197,11.99 +2016-10-08 06:47:00,17.1475,107.395,12.01 +2016-10-08 07:02:00,19.8337,107.602,12.03 +2016-10-08 07:17:00,17.3,107.74,12.04 +2016-10-08 07:32:00,16.8538,107.967,12.06 +2016-10-08 07:47:00,19.285,108.122,12.08 +2016-10-08 08:02:00,18.3262,108.26,12.09 +2016-10-08 08:17:00,19.38,108.417,12.11 +2016-10-08 08:32:00,20.16,108.51,12.1 +2016-10-08 08:47:00,17.9388,108.662,12.09 +2016-10-08 09:02:00,20.3625,108.93,12.1 +2016-10-08 09:17:00,19.3388,109.152,12.07 +2016-10-08 09:32:00,19.6325,109.332,12.06 +2016-10-08 09:47:00,20.0638,109.415,12.04 +2016-10-08 10:02:00,19.1875,109.442,12.02 +2016-10-08 10:17:00,18.805,109.412,12.0 +2016-10-08 10:32:00,18.9037,109.397,11.97 +2016-10-08 10:47:00,18.3737,109.395,11.94 +2016-10-08 11:02:00,19.6837,109.302,11.9 +2016-10-08 11:17:00,17.7363,109.275,11.87 +2016-10-08 11:32:00,18.3225,109.283,11.85 +2016-10-08 11:47:00,17.0013,109.352,11.85 +2016-10-08 12:02:00,18.8562,109.397,11.86 +2016-10-08 12:17:00,20.7438,109.435,11.85 +2016-10-08 12:32:00,19.24,109.537,11.85 +2016-10-08 12:47:00,20.7913,109.475,11.88 +2016-10-08 13:02:00,20.065,109.465,11.87 +2016-10-08 13:17:00,21.5737,109.322,11.87 +2016-10-08 13:32:00,19.6275,109.205,11.9 +2016-10-08 13:47:00,19.725,109.077,11.93 +2016-10-08 14:02:00,19.1425,108.785,11.93 +2016-10-08 14:17:00,20.4075,108.725,11.93 +2016-10-08 14:32:00,18.2288,108.732,11.9 +2016-10-08 14:47:00,20.65,108.768,11.87 +2016-10-08 15:02:00,19.1875,108.65,11.84 +2016-10-08 15:17:00,19.0013,108.62,11.84 +2016-10-08 15:32:00,20.0625,108.572,11.84 +2016-10-08 15:47:00,21.6712,108.357,11.85 +2016-10-08 16:02:00,18.23,108.177,11.83 +2016-10-08 16:17:00,18.9463,108.005,11.82 +2016-10-08 16:32:00,19.1012,107.775,11.82 +2016-10-08 16:47:00,18.8575,107.555,11.82 +2016-10-08 17:02:00,18.4638,107.385,11.81 +2016-10-08 17:17:00,17.5888,107.24,11.82 +2016-10-08 17:32:00,19.335,107.08,11.8 +2016-10-08 17:47:00,20.3587,107.05,11.79 +2016-10-08 18:02:00,18.8538,107.007,11.79 +2016-10-08 18:17:00,20.5088,106.985,11.8 +2016-10-08 18:32:00,19.5812,106.857,11.8 +2016-10-08 18:47:00,19.095,106.74,11.78 +2016-10-08 19:02:00,18.8538,106.605,11.77 +2016-10-08 19:17:00,19.1475,106.425,11.76 +2016-10-08 19:32:00,20.9325,106.247,11.75 +2016-10-08 19:47:00,19.7275,106.06,11.75 +2016-10-08 20:02:00,20.6462,105.9,11.75 +2016-10-08 20:17:00,19.3875,105.78,11.77 +2016-10-08 20:32:00,18.7125,105.615,11.79 +2016-10-08 20:47:00,18.8538,105.54,11.8 +2016-10-08 21:02:00,17.6375,105.435,11.8 +2016-10-08 21:17:00,18.6588,105.387,11.8 +2016-10-08 21:32:00,19.425,105.372,11.78 +2016-10-08 21:47:00,19.0013,105.26,11.77 +2016-10-08 22:02:00,18.71,105.1,11.77 +2016-10-08 22:17:00,16.8087,104.923,11.76 +2016-10-08 22:32:00,18.4137,104.742,11.75 +2016-10-08 22:47:00,19.3838,104.527,11.75 +2016-10-08 23:02:00,21.2775,104.347,11.75 +2016-10-08 23:17:00,20.3087,104.122,11.75 +2016-10-08 23:32:00,17.5888,103.987,11.74 +2016-10-08 23:47:00,18.5112,103.93,11.74 +2016-10-09 00:02:00,20.015,103.852,11.73 +2016-10-09 00:17:00,19.6825,103.77,11.71 +2016-10-09 00:32:00,18.7062,103.64,11.69 +2016-10-09 00:47:00,18.1775,103.357,11.66 +2016-10-09 01:02:00,19.1375,103.227,11.64 +2016-10-09 01:17:00,19.4812,103.082,11.59 +2016-10-09 01:32:00,18.5112,102.878,11.57 +2016-10-09 01:47:00,19.5312,102.652,11.53 +2016-10-09 02:02:00,19.1925,102.507,11.52 +2016-10-09 02:17:00,20.5062,102.378,11.5 +2016-10-09 02:32:00,19.0462,102.25,11.47 +2016-10-09 02:47:00,19.9187,102.24,11.44 +2016-10-09 03:02:00,19.8737,102.165,11.42 +2016-10-09 03:17:00,20.1175,102.14,11.4 +2016-10-09 03:32:00,19.3363,102.035,11.38 +2016-10-09 03:47:00,17.7925,101.905,11.37 +2016-10-09 04:02:00,19.2412,101.775,11.35 +2016-10-09 04:17:00,18.5125,101.673,11.34 +2016-10-09 04:32:00,18.4675,101.542,11.33 +2016-10-09 04:47:00,18.4175,101.387,11.34 +2016-10-09 05:02:00,20.0137,101.312,11.33 +2016-10-09 05:17:00,18.4625,101.262,11.32 +2016-10-09 05:32:00,21.7763,101.217,11.31 +2016-10-09 05:47:00,18.4638,101.22,11.3 +2016-10-09 06:02:00,19.6362,101.298,11.29 +2016-10-09 06:17:00,19.585,101.16,11.28 +2016-10-09 06:32:00,17.6387,101.113,11.27 +2016-10-09 06:47:00,21.1325,101.055,11.28 +2016-10-09 07:02:00,21.9225,100.99,11.28 +2016-10-09 07:17:00,20.1612,100.915,11.29 +2016-10-09 07:32:00,18.3262,100.857,11.29 +2016-10-09 07:47:00,18.7162,100.827,11.29 +2016-10-09 08:02:00,21.0338,100.72,11.28 +2016-10-09 08:17:00,19.1875,100.615,11.27 +2016-10-09 08:32:00,17.8337,100.527,11.27 +2016-10-09 08:47:00,19.3838,100.393,11.25 +2016-10-09 09:02:00,17.8312,100.235,11.23 +2016-10-09 09:17:00,20.405,100.202,11.22 +2016-10-09 09:32:00,19.9238,100.105,11.21 +2016-10-09 09:47:00,19.68,100.173,11.23 +2016-10-09 10:02:00,19.5325,100.105,11.25 +2016-10-09 10:17:00,20.8825,100.197,11.23 +2016-10-09 10:32:00,19.7275,100.322,11.22 +2016-10-09 10:47:00,20.11,100.302,11.2 +2016-10-09 11:02:00,18.2738,100.298,11.17 +2016-10-09 11:17:00,19.4863,100.332,11.17 +2016-10-09 11:32:00,20.8887,100.312,11.17 +2016-10-09 11:47:00,19.1387,100.253,11.17 +2016-10-09 12:02:00,19.1437,100.102,11.19 +2016-10-09 12:17:00,21.2325,100.08,11.21 +2016-10-09 12:32:00,20.3112,100.085,11.22 +2016-10-09 12:47:00,21.525,100.137,11.2 +2016-10-09 13:02:00,20.4062,100.29,11.21 +2016-10-09 13:17:00,20.84,100.335,11.2 +2016-10-09 13:32:00,18.8562,100.397,11.2 +2016-10-09 13:47:00,19.7262,100.425,11.21 +2016-10-09 14:02:00,20.9812,100.375,11.18 +2016-10-09 14:17:00,20.1588,100.35,11.17 +2016-10-09 14:32:00,20.21,100.325,11.15 +2016-10-09 14:47:00,20.0625,100.292,11.15 +2016-10-09 15:02:00,22.0175,100.242,11.16 +2016-10-09 15:17:00,22.3525,100.277,11.16 +2016-10-09 15:32:00,20.1612,100.327,11.15 +2016-10-09 15:47:00,21.38,100.427,11.13 +2016-10-09 16:02:00,21.2838,100.512,11.12 +2016-10-09 16:17:00,19.1413,100.645,11.11 +2016-10-09 16:32:00,22.7937,100.65,11.11 +2016-10-09 16:47:00,22.0687,100.655,11.1 +2016-10-09 17:02:00,19.6338,100.66,11.09 +2016-10-09 17:17:00,21.7763,100.582,11.08 +2016-10-09 17:32:00,20.9325,100.577,11.09 +2016-10-09 17:47:00,20.7387,100.505,11.1 +2016-10-09 18:02:00,22.5963,100.475,11.11 +2016-10-09 18:17:00,21.72,100.533,11.12 +2016-10-09 18:32:00,22.26,100.587,11.11 +2016-10-09 18:47:00,20.0625,100.685,11.14 +2016-10-09 19:02:00,22.5025,100.783,11.16 +2016-10-09 19:17:00,23.1762,100.815,11.17 +2016-10-09 19:32:00,21.6725,100.727,11.17 +2016-10-09 19:47:00,21.7262,100.688,11.16 +2016-10-09 20:02:00,21.7225,100.572,11.16 +2016-10-09 20:17:00,22.89,100.507,11.16 +2016-10-09 20:32:00,22.0187,100.427,11.17 +2016-10-09 20:47:00,22.3575,100.4,11.16 +2016-10-09 21:02:00,21.6263,100.488,11.16 +2016-10-09 21:17:00,21.875,100.48,11.15 +2016-10-09 21:32:00,21.3812,100.577,11.14 +2016-10-09 21:47:00,21.8725,100.575,11.14 +2016-10-09 22:02:00,21.4275,100.587,11.13 +2016-10-09 22:17:00,20.4587,100.535,11.11 +2016-10-09 22:32:00,20.8862,100.438,11.1 +2016-10-09 22:47:00,21.48,100.375,11.11 +2016-10-09 23:02:00,21.6263,100.307,11.11 +2016-10-09 23:17:00,19.6762,100.188,11.12 +2016-10-09 23:32:00,23.3213,100.185,11.11 +2016-10-09 23:47:00,19.4812,100.188,11.11 +2016-10-10 00:02:00,22.0662,100.23,11.1 +2016-10-10 00:17:00,21.625,100.28,11.1 +2016-10-10 00:32:00,21.5287,100.245,11.09 +2016-10-10 00:47:00,22.8913,100.227,11.07 +2016-10-10 01:02:00,21.8725,100.11,11.05 +2016-10-10 01:17:00,21.185,100.055,11.03 +2016-10-10 01:32:00,20.93,99.915,11.02 +2016-10-10 01:47:00,21.7262,99.8025,11.01 +2016-10-10 02:02:00,23.0312,99.7925,11.0 +2016-10-10 02:17:00,22.4037,99.6875,10.99 +2016-10-10 02:32:00,20.9837,99.69,10.99 +2016-10-10 02:47:00,22.8962,99.6575,10.98 +2016-10-10 03:02:00,22.8412,99.7275,10.98 +2016-10-10 03:17:00,21.2787,99.7325,10.98 +2016-10-10 03:32:00,21.4775,99.63,10.97 +2016-10-10 03:47:00,23.4662,99.575,10.98 +2016-10-10 04:02:00,20.6975,99.495,10.97 +2016-10-10 04:17:00,22.4013,99.365,10.97 +2016-10-10 04:32:00,19.435,99.255,10.98 +2016-10-10 04:47:00,22.6,99.125,10.96 +2016-10-10 05:02:00,21.2312,99.0275,10.96 +2016-10-10 05:17:00,20.9837,98.9725,10.97 +2016-10-10 05:32:00,21.0875,98.915,10.97 +2016-10-10 05:47:00,21.03,98.825,10.98 +2016-10-10 06:02:00,23.1762,98.77,10.98 +2016-10-10 06:17:00,22.4575,98.755,10.97 +2016-10-10 06:32:00,22.5013,98.665,10.97 +2016-10-10 06:47:00,21.5762,98.635,10.98 +2016-10-10 07:02:00,21.6237,98.6525,10.98 +2016-10-10 07:17:00,21.825,98.6525,10.98 +2016-10-10 07:32:00,20.115,98.7,11.0 +2016-10-10 07:47:00,23.4675,98.6725,11.01 +2016-10-10 08:02:00,21.8763,98.575,11.03 +2016-10-10 08:17:00,22.4037,98.5175,11.05 +2016-10-10 08:32:00,21.1875,98.4225,11.04 +2016-10-10 08:47:00,22.0675,98.2875,11.04 +2016-10-10 09:02:00,21.3337,98.1825,11.06 +2016-10-10 09:17:00,19.3838,98.065,11.08 +2016-10-10 09:32:00,22.2113,98.0075,11.09 +2016-10-10 09:47:00,20.5575,98.0725,11.1 +2016-10-10 10:02:00,22.0687,98.1275,11.1 +2016-10-10 10:17:00,21.675,98.14,11.11 +2016-10-10 10:32:00,22.5425,98.265,11.15 +2016-10-10 10:47:00,21.725,98.1375,11.18 +2016-10-10 11:02:00,22.9825,98.1925,11.22 +2016-10-10 11:17:00,20.4088,98.0725,11.22 +2016-10-10 11:32:00,22.6975,98.0075,11.23 +2016-10-10 11:47:00,19.5812,97.9475,11.2 +2016-10-10 12:02:00,22.0175,97.9125,11.19 +2016-10-10 12:17:00,20.65,97.9525,11.17 +2016-10-10 12:32:00,21.13,97.9475,11.16 +2016-10-10 12:47:00,23.1738,98.0,11.16 +2016-10-10 13:02:00,23.315,98.055,11.15 +2016-10-10 13:17:00,20.7438,98.1175,11.14 +2016-10-10 13:32:00,21.335,98.0425,11.12 +2016-10-10 13:47:00,22.1212,98.0275,11.12 +2016-10-10 14:02:00,22.4538,97.99,11.12 +2016-10-10 14:17:00,20.5037,97.905,11.12 +2016-10-10 14:32:00,20.6038,97.81,11.12 +2016-10-10 14:47:00,21.2825,97.7375,11.13 +2016-10-10 15:02:00,20.9313,97.7625,11.12 +2016-10-10 15:17:00,21.8775,97.815,11.13 +2016-10-10 15:32:00,19.5325,98.05,11.12 +2016-10-10 15:47:00,21.6787,98.3275,11.12 +2016-10-10 16:02:00,21.8275,98.6225,11.1 +2016-10-10 16:17:00,20.7438,98.87,11.06 +2016-10-10 16:30:59,21.1825,99.18,11.06 +2016-10-10 16:47:00,20.8875,99.47,11.04 +2016-10-10 17:02:00,19.5825,99.73,11.03 +2016-10-10 17:17:00,21.93,99.9125,11.02 +2016-10-10 17:32:00,21.7787,100.125,11.02 +2016-10-10 17:47:00,20.3575,100.387,11.04 +2016-10-10 18:02:00,20.8875,100.625,11.07 +2016-10-10 18:17:00,20.7875,100.837,11.09 +2016-10-10 18:32:00,20.3112,101.045,11.13 +2016-10-10 18:47:00,21.4337,101.222,11.14 +2016-10-10 19:02:00,21.6263,101.275,11.15 +2016-10-10 19:17:00,21.53,101.262,11.15 +2016-10-10 19:32:00,21.8288,101.128,11.16 +2016-10-10 19:47:00,22.0187,101.022,11.16 +2016-10-10 20:02:00,19.3363,100.9,11.15 +2016-10-10 20:17:00,23.3213,100.715,11.16 +2016-10-10 20:32:00,22.7425,100.58,11.19 +2016-10-10 20:47:00,20.9337,100.522,11.21 +2016-10-10 21:02:00,20.8412,100.42,11.22 +2016-10-10 21:17:00,21.8325,100.352,11.21 +2016-10-10 21:32:00,20.6513,100.2,11.22 +2016-10-10 21:47:00,23.1287,100.04,11.2 +2016-10-10 22:02:00,22.6488,99.83,11.19 +2016-10-10 22:17:00,21.085,99.575,11.17 +2016-10-10 22:32:00,22.0675,99.275,11.14 +2016-10-10 22:47:00,18.76,99.0225,11.13 +2016-10-10 23:02:00,22.17,98.725,11.11 +2016-10-10 23:17:00,21.04,98.4825,11.1 +2016-10-10 23:32:00,21.5275,98.2825,11.1 +2016-10-10 23:47:00,21.6775,98.055,11.08 +2016-10-11 00:02:00,22.165,97.9275,11.05 +2016-10-11 00:17:00,21.235,97.75,11.02 +2016-10-11 00:32:00,21.0338,97.585,10.98 +2016-10-11 00:47:00,20.0175,97.3775,10.96 +2016-10-11 01:02:00,21.34,97.1275,10.96 +2016-10-11 01:17:00,23.23,96.9225,10.94 +2016-10-11 01:32:00,20.885,96.6175,10.92 +2016-10-11 01:47:00,21.23,96.345,10.89 +2016-10-11 02:02:00,19.875,96.135,10.88 +2016-10-11 02:17:00,20.6038,95.9725,10.88 +2016-10-11 02:32:00,21.7738,95.8275,10.87 +2016-10-11 02:47:00,21.975,95.72,10.86 +2016-10-11 03:02:00,21.9775,95.605,10.83 +2016-10-11 03:17:00,20.885,95.445,10.82 +2016-10-11 03:32:00,22.3538,95.2575,10.82 +2016-10-11 03:47:00,19.7775,95.085,10.81 +2016-10-11 04:02:00,20.7412,94.835,10.79 +2016-10-11 04:17:00,21.0338,94.6825,10.8 +2016-10-11 04:32:00,22.7913,94.5,10.79 +2016-10-11 04:47:00,20.0187,94.3325,10.8 +2016-10-11 05:02:00,21.5775,94.1925,10.81 +2016-10-11 05:17:00,20.885,94.095,10.82 +2016-10-11 05:32:00,21.62,94.075,10.82 +2016-10-11 05:47:00,20.2625,94.0375,10.81 +2016-10-11 06:02:00,21.23,93.9925,10.81 +2016-10-11 06:17:00,22.4037,93.8575,10.79 +2016-10-11 06:32:00,20.7425,93.7425,10.8 +2016-10-11 06:47:00,21.8225,93.62,10.8 +2016-10-11 07:02:00,22.3988,93.52,10.8 +2016-10-11 07:17:00,23.7612,93.43,10.82 +2016-10-11 07:32:00,22.0163,93.3625,10.82 +2016-10-11 07:47:00,20.6937,93.3125,10.82 +2016-10-11 08:02:00,19.0975,93.205,10.83 +2016-10-11 08:17:00,20.3575,93.1525,10.84 +2016-10-11 08:32:00,22.6987,93.0525,10.85 +2016-10-11 08:47:00,22.55,92.9675,10.84 +2016-10-11 09:02:00,21.2787,92.865,10.84 +2016-10-11 09:17:00,20.55,92.785,10.86 +2016-10-11 09:32:00,21.4788,92.705,10.85 +2016-10-11 09:47:00,21.5263,92.7025,10.86 +2016-10-11 10:02:00,21.6687,92.725,10.86 +2016-10-11 10:17:00,21.675,92.8075,10.82 +2016-10-11 10:32:00,22.9375,92.735,10.81 +2016-10-11 10:47:00,22.21,92.7475,10.8 +2016-10-11 11:02:00,21.4313,92.6325,10.78 +2016-10-11 11:17:00,22.7913,92.52,10.78 +2016-10-11 11:32:00,22.2562,92.5,10.75 +2016-10-11 11:47:00,22.4962,92.4175,10.74 +2016-10-11 12:02:00,20.3575,92.37,10.74 +2016-10-11 12:17:00,20.4575,92.445,10.74 +2016-10-11 12:32:00,19.1437,92.465,10.74 +2016-10-11 12:47:00,21.6725,92.5675,10.72 +2016-10-11 13:02:00,18.51,92.6475,10.72 +2016-10-11 13:17:00,20.2588,92.6325,10.72 +2016-10-11 13:32:00,21.03,92.7025,10.72 +2016-10-11 13:47:00,22.5413,92.695,10.73 +2016-10-11 14:02:00,21.8712,92.7225,10.72 +2016-10-11 14:17:00,20.1663,92.735,10.67 +2016-10-11 14:32:00,21.525,92.6725,10.65 +2016-10-11 14:47:00,20.5975,92.6575,10.65 +2016-10-11 15:02:00,20.2087,92.7525,10.65 +2016-10-11 15:17:00,20.74,92.885,10.63 +2016-10-11 15:32:00,22.0662,92.99,10.6 +2016-10-11 15:47:00,22.215,93.095,10.58 +2016-10-11 16:02:00,23.1275,93.14,10.57 +2016-10-11 16:17:00,21.48,93.1575,10.54 +2016-10-11 16:32:00,22.065,93.155,10.51 +2016-10-11 16:47:00,21.8262,93.1425,10.5 +2016-10-11 17:02:00,22.1162,93.1475,10.47 +2016-10-11 17:17:00,20.5062,93.1,10.46 +2016-10-11 17:32:00,23.32,93.09,10.46 +2016-10-11 17:47:00,21.7763,93.1825,10.47 +2016-10-11 18:02:00,21.4812,93.3025,10.5 +2016-10-11 18:17:00,23.0325,93.4325,10.51 +2016-10-11 18:32:00,22.6488,93.58,10.54 +2016-10-11 18:47:00,21.5275,93.685,10.59 +2016-10-11 19:02:00,21.4788,93.8025,10.57 +2016-10-11 19:17:00,21.43,93.8975,10.56 +2016-10-11 19:32:00,23.2687,93.9275,10.57 +2016-10-11 19:47:00,22.6038,93.9575,10.58 +2016-10-11 20:02:00,24.05,93.955,10.58 +2016-10-11 20:17:00,22.7425,93.9525,10.56 +2016-10-11 20:32:00,19.92,94.0025,10.57 +2016-10-11 20:47:00,23.5675,94.085,10.57 +2016-10-11 21:02:00,21.825,94.25,10.58 +2016-10-11 21:17:00,20.06,94.3175,10.59 +2016-10-11 21:32:00,22.6975,94.3625,10.6 +2016-10-11 21:47:00,20.3613,94.38,10.6 +2016-10-11 22:02:00,23.0837,94.2775,10.6 +2016-10-11 22:17:00,21.825,94.315,10.6 +2016-10-11 22:32:00,20.5537,94.195,10.58 +2016-10-11 22:47:00,20.8363,94.1175,10.58 +2016-10-11 23:02:00,23.67,94.0275,10.57 +2016-10-11 23:17:00,23.37,94.085,10.56 +2016-10-11 23:32:00,21.2337,94.115,10.58 +2016-10-11 23:47:00,20.41,94.2,10.6 +2016-10-12 00:02:00,22.1663,94.275,10.61 +2016-10-12 00:17:00,24.4037,94.2625,10.61 +2016-10-12 00:32:00,21.48,94.2725,10.59 +2016-10-12 00:47:00,20.6488,94.165,10.6 +2016-10-12 01:02:00,21.1825,94.0675,10.59 +2016-10-12 01:17:00,21.97,94.03,10.57 +2016-10-12 01:32:00,22.6488,93.895,10.56 +2016-10-12 01:47:00,22.4025,93.8575,10.56 +2016-10-12 02:02:00,20.93,93.8075,10.54 +2016-10-12 02:17:00,21.03,93.85,10.54 +2016-10-12 02:32:00,20.1588,93.88,10.53 +2016-10-12 02:47:00,21.4762,93.9075,10.51 +2016-10-12 03:02:00,21.43,93.8825,10.51 +2016-10-12 03:17:00,19.1012,93.855,10.49 +2016-10-12 03:32:00,20.65,93.7775,10.49 +2016-10-12 03:47:00,20.4075,93.6675,10.48 +2016-10-12 04:02:00,23.2262,93.63,10.46 +2016-10-12 04:17:00,20.2575,93.5975,10.46 +2016-10-12 04:32:00,20.8375,93.48,10.47 +2016-10-12 04:47:00,22.4975,93.58,10.46 +2016-10-12 05:02:00,22.015,93.6425,10.45 +2016-10-12 05:17:00,21.6275,93.725,10.46 +2016-10-12 05:32:00,21.725,93.865,10.45 +2016-10-12 05:47:00,21.825,93.9425,10.46 +2016-10-12 06:02:00,22.5,94.0425,10.46 +2016-10-12 06:17:00,22.4013,94.065,10.44 +2016-10-12 06:32:00,22.0687,94.05,10.42 +2016-10-12 06:47:00,21.675,94.08,10.41 +2016-10-12 07:02:00,18.5612,94.04,10.41 +2016-10-12 07:17:00,22.7462,93.975,10.42 +2016-10-12 07:32:00,22.8425,93.95,10.41 +2016-10-12 07:47:00,21.575,93.8725,10.42 +2016-10-12 08:02:00,20.0137,93.785,10.43 +2016-10-12 08:17:00,21.5713,93.8775,10.44 +2016-10-12 08:32:00,19.3812,93.8875,10.43 +2016-10-12 08:47:00,19.7775,93.9875,10.44 +2016-10-12 09:02:00,21.78,94.1025,10.46 +2016-10-12 09:17:00,22.1162,94.18,10.46 +2016-10-12 09:32:00,21.2312,94.175,10.46 +2016-10-12 09:47:00,20.355,94.235,10.48 +2016-10-12 10:02:00,21.8737,94.2275,10.48 +2016-10-12 10:17:00,22.21,94.195,10.49 +2016-10-12 10:32:00,20.455,94.1575,10.48 +2016-10-12 10:47:00,20.9812,94.14,10.48 +2016-10-12 11:02:00,20.4575,94.265,10.5 +2016-10-12 11:17:00,23.62,94.3125,10.52 +2016-10-12 11:32:00,18.32,94.425,10.54 +2016-10-12 11:47:00,20.355,94.55,10.54 +2016-10-12 12:02:00,22.1612,94.615,10.54 +2016-10-12 12:17:00,20.0125,94.63,10.54 +2016-10-12 12:32:00,19.8275,94.6625,10.53 +2016-10-12 12:47:00,21.2812,94.6125,10.52 +2016-10-12 13:02:00,20.745,94.575,10.48 +2016-10-12 13:17:00,20.2113,94.5725,10.46 +2016-10-12 13:32:00,21.4737,94.5125,10.44 +2016-10-12 13:47:00,21.38,94.595,10.43 +2016-10-12 14:02:00,20.5975,94.67,10.41 +2016-10-12 14:17:00,21.9212,94.78,10.39 +2016-10-12 14:32:00,18.95,94.95,10.38 +2016-10-12 14:47:00,19.9662,95.065,10.38 +2016-10-12 15:02:00,22.355,95.1175,10.38 +2016-10-12 15:17:00,20.015,95.1875,10.37 +2016-10-12 15:32:00,20.9788,95.185,10.36 +2016-10-12 15:47:00,22.6912,95.325,10.34 +2016-10-12 16:02:00,21.7213,95.2975,10.33 +2016-10-12 16:17:00,21.0825,95.37,10.31 +2016-10-12 16:32:00,20.7862,95.505,10.28 +2016-10-12 16:47:00,21.2838,95.665,10.28 +2016-10-12 17:02:00,21.3787,95.7925,10.28 +2016-10-12 17:17:00,19.8237,96.0075,10.29 +2016-10-12 17:32:00,19.725,96.2575,10.32 +2016-10-12 17:47:00,22.0175,96.385,10.32 +2016-10-12 18:02:00,20.5488,96.4975,10.31 +2016-10-12 18:17:00,18.9037,96.635,10.31 +2016-10-12 18:32:00,21.0312,96.715,10.3 +2016-10-12 18:47:00,20.5075,96.7525,10.29 +2016-10-12 19:02:00,22.4962,96.78,10.29 +2016-10-12 19:17:00,22.2575,96.8125,10.29 +2016-10-12 19:32:00,19.7262,96.995,10.27 +2016-10-12 19:47:00,20.355,97.1125,10.28 +2016-10-12 20:02:00,19.7763,97.2625,10.28 +2016-10-12 20:17:00,22.0175,97.5025,10.3 +2016-10-12 20:32:00,18.3225,97.6125,10.31 +2016-10-12 20:47:00,20.455,97.7075,10.29 +2016-10-12 21:02:00,20.93,97.8025,10.3 +2016-10-12 21:17:00,21.7225,97.8,10.29 +2016-10-12 21:32:00,20.6912,97.835,10.28 +2016-10-12 21:47:00,19.53,97.7475,10.28 +2016-10-12 22:02:00,20.8825,97.815,10.26 +2016-10-12 22:17:00,20.6038,97.7775,10.26 +2016-10-12 22:32:00,21.1362,97.8925,10.27 +2016-10-12 22:47:00,21.72,97.995,10.27 +2016-10-12 23:02:00,19.095,98.15,10.28 +2016-10-12 23:17:00,21.3787,98.2175,10.27 +2016-10-12 23:32:00,19.235,98.265,10.26 +2016-10-12 23:47:00,21.0287,98.325,10.26 +2016-10-13 00:02:00,20.3087,98.355,10.25 +2016-10-13 00:17:00,22.3512,98.275,10.24 +2016-10-13 00:32:00,19.8787,98.245,10.23 +2016-10-13 00:47:00,20.9313,98.245,10.21 +2016-10-13 01:02:00,18.9975,98.2525,10.22 +2016-10-13 01:17:00,20.06,98.2925,10.22 +2016-10-13 01:32:00,17.9812,98.385,10.21 +2016-10-13 01:47:00,19.4788,98.5525,10.21 +2016-10-13 02:02:00,18.4175,98.66,10.2 +2016-10-13 02:17:00,19.1,98.69,10.19 +2016-10-13 02:32:00,19.675,98.6625,10.19 +2016-10-13 02:47:00,21.3312,98.62,10.18 +2016-10-13 03:02:00,20.9762,98.5925,10.16 +2016-10-13 03:17:00,19.4287,98.555,10.15 +2016-10-13 03:32:00,20.5963,98.57,10.13 +2016-10-13 03:47:00,19.53,98.5025,10.14 +2016-10-13 04:02:00,22.4013,98.565,10.15 +2016-10-13 04:17:00,19.285,98.6425,10.14 +2016-10-13 04:32:00,21.2812,98.755,10.13 +2016-10-13 04:47:00,20.6888,98.8725,10.13 +2016-10-13 05:02:00,20.8325,98.8775,10.13 +2016-10-13 05:17:00,21.8725,98.975,10.13 +2016-10-13 05:32:00,21.9675,98.9775,10.12 +2016-10-13 05:47:00,20.9825,99.0625,10.11 +2016-10-13 06:02:00,19.0512,99.055,10.11 +2016-10-13 06:17:00,19.625,99.115,10.11 +2016-10-13 06:32:00,20.5488,99.29,10.12 +2016-10-13 06:47:00,19.38,99.3925,10.12 +2016-10-13 07:02:00,19.5775,99.7625,10.11 +2016-10-13 07:17:00,19.4275,100.037,10.11 +2016-10-13 07:32:00,19.2838,100.315,10.11 +2016-10-13 07:47:00,20.2625,100.522,10.09 +2016-10-13 08:02:00,20.5488,100.735,10.07 +2016-10-13 08:17:00,20.8325,100.988,10.06 +2016-10-13 08:32:00,19.8725,101.27,10.05 +2016-10-13 08:47:00,20.0125,101.488,10.04 +2016-10-13 09:02:00,19.825,101.707,10.04 +2016-10-13 09:17:00,21.3288,101.905,10.04 +2016-10-13 09:32:00,20.6012,102.128,10.04 +2016-10-13 09:47:00,21.48,102.275,10.03 +2016-10-13 10:02:00,20.3087,102.355,10.0 +2016-10-13 10:17:00,20.45,102.537,9.99 +2016-10-13 10:32:00,21.1813,102.617,9.97 +2016-10-13 10:47:00,19.53,102.715,9.96 +2016-10-13 11:02:00,20.9262,102.822,9.98 +2016-10-13 11:17:00,19.8262,103.01,9.98 +2016-10-13 11:32:00,20.1625,103.225,9.97 +2016-10-13 11:47:00,21.18,103.527,9.97 +2016-10-13 12:02:00,20.2075,103.735,9.95 +2016-10-13 12:17:00,19.235,103.91,9.96 +2016-10-13 12:32:00,17.5825,104.037,9.95 +2016-10-13 12:47:00,18.8525,104.185,9.95 +2016-10-13 13:02:00,21.2763,104.242,9.94 +2016-10-13 13:17:00,19.63,104.292,9.93 +2016-10-13 13:32:00,20.5025,104.355,9.92 +2016-10-13 13:47:00,19.6287,104.34,9.92 +2016-10-13 14:02:00,19.6762,104.487,9.91 +2016-10-13 14:17:00,21.23,104.622,9.92 +2016-10-13 14:32:00,19.4812,104.845,9.92 +2016-10-13 14:47:00,21.3288,105.055,9.92 +2016-10-13 15:02:00,20.8787,105.27,9.93 +2016-10-13 15:17:00,20.9837,105.307,9.94 +2016-10-13 15:32:00,21.2825,105.36,9.95 +2016-10-13 15:47:00,18.9487,105.41,9.96 +2016-10-13 16:02:00,19.6738,105.432,9.93 +2016-10-13 16:17:00,20.405,105.427,9.92 +2016-10-13 16:32:00,21.5238,105.475,9.9 +2016-10-13 16:47:00,20.31,105.61,9.9 +2016-10-13 17:02:00,20.8312,105.722,9.91 +2016-10-13 17:17:00,21.9238,105.82,9.9 +2016-10-13 17:32:00,21.3862,105.97,9.9 +2016-10-13 17:47:00,21.7687,105.945,9.9 +2016-10-13 18:02:00,20.2588,105.947,9.9 +2016-10-13 18:17:00,21.38,105.927,9.88 +2016-10-13 18:32:00,20.4525,105.917,9.83 +2016-10-13 18:47:00,19.53,105.875,9.78 +2016-10-13 19:02:00,19.385,105.855,9.77 +2016-10-13 19:17:00,19.4837,105.902,9.78 +2016-10-13 19:32:00,20.16,105.97,9.8 +2016-10-13 19:47:00,21.5713,106.16,9.79 +2016-10-13 20:02:00,21.4325,106.232,9.79 +2016-10-13 20:17:00,21.57,106.347,9.79 +2016-10-13 20:32:00,19.72,106.43,9.79 +2016-10-13 20:47:00,20.5987,106.42,9.78 +2016-10-13 21:02:00,20.06,106.322,9.76 +2016-10-13 21:17:00,19.6312,106.322,9.73 +2016-10-13 21:32:00,18.3662,106.327,9.72 +2016-10-13 21:47:00,19.6762,106.295,9.7 +2016-10-13 22:02:00,19.3312,106.302,9.68 +2016-10-13 22:17:00,20.4075,106.375,9.68 +2016-10-13 22:32:00,20.785,106.487,9.66 +2016-10-13 22:47:00,20.3637,106.575,9.66 +2016-10-13 23:02:00,20.505,106.628,9.64 +2016-10-13 23:17:00,18.5075,106.665,9.64 +2016-10-13 23:32:00,20.4037,106.62,9.63 +2016-10-13 23:47:00,19.0488,106.565,9.6 +2016-10-14 00:02:00,19.1888,106.53,9.6 +2016-10-14 00:17:00,20.6475,106.54,9.59 +2016-10-14 00:32:00,19.095,106.455,9.58 +2016-10-14 00:47:00,19.8312,106.537,9.59 +2016-10-14 01:02:00,20.9825,106.545,9.58 +2016-10-14 01:17:00,20.8325,106.64,9.58 +2016-10-14 01:32:00,20.16,106.667,9.58 +2016-10-14 01:47:00,20.0625,106.722,9.57 +2016-10-14 02:02:00,20.21,106.715,9.56 +2016-10-14 02:17:00,22.0225,106.647,9.54 +2016-10-14 02:32:00,20.2138,106.53,9.52 +2016-10-14 02:47:00,19.335,106.54,9.53 +2016-10-14 03:02:00,19.3312,106.47,9.52 +2016-10-14 03:17:00,20.1588,106.325,9.53 +2016-10-14 03:32:00,21.3812,106.375,9.52 +2016-10-14 03:47:00,21.4275,106.465,9.53 +2016-10-14 04:02:00,18.7125,106.522,9.54 +2016-10-14 04:17:00,19.5312,106.66,9.53 +2016-10-14 04:32:00,19.2375,106.753,9.52 +2016-10-14 04:47:00,20.1612,106.753,9.5 +2016-10-14 05:02:00,21.28,106.692,9.49 +2016-10-14 05:17:00,20.8825,106.675,9.48 +2016-10-14 05:32:00,18.95,106.582,9.43 +2016-10-14 05:47:00,19.2775,106.457,9.37 +2016-10-14 06:02:00,20.3125,106.402,9.39 +2016-10-14 06:17:00,20.2062,106.242,9.39 +2016-10-14 06:32:00,19.1413,106.173,9.38 +2016-10-14 06:47:00,20.0163,106.185,9.39 +2016-10-14 07:02:00,21.8187,106.097,9.41 +2016-10-14 07:17:00,20.9788,106.082,9.4 +2016-10-14 07:32:00,20.2588,106.067,9.4 +2016-10-14 07:47:00,21.7225,106.097,9.4 +2016-10-14 08:02:00,20.4475,106.14,9.4 +2016-10-14 08:17:00,20.1137,106.143,9.38 +2016-10-14 08:32:00,20.1125,106.235,9.34 +2016-10-14 08:47:00,18.2275,106.33,9.3 +2016-10-14 09:02:00,22.0137,106.495,9.3 +2016-10-14 09:17:00,20.45,106.577,9.31 +2016-10-14 09:32:00,19.3787,106.595,9.32 +2016-10-14 09:47:00,19.0013,106.655,9.33 +2016-10-14 10:02:00,19.4788,106.74,9.36 +2016-10-14 10:17:00,22.6513,106.75,9.38 +2016-10-14 10:32:00,19.145,106.792,9.43 +2016-10-14 10:47:00,20.2087,106.947,9.48 +2016-10-14 11:02:00,20.88,107.077,9.55 +2016-10-14 11:17:00,19.1437,107.265,9.56 +2016-10-14 11:32:00,18.5075,107.42,9.58 +2016-10-14 11:47:00,19.5275,107.537,9.63 +2016-10-14 12:02:00,20.6488,107.71,9.62 +2016-10-14 12:17:00,19.7787,107.862,9.63 +2016-10-14 12:32:00,17.4437,108.137,9.64 +2016-10-14 12:47:00,19.7763,108.327,9.65 +2016-10-14 13:02:00,20.4538,108.537,9.67 +2016-10-14 13:17:00,21.92,108.677,9.69 +2016-10-14 13:32:00,19.4825,108.78,9.7 +2016-10-14 13:47:00,18.7612,108.897,9.71 +2016-10-14 14:02:00,17.5888,108.927,9.67 +2016-10-14 14:17:00,20.8375,109.037,9.65 +2016-10-14 14:32:00,20.4075,109.182,9.66 +2016-10-14 14:47:00,20.0625,109.292,9.68 +2016-10-14 15:02:00,20.26,109.435,9.7 +2016-10-14 15:17:00,20.8825,109.61,9.69 +2016-10-14 15:32:00,19.3787,109.727,9.69 +2016-10-14 15:47:00,20.3625,109.798,9.68 +2016-10-14 16:02:00,20.1162,109.875,9.68 +2016-10-14 16:17:00,18.5088,109.817,9.67 +2016-10-14 16:32:00,21.0825,109.832,9.66 +2016-10-14 16:47:00,19.825,109.82,9.66 +2016-10-14 17:02:00,19.6787,109.783,9.67 +2016-10-14 17:17:00,20.455,109.673,9.67 +2016-10-14 17:32:00,19.48,109.632,9.67 +2016-10-14 17:47:00,21.6237,109.487,9.66 +2016-10-14 18:02:00,19.7763,109.378,9.67 +2016-10-14 18:17:00,20.4062,109.29,9.67 +2016-10-14 18:32:00,18.2275,109.18,9.69 +2016-10-14 18:47:00,20.3162,109.057,9.72 +2016-10-14 19:02:00,20.3087,108.92,9.72 +2016-10-14 19:17:00,22.3988,108.73,9.72 +2016-10-14 19:32:00,19.485,108.58,9.73 +2016-10-14 19:47:00,20.315,108.337,9.75 +2016-10-14 20:02:00,19.285,108.075,9.77 +2016-10-14 20:17:00,21.3825,107.812,9.77 +2016-10-14 20:32:00,19.7763,107.577,9.78 +2016-10-14 20:47:00,18.3637,107.345,9.79 +2016-10-14 21:02:00,20.3112,107.182,9.79 +2016-10-14 21:17:00,21.1325,106.965,9.8 +2016-10-14 21:32:00,21.435,106.802,9.79 +2016-10-14 21:47:00,20.0163,106.69,9.77 +2016-10-14 22:02:00,21.38,106.545,9.74 +2016-10-14 22:17:00,20.4538,106.423,9.73 +2016-10-14 22:32:00,20.1588,106.29,9.73 +2016-10-14 22:47:00,19.875,106.195,9.72 +2016-10-14 23:02:00,20.1137,106.048,9.72 +2016-10-14 23:17:00,20.5987,105.895,9.7 +2016-10-14 23:32:00,19.485,105.787,9.69 +2016-10-14 23:47:00,21.3375,105.637,9.68 +2016-10-15 00:02:00,20.2625,105.515,9.67 +2016-10-15 00:17:00,19.97,105.382,9.67 +2016-10-15 00:32:00,21.9187,105.28,9.65 +2016-10-15 00:47:00,19.5362,105.037,9.64 +2016-10-15 01:02:00,20.735,104.89,9.64 +2016-10-15 01:17:00,20.6025,104.725,9.64 +2016-10-15 01:32:00,20.3125,104.637,9.64 +2016-10-15 01:47:00,19.9638,104.522,9.63 +2016-10-15 02:02:00,19.58,104.385,9.62 +2016-10-15 02:17:00,20.0163,104.188,9.61 +2016-10-15 02:32:00,22.3525,103.917,9.61 +2016-10-15 02:47:00,19.6275,103.715,9.6 +2016-10-15 03:02:00,20.21,103.44,9.6 +2016-10-15 03:17:00,20.5062,103.347,9.61 +2016-10-15 03:32:00,21.3862,103.2,9.62 +2016-10-15 03:47:00,19.0512,103.115,9.62 +2016-10-15 04:02:00,19.0963,103.015,9.63 +2016-10-15 04:17:00,20.31,102.915,9.63 +2016-10-15 04:32:00,18.8063,102.905,9.64 +2016-10-15 04:47:00,20.4062,102.84,9.65 +2016-10-15 05:02:00,21.3862,102.832,9.66 +2016-10-15 05:17:00,22.6975,102.722,9.67 +2016-10-15 05:32:00,18.2738,102.673,9.66 +2016-10-15 05:47:00,21.3838,102.643,9.65 +2016-10-15 06:02:00,21.135,102.597,9.65 +2016-10-15 06:17:00,18.855,102.567,9.64 +2016-10-15 06:32:00,22.5462,102.442,9.63 +2016-10-15 06:47:00,20.5025,102.417,9.63 +2016-10-15 07:02:00,19.4325,102.397,9.63 +2016-10-15 07:17:00,20.4575,102.415,9.62 +2016-10-15 07:32:00,22.2138,102.367,9.62 +2016-10-15 07:47:00,21.28,102.305,9.62 +2016-10-15 08:02:00,21.5225,102.275,9.62 +2016-10-15 08:17:00,21.08,102.155,9.61 +2016-10-15 08:32:00,22.0675,102.1,9.62 +2016-10-15 08:47:00,21.725,102.025,9.61 +2016-10-15 09:02:00,24.3562,101.995,9.62 +2016-10-15 09:17:00,21.6212,101.982,9.62 +2016-10-15 09:32:00,22.1162,102.0,9.63 +2016-10-15 09:47:00,21.4262,101.992,9.65 +2016-10-15 10:02:00,20.7375,102.05,9.68 +2016-10-15 10:17:00,22.4962,102.03,9.71 +2016-10-15 10:32:00,21.3812,101.987,9.74 +2016-10-15 10:47:00,20.5537,101.992,9.74 +2016-10-15 11:02:00,22.5013,101.965,9.73 +2016-10-15 11:17:00,20.93,101.947,9.72 +2016-10-15 11:32:00,21.7237,101.93,9.74 +2016-10-15 11:47:00,22.0163,101.935,9.76 +2016-10-15 12:02:00,19.7288,101.935,9.83 +2016-10-15 12:17:00,19.7787,101.957,9.87 +2016-10-15 12:32:00,22.795,101.878,9.89 +2016-10-15 12:47:00,22.0713,101.912,9.9 +2016-10-15 13:02:00,19.8712,101.837,9.9 +2016-10-15 13:17:00,22.5425,101.827,9.89 +2016-10-15 13:32:00,23.025,101.717,9.91 +2016-10-15 13:47:00,22.3487,101.62,9.94 +2016-10-15 14:02:00,23.4675,101.462,9.95 +2016-10-15 14:17:00,20.355,101.285,9.95 +2016-10-15 14:32:00,21.7738,101.177,9.95 +2016-10-15 14:47:00,21.625,101.087,9.95 +2016-10-15 15:02:00,22.7425,101.037,9.96 +2016-10-15 15:17:00,23.5125,100.985,9.98 +2016-10-15 15:32:00,21.72,100.935,10.01 +2016-10-15 15:47:00,21.08,100.92,10.01 +2016-10-15 16:02:00,20.7862,100.895,10.01 +2016-10-15 16:17:00,21.9225,100.875,10.02 +2016-10-15 16:32:00,22.35,100.805,10.03 +2016-10-15 16:47:00,23.3225,100.798,10.03 +2016-10-15 17:02:00,23.0263,100.727,10.04 +2016-10-15 17:17:00,22.115,100.7,10.05 +2016-10-15 17:32:00,21.5238,100.647,10.06 +2016-10-15 17:47:00,21.4788,100.58,10.08 +2016-10-15 18:02:00,21.5737,100.512,10.1 +2016-10-15 18:17:00,22.0675,100.505,10.11 +2016-10-15 18:32:00,20.1625,100.415,10.13 +2016-10-15 18:47:00,22.3037,100.4,10.14 +2016-10-15 19:02:00,20.8862,100.307,10.15 +2016-10-15 19:17:00,20.355,100.262,10.17 +2016-10-15 19:32:00,22.3538,100.2,10.18 +2016-10-15 19:47:00,20.4037,100.102,10.21 +2016-10-15 20:02:00,22.495,99.9525,10.23 +2016-10-15 20:17:00,21.6225,99.7475,10.24 +2016-10-15 20:32:00,22.1188,99.5625,10.26 +2016-10-15 20:47:00,22.355,99.4075,10.27 +2016-10-15 21:02:00,21.4762,99.2725,10.29 +2016-10-15 21:17:00,21.18,99.2325,10.31 +2016-10-15 21:32:00,23.5662,99.1475,10.31 +2016-10-15 21:47:00,23.42,99.105,10.31 +2016-10-15 22:02:00,23.9037,99.095,10.31 +2016-10-15 22:17:00,21.4788,99.0675,10.31 +2016-10-15 22:32:00,21.2775,99.0,10.33 +2016-10-15 22:47:00,23.3175,98.9325,10.33 +2016-10-15 23:02:00,22.8862,98.91,10.33 +2016-10-15 23:17:00,22.3025,98.855,10.34 +2016-10-15 23:32:00,21.4762,98.825,10.34 +2016-10-15 23:47:00,22.1637,98.75,10.33 +2016-10-16 00:02:00,22.7487,98.7575,10.33 +2016-10-16 00:17:00,22.305,98.7575,10.32 +2016-10-16 00:32:00,22.595,98.63,10.31 +2016-10-16 00:47:00,21.8237,98.6,10.3 +2016-10-16 01:02:00,23.5638,98.56,10.3 +2016-10-16 01:17:00,22.8375,98.505,10.29 +2016-10-16 01:32:00,20.3063,98.485,10.25 +2016-10-16 01:47:00,19.78,98.445,10.24 +2016-10-16 02:02:00,22.7387,98.37,10.26 +2016-10-16 02:17:00,21.4737,98.3,10.27 +2016-10-16 02:32:00,22.3962,98.15,10.28 +2016-10-16 02:47:00,23.0762,97.995,10.29 +2016-10-16 03:02:00,20.9287,97.8225,10.29 +2016-10-16 03:17:00,22.89,97.7125,10.31 +2016-10-16 03:32:00,22.45,97.6625,10.32 +2016-10-16 03:47:00,21.92,97.615,10.33 +2016-10-16 04:02:00,20.5525,97.63,10.35 +2016-10-16 04:17:00,21.2763,97.65,10.36 +2016-10-16 04:32:00,19.8712,97.6,10.37 +2016-10-16 04:47:00,21.1275,97.62,10.4 +2016-10-16 05:02:00,19.4788,97.5825,10.41 +2016-10-16 05:17:00,23.7588,97.5625,10.42 +2016-10-16 05:32:00,21.8725,97.575,10.42 +2016-10-16 05:47:00,21.3325,97.58,10.41 +2016-10-16 06:02:00,21.43,97.6375,10.4 +2016-10-16 06:17:00,22.545,97.5925,10.41 +2016-10-16 06:32:00,23.1687,97.5575,10.42 +2016-10-16 06:47:00,20.5987,97.5225,10.44 +2016-10-16 07:02:00,20.6,97.4225,10.45 +2016-10-16 07:17:00,22.69,97.335,10.47 +2016-10-16 07:32:00,21.5263,97.255,10.51 +2016-10-16 07:47:00,21.6762,97.145,10.54 +2016-10-16 08:02:00,23.5137,97.135,10.56 +2016-10-16 08:17:00,24.0912,97.055,10.57 +2016-10-16 08:32:00,22.3025,96.9475,10.58 +2016-10-16 08:47:00,21.9163,96.9475,10.6 +2016-10-16 09:02:00,18.8063,96.9575,10.63 +2016-10-16 09:17:00,21.8737,97.0525,10.65 +2016-10-16 09:32:00,22.3512,97.1175,10.67 +2016-10-16 09:47:00,21.575,97.25,10.69 +2016-10-16 10:02:00,22.6462,97.2525,10.72 +2016-10-16 10:17:00,21.7188,97.2625,10.74 +2016-10-16 10:32:00,22.9825,97.3475,10.78 +2016-10-16 10:47:00,24.3012,97.3825,10.77 +2016-10-16 11:02:00,23.2188,97.36,10.78 +2016-10-16 11:17:00,22.7425,97.375,10.78 +2016-10-16 11:32:00,22.4987,97.4275,10.79 +2016-10-16 11:47:00,21.38,97.4675,10.81 +2016-10-16 12:02:00,21.4275,97.3625,10.77 +2016-10-16 12:17:00,22.8412,97.4425,10.77 +2016-10-16 12:32:00,23.1712,97.385,10.8 +2016-10-16 12:47:00,19.9175,97.405,10.84 +2016-10-16 13:02:00,22.0638,97.345,10.86 +2016-10-16 13:17:00,21.3325,97.295,10.87 +2016-10-16 13:32:00,21.0837,97.1325,10.88 +2016-10-16 13:47:00,20.2113,97.0125,10.88 +2016-10-16 14:02:00,22.3988,96.9425,10.89 +2016-10-16 14:17:00,21.9662,96.865,10.89 +2016-10-16 14:32:00,22.79,96.85,10.9 +2016-10-16 14:47:00,23.2675,96.9175,10.9 +2016-10-16 15:02:00,22.1188,96.8325,10.91 +2016-10-16 15:17:00,20.7887,96.89,10.91 +2016-10-16 15:32:00,23.4163,96.92,10.93 +2016-10-16 15:47:00,20.7387,96.9475,10.94 +2016-10-16 16:02:00,23.6612,96.9775,10.94 +2016-10-16 16:17:00,22.6925,96.955,10.94 +2016-10-16 16:32:00,23.1687,96.9125,10.94 +2016-10-16 16:47:00,21.675,96.9275,10.94 +2016-10-16 17:02:00,22.0212,96.9325,10.97 +2016-10-16 17:17:00,21.335,96.96,10.98 +2016-10-16 17:32:00,23.8525,96.985,10.98 +2016-10-16 17:47:00,21.2787,96.935,10.99 +2016-10-16 18:02:00,20.26,96.98,11.02 +2016-10-16 18:17:00,20.8375,96.915,11.04 +2016-10-16 18:32:00,21.475,96.95,11.06 +2016-10-16 18:47:00,21.875,96.9225,11.09 +2016-10-16 19:02:00,21.5287,96.875,11.12 +2016-10-16 19:17:00,20.8825,96.7725,11.16 +2016-10-16 19:32:00,22.0638,96.6925,11.18 +2016-10-16 19:47:00,21.2288,96.51,11.2 +2016-10-16 20:02:00,21.23,96.3725,11.21 +2016-10-16 20:17:00,22.0187,96.22,11.22 +2016-10-16 20:32:00,22.0662,96.125,11.25 +2016-10-16 20:47:00,21.8237,96.1025,11.28 +2016-10-16 21:02:00,23.8075,96.1,11.29 +2016-10-16 21:17:00,23.0325,96.0725,11.32 +2016-10-16 21:32:00,20.8812,96.11,11.35 +2016-10-16 21:47:00,22.4987,96.07,11.38 +2016-10-16 22:02:00,22.3,96.04,11.39 +2016-10-16 22:17:00,22.3487,96.075,11.39 +2016-10-16 22:32:00,20.9287,96.0025,11.39 +2016-10-16 22:47:00,20.1637,96.09,11.4 +2016-10-16 23:02:00,20.5537,96.0525,11.41 +2016-10-16 23:17:00,20.7862,95.9925,11.42 +2016-10-16 23:32:00,22.21,95.9875,11.4 +2016-10-16 23:47:00,21.8213,95.97,11.37 +2016-10-17 00:02:00,19.6787,95.915,11.34 +2016-10-17 00:17:00,19.625,95.9125,11.31 +2016-10-17 00:32:00,20.41,95.865,11.27 +2016-10-17 00:47:00,19.7787,95.82,11.24 +2016-10-17 01:02:00,21.03,95.795,11.21 +2016-10-17 01:17:00,22.2562,95.7375,11.18 +2016-10-17 01:32:00,21.7712,95.655,11.16 +2016-10-17 01:47:00,20.69,95.555,11.15 +2016-10-17 02:02:00,21.1312,95.375,11.14 +2016-10-17 02:17:00,19.9625,95.2275,11.13 +2016-10-17 02:32:00,20.7925,95.1475,11.13 +2016-10-17 02:47:00,21.4788,95.07,11.11 +2016-10-17 03:02:00,22.5975,95.045,11.12 +2016-10-17 03:17:00,19.7288,94.955,11.11 +2016-10-17 03:32:00,21.2325,94.9775,11.1 +2016-10-17 03:47:00,21.7725,94.935,11.1 +2016-10-17 04:02:00,22.0612,94.9225,11.1 +2016-10-17 04:17:00,22.0625,94.9425,11.12 +2016-10-17 04:32:00,21.1825,94.9825,11.13 +2016-10-17 04:47:00,22.0187,94.9875,11.14 +2016-10-17 05:02:00,23.1725,94.875,11.16 +2016-10-17 05:17:00,21.4275,94.945,11.16 +2016-10-17 05:32:00,21.5238,94.9275,11.18 +2016-10-17 05:47:00,20.405,94.8775,11.2 +2016-10-17 06:02:00,23.9975,94.8625,11.21 +2016-10-17 06:17:00,22.7913,94.7625,11.21 +2016-10-17 06:32:00,21.2325,94.68,11.21 +2016-10-17 06:47:00,22.595,94.49,11.22 +2016-10-17 07:02:00,22.645,94.155,11.25 +2016-10-17 07:17:00,21.3337,93.82,11.28 +2016-10-17 07:32:00,22.9375,93.7275,11.33 +2016-10-17 07:47:00,22.74,93.72,11.37 +2016-10-17 08:02:00,20.7387,93.7325,11.42 +2016-10-17 08:17:00,21.0312,93.7,11.44 +2016-10-17 08:32:00,21.5725,93.7925,11.46 +2016-10-17 08:47:00,22.8862,93.865,11.47 +2016-10-17 09:02:00,22.21,93.895,11.49 +2016-10-17 09:17:00,22.69,94.1875,11.52 +2016-10-17 09:32:00,22.495,94.4225,11.52 +2016-10-17 09:47:00,22.3012,94.55,11.51 +2016-10-17 10:02:00,19.92,94.565,11.52 +2016-10-17 10:17:00,23.4713,94.615,11.54 +2016-10-17 10:32:00,21.475,94.5475,11.53 +2016-10-17 10:47:00,22.74,94.5,11.53 +2016-10-17 11:02:00,21.6188,94.41,11.53 +2016-10-17 11:17:00,22.445,94.345,11.55 +2016-10-17 11:32:00,20.455,94.2775,11.57 +2016-10-17 11:47:00,20.3562,94.2675,11.58 +2016-10-17 12:02:00,21.92,94.23,11.6 +2016-10-17 12:17:00,21.6775,94.235,11.58 +2016-10-17 12:32:00,20.735,94.175,11.59 +2016-10-17 12:47:00,22.0625,94.145,11.58 +2016-10-17 13:02:00,22.6937,94.1075,11.57 +2016-10-17 13:17:00,22.9362,94.0525,11.59 +2016-10-17 13:32:00,20.0137,94.065,11.59 +2016-10-17 13:47:00,21.825,94.0075,11.55 +2016-10-17 14:02:00,21.8225,94.015,11.47 +2016-10-17 14:17:00,20.8375,94.065,11.33 +2016-10-17 14:32:00,22.7387,94.1575,11.24 +2016-10-17 14:47:00,22.2113,94.2175,11.18 +2016-10-17 15:02:00,20.3112,94.245,11.21 +2016-10-17 15:17:00,21.3775,94.32,11.25 +2016-10-17 15:32:00,20.5938,94.3475,11.28 +2016-10-17 15:47:00,21.0812,94.2675,11.29 +2016-10-17 16:02:00,22.0225,94.1425,11.29 +2016-10-17 16:17:00,21.7712,93.93,11.29 +2016-10-17 16:32:00,22.4512,93.59,11.32 +2016-10-17 16:47:00,19.1875,93.12,11.33 +2016-10-17 17:02:00,20.5525,92.6125,11.34 +2016-10-17 17:17:00,21.0312,92.02,11.35 +2016-10-17 17:32:00,20.3138,91.455,11.36 +2016-10-17 17:47:00,21.9713,90.8125,11.39 +2016-10-17 18:02:00,20.5,90.15,11.41 +2016-10-17 18:17:00,20.6462,89.48,11.43 +2016-10-17 18:32:00,20.9788,88.8775,11.44 +2016-10-17 18:47:00,21.82,88.1875,11.45 +2016-10-17 19:02:00,20.45,87.5825,11.44 +2016-10-17 19:17:00,17.8787,86.9675,11.45 +2016-10-17 19:32:00,20.9337,86.3875,11.45 +2016-10-17 19:47:00,22.8887,85.8525,11.46 +2016-10-17 20:02:00,21.7175,85.345,11.47 +2016-10-17 20:17:00,18.655,84.905,11.46 +2016-10-17 20:32:00,20.9287,84.52,11.48 +2016-10-17 20:47:00,20.885,84.24,11.48 +2016-10-17 21:02:00,22.255,83.9925,11.48 +2016-10-17 21:17:00,19.5312,83.8025,11.49 +2016-10-17 21:32:00,20.0612,83.64,11.51 +2016-10-17 21:47:00,21.5263,83.5,11.58 +2016-10-17 22:02:00,21.1287,83.38,11.69 +2016-10-17 22:17:00,20.7375,83.235,11.78 +2016-10-17 22:32:00,20.2588,83.17,11.82 +2016-10-17 22:47:00,22.5975,83.14,11.82 +2016-10-17 23:02:00,20.2075,83.1325,11.81 +2016-10-17 23:17:00,20.3138,83.2325,11.77 +2016-10-17 23:32:00,21.0863,83.35,11.76 +2016-10-17 23:47:00,21.3262,83.57,11.83 +2016-10-18 00:02:00,20.3587,83.795,11.86 +2016-10-18 00:17:00,20.55,84.0525,11.84 +2016-10-18 00:32:00,20.6012,84.3075,11.84 +2016-10-18 00:47:00,18.6075,84.58,11.83 +2016-10-18 01:02:00,20.7412,84.8475,11.81 +2016-10-18 01:17:00,20.6937,85.1675,11.77 +2016-10-18 01:32:00,22.4525,85.4775,11.74 +2016-10-18 01:47:00,21.3337,85.8125,11.76 +2016-10-18 02:02:00,21.0312,86.0725,11.76 +2016-10-18 02:17:00,20.8337,86.3875,11.71 +2016-10-18 02:32:00,23.03,86.655,11.69 +2016-10-18 02:47:00,21.6237,86.9225,11.68 +2016-10-18 03:02:00,20.3587,87.195,11.67 +2016-10-18 03:17:00,18.0325,87.4325,11.64 +2016-10-18 03:32:00,19.0,87.66,11.61 +2016-10-18 03:47:00,21.0312,87.8875,11.61 +2016-10-18 04:02:00,20.0612,88.0325,11.59 +2016-10-18 04:17:00,18.3213,88.145,11.55 +2016-10-18 04:32:00,19.6787,88.1825,11.55 +2016-10-18 04:47:00,19.8712,88.245,11.54 +2016-10-18 05:02:00,18.5587,88.3225,11.52 +2016-10-18 05:17:00,20.7925,88.4575,11.5 +2016-10-18 05:32:00,18.7075,88.63,11.49 +2016-10-18 05:47:00,19.3838,88.79,11.5 +2016-10-18 06:02:00,21.18,88.9175,11.48 +2016-10-18 06:17:00,19.3337,88.9875,11.43 +2016-10-18 06:32:00,22.6437,89.025,11.38 +2016-10-18 06:47:00,19.4825,89.085,11.35 +2016-10-18 07:02:00,21.38,89.1375,11.34 +2016-10-18 07:17:00,19.9625,89.16,11.33 +2016-10-18 07:32:00,21.08,89.19,11.31 +2016-10-18 07:47:00,20.5525,89.335,11.32 +2016-10-18 08:02:00,23.0287,89.445,11.36 +2016-10-18 08:17:00,20.9287,89.43,11.38 +2016-10-18 08:32:00,21.6687,89.49,11.41 +2016-10-18 08:47:00,20.505,89.575,11.45 +2016-10-18 09:02:00,18.905,89.7425,11.42 +2016-10-18 09:17:00,18.8063,89.81,11.38 +2016-10-18 09:32:00,20.0625,89.9025,11.44 +2016-10-18 09:47:00,20.2625,89.9525,11.52 +2016-10-18 10:02:00,19.5762,90.0375,11.58 +2016-10-18 10:17:00,22.0662,90.115,11.62 +2016-10-18 10:32:00,20.79,90.1425,11.66 +2016-10-18 10:47:00,20.36,90.1725,11.71 +2016-10-18 11:02:00,19.4812,90.235,11.78 +2016-10-18 11:17:00,19.3337,90.265,11.85 +2016-10-18 11:32:00,21.6237,90.2575,11.86 +2016-10-18 11:47:00,20.74,90.3125,11.86 +2016-10-18 12:02:00,20.4975,90.33,11.89 +2016-10-18 12:17:00,20.9788,90.315,11.91 +2016-10-18 12:32:00,20.36,90.2375,11.93 +2016-10-18 12:47:00,20.3138,90.1525,11.97 +2016-10-18 13:02:00,20.7387,90.065,12.03 +2016-10-18 13:17:00,21.0325,89.965,12.01 +2016-10-18 13:32:00,20.1575,89.8725,12.0 +2016-10-18 13:47:00,19.4275,89.845,12.01 +2016-10-18 14:02:00,23.3675,89.865,12.01 +2016-10-18 14:17:00,19.4825,89.8525,11.99 +2016-10-18 14:32:00,18.1813,89.8725,11.93 +2016-10-18 14:47:00,21.3325,89.855,11.92 +2016-10-18 15:02:00,22.1625,89.875,11.91 +2016-10-18 15:17:00,19.2862,89.8925,11.87 +2016-10-18 15:32:00,21.7725,89.8975,11.81 +2016-10-18 15:47:00,18.37,89.8825,11.79 +2016-10-18 16:02:00,21.33,89.885,11.79 +2016-10-18 16:17:00,19.8775,89.8875,11.78 +2016-10-18 16:32:00,20.3138,89.8575,11.74 +2016-10-18 16:47:00,19.3325,89.8125,11.73 +2016-10-18 17:02:00,22.0662,89.75,11.73 +2016-10-18 17:17:00,19.8737,89.695,11.73 +2016-10-18 17:32:00,22.4975,89.555,11.71 +2016-10-18 17:47:00,21.6725,89.3875,11.7 +2016-10-18 18:02:00,21.0812,89.205,11.72 +2016-10-18 18:17:00,20.9837,89.085,11.73 +2016-10-18 18:32:00,19.5375,89.025,11.72 +2016-10-18 18:47:00,22.9337,88.975,11.72 +2016-10-18 19:02:00,23.1212,88.9175,11.74 +2016-10-18 19:17:00,20.0625,88.895,11.81 +2016-10-18 19:32:00,20.16,88.87,11.87 +2016-10-18 19:47:00,21.23,88.9025,11.91 +2016-10-18 20:02:00,20.4575,88.8775,11.95 +2016-10-18 20:17:00,20.115,88.935,11.99 +2016-10-18 20:32:00,22.8875,89.0475,12.04 +2016-10-18 20:47:00,18.415,89.08,12.09 +2016-10-18 21:02:00,20.8825,89.075,12.13 +2016-10-18 21:17:00,22.015,89.07,12.17 +2016-10-18 21:32:00,20.45,89.045,12.2 +2016-10-18 21:47:00,21.77,88.9975,12.23 +2016-10-18 22:02:00,21.1837,88.9825,12.25 +2016-10-18 22:17:00,19.1,88.975,12.22 +2016-10-18 22:32:00,20.7862,88.85,12.22 +2016-10-18 22:47:00,19.3337,88.75,12.26 +2016-10-18 23:02:00,19.2825,88.585,12.29 +2016-10-18 23:17:00,20.7363,88.41,12.32 +2016-10-18 23:32:00,21.135,88.27,12.33 +2016-10-18 23:47:00,19.4825,88.1775,12.32 +2016-10-19 00:02:00,19.4337,88.125,12.3 +2016-10-19 00:17:00,21.0338,88.0525,12.29 +2016-10-19 00:32:00,20.0612,88.04,12.29 +2016-10-19 00:47:00,21.6225,88.005,12.28 +2016-10-19 01:02:00,19.9187,87.97,12.25 +2016-10-19 01:17:00,20.9762,87.9275,12.22 +2016-10-19 01:32:00,18.03,87.93,12.19 +2016-10-19 01:47:00,21.035,87.915,12.16 +2016-10-19 02:02:00,19.8312,87.95,12.13 +2016-10-19 02:17:00,19.4313,87.9525,12.1 +2016-10-19 02:32:00,21.0825,87.96,12.08 +2016-10-19 02:47:00,17.4412,88.01,12.06 +2016-10-19 03:02:00,20.4075,88.0475,12.04 +2016-10-19 03:17:00,20.5013,88.0775,12.01 +2016-10-19 03:32:00,18.3225,88.1375,11.98 +2016-10-19 03:47:00,19.8775,88.125,11.95 +2016-10-19 04:02:00,18.8575,88.0925,11.93 +2016-10-19 04:17:00,19.4287,88.02,11.92 +2016-10-19 04:32:00,20.0612,87.96,11.9 +2016-10-19 04:47:00,18.805,87.9175,11.88 +2016-10-19 05:02:00,19.2363,87.955,11.88 +2016-10-19 05:17:00,21.5737,88.075,11.86 +2016-10-19 05:32:00,21.6775,88.205,11.86 +2016-10-19 05:47:00,20.9825,88.3375,11.83 +2016-10-19 06:02:00,21.7225,88.4775,11.81 +2016-10-19 06:17:00,20.4062,88.655,11.8 +2016-10-19 06:32:00,20.9337,88.7275,11.79 +2016-10-19 06:47:00,20.7363,88.7675,11.79 +2016-10-19 07:02:00,20.6488,88.875,11.79 +2016-10-19 07:17:00,19.58,89.045,11.81 +2016-10-19 07:32:00,20.8875,89.2125,11.86 +2016-10-19 07:47:00,17.9375,89.4375,11.9 +2016-10-19 08:02:00,21.0338,89.6475,11.95 +2016-10-19 08:17:00,20.2612,89.82,11.98 +2016-10-19 08:32:00,19.8275,89.9875,12.0 +2016-10-19 08:47:00,21.3337,90.1325,12.01 +2016-10-19 09:02:00,21.9688,90.26,12.02 +2016-10-19 09:17:00,20.89,90.3975,12.02 +2016-10-19 09:32:00,19.4325,90.405,12.03 +2016-10-19 09:47:00,20.6937,90.45,12.05 +2016-10-19 10:02:00,18.415,90.47,12.06 +2016-10-19 10:17:00,20.1125,90.5725,12.09 +2016-10-19 10:32:00,23.2175,90.6575,12.09 +2016-10-19 10:47:00,19.0975,90.795,12.1 +2016-10-19 11:02:00,21.1287,90.815,12.13 +2016-10-19 11:17:00,20.645,90.9425,12.17 +2016-10-19 11:32:00,20.4125,90.98,12.16 +2016-10-19 11:47:00,21.825,91.07,12.13 +2016-10-19 12:02:00,18.9487,91.1675,12.08 +2016-10-19 12:17:00,18.9,91.31,12.07 +2016-10-19 12:32:00,18.125,91.355,12.06 +2016-10-19 12:47:00,22.79,91.4375,12.05 +2016-10-19 13:02:00,22.7925,91.54,12.02 +2016-10-19 13:17:00,19.24,91.58,11.99 +2016-10-19 13:32:00,19.435,91.5425,11.93 +2016-10-19 13:47:00,21.0275,91.495,11.9 +2016-10-19 14:02:00,20.8775,91.3775,11.87 +2016-10-19 14:17:00,20.5,91.2675,11.84 +2016-10-19 14:32:00,19.1888,91.13,11.82 +2016-10-19 14:47:00,18.3688,91.12,11.79 +2016-10-19 15:02:00,18.9075,91.185,11.76 +2016-10-19 15:17:00,22.405,91.3,11.73 +2016-10-19 15:32:00,19.675,91.4975,11.73 +2016-10-19 15:47:00,20.0587,91.6575,11.73 +2016-10-19 16:02:00,19.05,91.805,11.72 +2016-10-19 16:17:00,19.6312,91.8675,11.72 +2016-10-19 16:32:00,22.0187,91.93,11.73 +2016-10-19 16:47:00,21.3312,91.9975,11.72 +2016-10-19 17:02:00,22.2612,92.0725,11.69 +2016-10-19 17:17:00,19.8787,92.1575,11.66 +2016-10-19 17:32:00,19.7763,92.09,11.67 +2016-10-19 17:47:00,20.7425,92.0475,11.7 +2016-10-19 18:02:00,17.495,91.9425,11.71 +2016-10-19 18:17:00,19.8725,91.8,11.72 +2016-10-19 18:32:00,19.0475,91.705,11.74 +2016-10-19 18:47:00,22.5013,91.645,11.76 +2016-10-19 19:02:00,19.2862,91.595,11.77 +2016-10-19 19:17:00,19.3325,91.545,11.78 +2016-10-19 19:32:00,22.1637,91.5625,11.8 +2016-10-19 19:47:00,20.6488,91.5775,11.79 +2016-10-19 20:02:00,19.235,91.62,11.8 +2016-10-19 20:17:00,20.3613,91.61,11.82 +2016-10-19 20:32:00,21.7225,91.665,11.82 +2016-10-19 20:47:00,17.735,91.695,11.82 +2016-10-19 21:02:00,20.4562,91.765,11.83 +2016-10-19 21:17:00,21.1862,91.7775,11.83 +2016-10-19 21:32:00,20.6012,91.7575,11.83 +2016-10-19 21:47:00,20.0638,91.74,11.83 +2016-10-19 22:02:00,20.355,91.6325,11.79 +2016-10-19 22:17:00,20.6462,91.475,11.76 +2016-10-19 22:32:00,20.1612,91.3725,11.74 +2016-10-19 22:47:00,20.9825,91.29,11.71 +2016-10-19 23:02:00,21.2275,91.2425,11.68 +2016-10-19 23:17:00,20.9313,91.26,11.67 +2016-10-19 23:32:00,22.2113,91.2675,11.65 +2016-10-19 23:47:00,18.5112,91.3575,11.62 +2016-10-20 00:02:00,19.335,91.4125,11.59 +2016-10-20 00:17:00,19.3787,91.51,11.56 +2016-10-20 00:32:00,21.1825,91.55,11.53 +2016-10-20 00:47:00,19.435,91.67,11.51 +2016-10-20 01:02:00,21.3312,91.7575,11.49 +2016-10-20 01:17:00,20.5987,91.76,11.47 +2016-10-20 01:32:00,20.6,91.8175,11.45 +2016-10-20 01:47:00,19.7288,91.775,11.42 +2016-10-20 02:02:00,18.9987,91.7025,11.38 +2016-10-20 02:17:00,18.5612,91.63,11.33 +2016-10-20 02:32:00,21.5263,91.5975,11.3 +2016-10-20 02:47:00,21.2838,91.6225,11.28 +2016-10-20 03:02:00,18.7038,91.6825,11.25 +2016-10-20 03:17:00,19.5788,91.6775,11.23 +2016-10-20 03:32:00,18.1738,91.745,11.19 +2016-10-20 03:47:00,18.5125,91.84,11.16 +2016-10-20 04:02:00,18.2237,91.8975,11.12 +2016-10-20 04:17:00,20.2625,92.015,11.11 +2016-10-20 04:32:00,21.5737,92.085,11.09 +2016-10-20 04:47:00,21.1813,92.1775,11.09 +2016-10-20 05:02:00,20.8812,92.2775,11.08 +2016-10-20 05:17:00,20.3075,92.345,11.07 +2016-10-20 05:32:00,19.1413,92.39,11.06 +2016-10-20 05:47:00,19.9675,92.405,11.04 +2016-10-20 06:02:00,19.775,92.385,11.02 +2016-10-20 06:17:00,20.2612,92.345,11.01 +2016-10-20 06:32:00,22.8875,92.3575,11.01 +2016-10-20 06:47:00,20.7862,92.34,11.0 +2016-10-20 07:02:00,20.1575,92.345,11.02 +2016-10-20 07:17:00,20.4538,92.375,11.03 +2016-10-20 07:32:00,20.6925,92.375,11.05 +2016-10-20 07:47:00,20.3075,92.4625,11.07 +2016-10-20 08:02:00,21.9675,92.4525,11.07 +2016-10-20 08:17:00,22.89,92.47,11.06 +2016-10-20 08:32:00,19.675,92.5225,11.07 +2016-10-20 08:47:00,21.3787,92.5225,11.1 +2016-10-20 09:02:00,20.2087,92.5475,11.16 +2016-10-20 09:17:00,21.08,92.56,11.19 +2016-10-20 09:32:00,20.5512,92.5875,11.15 +2016-10-20 09:47:00,22.9812,92.5775,11.12 +2016-10-20 10:02:00,22.5462,92.6525,11.14 +2016-10-20 10:17:00,18.8063,92.65,11.2 +2016-10-20 10:32:00,20.5512,92.67,11.22 +2016-10-20 10:47:00,20.1087,92.6775,11.23 +2016-10-20 11:02:00,21.1287,92.7,11.2 +2016-10-20 11:17:00,20.785,92.7625,11.19 +2016-10-20 11:32:00,21.4287,92.76,11.17 +2016-10-20 11:47:00,20.6,92.655,11.12 +2016-10-20 12:02:00,21.4313,92.565,11.14 +2016-10-20 12:17:00,19.1375,92.495,11.16 +2016-10-20 12:32:00,20.1113,92.4325,11.16 +2016-10-20 12:47:00,20.3063,92.3925,11.14 +2016-10-20 13:02:00,22.7887,92.4225,11.13 +2016-10-20 13:17:00,20.8312,92.425,11.13 +2016-10-20 13:32:00,17.8275,92.4725,11.12 +2016-10-20 13:47:00,20.1612,92.4825,11.11 +2016-10-20 14:02:00,23.13,92.475,11.1 +2016-10-20 14:17:00,22.7412,92.4775,11.08 +2016-10-20 14:32:00,21.1362,92.505,11.05 +2016-10-20 14:47:00,20.88,92.51,11.01 +2016-10-20 15:02:00,20.5475,92.5375,10.95 +2016-10-20 15:17:00,20.305,92.565,10.92 +2016-10-20 15:32:00,19.1437,92.575,10.91 +2016-10-20 15:47:00,20.6462,92.595,10.9 +2016-10-20 16:02:00,21.7213,92.63,10.89 +2016-10-20 16:17:00,19.7237,92.66,10.88 +2016-10-20 16:32:00,18.7537,92.725,10.87 +2016-10-20 16:47:00,19.3312,92.7925,10.87 +2016-10-20 17:02:00,20.0137,92.86,10.84 +2016-10-20 17:17:00,20.1625,92.9325,10.85 +2016-10-20 17:32:00,18.9987,92.9575,10.87 +2016-10-20 17:47:00,20.8337,93.0225,10.88 +2016-10-20 18:02:00,20.78,93.1125,10.87 +2016-10-20 18:17:00,17.9812,93.165,10.85 +2016-10-20 18:32:00,20.2062,93.2125,10.85 +2016-10-20 18:47:00,19.4788,93.3,10.85 +2016-10-20 19:02:00,21.8225,93.365,10.85 +2016-10-20 19:17:00,19.775,93.435,10.85 +2016-10-20 19:32:00,20.0187,93.5425,10.86 +2016-10-20 19:47:00,22.5963,93.6575,10.9 +2016-10-20 20:02:00,20.4025,93.77,10.95 +2016-10-20 20:17:00,18.6062,93.8725,11.0 +2016-10-20 20:32:00,17.88,93.8975,11.04 +2016-10-20 20:47:00,19.9137,93.9175,11.05 +2016-10-20 21:02:00,18.9487,93.94,11.07 +2016-10-20 21:17:00,20.355,93.9875,11.1 +2016-10-20 21:32:00,20.4512,94.0775,11.12 +2016-10-20 21:47:00,20.5475,94.18,11.14 +2016-10-20 22:02:00,20.3063,94.3275,11.13 +2016-10-20 22:17:00,20.7825,94.44,11.12 +2016-10-20 22:32:00,21.615,94.5825,11.11 +2016-10-20 22:47:00,20.1075,94.7525,11.1 +2016-10-20 23:02:00,21.62,94.8975,11.09 +2016-10-20 23:17:00,20.1113,95.025,11.07 +2016-10-20 23:32:00,20.9788,95.1675,11.05 +2016-10-20 23:47:00,20.2062,95.3025,11.04 +2016-10-21 00:02:00,19.1837,95.44,11.02 +2016-10-21 00:17:00,21.5187,95.56,11.01 +2016-10-21 00:32:00,21.8675,95.685,11.0 +2016-10-21 00:47:00,21.3775,95.8125,10.99 +2016-10-21 01:02:00,19.5325,95.9125,10.98 +2016-10-21 01:17:00,19.7288,96.045,10.96 +2016-10-21 01:32:00,19.9175,96.14,10.94 +2016-10-21 01:47:00,20.975,96.2725,10.93 +2016-10-21 02:02:00,20.3075,96.4275,10.91 +2016-10-21 02:17:00,19.72,96.5725,10.89 +2016-10-21 02:32:00,18.125,96.6175,10.88 +2016-10-21 02:47:00,18.7062,96.6575,10.88 +2016-10-21 03:02:00,20.9837,96.6675,10.87 +2016-10-21 03:17:00,20.3575,96.6275,10.85 +2016-10-21 03:32:00,21.4287,96.6275,10.84 +2016-10-21 03:47:00,20.6437,96.7175,10.83 +2016-10-21 04:02:00,21.33,96.7975,10.83 +2016-10-21 04:17:00,20.7838,96.8975,10.82 +2016-10-21 04:32:00,19.6263,96.99,10.81 +2016-10-21 04:47:00,19.3812,97.115,10.82 +2016-10-21 05:02:00,19.63,97.1975,10.82 +2016-10-21 05:17:00,21.9675,97.3525,10.82 +2016-10-21 05:32:00,21.1775,97.4925,10.81 +2016-10-21 05:47:00,19.4788,97.6325,10.8 +2016-10-21 06:02:00,19.87,97.6925,10.79 +2016-10-21 06:17:00,20.55,97.745,10.78 +2016-10-21 06:32:00,19.19,97.8225,10.76 +2016-10-21 06:47:00,20.0137,98.0,10.75 +2016-10-21 07:02:00,18.855,98.3475,10.75 +2016-10-21 07:17:00,19.0462,98.71,10.78 +2016-10-21 07:32:00,21.2288,99.065,10.79 +2016-10-21 07:47:00,22.5425,99.4175,10.79 +2016-10-21 08:02:00,21.1275,99.8575,10.77 +2016-10-21 08:17:00,19.2337,100.347,10.72 +2016-10-21 08:32:00,21.1825,100.817,10.7 +2016-10-21 08:47:00,22.02,101.182,10.69 +2016-10-21 09:02:00,18.9025,101.49,10.66 +2016-10-21 09:17:00,21.18,101.857,10.62 +2016-10-21 09:32:00,21.0312,102.352,10.58 +2016-10-21 09:47:00,23.315,102.977,10.55 +2016-10-21 10:02:00,20.9775,103.602,10.55 +2016-10-21 10:17:00,20.06,104.212,10.55 +2016-10-21 10:32:00,20.74,104.827,10.53 +2016-10-21 10:47:00,20.785,105.432,10.5 +2016-10-21 11:02:00,20.4037,105.945,10.48 +2016-10-21 11:17:00,21.0812,106.438,10.46 +2016-10-21 11:32:00,23.6113,106.867,10.45 +2016-10-21 11:47:00,21.0275,107.285,10.44 +2016-10-21 12:02:00,22.2562,107.587,10.45 +2016-10-21 12:17:00,19.5287,107.83,10.46 +2016-10-21 12:32:00,23.03,108.087,10.47 +2016-10-21 12:47:00,19.97,108.445,10.47 +2016-10-21 13:02:00,21.0788,108.902,10.47 +2016-10-21 13:17:00,18.6525,109.378,10.47 +2016-10-21 13:32:00,21.8712,109.912,10.47 +2016-10-21 13:47:00,20.3538,110.4,10.46 +2016-10-21 14:02:00,20.355,110.912,10.45 +2016-10-21 14:17:00,20.2625,111.417,10.45 +2016-10-21 14:32:00,18.9037,111.867,10.45 +2016-10-21 14:47:00,20.3562,112.245,10.45 +2016-10-21 15:02:00,21.38,112.557,10.44 +2016-10-21 15:17:00,21.1287,112.783,10.44 +2016-10-21 15:32:00,19.5788,112.935,10.44 +2016-10-21 15:47:00,20.5488,113.027,10.44 +2016-10-21 16:02:00,21.6725,113.062,10.44 +2016-10-21 16:17:00,20.8337,113.04,10.45 +2016-10-21 16:32:00,19.0975,112.972,10.44 +2016-10-21 16:47:00,21.2275,112.815,10.44 +2016-10-21 17:02:00,21.57,112.557,10.44 +2016-10-21 17:17:00,20.9275,112.24,10.43 +2016-10-21 17:32:00,22.0187,111.93,10.43 +2016-10-21 17:47:00,20.5475,111.562,10.41 +2016-10-21 18:02:00,21.2288,111.175,10.41 +2016-10-21 18:17:00,20.6,110.753,10.4 +2016-10-21 18:32:00,20.9762,110.352,10.38 +2016-10-21 18:47:00,22.3025,110.04,10.36 +2016-10-21 19:02:00,20.735,109.732,10.33 +2016-10-21 19:17:00,20.3037,109.447,10.3 +2016-10-21 19:32:00,20.9725,109.18,10.27 +2016-10-21 19:47:00,17.88,108.93,10.26 +2016-10-21 20:02:00,20.74,108.688,10.24 +2016-10-21 20:17:00,18.2288,108.48,10.25 +2016-10-21 20:32:00,21.4262,108.265,10.24 +2016-10-21 20:47:00,19.0437,108.042,10.23 +2016-10-21 21:02:00,20.11,107.8,10.21 +2016-10-21 21:17:00,19.4287,107.58,10.2 +2016-10-21 21:32:00,21.13,107.395,10.18 +2016-10-21 21:47:00,21.8237,107.227,10.17 +2016-10-21 22:02:00,21.1325,107.035,10.15 +2016-10-21 22:17:00,18.7025,106.86,10.13 +2016-10-21 22:32:00,21.1275,106.715,10.1 +2016-10-21 22:47:00,20.9737,106.557,10.08 +2016-10-21 23:02:00,21.2763,106.435,10.06 +2016-10-21 23:17:00,21.1312,106.298,10.06 +2016-10-21 23:32:00,20.7825,106.2,10.06 +2016-10-21 23:47:00,21.6237,106.077,10.04 +2016-10-22 00:02:00,23.175,105.96,10.03 +2016-10-22 00:17:00,19.7237,105.768,10.01 +2016-10-22 00:32:00,21.2812,105.59,10.0 +2016-10-22 00:47:00,22.6437,105.38,9.97 +2016-10-22 01:02:00,22.6925,105.265,9.95 +2016-10-22 01:17:00,21.03,105.222,9.93 +2016-10-22 01:32:00,18.8538,105.207,9.92 +2016-10-22 01:47:00,19.965,105.215,9.91 +2016-10-22 02:02:00,21.6212,105.235,9.9 +2016-10-22 02:17:00,20.6437,105.28,9.9 +2016-10-22 02:32:00,21.4725,105.312,9.87 +2016-10-22 02:47:00,21.9662,105.39,9.86 +2016-10-22 03:02:00,20.1087,105.435,9.85 +2016-10-22 03:17:00,20.7862,105.46,9.85 +2016-10-22 03:32:00,21.3337,105.535,9.83 +2016-10-22 03:47:00,23.4212,105.585,9.81 +2016-10-22 04:02:00,20.8312,105.665,9.81 +2016-10-22 04:17:00,20.1562,105.753,9.81 +2016-10-22 04:32:00,20.01,105.825,9.81 +2016-10-22 04:47:00,21.4737,105.938,9.81 +2016-10-22 05:02:00,20.88,106.027,9.83 +2016-10-22 05:17:00,20.4975,106.07,9.82 +2016-10-22 05:32:00,21.0325,106.097,9.81 +2016-10-22 05:47:00,21.6237,106.102,9.81 +2016-10-22 06:02:00,20.2575,106.11,9.81 +2016-10-22 06:17:00,20.2612,106.117,9.79 +2016-10-22 06:32:00,19.4762,106.177,9.78 +2016-10-22 06:47:00,21.77,106.305,9.79 +2016-10-22 07:02:00,21.7175,106.515,9.81 +2016-10-22 07:17:00,21.13,106.707,9.83 +2016-10-22 07:32:00,19.4287,106.875,9.81 +2016-10-22 07:47:00,22.5437,107.033,9.81 +2016-10-22 08:02:00,21.8725,107.16,9.8 +2016-10-22 08:17:00,19.9125,107.272,9.8 +2016-10-22 08:32:00,20.7325,107.37,9.8 +2016-10-22 08:47:00,23.3675,107.482,9.77 +2016-10-22 09:02:00,19.3288,107.567,9.75 +2016-10-22 09:17:00,22.1588,107.667,9.75 +2016-10-22 09:32:00,20.9325,107.747,9.75 +2016-10-22 09:47:00,21.2262,107.812,9.75 +2016-10-22 10:02:00,19.7237,107.902,9.73 +2016-10-22 10:17:00,19.38,107.987,9.73 +2016-10-22 10:32:00,22.885,108.055,9.73 +2016-10-22 10:47:00,21.4225,108.122,9.72 +2016-10-22 11:02:00,21.6212,108.242,9.71 +2016-10-22 11:17:00,21.9713,108.325,9.68 +2016-10-22 11:32:00,21.0275,108.438,9.67 +2016-10-22 11:47:00,22.0625,108.535,9.66 +2016-10-22 12:02:00,20.405,108.622,9.66 +2016-10-22 12:17:00,21.9137,108.705,9.65 +2016-10-22 12:32:00,20.8288,108.732,9.65 +2016-10-22 12:47:00,21.1762,108.737,9.65 +2016-10-22 13:02:00,21.0812,108.762,9.64 +2016-10-22 13:17:00,21.0812,108.732,9.65 +2016-10-22 13:32:00,20.7838,108.762,9.71 +2016-10-22 13:47:00,20.3063,108.787,9.72 +2016-10-22 14:02:00,21.275,108.855,9.7 +2016-10-22 14:17:00,19.7712,108.94,9.69 +2016-10-22 14:32:00,21.0263,108.997,9.69 +2016-10-22 14:47:00,21.3312,109.112,9.7 +2016-10-22 15:02:00,20.2062,109.185,9.69 +2016-10-22 15:17:00,20.255,109.287,9.68 +2016-10-22 15:32:00,22.4437,109.347,9.67 +2016-10-22 15:47:00,21.72,109.43,9.66 +2016-10-22 16:02:00,20.7825,109.507,9.64 +2016-10-22 16:17:00,21.6162,109.572,9.64 +2016-10-22 16:32:00,19.0912,109.615,9.64 +2016-10-22 16:47:00,21.575,109.652,9.62 +2016-10-22 17:02:00,19.4287,109.688,9.61 +2016-10-22 17:17:00,21.4725,109.67,9.61 +2016-10-22 17:32:00,20.5475,109.587,9.62 +2016-10-22 17:47:00,21.7687,109.49,9.62 +2016-10-22 18:02:00,19.4788,109.36,9.62 +2016-10-22 18:17:00,21.87,109.268,9.62 +2016-10-22 18:32:00,23.9987,109.21,9.62 +2016-10-22 18:47:00,21.2325,109.217,9.62 +2016-10-22 19:02:00,22.3525,109.237,9.61 +2016-10-22 19:17:00,20.685,109.275,9.6 +2016-10-22 19:32:00,21.7637,109.277,9.59 +2016-10-22 19:47:00,22.8838,109.3,9.58 +2016-10-22 20:02:00,21.2275,109.33,9.57 +2016-10-22 20:17:00,22.2525,109.345,9.58 +2016-10-22 20:32:00,21.8225,109.322,9.58 +2016-10-22 20:47:00,19.5312,109.34,9.57 +2016-10-22 21:02:00,21.0788,109.357,9.57 +2016-10-22 21:17:00,22.4487,109.345,9.57 +2016-10-22 21:32:00,22.16,109.247,9.57 +2016-10-22 21:47:00,20.7812,109.132,9.55 +2016-10-22 22:02:00,21.87,108.992,9.53 +2016-10-22 22:17:00,22.165,108.832,9.52 +2016-10-22 22:32:00,20.36,108.74,9.52 +2016-10-22 22:47:00,23.8087,108.695,9.52 +2016-10-22 23:02:00,22.16,108.667,9.5 +2016-10-22 23:17:00,21.6725,108.717,9.48 +2016-10-22 23:32:00,19.9638,108.72,9.48 +2016-10-22 23:47:00,21.5225,108.735,9.48 +2016-10-23 00:02:00,21.0812,108.75,9.47 +2016-10-23 00:17:00,22.2588,108.757,9.47 +2016-10-23 00:32:00,21.6738,108.775,9.47 +2016-10-23 00:47:00,22.545,108.787,9.46 +2016-10-23 01:02:00,22.4925,108.807,9.47 +2016-10-23 01:17:00,22.935,108.835,9.47 +2016-10-23 01:32:00,22.1125,108.85,9.47 +2016-10-23 01:47:00,21.0275,108.855,9.47 +2016-10-23 02:02:00,22.3,108.852,9.47 +2016-10-23 02:17:00,22.2125,108.775,9.47 +2016-10-23 02:32:00,22.065,108.655,9.46 +2016-10-23 02:47:00,20.5963,108.495,9.45 +2016-10-23 03:02:00,21.0812,108.367,9.44 +2016-10-23 03:17:00,21.4737,108.262,9.41 +2016-10-23 03:32:00,21.7663,108.23,9.4 +2016-10-23 03:47:00,23.6125,108.225,9.39 +2016-10-23 04:02:00,21.5775,108.245,9.38 +2016-10-23 04:17:00,21.2288,108.23,9.35 +2016-10-23 04:32:00,23.5125,108.232,9.32 +2016-10-23 04:47:00,21.13,108.232,9.29 +2016-10-23 05:02:00,22.3962,108.235,9.26 +2016-10-23 05:17:00,20.4525,108.253,9.22 +2016-10-23 05:32:00,20.1087,108.28,9.2 +2016-10-23 05:47:00,20.7812,108.287,9.17 +2016-10-23 06:02:00,21.3812,108.262,9.15 +2016-10-23 06:17:00,21.875,108.205,9.14 +2016-10-23 06:32:00,20.4512,108.12,9.15 +2016-10-23 06:47:00,21.57,108.033,9.15 +2016-10-23 07:02:00,22.16,107.962,9.15 +2016-10-23 07:17:00,23.265,107.91,9.16 +2016-10-23 07:32:00,22.0612,107.872,9.16 +2016-10-23 07:47:00,22.5912,107.917,9.18 +2016-10-23 08:02:00,24.045,107.925,9.17 +2016-10-23 08:17:00,22.11,107.947,9.17 +2016-10-23 08:32:00,22.1612,107.972,9.18 +2016-10-23 08:47:00,22.9812,107.99,9.17 +2016-10-23 09:02:00,22.4425,108.022,9.17 +2016-10-23 09:17:00,20.2038,108.052,9.17 +2016-10-23 09:32:00,23.3138,108.09,9.17 +2016-10-23 09:47:00,22.1637,108.105,9.19 +2016-10-23 10:02:00,23.3162,108.125,9.2 +2016-10-23 10:17:00,20.3512,108.137,9.21 +2016-10-23 10:32:00,22.4475,108.117,9.22 +2016-10-23 10:47:00,21.4713,108.045,9.21 +2016-10-23 11:02:00,22.1087,107.94,9.23 +2016-10-23 11:17:00,22.2525,107.827,9.25 +2016-10-23 11:32:00,22.7412,107.697,9.27 +2016-10-23 11:47:00,19.6275,107.585,9.29 +2016-10-23 12:02:00,22.8337,107.595,9.3 +2016-10-23 12:17:00,21.77,107.592,9.31 +2016-10-23 12:32:00,20.5975,107.645,9.33 +2016-10-23 12:47:00,20.1075,107.682,9.33 +2016-10-23 13:02:00,22.1125,107.732,9.33 +2016-10-23 13:17:00,23.7588,107.805,9.33 +2016-10-23 13:32:00,20.4987,107.842,9.33 +2016-10-23 13:47:00,22.935,107.872,9.34 +2016-10-23 14:02:00,20.8763,107.9,9.32 +2016-10-23 14:17:00,22.1087,107.935,9.3 +2016-10-23 14:32:00,21.6188,107.955,9.29 +2016-10-23 14:47:00,23.4637,108.012,9.3 +2016-10-23 15:02:00,21.425,108.022,9.31 +2016-10-23 15:17:00,21.2812,108.003,9.32 +2016-10-23 15:32:00,21.28,107.92,9.32 +2016-10-23 15:47:00,20.0638,107.815,9.32 +2016-10-23 16:02:00,21.57,107.69,9.33 +2016-10-23 16:17:00,21.5238,107.587,9.33 +2016-10-23 16:32:00,20.7337,107.548,9.34 +2016-10-23 16:47:00,21.1237,107.522,9.34 +2016-10-23 17:02:00,20.6837,107.537,9.35 +2016-10-23 17:17:00,21.62,107.592,9.35 +2016-10-23 17:32:00,21.0812,107.622,9.35 +2016-10-23 17:47:00,20.5963,107.628,9.36 +2016-10-23 18:02:00,22.2513,107.64,9.36 +2016-10-23 18:17:00,20.7812,107.645,9.33 +2016-10-23 18:32:00,22.98,107.632,9.33 +2016-10-23 18:47:00,20.4987,107.635,9.34 +2016-10-23 19:02:00,21.03,107.62,9.35 +2016-10-23 19:17:00,21.4775,107.612,9.33 +2016-10-23 19:32:00,21.1325,107.622,9.31 +2016-10-23 19:47:00,21.4725,107.595,9.3 +2016-10-23 20:02:00,23.2675,107.552,9.3 +2016-10-23 20:17:00,21.7663,107.507,9.29 +2016-10-23 20:32:00,20.7812,107.495,9.28 +2016-10-23 20:47:00,22.1137,107.49,9.27 +2016-10-23 21:02:00,21.0312,107.457,9.26 +2016-10-23 21:17:00,21.23,107.342,9.26 +2016-10-23 21:32:00,21.965,107.205,9.26 +2016-10-23 21:47:00,22.3012,107.04,9.25 +2016-10-23 22:02:00,21.965,106.847,9.23 +2016-10-23 22:17:00,21.1287,106.745,9.19 +2016-10-23 22:32:00,20.7363,106.66,9.19 +2016-10-23 22:47:00,21.9163,106.615,9.19 +2016-10-23 23:02:00,21.6738,106.575,9.18 +2016-10-23 23:17:00,21.8213,106.557,9.16 +2016-10-23 23:32:00,20.45,106.525,9.15 +2016-10-23 23:47:00,21.3288,106.49,9.14 +2016-10-24 00:02:00,20.0112,106.48,9.14 +2016-10-24 00:17:00,19.095,106.412,9.13 +2016-10-24 00:32:00,22.5938,106.378,9.13 +2016-10-24 00:47:00,21.2787,106.317,9.1 +2016-10-24 01:02:00,22.0175,106.275,9.08 +2016-10-24 01:17:00,21.2237,106.227,9.09 +2016-10-24 01:32:00,23.0238,106.18,9.09 +2016-10-24 01:47:00,21.3763,106.105,9.09 +2016-10-24 02:02:00,22.59,106.062,9.1 +2016-10-24 02:17:00,20.6437,105.99,9.09 +2016-10-24 02:32:00,22.345,105.95,9.09 +2016-10-24 02:47:00,22.2138,105.87,9.09 +2016-10-24 03:02:00,22.0187,105.787,9.07 +2016-10-24 03:17:00,23.4637,105.71,9.07 +2016-10-24 03:32:00,23.2687,105.562,9.05 +2016-10-24 03:47:00,21.7162,105.395,9.03 +2016-10-24 04:02:00,21.6687,105.185,9.02 +2016-10-24 04:17:00,20.9262,104.945,9.01 +2016-10-24 04:32:00,22.3525,104.768,9.0 +2016-10-24 04:47:00,21.6175,104.628,8.99 +2016-10-24 05:02:00,21.82,104.525,8.98 +2016-10-24 05:17:00,20.78,104.455,8.98 +2016-10-24 05:32:00,22.11,104.378,8.97 +2016-10-24 05:47:00,21.1787,104.325,8.95 +2016-10-24 06:02:00,21.6212,104.23,8.95 +2016-10-24 06:17:00,21.7162,104.102,8.95 +2016-10-24 06:32:00,22.8887,104.033,8.93 +2016-10-24 06:47:00,20.735,103.857,8.95 +2016-10-24 07:02:00,22.2537,103.673,8.94 +2016-10-24 07:17:00,21.9662,103.465,8.94 +2016-10-24 07:32:00,22.5938,103.253,8.95 +2016-10-24 07:47:00,21.325,103.042,8.95 +2016-10-24 08:02:00,23.0225,102.84,8.97 +2016-10-24 08:17:00,22.8363,102.65,8.98 +2016-10-24 08:32:00,21.92,102.537,8.97 +2016-10-24 08:47:00,22.2525,102.477,8.96 +2016-10-24 09:02:00,21.4713,102.423,8.98 +2016-10-24 09:17:00,22.5413,102.36,8.98 +2016-10-24 09:32:00,23.9962,102.315,9.0 +2016-10-24 09:47:00,23.0238,102.247,9.02 +2016-10-24 10:02:00,22.5425,102.19,9.0 +2016-10-24 10:17:00,22.6925,102.137,9.0 +2016-10-24 10:32:00,22.3,102.09,9.0 +2016-10-24 10:47:00,23.66,102.037,9.01 +2016-10-24 11:02:00,22.3937,102.003,9.04 +2016-10-24 11:17:00,21.1263,101.915,9.03 +2016-10-24 11:32:00,20.9275,101.857,9.02 +2016-10-24 11:47:00,20.0563,101.795,9.01 +2016-10-24 12:02:00,22.9825,101.682,9.01 +2016-10-24 12:17:00,21.6225,101.595,9.03 +2016-10-24 12:32:00,21.9163,101.472,9.03 +2016-10-24 12:47:00,22.1562,101.312,9.05 +2016-10-24 13:02:00,23.5587,101.105,9.05 +2016-10-24 13:17:00,21.9163,100.865,9.06 +2016-10-24 13:32:00,24.3975,100.575,9.08 +2016-10-24 13:47:00,22.4463,100.17,9.09 +2016-10-24 14:02:00,22.6912,99.7175,9.08 +2016-10-24 14:17:00,22.5425,99.2525,9.09 +2016-10-24 14:32:00,22.6413,98.7625,9.08 +2016-10-24 14:47:00,22.8825,98.41,9.09 +2016-10-24 15:02:00,22.6888,98.155,9.12 +2016-10-24 15:17:00,21.175,98.09,9.13 +2016-10-24 15:32:00,20.8775,98.065,9.14 +2016-10-24 15:47:00,23.2675,98.055,9.14 +2016-10-24 16:02:00,20.9262,98.0525,9.14 +2016-10-24 16:17:00,23.4187,98.095,9.13 +2016-10-24 16:32:00,23.8937,98.045,9.13 +2016-10-24 16:47:00,22.9325,97.865,9.11 +2016-10-24 17:02:00,22.935,97.615,9.11 +2016-10-24 17:17:00,23.515,97.3525,9.11 +2016-10-24 17:32:00,23.0713,97.1575,9.12 +2016-10-24 17:47:00,21.2312,96.965,9.12 +2016-10-24 18:02:00,21.2275,96.7975,9.09 +2016-10-24 18:17:00,22.8325,96.6675,9.09 +2016-10-24 18:32:00,22.7862,96.5725,9.09 +2016-10-24 18:47:00,24.2462,96.555,9.1 +2016-10-24 19:02:00,23.9912,96.56,9.11 +2016-10-24 19:17:00,23.025,96.615,9.11 +2016-10-24 19:32:00,21.2763,96.675,9.12 +2016-10-24 19:47:00,23.6637,96.75,9.13 +2016-10-24 20:02:00,23.8512,96.755,9.15 +2016-10-24 20:17:00,22.2062,96.7725,9.16 +2016-10-24 20:32:00,23.3162,96.7375,9.17 +2016-10-24 20:47:00,21.9163,96.7575,9.19 +2016-10-24 21:02:00,23.1188,96.81,9.2 +2016-10-24 21:17:00,22.59,96.905,9.22 +2016-10-24 21:32:00,22.3962,97.0225,9.23 +2016-10-24 21:47:00,23.0762,97.17,9.21 +2016-10-24 22:02:00,21.4262,97.345,9.2 +2016-10-24 22:17:00,23.0675,97.5325,9.19 +2016-10-24 22:32:00,21.8162,97.72,9.18 +2016-10-24 22:47:00,22.3913,97.9875,9.16 +2016-10-24 23:02:00,21.5163,98.255,9.12 +2016-10-24 23:17:00,23.7537,98.58,9.1 +2016-10-24 23:32:00,21.7175,98.93,9.12 +2016-10-24 23:47:00,20.6,99.2525,9.12 +2016-10-25 00:02:00,23.7062,99.6325,9.12 +2016-10-25 00:17:00,21.0788,100.012,9.11 +2016-10-25 00:32:00,25.625,100.44,9.08 +2016-10-25 00:47:00,23.265,100.83,9.06 +2016-10-25 01:02:00,21.4238,101.23,9.05 +2016-10-25 01:17:00,22.4463,101.637,9.04 +2016-10-25 01:32:00,21.0775,102.077,9.02 +2016-10-25 01:47:00,22.5912,102.45,9.01 +2016-10-25 02:02:00,22.015,102.815,9.04 +2016-10-25 02:17:00,22.3,103.132,9.04 +2016-10-25 02:32:00,23.415,103.427,9.01 +2016-10-25 02:47:00,23.3125,103.665,8.98 +2016-10-25 03:02:00,22.9812,103.9,8.97 +2016-10-25 03:17:00,22.645,104.155,8.95 +2016-10-25 03:32:00,21.4775,104.485,8.88 +2016-10-25 03:47:00,21.9662,104.775,8.87 +2016-10-25 04:02:00,19.8688,105.035,8.92 +2016-10-25 04:17:00,20.5462,105.245,8.92 +2016-10-25 04:32:00,23.51,105.385,8.89 +2016-10-25 04:47:00,23.755,105.467,8.87 +2016-10-25 05:02:00,24.6963,105.557,8.85 +2016-10-25 05:17:00,23.465,105.74,8.84 +2016-10-25 05:32:00,23.8988,105.862,8.85 +2016-10-25 05:47:00,24.3975,106.012,8.85 +2016-10-25 06:02:00,22.8838,106.182,8.83 +2016-10-25 06:17:00,23.12,106.325,8.82 +2016-10-25 06:32:00,23.4625,106.47,8.82 +2016-10-25 06:47:00,24.9975,106.63,8.82 +2016-10-25 07:02:00,24.8487,106.805,8.84 +2016-10-25 07:17:00,24.5525,106.97,8.87 +2016-10-25 07:32:00,23.7525,107.007,8.9 +2016-10-25 07:47:00,21.7687,107.042,8.9 +2016-10-25 08:02:00,21.57,107.092,8.92 +2016-10-25 08:17:00,24.9962,107.175,8.93 +2016-10-25 08:32:00,21.425,107.287,8.92 +2016-10-25 08:47:00,22.165,107.602,8.92 +2016-10-25 09:02:00,23.075,107.917,8.99 +2016-10-25 09:17:00,16.9475,108.125,8.77 +2016-10-25 09:32:00,21.3937,108.245,8.97 +2016-10-25 09:42:14,21.3962,108.335,8.97 +2016-10-25 09:47:00,22.5512,108.44,8.97 +2016-10-25 10:00:47,22.695,108.56,8.98 +2016-10-25 10:17:00,22.2988,108.675,8.98 +2016-10-25 10:32:00,23.2637,108.682,9.01 +2016-10-25 10:47:00,21.3763,108.775,9.04 +2016-10-25 11:02:00,21.82,108.807,9.06 +2016-10-25 11:17:00,23.1212,108.8,9.04 +2016-10-25 11:32:00,20.4075,108.867,9.02 +2016-10-25 11:47:00,22.985,109.035,9.02 +2016-10-25 12:02:00,22.9837,109.177,9.0 +2016-10-25 12:17:00,22.21,109.26,8.99 +2016-10-25 12:32:00,20.2062,109.3,9.01 +2016-10-25 12:47:00,22.3937,109.34,9.03 +2016-10-25 13:02:00,21.1275,109.355,9.03 +2016-10-25 13:17:00,19.7712,109.415,9.04 +2016-10-25 13:32:00,22.2562,109.432,9.02 +2016-10-25 13:47:00,20.9775,109.42,9.03 +2016-10-25 14:02:00,21.7225,109.395,9.03 +2016-10-25 14:17:00,21.7213,109.395,9.03 +2016-10-25 14:32:00,23.3162,109.49,9.04 +2016-10-25 14:47:00,21.7162,109.682,9.05 +2016-10-25 15:02:00,22.7875,109.908,9.05 +2016-10-25 15:17:00,22.5938,110.205,9.05 +2016-10-25 15:32:00,19.875,110.485,9.05 +2016-10-25 15:47:00,22.6437,110.795,9.05 +2016-10-25 16:02:00,21.8213,111.1,9.04 +2016-10-25 16:17:00,22.0638,111.427,9.04 +2016-10-25 16:32:00,19.53,111.775,9.04 +2016-10-25 16:47:00,22.015,112.117,9.03 +2016-10-25 17:02:00,22.395,112.417,9.04 +2016-10-25 17:17:00,21.135,112.727,9.04 +2016-10-25 17:32:00,22.4987,112.995,9.04 +2016-10-25 17:47:00,19.1875,113.272,9.03 +2016-10-25 18:02:00,19.9175,113.52,9.02 +2016-10-25 18:17:00,22.8875,113.682,9.02 +2016-10-25 18:32:00,21.38,113.902,9.02 +2016-10-25 18:47:00,23.6137,114.067,9.02 +2016-10-25 19:02:00,19.2363,114.19,9.01 +2016-10-25 19:17:00,22.0187,114.29,9.0 +2016-10-25 19:32:00,21.6725,114.277,9.0 +2016-10-25 19:47:00,20.5512,114.188,9.0 +2016-10-25 20:02:00,22.6425,114.14,8.99 +2016-10-25 20:17:00,20.9775,114.125,8.97 +2016-10-25 20:32:00,23.0762,114.175,8.96 +2016-10-25 20:47:00,21.4725,114.185,8.97 +2016-10-25 21:02:00,21.5737,114.25,8.97 +2016-10-25 21:17:00,23.1712,114.283,8.96 +2016-10-25 21:32:00,21.7213,114.317,8.95 +2016-10-25 21:47:00,22.79,114.322,8.93 +2016-10-25 22:02:00,21.9187,114.35,8.93 +2016-10-25 22:17:00,20.8312,114.378,8.93 +2016-10-25 22:32:00,21.1787,114.378,8.92 +2016-10-25 22:47:00,21.615,114.412,8.94 +2016-10-25 23:02:00,21.4762,114.44,8.94 +2016-10-25 23:17:00,20.6012,114.445,8.96 +2016-10-25 23:32:00,21.7687,114.445,8.96 +2016-10-25 23:47:00,20.4975,114.462,8.98 +2016-10-26 00:02:00,23.5638,114.48,8.98 +2016-10-26 00:17:00,21.9187,114.505,8.97 +2016-10-26 00:32:00,22.2525,114.485,8.98 +2016-10-26 00:47:00,23.2225,114.345,8.99 +2016-10-26 01:02:00,20.6488,114.222,8.99 +2016-10-26 01:17:00,21.3312,114.147,8.98 +2016-10-26 01:32:00,22.4463,114.145,8.97 +2016-10-26 01:47:00,22.2087,114.195,8.97 +2016-10-26 02:02:00,21.6738,114.207,8.98 +2016-10-26 02:17:00,21.6188,114.257,8.97 +2016-10-26 02:32:00,21.9688,114.32,8.98 +2016-10-26 02:47:00,21.43,114.385,8.96 +2016-10-26 03:02:00,22.35,114.442,8.96 +2016-10-26 03:17:00,20.7825,114.507,8.95 +2016-10-26 03:32:00,21.82,114.535,8.95 +2016-10-26 03:47:00,22.5912,114.585,8.95 +2016-10-26 04:02:00,23.1687,114.637,8.92 +2016-10-26 04:17:00,20.83,114.68,8.92 +2016-10-26 04:32:00,21.9713,114.67,8.91 +2016-10-26 04:47:00,22.0163,114.695,8.9 +2016-10-26 05:02:00,22.3475,114.64,8.88 +2016-10-26 05:17:00,22.395,114.64,8.84 +2016-10-26 05:32:00,20.7812,114.617,8.8 +2016-10-26 05:47:00,20.7375,114.51,8.77 +2016-10-26 06:02:00,20.7325,114.465,8.78 +2016-10-26 06:17:00,21.72,114.365,8.78 +2016-10-26 06:32:00,22.3037,114.253,8.81 +2016-10-26 06:47:00,22.2087,114.15,8.83 +2016-10-26 07:02:00,22.4938,114.052,8.83 +2016-10-26 07:17:00,22.3962,114.06,8.84 +2016-10-26 07:32:00,21.8187,114.08,8.86 +2016-10-26 07:47:00,21.2763,114.072,8.88 +2016-10-26 08:02:00,20.7337,114.072,8.89 +2016-10-26 08:17:00,21.7213,114.057,8.89 +2016-10-26 08:32:00,21.3275,114.055,8.9 +2016-10-26 08:47:00,21.025,114.018,8.93 +2016-10-26 09:02:00,21.5225,113.977,8.95 +2016-10-26 09:17:00,21.6175,113.96,8.99 +2016-10-26 09:32:00,21.5675,113.908,9.01 +2016-10-26 09:47:00,22.2525,113.932,9.01 +2016-10-26 10:02:00,21.6663,113.932,9.01 +2016-10-26 10:17:00,22.3012,113.908,9.0 +2016-10-26 10:32:00,21.33,113.875,9.03 +2016-10-26 10:47:00,22.3425,113.83,9.05 +2016-10-26 11:02:00,23.1175,113.81,9.03 +2016-10-26 11:17:00,21.1725,113.785,9.03 +2016-10-26 11:32:00,22.0125,113.825,9.03 +2016-10-26 11:47:00,20.7363,113.905,9.06 +2016-10-26 12:02:00,22.7387,114.065,9.08 +2016-10-26 12:17:00,22.4475,114.305,9.09 +2016-10-26 12:32:00,23.0263,114.675,9.1 +2016-10-26 12:47:00,21.3763,115.062,9.11 +2016-10-26 13:02:00,21.62,115.525,9.12 +2016-10-26 13:17:00,22.2075,115.938,9.13 +2016-10-26 13:32:00,22.3463,116.31,9.14 +2016-10-26 13:47:00,21.375,116.53,9.13 +2016-10-26 14:02:00,21.9187,116.667,9.13 +2016-10-26 14:17:00,21.6225,116.84,9.13 +2016-10-26 14:32:00,22.54,116.945,9.14 +2016-10-26 14:47:00,19.7225,117.048,9.13 +2016-10-26 15:02:00,21.175,117.09,9.13 +2016-10-26 15:17:00,23.1675,117.107,9.14 +2016-10-26 15:32:00,20.3512,117.09,9.15 +2016-10-26 15:47:00,21.18,117.03,9.18 +2016-10-26 16:02:00,22.6912,116.955,9.2 +2016-10-26 16:17:00,21.8725,116.835,9.23 +2016-10-26 16:32:00,20.0112,116.7,9.25 +2016-10-26 16:47:00,22.74,116.53,9.25 +2016-10-26 17:02:00,21.7175,116.385,9.25 +2016-10-26 17:17:00,21.72,116.215,9.26 +2016-10-26 17:32:00,21.4725,116.09,9.27 +2016-10-26 17:47:00,20.98,115.932,9.27 +2016-10-26 18:02:00,21.3787,115.682,9.3 +2016-10-26 18:17:00,21.8688,115.425,9.31 +2016-10-26 18:32:00,20.64,115.12,9.29 +2016-10-26 18:47:00,21.1237,114.832,9.29 +2016-10-26 19:02:00,21.7725,114.685,9.29 +2016-10-26 19:17:00,23.1212,114.515,9.28 +2016-10-26 19:32:00,22.2075,114.415,9.29 +2016-10-26 19:47:00,20.3075,114.315,9.29 +2016-10-26 20:02:00,21.1325,114.188,9.29 +2016-10-26 20:17:00,20.4013,114.1,9.3 +2016-10-26 20:32:00,22.785,113.975,9.29 +2016-10-26 20:47:00,22.6925,113.89,9.29 +2016-10-26 21:02:00,21.43,113.8,9.29 +2016-10-26 21:17:00,21.08,113.72,9.28 +2016-10-26 21:32:00,22.3025,113.625,9.28 +2016-10-26 21:47:00,20.3562,113.527,9.28 +2016-10-26 22:02:00,21.5187,113.467,9.28 +2016-10-26 22:17:00,19.4238,113.402,9.29 +2016-10-26 22:32:00,21.4225,113.347,9.3 +2016-10-26 22:47:00,21.275,113.25,9.31 +2016-10-26 23:02:00,20.9262,113.112,9.31 +2016-10-26 23:17:00,20.5462,112.955,9.31 +2016-10-26 23:32:00,22.8887,112.727,9.31 +2016-10-26 23:47:00,21.2812,112.505,9.31 +2016-10-27 00:02:00,21.3737,112.408,9.32 +2016-10-27 00:17:00,20.5488,112.337,9.3 +2016-10-27 00:32:00,20.6387,112.28,9.29 +2016-10-27 00:47:00,20.9725,112.262,9.28 +2016-10-27 01:02:00,20.6425,112.247,9.28 +2016-10-27 01:17:00,22.1637,112.202,9.28 +2016-10-27 01:32:00,21.3775,112.182,9.27 +2016-10-27 01:47:00,22.49,112.18,9.26 +2016-10-27 02:02:00,21.6687,112.112,9.26 +2016-10-27 02:17:00,20.0075,112.08,9.27 +2016-10-27 02:32:00,20.055,112.035,9.27 +2016-10-27 02:47:00,19.4262,111.975,9.26 +2016-10-27 03:02:00,21.6175,111.91,9.25 +2016-10-27 03:17:00,21.7725,111.875,9.25 +2016-10-27 03:32:00,21.8737,111.82,9.25 +2016-10-27 03:47:00,21.9125,111.725,9.26 +2016-10-27 04:02:00,19.6712,111.548,9.26 +2016-10-27 04:17:00,19.14,111.362,9.26 +2016-10-27 04:32:00,21.9688,111.14,9.27 +2016-10-27 04:47:00,21.1287,111.022,9.26 +2016-10-27 05:02:00,22.5462,110.947,9.26 +2016-10-27 05:17:00,20.2625,110.908,9.26 +2016-10-27 05:32:00,20.735,110.893,9.24 +2016-10-27 05:47:00,20.9262,110.805,9.22 +2016-10-27 06:02:00,23.4637,110.658,9.22 +2016-10-27 06:17:00,21.3775,110.495,9.2 +2016-10-27 06:32:00,19.865,110.292,9.2 +2016-10-27 06:47:00,21.1237,110.15,9.19 +2016-10-27 07:02:00,22.2588,110.08,9.17 +2016-10-27 07:17:00,21.1275,110.015,9.16 +2016-10-27 07:32:00,21.2787,109.957,9.17 +2016-10-27 07:47:00,22.0625,109.997,9.2 +2016-10-27 08:02:00,22.2075,110.012,9.22 +2016-10-27 08:17:00,22.3475,109.992,9.22 +2016-10-27 08:32:00,21.3237,109.97,9.21 +2016-10-27 08:47:00,21.9225,110.003,9.2 +2016-10-27 09:02:00,22.0137,109.9,9.26 +2016-10-27 09:17:00,20.7812,109.777,9.33 +2016-10-27 09:32:00,23.5587,109.597,9.39 +2016-10-27 09:47:00,21.3775,109.387,9.43 +2016-10-27 10:02:00,22.7875,109.222,9.44 +2016-10-27 10:17:00,22.015,109.115,9.45 +2016-10-27 10:32:00,20.4025,109.06,9.47 +2016-10-27 10:47:00,21.7225,109.027,9.52 +2016-10-27 11:02:00,20.8337,109.035,9.58 +2016-10-27 11:17:00,21.7687,108.995,9.62 +2016-10-27 11:32:00,22.5925,109.02,9.64 +2016-10-27 11:47:00,20.6862,108.99,9.67 +2016-10-27 12:02:00,19.965,108.915,9.69 +2016-10-27 12:17:00,22.3,108.753,9.69 +2016-10-27 12:32:00,21.475,108.595,9.71 +2016-10-27 12:47:00,21.8262,108.432,9.73 +2016-10-27 13:02:00,21.97,108.327,9.75 +2016-10-27 13:17:00,21.8213,108.227,9.78 +2016-10-27 13:32:00,21.9662,108.23,9.79 +2016-10-27 13:47:00,21.5675,108.237,9.79 +2016-10-27 14:02:00,19.6237,108.257,9.79 +2016-10-27 14:17:00,21.57,108.28,9.8 +2016-10-27 14:32:00,20.9337,108.31,9.81 +2016-10-27 14:47:00,21.825,108.295,9.8 +2016-10-27 15:02:00,21.87,108.245,9.8 +2016-10-27 15:17:00,22.8887,108.12,9.79 +2016-10-27 15:32:00,20.1575,107.972,9.78 +2016-10-27 15:47:00,21.52,107.802,9.79 +2016-10-27 16:02:00,21.1762,107.67,9.8 +2016-10-27 16:17:00,21.1275,107.612,9.79 +2016-10-27 16:32:00,21.4275,107.597,9.78 +2016-10-27 16:47:00,21.97,107.6,9.78 +2016-10-27 17:02:00,21.2763,107.607,9.79 +2016-10-27 17:17:00,22.3012,107.615,9.81 +2016-10-27 17:32:00,20.4487,107.59,9.82 +2016-10-27 17:47:00,21.43,107.582,9.84 +2016-10-27 18:02:00,21.67,107.472,9.85 +2016-10-27 18:17:00,22.6925,107.33,9.86 +2016-10-27 18:32:00,22.3512,107.167,9.87 +2016-10-27 18:47:00,21.9675,107.012,9.89 +2016-10-27 19:02:00,20.6862,106.91,9.91 +2016-10-27 19:17:00,20.9775,106.865,9.92 +2016-10-27 19:32:00,22.0125,106.85,9.91 +2016-10-27 19:47:00,21.72,106.86,9.91 +2016-10-27 20:02:00,21.6738,106.862,9.91 +2016-10-27 20:17:00,21.33,106.862,9.91 +2016-10-27 20:32:00,19.0975,106.86,9.9 +2016-10-27 20:47:00,22.5425,106.792,9.89 +2016-10-27 21:02:00,22.21,106.682,9.88 +2016-10-27 21:17:00,22.0625,106.552,9.88 +2016-10-27 21:32:00,21.0325,106.427,9.87 +2016-10-27 21:47:00,21.3288,106.245,9.85 +2016-10-27 22:02:00,22.5975,106.17,9.86 +2016-10-27 22:17:00,22.0675,106.165,9.86 +2016-10-27 22:32:00,23.6125,106.162,9.86 +2016-10-27 22:47:00,20.35,106.177,9.86 +2016-10-27 23:02:00,21.7188,106.197,9.86 +2016-10-27 23:17:00,23.0725,106.222,9.86 +2016-10-27 23:32:00,21.2262,106.262,9.87 +2016-10-27 23:47:00,21.1775,106.197,9.87 +2016-10-28 00:02:00,21.4788,106.097,9.88 +2016-10-28 00:17:00,21.0837,105.945,9.89 +2016-10-28 00:32:00,22.115,105.77,9.9 +2016-10-28 00:47:00,20.64,105.647,9.91 +2016-10-28 01:02:00,21.5675,105.607,9.91 +2016-10-28 01:17:00,22.395,105.548,9.93 +2016-10-28 01:32:00,21.375,105.518,9.93 +2016-10-28 01:47:00,22.065,105.533,9.94 +2016-10-28 02:02:00,20.55,105.497,9.95 +2016-10-28 02:17:00,21.7675,105.48,9.96 +2016-10-28 02:32:00,21.72,105.44,9.96 +2016-10-28 02:47:00,20.8288,105.32,9.95 +2016-10-28 03:02:00,23.1675,105.158,9.95 +2016-10-28 03:17:00,22.305,105.003,9.95 +2016-10-28 03:32:00,22.1137,104.878,9.96 +2016-10-28 03:47:00,21.0788,104.842,9.95 +2016-10-28 04:02:00,22.0662,104.842,9.95 +2016-10-28 04:17:00,21.9163,104.845,9.96 +2016-10-28 04:32:00,20.6888,104.847,9.96 +2016-10-28 04:47:00,21.5713,104.867,9.95 +2016-10-28 05:02:00,20.0575,104.893,9.95 +2016-10-28 05:17:00,22.2525,104.867,9.94 +2016-10-28 05:32:00,21.67,104.82,9.93 +2016-10-28 05:47:00,22.3025,104.735,9.91 +2016-10-28 06:02:00,21.3775,104.667,9.94 +2016-10-28 06:17:00,21.2763,104.597,9.94 +2016-10-28 06:32:00,22.4463,104.522,9.93 +2016-10-28 06:47:00,23.07,104.445,9.93 +2016-10-28 07:02:00,23.61,104.355,9.94 +2016-10-28 07:17:00,21.6687,104.342,9.94 +2016-10-28 07:32:00,21.4788,104.32,9.95 +2016-10-28 07:47:00,21.875,104.317,9.96 +2016-10-28 08:02:00,21.0312,104.362,9.97 +2016-10-28 08:17:00,21.5713,104.477,9.98 +2016-10-28 08:32:00,21.4275,104.607,9.99 +2016-10-28 08:47:00,23.1687,104.643,10.03 +2016-10-28 09:02:00,19.87,104.55,10.05 +2016-10-28 09:17:00,21.13,104.48,10.05 +2016-10-28 09:32:00,23.3175,104.39,10.06 +2016-10-28 09:47:00,21.0863,104.322,10.07 +2016-10-28 10:02:00,21.915,104.268,10.09 +2016-10-28 10:17:00,22.2537,104.095,10.09 +2016-10-28 10:32:00,22.1175,104.003,10.1 +2016-10-28 10:47:00,22.4938,103.972,10.11 +2016-10-28 11:02:00,20.8812,103.895,10.13 +2016-10-28 11:17:00,21.9212,103.887,10.14 +2016-10-28 11:32:00,23.3187,103.878,10.14 +2016-10-28 11:47:00,20.8312,103.81,10.15 +2016-10-28 12:02:00,22.5425,103.742,10.15 +2016-10-28 12:17:00,22.3025,103.645,10.16 +2016-10-28 12:32:00,20.0125,103.58,10.17 +2016-10-28 12:47:00,21.6738,103.562,10.18 +2016-10-28 13:02:00,21.4275,103.612,10.19 +2016-10-28 13:17:00,23.47,103.682,10.21 +2016-10-28 13:32:00,23.4688,103.695,10.21 +2016-10-28 13:47:00,23.6125,103.742,10.22 +2016-10-28 14:02:00,20.45,103.822,10.23 +2016-10-28 14:17:00,23.1237,103.855,10.23 +2016-10-28 14:32:00,21.3262,103.79,10.24 +2016-10-28 14:47:00,22.7875,103.717,10.25 +2016-10-28 15:02:00,22.45,103.567,10.27 +2016-10-28 15:17:00,21.0788,103.467,10.28 +2016-10-28 15:32:00,22.2062,103.447,10.28 +2016-10-28 15:47:00,22.3475,103.462,10.3 +2016-10-28 16:02:00,20.9788,103.485,10.31 +2016-10-28 16:17:00,21.77,103.505,10.32 +2016-10-28 16:32:00,21.6225,103.525,10.32 +2016-10-28 16:47:00,21.87,103.53,10.33 +2016-10-28 17:02:00,23.5675,103.56,10.34 +2016-10-28 17:17:00,23.4187,103.505,10.36 +2016-10-28 17:32:00,21.9675,103.417,10.38 +2016-10-28 17:47:00,23.0725,103.26,10.4 +2016-10-28 18:02:00,22.5437,103.125,10.41 +2016-10-28 18:17:00,23.9975,103.04,10.42 +2016-10-28 18:32:00,21.475,102.995,10.45 +2016-10-28 18:47:00,21.2825,102.997,10.46 +2016-10-28 19:02:00,22.545,103.005,10.46 +2016-10-28 19:17:00,21.1787,103.065,10.46 +2016-10-28 19:32:00,21.1762,103.085,10.46 +2016-10-28 19:47:00,22.0612,103.132,10.45 +2016-10-28 20:02:00,22.1625,103.09,10.46 +2016-10-28 20:17:00,20.785,103.012,10.46 +2016-10-28 20:32:00,22.7875,102.893,10.46 +2016-10-28 20:47:00,21.43,102.792,10.45 +2016-10-28 21:02:00,22.0175,102.705,10.45 +2016-10-28 21:17:00,22.255,102.677,10.45 +2016-10-28 21:32:00,20.5475,102.665,10.47 +2016-10-28 21:47:00,21.1275,102.677,10.47 +2016-10-28 22:02:00,22.0638,102.702,10.47 +2016-10-28 22:17:00,22.1637,102.765,10.47 +2016-10-28 22:32:00,21.23,102.792,10.49 +2016-10-28 22:47:00,21.8725,102.83,10.49 +2016-10-28 23:02:00,22.3975,102.757,10.5 +2016-10-28 23:17:00,22.2988,102.66,10.51 +2016-10-28 23:32:00,21.2763,102.542,10.51 +2016-10-28 23:47:00,21.9662,102.45,10.51 +2016-10-29 00:02:00,22.015,102.357,10.51 +2016-10-29 00:17:00,21.1775,102.292,10.51 +2016-10-29 00:32:00,22.6925,102.317,10.51 +2016-10-29 00:47:00,20.4987,102.327,10.51 +2016-10-29 01:02:00,22.0638,102.362,10.51 +2016-10-29 01:17:00,21.4713,102.402,10.51 +2016-10-29 01:32:00,22.11,102.423,10.53 +2016-10-29 01:47:00,21.1263,102.365,10.54 +2016-10-29 02:02:00,21.9675,102.245,10.56 +2016-10-29 02:17:00,20.45,102.132,10.55 +2016-10-29 02:32:00,21.67,101.977,10.56 +2016-10-29 02:47:00,22.7438,101.862,10.56 +2016-10-29 03:02:00,21.6212,101.792,10.55 +2016-10-29 03:17:00,21.8187,101.802,10.54 +2016-10-29 03:32:00,21.7663,101.798,10.53 +2016-10-29 03:47:00,21.8187,101.83,10.53 +2016-10-29 04:02:00,21.0737,101.815,10.54 +2016-10-29 04:17:00,22.35,101.842,10.55 +2016-10-29 04:32:00,22.21,101.79,10.55 +2016-10-29 04:47:00,22.2038,101.72,10.55 +2016-10-29 05:02:00,21.5212,101.595,10.55 +2016-10-29 05:17:00,22.5888,101.503,10.55 +2016-10-29 05:32:00,23.1175,101.325,10.55 +2016-10-29 05:47:00,21.67,101.227,10.56 +2016-10-29 06:02:00,22.4925,101.24,10.54 +2016-10-29 06:17:00,21.825,101.262,10.52 +2016-10-29 06:32:00,23.1725,101.312,10.53 +2016-10-29 06:47:00,21.7175,101.305,10.52 +2016-10-29 07:02:00,22.59,101.26,10.53 +2016-10-29 07:17:00,20.7375,101.207,10.52 +2016-10-29 07:32:00,20.9287,101.115,10.51 +2016-10-29 07:47:00,20.5,101.045,10.53 +2016-10-29 08:02:00,21.5762,101.033,10.55 +2016-10-29 08:17:00,21.97,101.027,10.56 +2016-10-29 08:32:00,22.065,101.052,10.58 +2016-10-29 08:47:00,22.445,101.115,10.57 +2016-10-29 09:02:00,22.1612,101.125,10.57 +2016-10-29 09:17:00,21.57,101.173,10.6 +2016-10-29 09:32:00,22.7875,101.155,10.62 +2016-10-29 09:47:00,22.1612,101.065,10.63 +2016-10-29 10:02:00,21.9688,101.0,10.63 +2016-10-29 10:17:00,23.615,100.885,10.65 +2016-10-29 10:32:00,21.8213,100.845,10.68 +2016-10-29 10:47:00,22.5925,100.845,10.71 +2016-10-29 11:02:00,21.9137,100.84,10.71 +2016-10-29 11:17:00,22.5963,100.87,10.7 +2016-10-29 11:32:00,22.1625,100.895,10.71 +2016-10-29 11:47:00,21.97,100.988,10.73 +2016-10-29 12:02:00,21.0837,101.022,10.76 +2016-10-29 12:17:00,21.28,101.025,10.78 +2016-10-29 12:32:00,22.495,100.95,10.77 +2016-10-29 12:47:00,21.7175,100.89,10.74 +2016-10-29 13:02:00,22.595,100.77,10.76 +2016-10-29 13:17:00,22.1625,100.622,10.76 +2016-10-29 13:32:00,22.9388,100.477,10.76 +2016-10-29 13:47:00,22.165,100.347,10.75 +2016-10-29 14:02:00,20.6488,100.173,10.75 +2016-10-29 14:17:00,21.7162,99.955,10.76 +2016-10-29 14:32:00,22.16,99.685,10.78 +2016-10-29 14:47:00,22.2525,99.4075,10.79 +2016-10-29 15:02:00,21.5713,99.065,10.78 +2016-10-29 15:17:00,20.5975,98.66,10.77 +2016-10-29 15:32:00,21.43,98.135,10.78 +2016-10-29 15:47:00,20.8337,97.5975,10.79 +2016-10-29 16:02:00,22.79,97.07,10.79 +2016-10-29 16:17:00,21.2775,96.5025,10.78 +2016-10-29 16:32:00,21.77,96.025,10.77 +2016-10-29 16:47:00,21.6188,95.6125,10.78 +2016-10-29 17:02:00,21.2288,95.295,10.79 +2016-10-29 17:17:00,22.4487,94.98,10.8 +2016-10-29 17:32:00,21.2275,94.715,10.81 +2016-10-29 17:47:00,23.1725,94.52,10.8 +2016-10-29 18:02:00,21.7188,94.33,10.8 +2016-10-29 18:17:00,21.1775,94.1025,10.82 +2016-10-29 18:32:00,21.77,93.8925,10.83 +2016-10-29 18:47:00,19.7738,93.7025,10.84 +2016-10-29 19:02:00,22.2988,93.49,10.82 +2016-10-29 19:17:00,21.915,93.4475,10.83 +2016-10-29 19:32:00,21.5212,93.425,10.82 +2016-10-29 19:47:00,22.26,93.4775,10.83 +2016-10-29 20:02:00,20.8763,93.5975,10.83 +2016-10-29 20:17:00,22.3962,93.735,10.83 +2016-10-29 20:32:00,21.2262,93.8775,10.81 +2016-10-29 20:47:00,20.5975,94.0375,10.79 +2016-10-29 21:02:00,22.015,94.185,10.79 +2016-10-29 21:17:00,22.0687,94.2875,10.8 +2016-10-29 21:32:00,20.5025,94.3525,10.8 +2016-10-29 21:47:00,22.4437,94.3675,10.79 +2016-10-29 22:02:00,23.4187,94.4125,10.8 +2016-10-29 22:17:00,23.2675,94.5425,10.79 +2016-10-29 22:32:00,22.11,94.655,10.8 +2016-10-29 22:47:00,21.0762,94.8525,10.8 +2016-10-29 23:02:00,21.3275,95.015,10.8 +2016-10-29 23:17:00,22.0687,95.2025,10.79 +2016-10-29 23:32:00,22.2562,95.3775,10.78 +2016-10-29 23:47:00,21.3787,95.5625,10.79 +2016-10-30 00:02:00,21.2775,95.6425,10.77 +2016-10-30 00:17:00,22.9825,95.69,10.76 +2016-10-30 00:32:00,22.0125,95.655,10.74 +2016-10-30 00:47:00,20.06,95.5975,10.72 +2016-10-30 01:02:00,22.065,95.6525,10.71 +2016-10-30 01:17:00,21.1312,95.735,10.68 +2016-10-30 01:32:00,22.0137,95.8175,10.64 +2016-10-30 01:47:00,21.2288,95.935,10.62 +2016-10-30 02:02:00,20.3075,96.055,10.6 +2016-10-30 02:17:00,21.6225,96.1525,10.62 +2016-10-30 02:32:00,21.9662,96.245,10.62 +2016-10-30 02:47:00,21.33,96.25,10.64 +2016-10-30 03:02:00,21.7237,96.22,10.63 +2016-10-30 03:17:00,21.0287,96.23,10.6 +2016-10-30 03:32:00,21.6175,96.1925,10.59 +2016-10-30 03:47:00,20.9762,96.2425,10.57 +2016-10-30 04:02:00,18.85,96.2725,10.57 +2016-10-30 04:17:00,23.3662,96.37,10.57 +2016-10-30 04:32:00,20.595,96.455,10.56 +2016-10-30 04:47:00,21.9212,96.555,10.56 +2016-10-30 05:02:00,23.8063,96.73,10.55 +2016-10-30 05:17:00,20.9762,96.8325,10.54 +2016-10-30 05:32:00,22.6413,96.955,10.54 +2016-10-30 05:47:00,20.8812,97.0925,10.54 +2016-10-30 06:02:00,20.9775,97.195,10.54 +2016-10-30 06:17:00,23.9,97.22,10.54 +2016-10-30 06:32:00,21.1762,97.18,10.57 +2016-10-30 06:47:00,21.0837,97.1775,10.58 +2016-10-30 07:02:00,21.62,97.18,10.56 +2016-10-30 07:17:00,21.7663,97.265,10.54 +2016-10-30 07:32:00,22.35,97.37,10.54 +2016-10-30 07:47:00,21.8175,97.5025,10.53 +2016-10-30 08:02:00,22.1137,97.6275,10.53 +2016-10-30 08:17:00,20.35,97.7425,10.53 +2016-10-30 08:32:00,20.555,97.8675,10.54 +2016-10-30 08:47:00,20.9762,98.215,10.55 +2016-10-30 09:02:00,21.9675,98.47,10.55 +2016-10-30 09:17:00,22.4463,98.6275,10.54 +2016-10-30 09:32:00,20.975,98.73,10.53 +2016-10-30 09:47:00,22.9863,98.8425,10.54 +2016-10-30 10:02:00,20.88,98.9025,10.54 +2016-10-30 10:17:00,20.9775,98.945,10.55 +2016-10-30 10:32:00,21.475,98.9925,10.56 +2016-10-30 10:47:00,20.93,98.995,10.58 +2016-10-30 11:02:00,23.22,98.99,10.57 +2016-10-30 11:17:00,22.9788,99.01,10.6 +2016-10-30 11:32:00,22.1125,99.0325,10.63 +2016-10-30 11:47:00,22.4463,99.0725,10.65 +2016-10-30 12:02:00,23.8962,99.0675,10.67 +2016-10-30 12:17:00,22.1175,99.0225,10.67 +2016-10-30 12:32:00,22.45,98.87,10.66 +2016-10-30 12:47:00,23.4688,98.71,10.63 +2016-10-30 13:02:00,21.075,98.6375,10.62 +2016-10-30 13:17:00,20.6437,98.5375,10.61 +2016-10-30 13:32:00,21.7675,98.5375,10.59 +2016-10-30 13:47:00,20.5987,98.54,10.57 +2016-10-30 14:02:00,21.0275,98.565,10.55 +2016-10-30 14:17:00,21.28,98.56,10.53 +2016-10-30 14:32:00,19.7275,98.54,10.52 +2016-10-30 14:47:00,21.77,98.555,10.52 +2016-10-30 15:02:00,21.8712,98.5675,10.52 +2016-10-30 15:17:00,20.5475,98.585,10.51 +2016-10-30 15:32:00,20.645,98.6125,10.51 +2016-10-30 15:47:00,20.5512,98.6075,10.52 +2016-10-30 16:02:00,21.8213,98.585,10.51 +2016-10-30 16:17:00,20.9337,98.475,10.51 +2016-10-30 16:32:00,21.23,98.38,10.48 +2016-10-30 16:47:00,22.3487,98.2275,10.47 +2016-10-30 17:02:00,20.8787,98.0875,10.5 +2016-10-30 17:17:00,20.7375,98.015,10.54 +2016-10-30 17:32:00,21.2787,97.9725,10.56 +2016-10-30 17:47:00,21.13,97.955,10.56 +2016-10-30 18:02:00,19.4325,97.9275,10.56 +2016-10-30 18:17:00,21.97,97.8925,10.56 +2016-10-30 18:32:00,21.4737,97.905,10.57 +2016-10-30 18:47:00,21.8187,97.8725,10.56 +2016-10-30 19:02:00,21.6188,97.8575,10.53 +2016-10-30 19:17:00,22.065,97.8375,10.5 +2016-10-30 19:32:00,21.2275,97.7725,10.5 +2016-10-30 19:47:00,22.3487,97.615,10.53 +2016-10-30 20:02:00,22.02,97.4775,10.56 +2016-10-30 20:17:00,22.89,97.285,10.58 +2016-10-30 20:32:00,21.5737,97.2025,10.6 +2016-10-30 20:47:00,19.14,97.11,10.62 +2016-10-30 21:02:00,21.9662,97.0725,10.63 +2016-10-30 21:17:00,21.7725,97.0375,10.63 +2016-10-30 21:32:00,20.55,97.0125,10.62 +2016-10-30 21:47:00,21.28,96.9625,10.63 +2016-10-30 22:02:00,22.1625,96.92,10.64 +2016-10-30 22:17:00,21.8712,96.87,10.64 +2016-10-30 22:32:00,20.7825,96.7775,10.63 +2016-10-30 22:47:00,20.88,96.625,10.62 +2016-10-30 23:02:00,21.6188,96.46,10.61 +2016-10-30 23:17:00,22.74,96.2675,10.61 +2016-10-30 23:32:00,20.3562,96.135,10.6 +2016-10-30 23:47:00,21.6738,96.095,10.59 +2016-10-31 00:02:00,22.7438,96.03,10.57 +2016-10-31 00:17:00,23.7125,96.0,10.53 +2016-10-31 00:32:00,21.6188,95.9625,10.5 +2016-10-31 00:47:00,22.1612,95.9675,10.47 +2016-10-31 01:02:00,23.945,95.965,10.46 +2016-10-31 01:17:00,22.0163,96.0,10.45 +2016-10-31 01:32:00,21.7175,95.9775,10.43 +2016-10-31 01:47:00,21.7687,95.8675,10.42 +2016-10-31 02:02:00,20.0137,95.7575,10.42 +2016-10-31 02:17:00,21.9675,95.6275,10.41 +2016-10-31 02:32:00,20.3087,95.525,10.41 +2016-10-31 02:47:00,21.6725,95.49,10.41 +2016-10-31 03:02:00,21.82,95.5,10.4 +2016-10-31 03:17:00,22.3475,95.495,10.4 +2016-10-31 03:32:00,21.0325,95.545,10.39 +2016-10-31 03:47:00,22.5462,95.585,10.4 +2016-10-31 04:02:00,21.7675,95.635,10.4 +2016-10-31 04:17:00,22.1637,95.6625,10.4 +2016-10-31 04:32:00,22.595,95.6775,10.4 +2016-10-31 04:47:00,22.115,95.615,10.42 +2016-10-31 05:02:00,22.9825,95.5425,10.43 +2016-10-31 05:17:00,22.015,95.4525,10.46 +2016-10-31 05:32:00,21.8175,95.3825,10.46 +2016-10-31 05:47:00,23.95,95.3475,10.46 +2016-10-31 06:02:00,22.54,95.38,10.46 +2016-10-31 06:17:00,22.0625,95.4375,10.48 +2016-10-31 06:32:00,23.2675,95.485,10.48 +2016-10-31 06:47:00,20.1075,95.55,10.48 +2016-10-31 07:02:00,20.7838,95.6275,10.47 +2016-10-31 07:17:00,21.0812,95.685,10.49 +2016-10-31 07:32:00,22.2525,95.6775,10.5 +2016-10-31 07:47:00,20.4025,95.645,10.51 +2016-10-31 08:02:00,21.4688,95.6,10.52 +2016-10-31 08:17:00,22.2075,95.545,10.5 +2016-10-31 08:32:00,21.92,95.4925,10.49 +2016-10-31 08:47:00,19.1888,95.4525,10.48 +2016-10-31 09:02:00,23.2637,95.4525,10.48 +2016-10-31 09:17:00,21.5737,95.4775,10.49 +2016-10-31 09:32:00,20.2087,95.54,10.51 +2016-10-31 09:47:00,21.0275,95.615,10.5 +2016-10-31 10:02:00,21.4238,95.6975,10.51 +2016-10-31 10:17:00,20.88,95.7875,10.56 +2016-10-31 10:32:00,22.9325,95.865,10.57 +2016-10-31 10:47:00,19.9613,95.955,10.58 +2016-10-31 11:02:00,22.4013,96.0225,10.59 +2016-10-31 11:17:00,23.465,96.0325,10.58 +2016-10-31 11:32:00,21.0287,95.9525,10.56 +2016-10-31 11:47:00,21.7687,95.885,10.57 +2016-10-31 12:02:00,21.5212,95.7875,10.57 +2016-10-31 12:17:00,20.55,95.7625,10.56 +2016-10-31 12:32:00,24.0425,95.76,10.56 +2016-10-31 12:47:00,24.0938,95.8025,10.56 +2016-10-31 13:02:00,23.2712,95.875,10.56 +2016-10-31 13:17:00,20.31,95.925,10.56 +2016-10-31 13:32:00,21.9675,95.99,10.55 +2016-10-31 13:47:00,22.2075,96.0525,10.55 +2016-10-31 14:02:00,21.8675,96.105,10.56 +2016-10-31 14:17:00,21.2237,96.0925,10.56 +2016-10-31 14:32:00,20.7838,96.0475,10.57 +2016-10-31 14:47:00,19.4275,95.97,10.58 +2016-10-31 15:02:00,20.4525,95.845,10.58 +2016-10-31 15:17:00,20.8325,95.755,10.58 +2016-10-31 15:32:00,19.9625,95.7225,10.59 +2016-10-31 15:47:00,23.8025,95.7575,10.6 +2016-10-31 16:02:00,22.2075,95.7725,10.62 +2016-10-31 16:17:00,21.3775,95.7975,10.6 +2016-10-31 16:32:00,21.2262,95.83,10.61 +2016-10-31 16:47:00,20.9788,95.8475,10.63 +2016-10-31 17:02:00,21.4775,95.8525,10.64 +2016-10-31 17:17:00,22.015,95.885,10.66 +2016-10-31 17:32:00,22.3962,95.8425,10.66 +2016-10-31 17:47:00,20.45,95.7475,10.67 +2016-10-31 18:02:00,22.8388,95.6225,10.7 +2016-10-31 18:17:00,20.205,95.5325,10.73 +2016-10-31 18:32:00,22.7875,95.4675,10.75 +2016-10-31 18:47:00,21.5737,95.405,10.76 +2016-10-31 19:02:00,22.5475,95.415,10.76 +2016-10-31 19:17:00,21.03,95.4475,10.75 +2016-10-31 19:32:00,20.1113,95.435,10.75 +2016-10-31 19:47:00,22.445,95.4625,10.76 +2016-10-31 20:02:00,21.5713,95.5275,10.75 +2016-10-31 20:17:00,21.2325,95.57,10.76 +2016-10-31 20:32:00,20.3575,95.56,10.77 +2016-10-31 20:47:00,22.115,95.535,10.78 +2016-10-31 21:02:00,19.1387,95.4425,10.77 +2016-10-31 21:17:00,22.5413,95.3025,10.75 +2016-10-31 21:32:00,20.3087,95.21,10.73 +2016-10-31 21:47:00,21.0312,95.18,10.73 +2016-10-31 22:02:00,21.5687,95.18,10.7 +2016-10-31 22:17:00,21.87,95.2025,10.68 +2016-10-31 22:32:00,22.65,95.2075,10.67 +2016-10-31 22:47:00,20.355,95.225,10.66 +2016-10-31 23:02:00,21.3288,95.285,10.65 +2016-10-31 23:17:00,19.965,95.31,10.64 +2016-10-31 23:32:00,19.3775,95.305,10.63 +2016-10-31 23:47:00,21.4713,95.22,10.61 +2016-11-01 00:02:00,21.6687,95.1075,10.58 +2016-11-01 00:17:00,21.3375,94.98,10.55 +2016-11-01 00:32:00,20.93,94.875,10.52 +2016-11-01 00:47:00,21.3312,94.825,10.51 +2016-11-01 01:02:00,22.3975,94.8075,10.49 +2016-11-01 01:17:00,22.5,94.8225,10.46 +2016-11-01 01:32:00,22.1637,94.8375,10.46 +2016-11-01 01:47:00,19.915,94.8575,10.45 +2016-11-01 02:02:00,19.2325,94.8675,10.44 +2016-11-01 02:17:00,21.2812,94.8875,10.43 +2016-11-01 02:32:00,20.935,94.8675,10.42 +2016-11-01 02:47:00,20.88,94.7775,10.4 +2016-11-01 03:02:00,22.3975,94.6625,10.39 +2016-11-01 03:17:00,22.015,94.5175,10.39 +2016-11-01 03:32:00,20.7825,94.4425,10.39 +2016-11-01 03:47:00,22.2075,94.39,10.37 +2016-11-01 04:02:00,21.2825,94.37,10.36 +2016-11-01 04:17:00,19.2825,94.3875,10.37 +2016-11-01 04:32:00,20.9762,94.4025,10.38 +2016-11-01 04:47:00,22.5387,94.4,10.39 +2016-11-01 05:02:00,22.2525,94.415,10.39 +2016-11-01 05:17:00,21.67,94.47,10.4 +2016-11-01 05:32:00,21.4287,94.455,10.4 +2016-11-01 05:47:00,22.0088,94.3875,10.38 +2016-11-01 06:02:00,22.4,94.28,10.38 +2016-11-01 06:17:00,22.065,94.135,10.38 +2016-11-01 06:32:00,21.5225,94.0375,10.38 +2016-11-01 06:47:00,22.2525,93.93,10.38 +2016-11-01 07:02:00,20.015,93.82,10.37 +2016-11-01 07:17:00,22.065,93.7175,10.35 +2016-11-01 07:32:00,21.6212,93.6875,10.34 +2016-11-01 07:47:00,22.3063,93.745,10.33 +2016-11-01 08:02:00,23.6162,93.7675,10.33 +2016-11-01 08:17:00,20.7387,93.765,10.34 +2016-11-01 08:32:00,21.1787,93.805,10.38 +2016-11-01 08:47:00,22.8363,93.825,10.41 +2016-11-01 09:02:00,21.3763,93.85,10.41 +2016-11-01 09:17:00,20.7825,93.895,10.41 +2016-11-01 09:32:00,22.7862,93.875,10.42 +2016-11-01 09:47:00,22.2113,93.8825,10.44 +2016-11-01 10:02:00,21.3825,93.84,10.47 +2016-11-01 10:17:00,22.0125,93.79,10.47 +2016-11-01 10:32:00,22.3,93.7475,10.47 +2016-11-01 10:47:00,21.915,93.7575,10.46 +2016-11-01 11:02:00,19.575,93.8,10.48 +2016-11-01 11:17:00,21.3262,93.885,10.49 +2016-11-01 11:32:00,22.645,93.9775,10.51 +2016-11-01 11:47:00,22.0662,94.055,10.52 +2016-11-01 12:02:00,23.1738,94.1225,10.55 +2016-11-01 12:17:00,21.03,94.1925,10.58 +2016-11-01 12:32:00,22.5375,94.205,10.6 +2016-11-01 12:47:00,22.6875,94.16,10.59 +2016-11-01 13:02:00,22.1588,94.065,10.56 +2016-11-01 13:17:00,22.1675,93.9675,10.55 +2016-11-01 13:32:00,21.92,93.905,10.55 +2016-11-01 13:47:00,20.9812,93.8875,10.56 +2016-11-01 14:02:00,22.1125,93.9425,10.57 +2016-11-01 14:17:00,21.4238,93.9875,10.55 +2016-11-01 14:32:00,21.5687,94.08,10.54 +2016-11-01 14:47:00,23.0275,94.2225,10.54 +2016-11-01 15:02:00,21.425,94.28,10.55 +2016-11-01 15:17:00,20.4962,94.3575,10.53 +2016-11-01 15:32:00,21.4275,94.4375,10.52 +2016-11-01 15:47:00,21.8725,94.5675,10.52 +2016-11-01 16:02:00,21.4275,94.64,10.52 +2016-11-01 16:17:00,21.1263,94.7475,10.52 +2016-11-01 16:32:00,22.1612,94.9,10.52 +2016-11-01 16:47:00,22.3475,95.07,10.51 +2016-11-01 17:02:00,20.55,95.225,10.51 +2016-11-01 17:17:00,21.5238,95.4175,10.52 +2016-11-01 17:32:00,22.0638,95.6075,10.54 +2016-11-01 17:47:00,21.96,95.7725,10.55 +2016-11-01 18:02:00,20.7825,95.9425,10.56 +2016-11-01 18:17:00,23.12,96.0775,10.58 +2016-11-01 18:32:00,22.7875,96.1925,10.58 +2016-11-01 18:47:00,21.575,96.2325,10.58 +2016-11-01 19:02:00,23.8512,96.1675,10.58 +2016-11-01 19:17:00,21.9187,95.9575,10.59 +2016-11-01 19:32:00,22.305,95.8025,10.59 +2016-11-01 19:47:00,20.2075,95.6725,10.58 +2016-11-01 20:02:00,21.5225,95.57,10.58 +2016-11-01 20:17:00,19.3312,95.4725,10.59 +2016-11-01 20:32:00,20.0587,95.385,10.59 +2016-11-01 20:47:00,19.9175,95.31,10.58 +2016-11-01 21:02:00,21.475,95.245,10.57 +2016-11-01 21:17:00,22.115,95.145,10.56 +2016-11-01 21:32:00,22.1137,95.0225,10.56 +2016-11-01 21:47:00,21.08,94.815,10.54 +2016-11-01 22:02:00,21.825,94.5925,10.51 +2016-11-01 22:17:00,22.6437,94.355,10.48 +2016-11-01 22:32:00,20.9287,94.165,10.46 +2016-11-01 22:47:00,22.2575,94.02,10.45 +2016-11-01 23:02:00,21.3825,93.9325,10.44 +2016-11-01 23:17:00,21.625,93.8675,10.43 +2016-11-01 23:32:00,20.0612,93.81,10.4 +2016-11-01 23:47:00,21.33,93.7875,10.38 +2016-11-02 00:02:00,19.3812,93.7775,10.35 +2016-11-02 00:17:00,22.3962,93.795,10.32 +2016-11-02 00:32:00,20.2062,93.775,10.28 +2016-11-02 00:47:00,21.5687,93.7075,10.26 +2016-11-02 01:02:00,22.1612,93.59,10.24 +2016-11-02 01:17:00,21.2325,93.42,10.22 +2016-11-02 01:32:00,20.2588,93.235,10.2 +2016-11-02 01:47:00,22.4938,93.08,10.18 +2016-11-02 02:02:00,21.6175,93.0075,10.18 +2016-11-02 02:17:00,22.4925,92.9925,10.17 +2016-11-02 02:32:00,21.8225,92.98,10.16 +2016-11-02 02:47:00,21.6738,92.98,10.16 +2016-11-02 03:02:00,22.1137,92.97,10.15 +2016-11-02 03:17:00,23.9938,93.0025,10.16 +2016-11-02 03:32:00,21.2262,93.0025,10.14 +2016-11-02 03:47:00,20.3463,92.9475,10.12 +2016-11-02 04:02:00,21.9163,92.8575,10.1 +2016-11-02 04:17:00,21.87,92.72,10.09 +2016-11-02 04:32:00,20.7337,92.5725,10.08 +2016-11-02 04:47:00,22.1612,92.465,10.08 +2016-11-02 05:02:00,20.2075,92.4025,10.09 +2016-11-02 05:17:00,20.735,92.37,10.09 +2016-11-02 05:32:00,21.9175,92.385,10.07 +2016-11-02 05:47:00,22.8375,92.415,10.07 +2016-11-02 06:02:00,21.3262,92.4825,10.07 +2016-11-02 06:17:00,21.175,92.4875,10.04 +2016-11-02 06:32:00,23.3187,92.515,10.02 +2016-11-02 06:47:00,20.9275,92.4925,10.0 +2016-11-02 07:02:00,20.595,92.4675,9.98 +2016-11-02 07:17:00,22.3438,92.3975,9.98 +2016-11-02 07:32:00,20.975,92.315,9.98 +2016-11-02 07:47:00,21.0263,92.27,9.95 +2016-11-02 08:02:00,19.8675,92.285,9.92 +2016-11-02 08:17:00,22.255,92.235,9.89 +2016-11-02 08:32:00,22.0662,92.2825,9.86 +2016-11-02 08:47:00,23.1687,92.365,9.86 +2016-11-02 09:02:00,21.4225,92.415,9.83 +2016-11-02 09:17:00,21.6687,92.5025,9.8 +2016-11-02 09:32:00,22.54,92.5475,9.79 +2016-11-02 09:47:00,20.5938,92.6125,9.79 +2016-11-02 10:02:00,22.9812,92.6375,9.79 +2016-11-02 10:17:00,24.2,92.5975,9.79 +2016-11-02 10:32:00,20.3562,92.4825,9.79 +2016-11-02 10:47:00,21.3763,92.36,9.76 +2016-11-02 11:02:00,20.3037,92.3125,9.75 +2016-11-02 11:17:00,22.2988,92.385,9.75 +2016-11-02 11:32:00,21.62,92.3475,9.74 +2016-11-02 11:47:00,21.52,92.4275,9.71 +2016-11-02 12:02:00,23.8463,92.455,9.68 +2016-11-02 12:17:00,22.1113,92.515,9.66 +2016-11-02 12:32:00,21.6212,92.5675,9.67 +2016-11-02 12:47:00,19.6237,92.56,9.68 +2016-11-02 13:02:00,22.1637,92.6,9.66 +2016-11-02 13:17:00,20.8775,92.545,9.64 +2016-11-02 13:32:00,22.5925,92.44,9.63 +2016-11-02 13:47:00,22.395,92.305,9.62 +2016-11-02 14:02:00,21.5212,92.2175,9.64 +2016-11-02 14:17:00,20.5488,92.23,9.65 +2016-11-02 14:32:00,20.9275,92.16,9.63 +2016-11-02 14:47:00,21.3262,92.185,9.61 +2016-11-02 15:02:00,21.7738,92.2225,9.6 +2016-11-02 15:17:00,22.2138,92.235,9.57 +2016-11-02 15:32:00,22.9313,92.245,9.55 +2016-11-02 15:47:00,22.8325,92.275,9.54 +2016-11-02 16:02:00,22.8363,92.2475,9.52 +2016-11-02 16:17:00,22.4463,92.1575,9.53 +2016-11-02 16:32:00,21.565,92.02,9.55 +2016-11-02 16:47:00,22.74,91.9,9.54 +2016-11-02 17:02:00,23.1188,91.7425,9.5 +2016-11-02 17:17:00,21.8175,91.6725,9.49 +2016-11-02 17:32:00,22.11,91.6775,9.5 +2016-11-02 17:47:00,21.1725,91.6725,9.5 +2016-11-02 18:02:00,22.6425,91.7825,9.51 +2016-11-02 18:17:00,22.3463,91.8975,9.52 +2016-11-02 18:32:00,21.765,92.0825,9.52 +2016-11-02 18:47:00,21.175,92.28,9.54 +2016-11-02 19:02:00,21.125,92.47,9.54 +2016-11-02 19:17:00,19.475,92.63,9.54 +2016-11-02 19:32:00,21.0775,92.7075,9.51 +2016-11-02 19:47:00,22.305,92.7375,9.49 +2016-11-02 20:02:00,22.3025,92.755,9.48 +2016-11-02 20:17:00,21.6687,92.825,9.48 +2016-11-02 20:32:00,21.715,92.94,9.48 +2016-11-02 20:47:00,21.0775,93.11,9.48 +2016-11-02 21:02:00,21.9163,93.2975,9.46 +2016-11-02 21:17:00,21.7213,93.48,9.45 +2016-11-02 21:32:00,21.72,93.625,9.44 +2016-11-02 21:47:00,19.2337,93.765,9.44 +2016-11-02 22:02:00,21.9688,93.8825,9.43 +2016-11-02 22:17:00,23.215,93.9575,9.38 +2016-11-02 22:32:00,21.7687,93.96,9.34 +2016-11-02 22:47:00,22.8862,93.8925,9.32 +2016-11-02 23:02:00,19.09,93.805,9.29 +2016-11-02 23:17:00,20.1075,93.7325,9.26 +2016-11-02 23:32:00,22.5437,93.695,9.22 +2016-11-02 23:47:00,21.3325,93.7,9.18 +2016-11-03 00:02:00,22.595,93.715,9.16 +2016-11-03 00:17:00,20.83,93.7425,9.13 +2016-11-03 00:32:00,23.7075,93.7675,9.1 +2016-11-03 00:47:00,22.1087,93.8125,9.06 +2016-11-03 01:02:00,22.6362,93.8525,9.01 +2016-11-03 01:17:00,22.0088,93.905,8.98 +2016-11-03 01:32:00,23.0287,93.9075,8.95 +2016-11-03 01:47:00,21.3325,93.8425,8.94 +2016-11-03 02:02:00,22.2075,93.73,8.91 +2016-11-03 02:17:00,23.56,93.6125,8.87 +2016-11-03 02:32:00,22.6888,93.46,8.86 +2016-11-03 02:47:00,21.375,93.395,8.84 +2016-11-03 03:02:00,22.6862,93.4125,8.83 +2016-11-03 03:17:00,23.365,93.4425,8.82 +2016-11-03 03:32:00,22.3025,93.5,8.81 +2016-11-03 03:47:00,21.5662,93.57,8.78 +2016-11-03 04:02:00,22.8325,93.64,8.77 +2016-11-03 04:17:00,22.5888,93.72,8.78 +2016-11-03 04:32:00,21.0775,93.7775,8.77 +2016-11-03 04:47:00,19.4725,93.785,8.74 +2016-11-03 05:02:00,21.865,93.7525,8.74 +2016-11-03 05:17:00,22.445,93.685,8.73 +2016-11-03 05:32:00,22.2062,93.6275,8.72 +2016-11-03 05:47:00,22.2975,93.595,8.69 +2016-11-03 06:02:00,22.885,93.625,8.67 +2016-11-03 06:17:00,21.9625,93.67,8.65 +2016-11-03 06:32:00,21.0788,93.69,8.63 +2016-11-03 06:47:00,21.7637,93.75,8.6 +2016-11-03 07:02:00,21.82,93.8075,8.58 +2016-11-03 07:17:00,22.8337,93.8225,8.54 +2016-11-03 07:32:00,20.0563,93.82,8.51 +2016-11-03 07:47:00,23.1188,93.7575,8.48 +2016-11-03 08:02:00,23.66,93.7225,8.47 +2016-11-03 08:17:00,19.8688,93.6525,8.46 +2016-11-03 08:32:00,21.8662,93.5925,8.45 +2016-11-03 08:47:00,23.895,93.5575,8.43 +2016-11-03 09:02:00,21.7675,93.565,8.42 +2016-11-03 09:17:00,22.1075,93.6225,8.41 +2016-11-03 09:32:00,22.2475,93.7075,8.41 +2016-11-03 09:47:00,22.54,93.79,8.5 +2016-11-03 10:02:00,22.0612,93.86,8.63 +2016-11-03 10:17:00,21.8187,93.9375,8.71 +2016-11-03 10:32:00,22.88,93.965,8.74 +2016-11-03 10:47:00,23.1637,93.9725,8.75 +2016-11-03 11:02:00,24.2462,93.9625,8.69 +2016-11-03 11:17:00,23.0725,93.9,8.62 +2016-11-03 11:32:00,20.3037,93.7825,8.64 +2016-11-03 11:47:00,22.7337,93.67,8.7 +2016-11-03 12:02:00,21.7675,93.615,8.73 +2016-11-03 12:17:00,23.3087,93.54,8.68 +2016-11-03 12:32:00,22.11,93.475,8.61 +2016-11-03 12:47:00,20.6862,93.4425,8.55 +2016-11-03 13:02:00,22.4437,93.435,8.5 +2016-11-03 13:17:00,22.7875,93.4175,8.45 +2016-11-03 13:32:00,22.5362,93.3925,8.41 +2016-11-03 13:47:00,22.8325,93.335,8.4 +2016-11-03 14:02:00,21.3225,93.2325,8.39 +2016-11-03 14:17:00,21.3737,93.1125,8.4 +2016-11-03 14:32:00,21.425,92.9925,8.4 +2016-11-03 14:47:00,23.265,92.9575,8.41 +2016-11-03 15:02:00,22.69,92.9625,8.42 +2016-11-03 15:17:00,23.465,92.97,8.42 +2016-11-03 15:32:00,20.6837,93.02,8.42 +2016-11-03 15:47:00,21.865,93.0825,8.41 +2016-11-03 16:02:00,20.9713,93.1425,8.39 +2016-11-03 16:17:00,20.495,93.2225,8.38 +2016-11-03 16:32:00,21.5687,93.2825,8.36 +2016-11-03 16:47:00,21.5675,93.31,8.33 +2016-11-03 17:02:00,22.6875,93.315,8.31 +2016-11-03 17:17:00,20.4962,93.2775,8.29 +2016-11-03 17:32:00,21.5687,93.2075,8.28 +2016-11-03 17:47:00,21.0225,93.185,8.29 +2016-11-03 18:02:00,21.2213,93.1675,8.3 +2016-11-03 18:17:00,22.0563,93.1725,8.32 +2016-11-03 18:32:00,21.4688,93.21,8.33 +2016-11-03 18:47:00,20.5488,93.27,8.36 +2016-11-03 19:02:00,21.565,93.325,8.36 +2016-11-03 19:17:00,20.8288,93.41,8.37 +2016-11-03 19:32:00,21.965,93.4775,8.37 +2016-11-03 19:47:00,21.3237,93.5125,8.37 +2016-11-03 20:02:00,21.0762,93.5025,8.39 +2016-11-03 20:17:00,22.0587,93.4425,8.39 +2016-11-03 20:32:00,20.7838,93.3525,8.41 +2016-11-03 20:47:00,23.2138,93.3,8.43 +2016-11-03 21:02:00,20.685,93.29,8.45 +2016-11-03 21:17:00,22.3913,93.3325,8.46 +2016-11-03 21:32:00,22.8363,93.39,8.47 +2016-11-03 21:47:00,22.4425,93.46,8.47 +2016-11-03 22:02:00,21.6137,93.5275,8.46 +2016-11-03 22:17:00,22.06,93.595,8.44 +2016-11-03 22:32:00,22.2525,93.6775,8.43 +2016-11-03 22:47:00,22.49,93.7375,8.4 +2016-11-03 23:02:00,21.96,93.76,8.38 +2016-11-03 23:17:00,20.9725,93.755,8.36 +2016-11-03 23:32:00,22.5375,93.69,8.34 +2016-11-03 23:47:00,21.765,93.665,8.31 +2016-11-04 00:02:00,21.0287,93.6675,8.3 +2016-11-04 00:17:00,21.6188,93.675,8.27 +2016-11-04 00:32:00,22.585,93.7,8.24 +2016-11-04 00:47:00,23.165,93.74,8.23 +2016-11-04 01:02:00,21.1237,93.7775,8.21 +2016-11-04 01:17:00,21.4238,93.815,8.17 +2016-11-04 01:32:00,23.8913,93.8625,8.13 +2016-11-04 01:47:00,23.46,93.905,8.12 +2016-11-04 02:02:00,22.49,93.885,8.11 +2016-11-04 02:17:00,21.5713,93.87,8.11 +2016-11-04 02:32:00,21.8162,93.7775,8.09 +2016-11-04 02:47:00,22.3913,93.7,8.08 +2016-11-04 03:02:00,21.9638,93.6825,8.08 +2016-11-04 03:17:00,21.765,93.6875,8.07 +2016-11-04 03:32:00,22.1087,93.7125,8.08 +2016-11-04 03:47:00,22.445,93.7575,8.1 +2016-11-04 04:02:00,22.9788,93.8125,8.11 +2016-11-04 04:17:00,22.25,93.875,8.11 +2016-11-04 04:32:00,21.4688,93.9075,8.12 +2016-11-04 04:47:00,20.7325,93.905,8.15 +2016-11-04 05:02:00,22.9262,93.84,8.15 +2016-11-04 05:17:00,20.9725,93.75,8.14 +2016-11-04 05:32:00,21.5175,93.6675,8.14 +2016-11-04 05:47:00,22.9325,93.585,8.15 +2016-11-04 06:02:00,22.595,93.5675,8.18 +2016-11-04 06:17:00,23.0238,93.585,8.2 +2016-11-04 06:32:00,23.26,93.62,8.21 +2016-11-04 06:47:00,22.935,93.6425,8.21 +2016-11-04 07:02:00,21.3737,93.6375,8.21 +2016-11-04 07:17:00,21.6663,93.61,8.22 +2016-11-04 07:32:00,21.4238,93.5475,8.22 +2016-11-04 07:47:00,20.7312,93.5275,8.22 +2016-11-04 08:02:00,20.0062,93.5125,8.22 +2016-11-04 08:17:00,21.7162,93.5325,8.22 +2016-11-04 08:32:00,21.465,93.55,8.24 +2016-11-04 08:47:00,21.5662,93.585,8.25 +2016-11-04 09:02:00,22.105,93.6425,8.23 +2016-11-04 09:17:00,21.3225,93.74,8.21 +2016-11-04 09:32:00,21.4725,93.8125,8.22 +2016-11-04 09:47:00,22.4,93.885,8.22 +2016-11-04 10:02:00,23.0675,93.95,8.2 +2016-11-04 10:17:00,21.8125,93.94,8.18 +2016-11-04 10:32:00,22.25,93.905,8.19 +2016-11-04 10:47:00,21.7175,93.845,8.22 +2016-11-04 11:02:00,21.7162,93.8325,8.23 +2016-11-04 11:17:00,21.5687,93.8475,8.24 +2016-11-04 11:32:00,21.9137,93.8775,8.23 +2016-11-04 11:47:00,22.2075,93.92,8.22 +2016-11-04 12:02:00,21.5163,93.9575,8.22 +2016-11-04 12:17:00,21.615,94.04,8.2 +2016-11-04 12:32:00,21.865,94.09,8.19 +2016-11-04 12:47:00,22.3913,94.18,8.18 +2016-11-04 13:02:00,21.8637,94.23,8.17 +2016-11-04 13:17:00,21.4713,94.2325,8.17 +2016-11-04 13:32:00,22.015,94.1675,8.18 +2016-11-04 13:47:00,21.765,94.0925,8.18 +2016-11-04 14:02:00,23.7075,94.03,8.16 +2016-11-04 14:17:00,22.3412,93.9975,8.17 +2016-11-04 14:32:00,9.385,93.9975,8.18 +2016-11-04 14:47:00,8.215,94.0125,8.17 +2016-11-04 15:02:00,22.8325,94.025,8.16 +2016-11-04 15:17:00,22.8812,94.055,8.16 +2016-11-04 15:32:00,21.6675,94.1325,8.15 +2016-11-04 15:47:00,22.06,94.1825,8.14 +2016-11-04 16:02:00,22.3425,94.22,8.14 +2016-11-04 16:17:00,21.915,94.215,8.15 +2016-11-04 16:32:00,22.06,94.1575,8.13 +2016-11-04 16:47:00,21.1225,94.07,8.12 +2016-11-04 17:02:00,23.4637,93.985,8.13 +2016-11-04 17:17:00,21.4238,93.9125,8.13 +2016-11-04 17:32:00,21.1775,93.855,8.14 +2016-11-04 17:47:00,21.4662,93.825,8.13 +2016-11-04 18:02:00,23.215,93.79,8.13 +2016-11-04 18:17:00,20.5925,93.7725,8.14 +2016-11-04 18:32:00,20.1038,93.715,8.14 +2016-11-04 18:47:00,24.2425,93.6575,8.15 +2016-11-04 19:02:00,19.3775,93.625,8.16 +2016-11-04 19:17:00,22.8375,93.52,8.15 +2016-11-04 19:32:00,22.2038,93.385,8.14 +2016-11-04 19:47:00,22.2025,93.2025,8.14 +2016-11-04 20:02:00,23.07,93.0325,8.14 +2016-11-04 20:17:00,23.85,92.845,8.14 +2016-11-04 20:32:00,20.495,92.715,8.14 +2016-11-04 20:47:00,22.3937,92.635,8.13 +2016-11-04 21:02:00,21.4275,92.5925,8.13 +2016-11-04 21:17:00,20.6425,92.5675,8.13 +2016-11-04 21:32:00,23.07,92.5525,8.13 +2016-11-04 21:47:00,23.5088,92.5625,8.13 +2016-11-04 22:02:00,21.0737,92.5925,8.13 +2016-11-04 22:17:00,22.2962,92.5875,8.12 +2016-11-04 22:32:00,21.47,92.575,8.1 +2016-11-04 22:47:00,20.7825,92.525,8.09 +2016-11-04 23:02:00,23.1212,92.445,8.08 +2016-11-04 23:17:00,22.3438,92.385,8.08 +2016-11-04 23:32:00,23.2138,92.375,8.06 +2016-11-04 23:47:00,22.345,92.4,8.05 +2016-11-05 00:02:00,22.065,92.455,8.04 +2016-11-05 00:17:00,22.2988,92.51,8.03 +2016-11-05 00:32:00,21.5713,92.58,8.02 +2016-11-05 00:47:00,21.3275,92.665,8.01 +2016-11-05 01:02:00,20.64,92.765,8.0 +2016-11-05 01:17:00,21.5662,92.855,7.98 +2016-11-05 01:32:00,22.5387,92.9025,7.96 +2016-11-05 01:47:00,22.8363,92.9025,7.95 +2016-11-05 02:02:00,21.715,92.8675,7.93 +2016-11-05 02:17:00,20.1075,92.805,7.91 +2016-11-05 02:32:00,23.4662,92.825,7.91 +2016-11-05 02:47:00,22.4463,92.875,7.92 +2016-11-05 03:02:00,22.0125,92.955,7.93 +2016-11-05 03:17:00,22.25,93.0425,7.92 +2016-11-05 03:32:00,23.8937,93.17,7.91 +2016-11-05 03:47:00,20.495,93.2875,7.91 +2016-11-05 04:02:00,22.4437,93.395,7.91 +2016-11-05 04:17:00,21.92,93.5225,7.92 +2016-11-05 04:32:00,20.7838,93.615,7.92 +2016-11-05 04:47:00,22.5912,93.7,7.92 +2016-11-05 05:02:00,20.0575,93.72,7.94 +2016-11-05 05:17:00,23.07,93.7525,7.95 +2016-11-05 05:32:00,21.1263,93.7975,7.96 +2016-11-05 05:47:00,21.4238,93.895,7.97 +2016-11-05 06:02:00,22.1125,94.0025,7.98 +2016-11-05 06:17:00,20.9775,94.14,7.98 +2016-11-05 06:32:00,21.2312,94.285,7.99 +2016-11-05 06:47:00,21.3262,94.4875,8.0 +2016-11-05 07:02:00,23.1712,94.67,8.0 +2016-11-05 07:17:00,21.2738,94.8425,8.0 +2016-11-05 07:32:00,21.125,94.9975,8.01 +2016-11-05 07:47:00,22.64,95.1175,8.01 +2016-11-05 08:02:00,21.3775,95.2,8.02 +2016-11-05 08:17:00,22.1625,95.25,8.03 +2016-11-05 08:32:00,21.425,95.31,8.03 +2016-11-05 08:47:00,22.6925,95.355,8.03 +2016-11-05 09:02:00,21.3763,95.395,8.03 +2016-11-05 09:17:00,21.2738,95.47,8.05 +2016-11-05 09:32:00,22.3475,95.5475,8.05 +2016-11-05 09:47:00,21.5662,95.6575,8.03 +2016-11-05 10:02:00,21.0325,95.7775,8.04 +2016-11-05 10:17:00,21.77,95.8975,8.06 +2016-11-05 10:32:00,21.915,96.0225,8.07 +2016-11-05 10:47:00,22.11,96.1475,8.06 +2016-11-05 11:02:00,22.6888,96.2525,8.05 +2016-11-05 11:17:00,22.6413,96.345,8.04 +2016-11-05 11:32:00,23.2175,96.4,8.04 +2016-11-05 11:47:00,21.0287,96.4,8.04 +2016-11-05 12:02:00,23.2237,96.34,8.03 +2016-11-05 12:17:00,22.0662,96.295,8.02 +2016-11-05 12:32:00,20.9725,96.29,8.0 +2016-11-05 12:47:00,21.1263,96.3275,8.0 +2016-11-05 13:02:00,20.8312,96.3775,8.0 +2016-11-05 13:17:00,20.35,96.475,8.01 +2016-11-05 13:32:00,22.345,96.5875,8.0 +2016-11-05 13:47:00,22.395,96.72,7.99 +2016-11-05 14:02:00,21.8213,96.8675,8.0 +2016-11-05 14:17:00,21.5187,97.0,8.01 +2016-11-05 14:32:00,22.1588,97.1325,8.02 +2016-11-05 14:47:00,21.67,97.2275,8.04 +2016-11-05 15:02:00,21.03,97.3325,8.04 +2016-11-05 15:17:00,21.8187,97.415,8.04 +2016-11-05 15:32:00,23.945,97.57,8.06 +2016-11-05 15:47:00,23.1212,97.7575,8.08 +2016-11-05 16:02:00,23.4625,97.98,8.09 +2016-11-05 16:17:00,22.5413,98.1675,8.08 +2016-11-05 16:32:00,23.0725,98.325,8.06 +2016-11-05 16:47:00,21.2262,98.4475,8.06 +2016-11-05 17:02:00,22.9325,98.54,8.06 +2016-11-05 17:17:00,22.9837,98.635,8.05 +2016-11-05 17:32:00,22.0175,98.7,8.05 +2016-11-05 17:47:00,23.0762,98.6775,8.05 +2016-11-05 18:02:00,22.935,98.64,8.07 +2016-11-05 18:17:00,23.7062,98.575,8.08 +2016-11-05 18:32:00,21.7175,98.535,8.08 +2016-11-05 18:47:00,23.1162,98.565,8.09 +2016-11-05 19:02:00,22.1575,98.6275,8.1 +2016-11-05 19:17:00,21.4275,98.6925,8.12 +2016-11-05 19:32:00,20.5975,98.75,8.14 +2016-11-05 19:47:00,20.9325,98.8025,8.15 +2016-11-05 20:02:00,22.0137,98.865,8.14 +2016-11-05 20:17:00,21.8187,98.8975,8.14 +2016-11-05 20:32:00,22.1087,98.93,8.13 +2016-11-05 20:47:00,23.12,98.9125,8.13 +2016-11-05 21:02:00,22.1113,98.8675,8.13 +2016-11-05 21:17:00,21.0825,98.7575,8.11 +2016-11-05 21:32:00,22.0625,98.6425,8.09 +2016-11-05 21:47:00,22.06,98.5575,8.08 +2016-11-05 22:02:00,21.9662,98.5175,8.07 +2016-11-05 22:17:00,22.2525,98.475,8.05 +2016-11-05 22:32:00,22.69,98.4425,8.03 +2016-11-05 22:47:00,22.5925,98.43,8.0 +2016-11-05 23:02:00,22.01,98.4,7.99 +2016-11-05 23:17:00,22.0175,98.405,7.98 +2016-11-05 23:32:00,21.525,98.3775,7.99 +2016-11-05 23:47:00,22.885,98.28,7.98 +2016-11-06 00:02:00,22.015,98.145,7.97 +2016-11-06 00:17:00,21.62,97.9525,7.95 +2016-11-06 00:32:00,23.5612,97.75,7.94 +2016-11-06 00:47:00,20.5,97.6025,7.93 +2016-11-06 01:02:00,21.2775,97.495,7.91 +2016-11-06 01:17:00,21.7225,97.4275,7.88 +2016-11-06 01:32:00,22.3475,97.385,7.87 +2016-11-06 01:47:00,23.315,97.385,7.85 +2016-11-06 02:02:00,22.5975,97.355,7.83 +2016-11-06 02:17:00,22.1137,97.345,7.82 +2016-11-06 02:32:00,22.645,97.31,7.79 +2016-11-06 02:47:00,23.5638,97.28,7.78 +2016-11-06 03:02:00,22.8913,97.24,7.78 +2016-11-06 03:17:00,20.3538,97.145,7.76 +2016-11-06 03:32:00,23.1687,97.025,7.76 +2016-11-06 03:47:00,20.925,96.8675,7.74 +2016-11-06 04:02:00,22.7887,96.78,7.73 +2016-11-06 04:17:00,23.465,96.735,7.72 +2016-11-06 04:32:00,23.5125,96.69,7.7 +2016-11-06 04:47:00,23.665,96.685,7.7 +2016-11-06 05:02:00,21.87,96.6975,7.69 +2016-11-06 05:17:00,20.6875,96.715,7.7 +2016-11-06 05:32:00,22.69,96.7175,7.69 +2016-11-06 05:47:00,23.4625,96.7325,7.68 +2016-11-06 06:02:00,20.8825,96.695,7.68 +2016-11-06 06:17:00,20.7825,96.6,7.69 +2016-11-06 06:32:00,21.3775,96.455,7.67 +2016-11-06 06:47:00,21.9688,96.3175,7.65 +2016-11-06 07:02:00,20.4062,96.1975,7.65 +2016-11-06 07:17:00,22.5413,96.16,7.65 +2016-11-06 07:32:00,21.7675,96.1325,7.65 +2016-11-06 07:47:00,22.0612,96.105,7.64 +2016-11-06 08:02:00,21.9137,96.05,7.64 +2016-11-06 08:17:00,21.8213,95.9875,7.63 +2016-11-06 08:32:00,22.6925,95.9125,7.61 +2016-11-06 08:47:00,23.855,95.93,7.57 +2016-11-06 09:02:00,22.1588,95.97,7.56 +2016-11-06 09:17:00,23.66,96.0325,7.57 +2016-11-06 09:32:00,22.3937,96.1375,7.58 +2016-11-06 09:47:00,22.205,96.2225,7.58 +2016-11-06 10:02:00,21.375,96.3,7.58 +2016-11-06 10:17:00,23.945,96.3525,7.57 +2016-11-06 10:32:00,22.2087,96.4275,7.59 +2016-11-06 10:47:00,22.4938,96.485,7.6 +2016-11-06 11:02:00,23.9938,96.505,7.59 +2016-11-06 11:17:00,23.2663,96.4675,7.58 +2016-11-06 11:32:00,22.0137,96.425,7.58 +2016-11-06 11:47:00,22.7387,96.4275,7.6 +2016-11-06 12:02:00,21.225,96.4325,7.63 +2016-11-06 12:17:00,22.0187,96.5025,7.65 +2016-11-06 12:32:00,23.8037,96.62,7.63 +2016-11-06 12:47:00,22.3538,96.74,7.63 +2016-11-06 13:02:00,21.7188,96.845,7.64 +2016-11-06 13:17:00,23.2663,96.9775,7.65 +2016-11-06 13:32:00,21.1775,97.0575,7.66 +2016-11-06 13:47:00,22.0638,97.1125,7.65 +2016-11-06 14:02:00,21.9688,97.1675,7.64 +2016-11-06 14:17:00,23.4175,97.2075,7.63 +2016-11-06 14:32:00,21.4737,97.2025,7.64 +2016-11-06 14:47:00,21.2288,97.1625,7.63 +2016-11-06 15:02:00,21.7188,97.12,7.63 +2016-11-06 15:17:00,22.7412,97.1125,7.61 +2016-11-06 15:32:00,21.2275,97.135,7.62 +2016-11-06 15:47:00,22.54,97.165,7.63 +2016-11-06 16:02:00,21.3288,97.2125,7.63 +2016-11-06 16:17:00,22.7425,97.24,7.62 +2016-11-06 16:32:00,21.2775,97.295,7.6 +2016-11-06 16:47:00,22.115,97.3225,7.6 +2016-11-06 17:02:00,21.9675,97.3375,7.59 +2016-11-06 17:17:00,21.9625,97.3025,7.59 +2016-11-06 17:32:00,22.0137,97.2325,7.59 +2016-11-06 17:47:00,22.6888,97.1175,7.57 +2016-11-06 18:02:00,20.6888,97.015,7.57 +2016-11-06 18:17:00,21.9713,96.9525,7.59 +2016-11-06 18:32:00,23.1712,96.9325,7.61 +2016-11-06 18:47:00,23.0263,96.9225,7.61 +2016-11-06 19:02:00,22.495,96.9475,7.62 +2016-11-06 19:17:00,23.71,96.97,7.62 +2016-11-06 19:32:00,23.71,96.985,7.63 +2016-11-06 19:47:00,21.7637,97.0275,7.64 +2016-11-06 20:02:00,22.5462,97.025,7.66 +2016-11-06 20:17:00,21.23,96.99,7.65 +2016-11-06 20:32:00,22.885,96.92,7.67 +2016-11-06 20:47:00,22.3,96.8075,7.69 +2016-11-06 21:02:00,22.8375,96.69,7.7 +2016-11-06 21:17:00,22.1113,96.6275,7.71 +2016-11-06 21:32:00,22.015,96.6025,7.7 +2016-11-06 21:47:00,20.6462,96.5875,7.7 +2016-11-06 22:02:00,21.97,96.615,7.7 +2016-11-06 22:17:00,22.6425,96.62,7.69 +2016-11-06 22:32:00,20.6475,96.665,7.69 +2016-11-06 22:47:00,22.98,96.7025,7.68 +2016-11-06 23:02:00,21.5212,96.705,7.65 +2016-11-06 23:17:00,22.2988,96.6475,7.64 +2016-11-06 23:32:00,22.1637,96.555,7.62 +2016-11-06 23:47:00,22.065,96.4,7.61 +2016-11-07 00:02:00,23.5125,96.295,7.58 +2016-11-07 00:17:00,21.62,96.2175,7.56 +2016-11-07 00:32:00,22.5425,96.1525,7.56 +2016-11-07 00:47:00,22.4925,96.1075,7.56 +2016-11-07 01:02:00,24.295,96.1025,7.56 +2016-11-07 01:17:00,22.165,96.085,7.55 +2016-11-07 01:32:00,22.3562,96.0725,7.54 +2016-11-07 01:47:00,22.6925,96.0425,7.55 +2016-11-07 02:02:00,21.8213,95.9875,7.57 +2016-11-07 02:17:00,22.0137,95.8525,7.58 +2016-11-07 02:32:00,22.4925,95.7075,7.6 +2016-11-07 02:47:00,22.7838,95.535,7.6 +2016-11-07 03:02:00,21.8187,95.3875,7.61 +2016-11-07 03:17:00,22.6425,95.325,7.62 +2016-11-07 03:32:00,23.1225,95.2825,7.62 +2016-11-07 03:47:00,21.5737,95.2775,7.63 +2016-11-07 04:02:00,22.0125,95.2875,7.62 +2016-11-07 04:17:00,22.6425,95.2925,7.64 +2016-11-07 04:32:00,21.7712,95.3275,7.66 +2016-11-07 04:47:00,22.7875,95.345,7.66 +2016-11-07 05:02:00,21.8213,95.34,7.67 +2016-11-07 05:17:00,23.9025,95.265,7.66 +2016-11-07 05:32:00,23.2213,95.205,7.67 +2016-11-07 05:47:00,22.3475,95.1775,7.68 +2016-11-07 06:02:00,23.3662,95.22,7.68 +2016-11-07 06:17:00,21.4262,95.2875,7.77 +2016-11-07 06:32:00,22.6437,95.3525,7.9 +2016-11-07 06:47:00,22.7862,95.4375,7.97 +2016-11-07 07:02:00,21.6162,95.505,8.0 +2016-11-07 07:17:00,20.9262,95.5575,8.01 +2016-11-07 07:32:00,22.3525,95.545,8.02 +2016-11-07 07:47:00,22.7387,95.5175,8.01 +2016-11-07 08:02:00,21.7188,95.4625,7.97 +2016-11-07 08:17:00,21.425,95.375,7.97 +2016-11-07 08:32:00,20.735,95.305,7.98 +2016-11-07 08:47:00,22.5912,95.2525,8.0 +2016-11-07 09:02:00,22.3512,95.23,7.99 +2016-11-07 09:17:00,21.7262,95.22,7.99 +2016-11-07 09:32:00,22.8363,95.2125,7.99 +2016-11-07 09:47:00,20.975,95.2275,8.01 +2016-11-07 10:02:00,22.255,95.2275,8.0 +2016-11-07 10:17:00,21.7237,95.275,7.97 +2016-11-07 10:32:00,20.595,95.3025,7.96 +2016-11-07 10:47:00,21.9638,95.275,7.97 +2016-11-07 11:02:00,22.7438,95.2075,8.0 +2016-11-07 11:17:00,22.79,95.1425,8.01 +2016-11-07 11:32:00,23.2213,95.07,8.01 +2016-11-07 11:47:00,23.415,95.01,8.02 +2016-11-07 12:02:00,19.9137,94.995,8.0 +2016-11-07 12:17:00,23.9962,94.98,7.93 +2016-11-07 12:32:00,22.3962,95.05,7.83 +2016-11-07 12:47:00,21.28,95.1425,7.78 +2016-11-07 13:02:00,22.6912,95.295,7.75 +2016-11-07 13:17:00,23.0287,95.4825,7.73 +2016-11-07 13:32:00,22.9812,95.715,7.72 +2016-11-07 13:47:00,23.0287,96.0175,7.65 +2016-11-07 14:02:00,21.8675,96.355,7.54 +2016-11-07 14:17:00,23.4675,96.715,7.47 +2016-11-07 14:32:00,22.0625,97.1025,7.48 +2016-11-07 14:47:00,22.2562,97.52,7.51 +2016-11-07 15:02:00,22.1162,97.9575,7.52 +2016-11-07 15:17:00,22.3025,98.3775,7.5 +2016-11-07 15:32:00,22.6425,98.8325,7.49 +2016-11-07 15:47:00,22.3012,99.2225,7.49 +2016-11-07 16:02:00,20.0587,99.6025,7.49 +2016-11-07 16:17:00,22.1575,99.9275,7.49 +2016-11-07 16:32:00,21.1762,100.162,7.49 +2016-11-07 16:47:00,22.5437,100.305,7.48 +2016-11-07 17:02:00,23.2663,100.342,7.48 +2016-11-07 17:17:00,21.8187,100.285,7.47 +2016-11-07 17:32:00,22.9825,100.23,7.47 +2016-11-07 17:47:00,23.315,100.15,7.47 +2016-11-07 18:02:00,22.1137,100.077,7.46 +2016-11-07 18:17:00,21.6712,100.01,7.47 +2016-11-07 18:32:00,20.4062,99.94,7.48 +2016-11-07 18:47:00,22.7425,99.865,7.49 +2016-11-07 19:02:00,21.4725,99.8,7.49 +2016-11-07 19:17:00,23.1687,99.73,7.48 +2016-11-07 19:32:00,22.1125,99.62,7.47 +2016-11-07 19:47:00,20.835,99.4925,7.46 +2016-11-07 20:02:00,21.9163,99.305,7.46 +2016-11-07 20:17:00,22.2113,99.0525,7.47 +2016-11-07 20:32:00,22.065,98.81,7.47 +2016-11-07 20:47:00,22.0675,98.5975,7.47 +2016-11-07 21:02:00,23.1188,98.4275,7.48 +2016-11-07 21:17:00,21.9175,98.31,7.47 +2016-11-07 21:32:00,21.4262,98.2,7.47 +2016-11-07 21:47:00,22.015,98.11,7.46 +2016-11-07 22:02:00,20.5975,98.0375,7.44 +2016-11-07 22:17:00,23.8538,97.97,7.43 +2016-11-07 22:32:00,22.7913,97.89,7.42 +2016-11-07 22:47:00,23.215,97.7825,7.41 +2016-11-07 23:02:00,23.7562,97.6475,7.4 +2016-11-07 23:17:00,22.4463,97.4825,7.38 +2016-11-07 23:32:00,21.225,97.3225,7.38 +2016-11-07 23:47:00,22.6437,97.15,7.38 +2016-11-08 00:02:00,19.9137,97.0325,7.39 +2016-11-08 00:17:00,22.8887,96.97,7.38 +2016-11-08 00:32:00,22.2138,96.925,7.37 +2016-11-08 00:47:00,22.0612,96.8975,7.37 +2016-11-08 01:02:00,23.315,96.885,7.37 +2016-11-08 01:17:00,22.5413,96.8775,7.36 +2016-11-08 01:32:00,22.885,96.905,7.35 +2016-11-08 01:47:00,22.9788,96.9225,7.34 +2016-11-08 02:02:00,23.22,96.8875,7.34 +2016-11-08 02:17:00,20.6925,96.805,7.34 +2016-11-08 02:32:00,21.18,96.7025,7.35 +2016-11-08 02:47:00,23.075,96.6025,7.37 +2016-11-08 03:02:00,20.6437,96.56,7.35 +2016-11-08 03:17:00,20.0587,96.575,7.36 +2016-11-08 03:32:00,22.7375,96.5925,7.37 +2016-11-08 03:47:00,21.5187,96.6225,7.38 +2016-11-08 04:02:00,22.1175,96.6825,7.37 +2016-11-08 04:17:00,22.5925,96.685,7.35 +2016-11-08 04:32:00,21.7712,96.69,7.34 +2016-11-08 04:47:00,22.3463,96.6725,7.34 +2016-11-08 05:02:00,21.6162,96.63,7.35 +2016-11-08 05:17:00,22.2062,96.56,7.35 +2016-11-08 05:32:00,23.6637,96.4875,7.35 +2016-11-08 05:47:00,21.3288,96.4125,7.34 +2016-11-08 06:02:00,23.3675,96.3475,7.35 +2016-11-08 06:17:00,22.6875,96.3275,7.36 +2016-11-08 06:32:00,23.265,96.345,7.36 +2016-11-08 06:47:00,21.6188,96.395,7.34 +2016-11-08 07:02:00,23.71,96.4475,7.32 +2016-11-08 07:17:00,22.5912,96.52,7.31 +2016-11-08 07:32:00,22.885,96.5825,7.31 +2016-11-08 07:47:00,22.2537,96.6525,7.31 +2016-11-08 08:02:00,21.475,96.65,7.29 +2016-11-08 08:17:00,22.74,96.6275,7.28 +2016-11-08 08:32:00,21.3787,96.6025,7.28 +2016-11-08 08:47:00,21.2738,96.645,7.28 +2016-11-08 09:02:00,21.965,96.7125,7.29 +2016-11-08 09:17:00,21.5662,96.7725,7.29 +2016-11-08 09:32:00,22.5425,96.8425,7.29 +2016-11-08 09:47:00,23.6125,96.955,7.29 +2016-11-08 10:02:00,22.57,97.06,7.3 +2016-11-08 11:17:00,20.385,97.395,7.29 +2016-11-08 11:23:30,20.3787,97.4075,7.3 +2016-11-08 11:32:00,20.0888,97.4025,7.3 +2016-11-08 11:47:00,22.285,97.4375,7.28 +2016-11-08 12:02:00,20.1275,97.5325,7.25 +2016-11-08 12:17:00,22.185,97.615,7.22 +2016-11-08 12:32:00,21.5413,97.7425,7.2 +2016-11-08 12:47:00,20.5225,97.895,7.2 +2016-11-08 13:02:00,22.81,98.0875,7.19 +2016-11-08 13:17:00,22.815,98.265,7.2 +2016-11-08 13:32:00,23.9275,98.4025,7.2 +2016-11-08 13:47:00,21.7412,98.52,7.18 +2016-11-08 14:02:00,22.4225,98.585,7.18 +2016-11-08 14:17:00,22.4212,98.6225,7.17 +2016-11-08 14:32:00,20.3825,98.65,7.17 +2016-11-08 14:47:00,23.4425,98.72,7.15 +2016-11-08 15:02:00,22.4688,98.84,7.12 +2016-11-08 15:17:00,20.8125,99.0125,7.1 +2016-11-08 15:32:00,21.85,99.19,7.07 +2016-11-08 15:47:00,22.67,99.3625,7.04 +2016-11-08 16:02:00,22.1912,99.5875,7.02 +2016-11-08 16:17:00,21.9475,99.7875,7.01 +2016-11-08 16:32:00,21.9487,99.9775,6.99 +2016-11-08 16:47:00,22.7225,100.173,6.98 +2016-11-08 17:02:00,23.5938,100.317,6.97 +2016-11-08 17:17:00,22.0975,100.432,6.97 +2016-11-08 17:32:00,22.3363,100.5,6.95 +2016-11-08 17:47:00,23.2975,100.622,6.92 +2016-11-08 18:02:00,23.0125,100.837,6.94 +2016-11-08 18:17:00,22.335,101.06,6.93 +2016-11-08 18:32:00,22.7687,101.325,6.93 +2016-11-08 18:47:00,20.9587,101.567,6.91 +2016-11-08 19:02:00,21.26,101.837,6.9 +2016-11-08 19:17:00,20.2875,102.137,6.89 +2016-11-08 19:32:00,20.8587,102.417,6.88 +2016-11-08 19:47:00,19.4525,102.643,6.87 +2016-11-08 20:02:00,21.2012,102.832,6.85 +2016-11-08 20:17:00,23.34,102.972,6.83 +2016-11-08 20:32:00,22.1875,103.06,6.83 +2016-11-08 20:47:00,21.2475,103.2,6.82 +2016-11-08 21:02:00,24.1225,103.382,6.78 +2016-11-08 21:17:00,24.0238,103.557,6.75 +2016-11-08 21:32:00,21.7962,103.742,6.74 +2016-11-08 21:47:00,21.9437,103.912,6.71 +2016-11-08 22:02:00,19.7975,104.12,6.67 +2016-11-08 22:17:00,20.4788,104.292,6.65 +2016-11-08 22:32:00,19.4062,104.452,6.63 +2016-11-08 22:47:00,21.2537,104.592,6.61 +2016-11-08 23:02:00,21.8438,104.677,6.6 +2016-11-08 23:17:00,20.1325,104.707,6.59 +2016-11-08 23:32:00,22.6675,104.695,6.57 +2016-11-08 23:47:00,22.5212,104.688,6.54 +2016-11-09 00:02:00,20.6212,104.727,6.51 +2016-11-09 00:17:00,21.695,104.772,6.48 +2016-11-09 00:32:00,20.955,104.84,6.45 +2016-11-09 00:47:00,22.285,104.897,6.42 +2016-11-09 01:02:00,21.5013,104.945,6.4 +2016-11-09 01:17:00,20.5737,105.015,6.39 +2016-11-09 01:32:00,22.4225,105.05,6.37 +2016-11-09 01:47:00,21.305,105.037,6.37 +2016-11-09 02:02:00,21.9475,104.995,6.38 +2016-11-09 02:17:00,21.1025,104.902,6.37 +2016-11-09 02:32:00,19.7487,104.785,6.39 +2016-11-09 02:47:00,21.1562,104.673,6.4 +2016-11-09 03:02:00,21.105,104.602,6.38 +2016-11-09 03:17:00,21.5037,104.54,6.36 +2016-11-09 03:32:00,20.765,104.503,6.33 +2016-11-09 03:47:00,22.1362,104.482,6.32 +2016-11-09 04:02:00,21.25,104.46,6.29 +2016-11-09 04:17:00,22.3288,104.43,6.27 +2016-11-09 04:32:00,21.9487,104.405,6.24 +2016-11-09 04:47:00,22.2387,104.352,6.21 +2016-11-09 05:02:00,22.96,104.283,6.18 +2016-11-09 05:17:00,22.2862,104.162,6.16 +2016-11-09 05:32:00,21.105,104.018,6.15 +2016-11-09 05:47:00,20.72,103.862,6.12 +2016-11-09 06:02:00,21.5462,103.74,6.11 +2016-11-09 06:17:00,21.1537,103.667,6.09 +2016-11-09 06:32:00,21.8975,103.645,6.06 +2016-11-09 06:47:00,22.1413,103.625,6.03 +2016-11-09 07:02:00,20.2812,103.567,6.01 +2016-11-09 07:17:00,21.6963,103.503,5.97 +2016-11-09 07:32:00,21.55,103.415,5.95 +2016-11-09 07:47:00,21.3487,103.305,5.97 +2016-11-09 08:02:00,21.2012,103.207,5.97 +2016-11-09 08:17:00,22.38,103.12,5.96 +2016-11-09 08:32:00,21.4075,103.065,5.95 +2016-11-09 08:47:00,22.095,103.055,5.94 +2016-11-09 09:02:00,22.8637,103.018,5.95 +2016-11-09 09:17:00,22.0888,103.042,5.95 +2016-11-09 09:32:00,20.9538,103.045,5.94 +2016-11-09 09:47:00,21.5437,103.05,5.92 +2016-11-09 10:02:00,23.0563,103.018,5.92 +2016-11-09 10:17:00,22.67,102.95,5.92 +2016-11-09 10:32:00,21.5512,102.84,5.93 +2016-11-09 10:47:00,23.2425,102.702,5.95 +2016-11-09 11:02:00,20.2838,102.582,5.95 +2016-11-09 11:17:00,22.52,102.47,5.96 +2016-11-09 11:32:00,22.3737,102.385,5.99 +2016-11-09 11:47:00,24.3213,102.317,6.0 +2016-11-09 12:02:00,23.25,102.302,6.01 +2016-11-09 12:17:00,22.4262,102.32,6.0 +2016-11-09 12:32:00,22.6225,102.362,6.01 +2016-11-09 12:47:00,21.1025,102.41,6.02 +2016-11-09 13:02:00,20.23,102.445,6.0 +2016-11-09 13:17:00,22.3737,102.48,5.99 +2016-11-09 13:32:00,23.015,102.515,5.97 +2016-11-09 13:47:00,23.4938,102.545,5.97 +2016-11-09 14:02:00,20.2825,102.6,5.97 +2016-11-09 14:17:00,22.62,102.697,5.95 +2016-11-09 14:32:00,21.4613,102.862,5.94 +2016-11-09 14:47:00,21.1038,103.067,5.93 +2016-11-09 15:02:00,20.8112,103.315,5.92 +2016-11-09 15:17:00,22.3275,103.617,5.92 +2016-11-09 15:32:00,22.91,103.912,5.93 +2016-11-09 15:47:00,21.9463,104.222,5.94 +2016-11-09 16:02:00,21.2038,104.518,5.92 +2016-11-09 16:17:00,22.5238,104.79,5.92 +2016-11-09 16:32:00,20.2288,105.01,5.9 +2016-11-09 16:47:00,20.1375,105.175,5.9 +2016-11-09 17:02:00,21.4525,105.265,5.9 +2016-11-09 17:17:00,22.3763,105.268,5.91 +2016-11-09 17:32:00,20.72,105.265,5.93 +2016-11-09 17:47:00,22.4238,105.23,5.92 +2016-11-09 18:02:00,24.3763,105.18,5.93 +2016-11-09 18:17:00,22.0863,105.117,5.95 +2016-11-09 18:32:00,23.0563,105.007,5.95 +2016-11-09 18:47:00,22.7675,104.91,5.95 +2016-11-09 19:02:00,22.3275,104.777,5.96 +2016-11-09 19:17:00,21.8438,104.643,5.96 +2016-11-09 19:32:00,18.9762,104.432,5.96 +2016-11-09 19:47:00,21.3112,104.173,5.97 +2016-11-09 20:02:00,21.7513,103.817,5.97 +2016-11-09 20:17:00,23.7862,103.472,5.98 +2016-11-09 20:32:00,21.2988,103.125,5.95 +2016-11-09 20:47:00,23.9275,102.872,5.94 +2016-11-09 21:02:00,21.7487,102.67,5.93 +2016-11-09 21:17:00,22.7663,102.537,5.94 +2016-11-09 21:32:00,23.1525,102.43,5.96 +2016-11-09 21:47:00,22.4262,102.347,5.97 +2016-11-09 22:02:00,22.9137,102.305,5.97 +2016-11-09 22:17:00,23.1488,102.23,5.96 +2016-11-09 22:32:00,20.6287,102.105,5.94 +2016-11-09 22:47:00,23.3412,101.947,5.93 +2016-11-09 23:02:00,23.1488,101.798,5.91 +2016-11-09 23:17:00,22.5687,101.645,5.9 +2016-11-09 23:32:00,22.1875,101.51,5.9 +2016-11-09 23:47:00,20.765,101.462,5.89 +2016-11-10 00:02:00,21.6963,101.485,5.88 +2016-11-10 00:17:00,23.8337,101.492,5.88 +2016-11-10 00:32:00,21.1575,101.525,5.88 +2016-11-10 00:47:00,21.8975,101.56,5.89 +2016-11-10 01:02:00,23.1963,101.612,5.89 +2016-11-10 01:17:00,22.2825,101.6,5.89 +2016-11-10 01:32:00,22.145,101.55,5.89 +2016-11-10 01:47:00,22.1888,101.472,5.89 +2016-11-10 02:02:00,21.5938,101.385,5.9 +2016-11-10 02:17:00,21.8463,101.332,5.91 +2016-11-10 02:32:00,21.6975,101.335,5.9 +2016-11-10 02:47:00,24.8175,101.352,5.91 +2016-11-10 03:02:00,21.4037,101.415,5.91 +2016-11-10 03:17:00,22.0375,101.467,5.9 +2016-11-10 03:32:00,20.8138,101.542,5.89 +2016-11-10 03:47:00,21.8925,101.6,5.89 +2016-11-10 04:02:00,21.505,101.622,5.89 +2016-11-10 04:17:00,20.0387,101.575,5.88 +2016-11-10 04:32:00,24.4737,101.5,5.87 +2016-11-10 04:47:00,22.6663,101.408,5.88 +2016-11-10 05:02:00,21.0512,101.317,5.88 +2016-11-10 05:17:00,21.2562,101.285,5.87 +2016-11-10 05:32:00,22.4737,101.31,5.86 +2016-11-10 05:47:00,20.9538,101.385,5.85 +2016-11-10 06:02:00,23.6862,101.48,5.85 +2016-11-10 06:17:00,23.4912,101.548,5.92 +2016-11-10 06:32:00,22.47,101.632,5.97 +2016-11-10 06:47:00,23.8312,101.715,5.97 +2016-11-10 07:02:00,22.4225,101.798,6.0 +2016-11-10 07:17:00,22.52,101.882,6.03 +2016-11-10 07:32:00,22.2325,101.932,6.01 +2016-11-10 07:47:00,21.64,101.957,6.02 +2016-11-10 08:02:00,20.23,101.972,6.03 +2016-11-10 08:17:00,20.62,101.95,6.04 +2016-11-10 08:32:00,21.9425,101.887,6.05 +2016-11-10 08:47:00,22.1837,101.785,6.06 +2016-11-10 09:02:00,22.865,101.66,6.04 +2016-11-10 09:17:00,23.8787,101.47,5.98 +2016-11-10 09:32:00,21.595,101.268,5.92 +2016-11-10 09:47:00,23.44,101.048,5.88 +2016-11-10 10:02:00,22.665,100.842,5.83 +2016-11-10 10:17:00,22.5662,100.68,5.75 +2016-11-10 10:32:00,21.6425,100.527,5.7 +2016-11-10 10:47:00,22.7637,100.385,5.68 +2016-11-10 11:02:00,22.9613,100.25,5.68 +2016-11-10 11:17:00,21.7438,100.152,5.71 +2016-11-10 11:32:00,21.9437,100.1,5.72 +2016-11-10 11:47:00,23.785,100.075,5.72 +2016-11-10 12:02:00,23.4388,100.04,5.73 +2016-11-10 12:17:00,22.5662,100.015,5.74 +2016-11-10 12:32:00,21.9887,100.018,5.75 +2016-11-10 12:47:00,23.0112,100.0,5.74 +2016-11-10 13:02:00,20.6725,99.9875,5.74 +2016-11-10 13:17:00,23.5362,99.995,5.74 +2016-11-10 13:32:00,21.69,100.01,5.74 +2016-11-10 13:47:00,23.1462,100.037,5.75 +2016-11-10 14:02:00,22.1862,100.057,5.76 +2016-11-10 14:17:00,20.7625,100.077,5.74 +2016-11-10 14:32:00,21.4025,100.115,5.73 +2016-11-10 14:47:00,22.57,100.147,5.73 +2016-11-10 15:02:00,22.8138,100.173,5.74 +2016-11-10 15:17:00,21.9425,100.21,5.73 +2016-11-10 15:32:00,23.9725,100.25,5.72 +2016-11-10 15:47:00,22.715,100.295,5.72 +2016-11-10 16:02:00,21.8913,100.312,5.71 +2016-11-10 16:17:00,23.54,100.32,5.69 +2016-11-10 16:32:00,22.2375,100.35,5.69 +2016-11-10 16:47:00,21.9463,100.37,5.68 +2016-11-10 17:02:00,22.0875,100.402,5.68 +2016-11-10 17:17:00,23.1025,100.432,5.69 +2016-11-10 17:32:00,23.0112,100.43,5.7 +2016-11-10 17:47:00,20.6225,100.44,5.7 +2016-11-10 18:02:00,21.7425,100.447,5.67 +2016-11-10 18:17:00,21.2025,100.467,5.66 +2016-11-10 18:32:00,22.5212,100.48,5.66 +2016-11-10 18:47:00,22.1375,100.503,5.68 +2016-11-10 19:02:00,21.4013,100.527,5.68 +2016-11-10 19:17:00,22.2363,100.55,5.68 +2016-11-10 19:32:00,22.4737,100.582,5.69 +2016-11-10 19:47:00,20.08,100.61,5.69 +2016-11-10 20:02:00,21.4487,100.63,5.69 +2016-11-10 20:17:00,22.7687,100.65,5.69 +2016-11-10 20:32:00,23.9725,100.67,5.67 +2016-11-10 20:47:00,20.67,100.68,5.66 +2016-11-10 21:02:00,21.6437,100.727,5.64 +2016-11-10 21:17:00,21.4037,100.76,5.63 +2016-11-10 21:32:00,22.4187,100.805,5.63 +2016-11-10 21:47:00,21.5475,100.87,5.61 +2016-11-10 22:02:00,20.2812,100.92,5.59 +2016-11-10 22:17:00,23.7425,100.975,5.58 +2016-11-10 22:32:00,21.405,101.033,5.58 +2016-11-10 22:47:00,20.8562,101.09,5.58 +2016-11-10 23:02:00,21.6425,101.15,5.58 +2016-11-10 23:17:00,21.5462,101.21,5.56 +2016-11-10 23:32:00,22.4688,101.27,5.55 +2016-11-10 23:47:00,21.3487,101.345,5.55 +2016-11-11 00:02:00,22.5713,101.365,5.55 +2016-11-11 00:17:00,21.4037,101.32,5.55 +2016-11-11 00:32:00,22.6162,101.287,5.53 +2016-11-11 00:47:00,22.3763,101.205,5.52 +2016-11-11 01:02:00,23.7387,101.165,5.51 +2016-11-11 01:17:00,23.8275,101.182,5.52 +2016-11-11 01:32:00,22.7637,101.232,5.52 +2016-11-11 01:47:00,22.3288,101.272,5.53 +2016-11-11 02:02:00,21.7475,101.347,5.51 +2016-11-11 02:17:00,21.8463,101.41,5.51 +2016-11-11 02:32:00,21.9437,101.507,5.51 +2016-11-11 02:47:00,23.39,101.585,5.51 +2016-11-11 03:02:00,21.5462,101.66,5.5 +2016-11-11 03:17:00,22.6162,101.755,5.51 +2016-11-11 03:32:00,23.44,101.812,5.51 +2016-11-11 03:47:00,23.1462,101.882,5.51 +2016-11-11 04:02:00,22.3763,101.957,5.51 +2016-11-11 04:17:00,23.0575,102.025,5.52 +2016-11-11 04:32:00,21.55,102.085,5.51 +2016-11-11 04:47:00,24.3737,102.135,5.51 +2016-11-11 05:02:00,20.8538,102.177,5.5 +2016-11-11 05:17:00,20.3288,102.232,5.49 +2016-11-11 05:32:00,24.065,102.298,5.48 +2016-11-11 05:47:00,23.2925,102.345,5.46 +2016-11-11 06:02:00,19.3575,102.393,5.45 +2016-11-11 06:17:00,21.0013,102.447,5.44 +2016-11-11 06:32:00,23.2913,102.53,5.42 +2016-11-11 06:47:00,21.7387,102.612,5.41 +2016-11-11 07:02:00,21.25,102.67,5.39 +2016-11-11 07:17:00,23.735,102.685,5.36 +2016-11-11 07:32:00,23.1425,102.658,5.35 +2016-11-11 07:47:00,24.0187,102.628,5.33 +2016-11-11 08:02:00,21.545,102.592,5.33 +2016-11-11 08:17:00,22.515,102.602,5.33 +2016-11-11 08:32:00,21.8388,102.643,5.33 +2016-11-11 08:47:00,23.7812,102.697,5.32 +2016-11-11 09:02:00,20.475,102.772,5.32 +2016-11-11 09:17:00,23.2825,102.85,5.31 +2016-11-11 09:32:00,22.3688,102.952,5.36 +2016-11-11 09:47:00,22.9137,103.022,5.41 +2016-11-11 10:02:00,23.0525,103.087,5.45 +2016-11-11 10:17:00,22.9538,103.152,5.46 +2016-11-11 10:32:00,24.1175,103.22,5.47 +2016-11-11 10:47:00,23.7312,103.28,5.47 +2016-11-11 11:02:00,22.2337,103.312,5.47 +2016-11-11 11:17:00,23.3825,103.35,5.49 +2016-11-11 11:32:00,23.1937,103.385,5.52 +2016-11-11 11:47:00,21.7425,103.425,5.53 +2016-11-11 12:02:00,22.4662,103.457,5.53 +2016-11-11 12:17:00,20.9975,103.455,5.53 +2016-11-11 12:32:00,23.2375,103.455,5.54 +2016-11-11 12:47:00,23.6775,103.408,5.56 +2016-11-11 13:02:00,20.8063,103.375,5.53 +2016-11-11 13:17:00,23.1912,103.365,5.45 +2016-11-11 13:32:00,23.9713,103.415,5.4 +2016-11-11 13:47:00,21.9412,103.51,5.36 +2016-11-11 14:02:00,21.64,103.667,5.34 +2016-11-11 14:17:00,23.1425,103.862,5.33 +2016-11-11 14:32:00,21.4037,104.137,5.33 +2016-11-11 14:47:00,22.4187,104.438,5.32 +2016-11-11 15:02:00,22.5612,104.817,5.29 +2016-11-11 15:17:00,22.0863,105.167,5.28 +2016-11-11 15:32:00,23.2913,105.482,5.26 +2016-11-11 15:47:00,23.0488,105.702,5.25 +2016-11-11 16:02:00,24.0625,105.842,5.24 +2016-11-11 16:17:00,21.94,105.932,5.24 +2016-11-11 16:32:00,22.6663,105.923,5.22 +2016-11-11 16:47:00,22.5638,105.897,5.22 +2016-11-11 17:02:00,23.9212,105.852,5.21 +2016-11-11 17:17:00,21.99,105.775,5.21 +2016-11-11 17:32:00,23.2913,105.673,5.2 +2016-11-11 17:47:00,22.3225,105.542,5.19 +2016-11-11 18:02:00,24.265,105.408,5.19 +2016-11-11 18:17:00,22.0425,105.29,5.19 +2016-11-11 18:32:00,22.0875,105.15,5.19 +2016-11-11 18:47:00,22.1312,105.012,5.18 +2016-11-11 19:02:00,22.7612,104.902,5.15 +2016-11-11 19:17:00,20.7188,104.812,5.13 +2016-11-11 19:32:00,22.8575,104.682,5.12 +2016-11-11 19:47:00,22.8587,104.58,5.12 +2016-11-11 20:02:00,23.0025,104.472,5.11 +2016-11-11 20:17:00,23.9662,104.365,5.12 +2016-11-11 20:32:00,21.2988,104.262,5.12 +2016-11-11 20:47:00,23.535,104.173,5.1 +2016-11-11 21:02:00,21.8425,104.11,5.09 +2016-11-11 21:17:00,23.4912,104.04,5.08 +2016-11-11 21:32:00,21.7925,103.987,5.07 +2016-11-11 21:47:00,21.94,103.938,5.06 +2016-11-11 22:02:00,22.9088,103.897,5.05 +2016-11-11 22:17:00,23.145,103.845,5.03 +2016-11-11 22:32:00,22.1338,103.815,5.0 +2016-11-11 22:47:00,23.34,103.787,4.98 +2016-11-11 23:02:00,20.2337,103.775,4.97 +2016-11-11 23:17:00,21.0987,103.768,4.97 +2016-11-11 23:32:00,24.115,103.76,4.97 +2016-11-11 23:47:00,22.61,103.747,4.95 +2016-11-12 00:02:00,21.1012,103.765,4.94 +2016-11-12 00:17:00,23.335,103.77,4.92 +2016-11-12 00:32:00,23.4375,103.77,4.89 +2016-11-12 00:47:00,22.2838,103.792,4.88 +2016-11-12 01:02:00,21.4037,103.79,4.85 +2016-11-12 01:17:00,23.2387,103.807,4.84 +2016-11-12 01:32:00,23.2875,103.82,4.81 +2016-11-12 01:47:00,21.3463,103.837,4.8 +2016-11-12 02:02:00,20.4713,103.847,4.81 +2016-11-12 02:17:00,21.59,103.857,4.8 +2016-11-12 02:32:00,21.3487,103.86,4.79 +2016-11-12 02:47:00,21.5,103.867,4.79 +2016-11-12 03:02:00,23.0075,103.862,4.79 +2016-11-12 03:17:00,21.45,103.872,4.78 +2016-11-12 03:32:00,22.3737,103.89,4.76 +2016-11-12 03:47:00,22.3225,103.887,4.76 +2016-11-12 04:02:00,22.955,103.857,4.75 +2016-11-12 04:17:00,22.1825,103.867,4.74 +2016-11-12 04:32:00,21.25,103.832,4.73 +2016-11-12 04:47:00,20.9037,103.807,4.71 +2016-11-12 05:02:00,22.9025,103.798,4.7 +2016-11-12 05:17:00,23.5837,103.79,4.7 +2016-11-12 05:32:00,22.5638,103.787,4.68 +2016-11-12 05:47:00,22.4662,103.75,4.66 +2016-11-12 06:02:00,23.5338,103.715,4.65 +2016-11-12 06:17:00,23.435,103.7,4.65 +2016-11-12 06:32:00,23.3387,103.658,4.63 +2016-11-12 06:47:00,21.0025,103.63,4.62 +2016-11-12 07:02:00,23.635,103.62,4.6 +2016-11-12 07:17:00,22.61,103.645,4.59 +2016-11-12 07:32:00,21.2988,103.682,4.58 +2016-11-12 07:47:00,22.325,103.673,4.57 +2016-11-12 08:02:00,21.7875,103.637,4.57 +2016-11-12 08:17:00,20.52,103.567,4.56 +2016-11-12 08:32:00,21.0462,103.495,4.55 +2016-11-12 08:47:00,22.905,103.435,4.55 +2016-11-12 09:02:00,21.54,103.393,4.56 +2016-11-12 09:17:00,22.235,103.37,4.57 +2016-11-12 09:32:00,23.68,103.362,4.57 +2016-11-12 09:47:00,23.3337,103.372,4.58 +2016-11-12 10:02:00,22.2325,103.352,4.58 +2016-11-12 10:17:00,22.2838,103.365,4.58 +2016-11-12 10:32:00,22.565,103.367,4.6 +2016-11-12 10:47:00,21.1462,103.365,4.62 +2016-11-12 11:02:00,21.545,103.362,4.63 +2016-11-12 11:17:00,23.5338,103.378,4.63 +2016-11-12 11:32:00,21.69,103.39,4.63 +2016-11-12 11:47:00,23.0062,103.4,4.65 +2016-11-12 12:02:00,22.185,103.387,4.65 +2016-11-12 12:17:00,22.6637,103.397,4.65 +2016-11-12 12:32:00,22.3237,103.38,4.66 +2016-11-12 12:47:00,21.84,103.37,4.67 +2016-11-12 13:02:00,22.7612,103.35,4.67 +2016-11-12 13:17:00,23.9688,103.302,4.67 +2016-11-12 13:32:00,24.215,103.26,4.66 +2016-11-12 13:47:00,23.3363,103.21,4.65 +2016-11-12 14:02:00,23.54,103.162,4.63 +2016-11-12 14:17:00,23.0088,103.107,4.62 +2016-11-12 14:32:00,21.8887,103.06,4.59 +2016-11-12 14:47:00,22.28,103.007,4.6 +2016-11-12 15:02:00,25.0187,102.982,4.6 +2016-11-12 15:17:00,23.05,102.935,4.6 +2016-11-12 15:32:00,22.9075,102.89,4.59 +2016-11-12 15:47:00,21.6437,102.842,4.59 +2016-11-12 16:02:00,22.6675,102.802,4.6 +2016-11-12 16:17:00,20.9037,102.75,4.6 +2016-11-12 16:32:00,21.3988,102.702,4.6 +2016-11-12 16:47:00,23.2913,102.637,4.6 +2016-11-12 17:02:00,24.0163,102.582,4.6 +2016-11-12 17:17:00,22.3262,102.55,4.59 +2016-11-12 17:32:00,22.8087,102.492,4.59 +2016-11-12 17:47:00,23.39,102.425,4.6 +2016-11-12 18:02:00,24.1162,102.36,4.61 +2016-11-12 18:17:00,21.99,102.292,4.61 +2016-11-12 18:32:00,22.2312,102.235,4.61 +2016-11-12 18:47:00,20.9975,102.175,4.6 +2016-11-12 19:02:00,24.1637,102.13,4.6 +2016-11-12 19:17:00,23.285,102.08,4.58 +2016-11-12 19:32:00,22.6637,102.042,4.56 +2016-11-12 19:47:00,21.1,101.987,4.54 +2016-11-12 20:02:00,20.81,101.932,4.53 +2016-11-12 20:17:00,19.8913,101.88,4.52 +2016-11-12 20:32:00,21.9863,101.817,4.51 +2016-11-12 20:47:00,21.6888,101.805,4.5 +2016-11-12 21:02:00,20.9962,101.76,4.51 +2016-11-12 21:17:00,22.1325,101.787,4.49 +2016-11-12 21:32:00,21.45,101.755,4.49 +2016-11-12 21:47:00,24.3187,101.737,4.47 +2016-11-12 22:02:00,20.9975,101.732,4.45 +2016-11-12 22:17:00,22.8075,101.715,4.45 +2016-11-12 22:32:00,23.4912,101.705,4.44 +2016-11-12 22:47:00,20.4688,101.65,4.43 +2016-11-12 23:02:00,23.6325,101.577,4.4 +2016-11-12 23:17:00,21.15,101.455,4.37 +2016-11-12 23:32:00,21.8887,101.327,4.35 +2016-11-12 23:47:00,22.4212,101.22,4.33 +2016-11-13 00:02:00,22.7612,101.137,4.31 +2016-11-13 00:17:00,21.3988,101.077,4.31 +2016-11-13 00:32:00,24.2162,101.007,4.29 +2016-11-13 00:47:00,22.6625,100.957,4.26 +2016-11-13 01:02:00,23.3375,100.927,4.25 +2016-11-13 01:17:00,21.595,100.895,4.24 +2016-11-13 01:32:00,21.69,100.863,4.23 +2016-11-13 01:47:00,21.295,100.84,4.21 +2016-11-13 02:02:00,23.87,100.792,4.19 +2016-11-13 02:17:00,21.045,100.76,4.18 +2016-11-13 02:32:00,21.195,100.722,4.17 +2016-11-13 02:47:00,23.0938,100.682,4.15 +2016-11-13 03:02:00,20.945,100.643,4.12 +2016-11-13 03:17:00,21.0462,100.617,4.08 +2016-11-13 03:32:00,21.6375,100.587,4.06 +2016-11-13 03:47:00,21.3925,100.557,4.03 +2016-11-13 04:02:00,22.0325,100.515,4.0 +2016-11-13 04:17:00,24.8112,100.49,4.0 +2016-11-13 04:32:00,22.4662,100.48,3.98 +2016-11-13 04:47:00,20.1787,100.457,3.96 +2016-11-13 05:02:00,23.05,100.45,3.95 +2016-11-13 05:17:00,22.5163,100.447,3.93 +2016-11-13 05:32:00,20.805,100.44,3.91 +2016-11-13 05:47:00,22.4137,100.415,3.89 +2016-11-13 06:02:00,21.7363,100.395,3.86 +2016-11-13 06:17:00,23.7288,100.378,3.82 +2016-11-13 06:32:00,22.3213,100.372,3.8 +2016-11-13 06:47:00,22.4163,100.367,3.78 +2016-11-13 07:02:00,22.76,100.317,3.76 +2016-11-13 07:17:00,23.9212,100.257,3.74 +2016-11-13 07:32:00,23.1387,100.197,3.73 +2016-11-13 07:47:00,22.3225,100.908,3.7 +2016-11-13 08:02:00,23.1837,102.548,3.69 +2016-11-13 08:17:00,22.71,104.487,3.69 +2016-11-13 08:32:00,23.4837,105.21,3.67 +2016-11-13 08:47:00,22.085,103.647,3.65 +2016-11-13 09:02:00,21.15,101.695,3.63 +2016-11-13 09:17:00,22.9037,100.41,3.66 +2016-11-13 09:32:00,22.805,99.525,3.69 +2016-11-13 09:47:00,24.5163,99.0,3.71 +2016-11-13 10:02:00,20.755,98.7075,3.72 +2016-11-13 10:17:00,24.57,98.535,3.73 +2016-11-13 10:32:00,22.2763,98.4625,3.74 +2016-11-13 10:47:00,23.095,98.4675,3.75 +2016-11-13 11:02:00,22.66,98.535,3.76 +2016-11-13 11:17:00,23.825,98.635,3.75 +2016-11-13 11:32:00,23.585,98.755,3.74 +2016-11-13 11:47:00,22.61,98.86,3.73 +2016-11-13 12:02:00,22.1287,98.975,3.73 +2016-11-13 12:17:00,23.63,99.0875,3.73 +2016-11-13 12:32:00,22.8087,99.1675,3.72 +2016-11-13 12:47:00,20.8087,99.2525,3.71 +2016-11-13 13:02:00,23.0025,99.3675,3.69 +2016-11-13 13:17:00,22.755,99.4925,3.68 +2016-11-13 13:32:00,22.1825,99.5975,3.67 +2016-11-13 13:47:00,21.985,99.695,3.66 +2016-11-13 14:02:00,22.0812,99.7975,3.65 +2016-11-13 14:17:00,22.9538,99.86,3.62 +2016-11-13 14:32:00,24.865,99.93,3.6 +2016-11-13 14:47:00,22.9088,99.9775,3.6 +2016-11-13 15:02:00,23.3862,100.005,3.59 +2016-11-13 15:17:00,23.2862,99.995,3.57 +2016-11-13 15:32:00,21.7875,99.9225,3.56 +2016-11-13 15:47:00,23.4812,99.8375,3.54 +2016-11-13 16:02:00,23.1413,99.7475,3.53 +2016-11-13 16:17:00,22.2838,99.6925,3.5 +2016-11-13 16:32:00,23.0088,99.7,3.51 +2016-11-13 16:47:00,23.5362,99.7125,3.5 +2016-11-13 17:02:00,21.8887,99.74,3.49 +2016-11-13 17:17:00,21.2475,99.775,3.47 +2016-11-13 17:32:00,22.8063,99.8175,3.47 +2016-11-13 17:47:00,23.235,99.86,3.49 +2016-11-13 18:02:00,22.18,99.9025,3.49 +2016-11-13 18:17:00,23.5387,99.95,3.48 +2016-11-13 18:32:00,22.0875,99.975,3.49 +2016-11-13 18:47:00,21.0437,99.9775,3.49 +2016-11-13 19:02:00,23.0025,100.003,3.48 +2016-11-13 19:17:00,21.8363,100.035,3.48 +2016-11-13 19:32:00,22.18,100.022,3.47 +2016-11-13 19:47:00,23.1387,100.048,3.48 +2016-11-13 20:02:00,22.3712,100.057,3.49 +2016-11-13 20:17:00,25.7,100.065,3.48 +2016-11-13 20:32:00,25.7025,100.062,3.49 +2016-11-13 20:47:00,24.9637,100.057,3.47 +2016-11-13 21:02:00,21.4938,100.045,3.45 +2016-11-13 21:17:00,23.9688,99.9225,3.44 +2016-11-13 21:32:00,23.6787,99.82,3.42 +2016-11-13 21:47:00,23.6312,99.715,3.42 +2016-11-13 22:02:00,23.535,99.63,3.38 +2016-11-13 22:17:00,24.7188,99.58,3.35 +2016-11-13 22:32:00,22.9512,99.565,3.32 +2016-11-13 22:47:00,24.965,99.5775,3.28 +2016-11-13 23:02:00,23.2812,99.595,3.26 +2016-11-13 23:17:00,23.2387,99.6275,3.23 +2016-11-13 23:32:00,23.8262,99.6675,3.19 +2016-11-13 23:47:00,23.3337,99.695,3.17 +2016-11-14 00:02:00,23.4362,99.7375,3.14 +2016-11-14 00:17:00,23.0938,99.77,3.14 +2016-11-14 00:32:00,22.2262,99.7825,3.12 +2016-11-14 00:47:00,23.4863,99.805,3.1 +2016-11-14 01:02:00,22.0338,99.8275,3.09 +2016-11-14 01:17:00,21.2925,99.835,3.07 +2016-11-14 01:32:00,22.3712,99.8575,3.06 +2016-11-14 01:47:00,22.5187,99.8725,3.03 +2016-11-14 02:02:00,22.0362,99.8725,3.02 +2016-11-14 02:17:00,22.2262,99.87,3.01 +2016-11-14 02:32:00,23.1888,99.8575,3.02 +2016-11-14 02:47:00,22.32,99.83,3.02 +2016-11-14 03:02:00,22.7588,99.7625,3.0 +2016-11-14 03:17:00,22.4638,99.6475,2.98 +2016-11-14 03:32:00,22.1312,99.5125,2.96 +2016-11-14 03:47:00,24.3237,99.39,2.94 +2016-11-14 04:02:00,22.4175,99.2975,2.96 +2016-11-14 04:17:00,22.76,99.24,2.95 +2016-11-14 04:32:00,21.5425,99.2075,2.93 +2016-11-14 04:47:00,21.4,99.2075,2.92 +2016-11-14 05:02:00,24.015,99.21,2.9 +2016-11-14 05:17:00,22.13,99.2375,2.9 +2016-11-14 05:32:00,22.8575,99.25,2.87 +2016-11-14 05:47:00,22.3237,99.2725,2.83 +2016-11-14 06:02:00,25.455,99.3,2.81 +2016-11-14 06:17:00,24.365,99.315,2.78 +2016-11-14 06:32:00,23.0013,99.295,2.76 +2016-11-14 06:47:00,24.5225,99.3175,2.73 +2016-11-14 07:02:00,20.615,99.33,2.69 +2016-11-14 07:17:00,23.965,99.3425,2.66 +2016-11-14 07:32:00,22.0863,99.395,2.64 +2016-11-14 07:47:00,21.6888,99.425,2.61 +2016-11-14 08:02:00,21.1488,99.3875,2.6 +2016-11-14 08:17:00,25.2125,99.3025,2.57 +2016-11-14 08:32:00,22.0312,101.268,2.51 +2016-11-14 08:47:00,23.6263,103.96,2.51 +2016-11-14 09:02:00,22.8538,102.335,2.54 +2016-11-14 09:17:00,23.0963,100.77,2.49 +2016-11-14 09:32:00,21.84,99.73,2.48 +2016-11-14 09:47:00,24.045,99.0575,2.52 +2016-11-14 10:02:00,22.2513,98.605,2.46 +2016-11-14 10:17:00,24.96,98.285,2.57 +2016-11-14 10:32:00,24.0075,98.1375,2.59 +2016-11-14 10:47:00,23.3138,98.0925,2.59 +2016-11-14 11:02:00,23.0225,98.0675,2.59 +2016-11-14 11:17:00,23.7575,98.0425,2.6 +2016-11-14 11:32:00,23.1687,98.0925,2.6 +2016-11-14 11:47:00,23.6012,98.13,2.61 +2016-11-14 12:02:00,22.4863,98.1625,2.64 +2016-11-14 12:17:00,22.4875,98.1925,2.63 +2016-11-14 12:32:00,22.5888,98.25,2.62 +2016-11-14 12:47:00,22.3412,98.3025,2.63 +2016-11-14 13:02:00,22.9287,98.375,2.64 +2016-11-14 13:17:00,22.4887,98.415,2.64 +2016-11-14 13:32:00,21.3688,98.4875,2.65 +2016-11-14 13:47:00,22.005,98.5425,2.65 +2016-11-14 14:02:00,21.3688,98.6625,2.63 +2016-11-14 14:17:00,21.3675,98.6775,2.64 +2016-11-14 14:32:00,22.2438,98.71,2.65 +2016-11-14 14:47:00,23.8913,98.7325,2.66 +2016-11-14 15:02:00,22.5863,98.6975,2.67 +2016-11-14 15:17:00,22.0125,98.6175,2.66 +2016-11-14 15:32:00,22.5338,98.575,2.65 +2016-11-14 15:47:00,22.4325,98.52,2.63 +2016-11-14 16:02:00,21.76,98.53,2.61 +2016-11-14 16:17:00,22.2425,98.565,2.61 +2016-11-14 16:32:00,22.9737,98.62,2.61 +2016-11-14 16:47:00,22.2962,98.68,2.61 +2016-11-14 17:02:00,23.6625,98.73,2.6 +2016-11-14 17:17:00,22.0563,98.75,2.62 +2016-11-14 17:32:00,21.2675,98.8425,2.63 +2016-11-14 17:47:00,20.6338,98.89,2.62 +2016-11-14 18:02:00,22.8763,98.9175,2.63 +2016-11-14 18:17:00,24.035,98.99,2.67 +2016-11-14 18:32:00,22.6375,99.0425,2.68 +2016-11-14 18:47:00,22.88,99.0975,2.69 +2016-11-14 19:02:00,23.7062,99.1475,2.69 +2016-11-14 19:17:00,23.455,99.17,2.72 +2016-11-14 19:32:00,22.775,99.205,2.72 +2016-11-14 19:47:00,23.6038,99.255,2.75 +2016-11-14 20:02:00,21.8613,99.3175,2.77 +2016-11-14 20:17:00,22.7288,99.365,2.78 +2016-11-14 20:32:00,21.4662,99.44,2.77 +2016-11-14 20:47:00,22.59,99.47,2.77 +2016-11-14 21:02:00,23.355,99.4275,2.78 +2016-11-14 21:17:00,23.2087,99.285,2.78 +2016-11-14 21:32:00,22.34,99.13,2.77 +2016-11-14 21:47:00,23.4088,99.0525,2.78 +2016-11-14 22:02:00,23.4088,99.02,2.78 +2016-11-14 22:17:00,22.4825,98.9725,2.76 +2016-11-14 22:32:00,21.91,98.99,2.75 +2016-11-14 22:47:00,22.3475,99.015,2.74 +2016-11-14 23:02:00,22.9762,99.075,2.71 +2016-11-14 23:17:00,22.4875,99.1,2.7 +2016-11-14 23:32:00,21.5112,99.115,2.7 +2016-11-14 23:47:00,22.2475,99.1425,2.71 +2016-11-15 00:02:00,23.0662,99.125,2.69 +2016-11-15 00:17:00,23.7575,99.1525,2.69 +2016-11-15 00:32:00,22.64,99.2275,2.71 +2016-11-15 00:47:00,21.91,99.275,2.71 +2016-11-15 01:02:00,22.8262,99.27,2.72 +2016-11-15 01:17:00,21.4688,99.2625,2.72 +2016-11-15 01:32:00,23.5062,99.29,2.72 +2016-11-15 01:47:00,23.2612,99.3175,2.73 +2016-11-15 02:02:00,22.01,99.3025,2.75 +2016-11-15 02:17:00,23.8012,99.31,2.79 +2016-11-15 02:32:00,22.5863,99.275,2.82 +2016-11-15 02:47:00,21.6637,99.2225,2.83 +2016-11-15 03:02:00,22.4875,99.1025,2.87 +2016-11-15 03:17:00,23.94,98.9825,2.92 +2016-11-15 03:32:00,22.1087,98.9275,2.97 +2016-11-15 03:47:00,20.6362,98.9775,2.99 +2016-11-15 04:02:00,21.9625,99.005,3.0 +2016-11-15 04:17:00,22.4412,99.065,3.05 +2016-11-15 04:32:00,22.3412,99.08,3.12 +2016-11-15 04:47:00,22.105,99.14,3.13 +2016-11-15 05:02:00,19.81,99.185,3.1 +2016-11-15 05:17:00,22.245,99.2575,3.09 +2016-11-15 05:32:00,22.3875,99.35,3.09 +2016-11-15 05:47:00,21.8637,99.4075,3.09 +2016-11-15 06:02:00,21.5675,99.455,3.08 +2016-11-15 06:17:00,22.9812,99.4725,3.08 +2016-11-15 06:32:00,22.0088,99.415,3.06 +2016-11-15 06:47:00,22.3425,99.465,3.04 +2016-11-15 07:02:00,20.9662,99.4975,2.97 +2016-11-15 07:17:00,21.3213,99.44,2.91 +2016-11-15 07:32:00,21.66,99.3125,2.89 +2016-11-15 07:47:00,22.8812,99.2025,2.88 +2016-11-15 08:02:00,20.7312,99.095,2.88 +2016-11-15 08:17:00,23.2175,99.0225,2.89 +2016-11-15 08:32:00,22.4863,99.03,2.89 +2016-11-15 08:47:00,23.0187,99.08,2.9 +2016-11-15 09:02:00,22.7775,99.175,2.9 +2016-11-15 09:17:00,23.21,99.275,2.93 +2016-11-15 09:32:00,22.6825,99.41,2.99 +2016-11-15 09:47:00,23.025,99.5025,3.01 +2016-11-15 10:02:00,21.7125,99.605,3.03 +2016-11-15 10:17:00,22.2438,99.73,3.06 +2016-11-15 10:32:00,23.1113,99.84,3.08 +2016-11-15 10:47:00,20.4425,99.86,3.11 +2016-11-15 11:02:00,22.535,99.8325,3.14 +2016-11-15 11:17:00,24.2913,99.7525,3.15 +2016-11-15 11:32:00,21.5163,99.6125,3.16 +2016-11-15 11:47:00,22.1562,99.47,3.21 +2016-11-15 12:02:00,22.6862,99.38,3.26 +2016-11-15 12:17:00,21.6113,99.365,3.31 +2016-11-15 12:32:00,22.2012,99.345,3.32 +2016-11-15 12:47:00,23.3125,99.3125,3.32 +2016-11-15 13:02:00,22.535,99.335,3.34 +2016-11-15 13:17:00,22.5863,99.3475,3.34 +2016-11-15 13:32:00,22.88,99.4425,3.35 +2016-11-15 13:47:00,23.07,99.4475,3.37 +2016-11-15 14:02:00,22.6325,99.475,3.39 +2016-11-15 14:17:00,22.0088,99.4475,3.43 +2016-11-15 14:32:00,23.2087,99.4325,3.42 +2016-11-15 14:47:00,22.0575,99.5275,3.42 +2016-11-15 15:02:00,24.0875,99.51,3.42 +2016-11-15 15:17:00,23.02,99.44,3.41 +2016-11-15 15:32:00,22.7363,99.405,3.43 +2016-11-15 15:47:00,22.6875,99.4375,3.45 +2016-11-15 16:02:00,22.3425,99.46,3.45 +2016-11-15 16:17:00,22.6862,99.4875,3.46 +2016-11-15 16:32:00,22.8288,99.4725,3.49 +2016-11-15 16:47:00,21.02,99.45,3.5 +2016-11-15 17:02:00,22.2038,99.38,3.53 +2016-11-15 17:17:00,22.9337,99.36,3.55 +2016-11-15 17:32:00,22.2487,99.33,3.57 +2016-11-15 17:47:00,22.685,99.355,3.58 +2016-11-15 18:02:00,20.8237,99.5025,3.59 +2016-11-15 18:17:00,21.96,99.6825,3.59 +2016-11-15 18:32:00,22.295,99.76,3.62 +2016-11-15 18:47:00,23.02,99.78,3.65 +2016-11-15 19:02:00,22.2462,99.7525,3.66 +2016-11-15 19:17:00,22.7862,99.72,3.65 +2016-11-15 19:32:00,21.7138,99.645,3.64 +2016-11-15 19:47:00,20.5413,99.5675,3.66 +2016-11-15 20:02:00,23.3075,99.4625,3.68 +2016-11-15 20:17:00,21.1212,99.395,3.68 +2016-11-15 20:32:00,23.89,99.3475,3.69 +2016-11-15 20:47:00,20.8712,99.2825,3.71 +2016-11-15 21:02:00,23.3625,99.255,3.73 +2016-11-15 21:17:00,20.9713,99.1975,3.74 +2016-11-15 21:32:00,21.0725,99.1525,3.75 +2016-11-15 21:47:00,20.1488,99.0925,3.76 +2016-11-15 22:02:00,23.6562,99.05,3.77 +2016-11-15 22:17:00,22.535,99.005,3.76 +2016-11-15 22:32:00,22.7775,98.9575,3.78 +2016-11-15 22:47:00,22.1537,98.955,3.81 +2016-11-15 23:02:00,22.3913,98.965,3.84 +2016-11-15 23:17:00,22.44,98.9725,3.86 +2016-11-15 23:32:00,21.865,98.9525,3.87 +2016-11-15 23:47:00,22.8812,99.0325,3.89 +2016-11-16 00:02:00,23.02,99.205,3.91 +2016-11-16 00:17:00,21.27,99.3325,3.92 +2016-11-16 00:32:00,21.3712,99.4,3.95 +2016-11-16 00:47:00,22.2025,99.41,3.97 +2016-11-16 01:02:00,23.1637,99.4325,3.97 +2016-11-16 01:17:00,20.3937,99.4425,4.01 +2016-11-16 01:32:00,22.0537,99.4,4.01 +2016-11-16 01:47:00,22.105,99.3525,4.03 +2016-11-16 02:02:00,22.3887,99.3275,4.05 +2016-11-16 02:17:00,22.7337,99.29,4.06 +2016-11-16 02:32:00,21.815,99.2475,4.1 +2016-11-16 02:47:00,22.1562,99.2225,4.11 +2016-11-16 03:02:00,21.47,99.19,4.11 +2016-11-16 03:17:00,23.795,99.15,4.12 +2016-11-16 03:32:00,23.5062,99.12,4.13 +2016-11-16 03:47:00,22.11,99.135,4.15 +2016-11-16 04:02:00,22.205,99.23,4.16 +2016-11-16 04:17:00,22.39,99.4025,4.19 +2016-11-16 04:32:00,23.8962,99.495,4.23 +2016-11-16 04:47:00,21.3262,99.54,4.24 +2016-11-16 05:02:00,22.7825,99.5575,4.25 +2016-11-16 05:17:00,21.665,99.5475,4.28 +2016-11-16 05:32:00,21.565,99.5025,4.31 +2016-11-16 05:47:00,21.3725,99.455,4.32 +2016-11-16 06:02:00,22.93,99.42,4.31 +2016-11-16 06:17:00,22.83,99.425,4.33 +2016-11-16 06:32:00,22.4925,99.42,4.33 +2016-11-16 06:47:00,21.7675,99.4425,4.36 +2016-11-16 07:02:00,22.0075,99.44,4.37 +2016-11-16 07:17:00,22.0075,99.435,4.35 +2016-11-16 07:32:00,22.3388,99.4375,4.36 +2016-11-16 07:47:00,23.8913,99.45,4.37 +2016-11-16 08:02:00,21.1212,99.4375,4.41 +2016-11-16 08:17:00,23.2125,99.405,4.44 +2016-11-16 08:32:00,22.535,99.4675,4.46 +2016-11-16 08:47:00,22.4412,99.5125,4.48 +2016-11-16 09:02:00,22.8312,99.52,4.52 +2016-11-16 09:17:00,20.5888,99.475,4.53 +2016-11-16 09:32:00,23.5563,99.4975,4.55 +2016-11-16 09:47:00,22.6837,99.485,4.58 +2016-11-16 10:02:00,22.105,99.44,4.59 +2016-11-16 10:17:00,21.9625,99.4,4.58 +2016-11-16 10:32:00,22.2513,99.35,4.6 +2016-11-16 10:47:00,22.8787,99.36,4.61 +2016-11-16 11:02:00,20.9688,99.43,4.63 +2016-11-16 11:17:00,22.1537,99.495,4.65 +2016-11-16 11:32:00,23.455,99.5525,4.67 +2016-11-16 11:47:00,22.2937,99.645,4.69 +2016-11-16 12:02:00,22.4425,99.7825,4.71 +2016-11-16 12:17:00,23.1162,100.012,4.75 +2016-11-16 12:32:00,21.0725,100.332,4.79 +2016-11-16 12:47:00,21.0725,100.65,4.82 +2016-11-16 13:02:00,22.3887,100.938,4.83 +2016-11-16 13:17:00,20.1537,101.195,4.85 +2016-11-16 13:32:00,23.2138,101.45,4.86 +2016-11-16 13:47:00,23.0212,101.628,4.86 +2016-11-16 14:02:00,23.215,101.802,4.87 +2016-11-16 14:17:00,22.6413,101.812,4.88 +2016-11-16 14:32:00,21.2687,101.765,4.9 +2016-11-16 14:47:00,22.1062,101.637,4.91 +2016-11-16 15:02:00,22.59,101.525,4.93 +2016-11-16 15:17:00,21.7162,101.415,4.93 +2016-11-16 15:32:00,22.3425,101.357,4.93 +2016-11-16 15:47:00,23.46,101.3,4.93 +2016-11-16 16:02:00,21.4225,101.23,4.94 +2016-11-16 16:17:00,23.1663,101.137,4.96 +2016-11-16 16:32:00,21.4675,101.055,4.96 +2016-11-16 16:47:00,21.61,101.007,4.96 +2016-11-16 17:02:00,22.535,100.967,4.95 +2016-11-16 17:17:00,23.0187,100.972,4.96 +2016-11-16 17:32:00,22.0537,100.942,5.0 +2016-11-16 17:47:00,22.5863,100.832,5.04 +2016-11-16 18:02:00,21.3763,100.67,5.08 +2016-11-16 18:17:00,22.3913,100.485,5.11 +2016-11-16 18:32:00,21.815,100.302,5.13 +2016-11-16 18:47:00,22.6387,100.22,5.15 +2016-11-16 19:02:00,22.785,100.173,5.18 +2016-11-16 19:17:00,20.9725,100.158,5.2 +2016-11-16 19:32:00,21.4187,100.165,5.19 +2016-11-16 19:47:00,22.9313,100.143,5.18 +2016-11-16 20:02:00,22.2975,100.117,5.18 +2016-11-16 20:17:00,22.105,100.065,5.19 +2016-11-16 20:32:00,24.3438,100.052,5.19 +2016-11-16 20:47:00,21.9137,99.955,5.19 +2016-11-16 21:02:00,21.1212,99.8075,5.2 +2016-11-16 21:17:00,23.0225,99.61,5.19 +2016-11-16 21:32:00,21.47,99.4625,5.2 +2016-11-16 21:47:00,22.6862,99.4,5.22 +2016-11-16 22:02:00,19.6687,99.4075,5.22 +2016-11-16 22:17:00,22.5875,99.435,5.21 +2016-11-16 22:32:00,22.01,99.4675,5.23 +2016-11-16 22:47:00,22.78,99.475,5.26 +2016-11-16 23:02:00,22.4912,99.55,5.29 +2016-11-16 23:17:00,21.2213,99.63,5.3 +2016-11-16 23:32:00,22.8337,99.6625,5.31 +2016-11-16 23:47:00,22.3925,99.68,5.33 +2016-11-17 00:02:00,22.4388,99.5825,5.35 +2016-11-17 00:17:00,22.3913,99.4475,5.37 +2016-11-17 00:32:00,22.5375,99.35,5.37 +2016-11-17 00:47:00,23.0675,99.3675,5.37 +2016-11-17 01:02:00,21.5625,99.3825,5.39 +2016-11-17 01:17:00,20.7288,99.425,5.4 +2016-11-17 01:32:00,22.1113,99.4775,5.42 +2016-11-17 01:47:00,22.2975,99.5325,5.42 +2016-11-17 02:02:00,20.7787,99.605,5.41 +2016-11-17 02:17:00,21.9112,99.645,5.43 +2016-11-17 02:32:00,22.2937,99.66,5.44 +2016-11-17 02:47:00,22.295,99.625,5.47 +2016-11-17 03:02:00,22.0088,99.565,5.47 +2016-11-17 03:17:00,22.7875,99.4825,5.48 +2016-11-17 03:32:00,23.0187,99.3975,5.49 +2016-11-17 03:47:00,22.0537,99.39,5.5 +2016-11-17 04:02:00,21.8637,99.4975,5.51 +2016-11-17 04:17:00,21.5137,99.5625,5.52 +2016-11-17 04:32:00,21.2213,99.6475,5.52 +2016-11-17 04:47:00,22.1537,99.7325,5.53 +2016-11-17 05:02:00,22.6862,99.8125,5.54 +2016-11-17 05:17:00,21.3737,99.955,5.54 +2016-11-17 05:32:00,21.765,100.1,5.54 +2016-11-17 05:47:00,22.105,100.132,5.52 +2016-11-17 06:02:00,22.2962,100.147,5.53 +2016-11-17 06:17:00,21.22,100.1,5.55 +2016-11-17 06:32:00,22.2462,100.115,5.55 +2016-11-17 06:47:00,21.9613,100.135,5.54 +2016-11-17 07:02:00,21.6162,100.16,5.54 +2016-11-17 07:17:00,20.7825,100.188,5.56 +2016-11-17 07:32:00,22.0587,100.3,5.59 +2016-11-17 07:47:00,21.5163,100.488,5.62 +2016-11-17 08:02:00,24.245,100.688,5.62 +2016-11-17 08:17:00,20.4463,100.863,5.63 +2016-11-17 08:32:00,21.2738,101.027,5.65 +2016-11-17 08:47:00,23.3625,101.212,5.67 +2016-11-17 09:02:00,22.93,101.33,5.69 +2016-11-17 09:17:00,20.4962,101.435,5.71 +2016-11-17 09:32:00,24.0863,101.565,5.71 +2016-11-17 09:47:00,21.815,101.637,5.72 +2016-11-17 10:02:00,22.735,101.61,5.75 +2016-11-17 10:17:00,20.7812,101.557,5.8 +2016-11-17 10:32:00,23.75,101.522,5.87 +2016-11-17 10:47:00,22.69,101.512,5.9 +2016-11-17 11:02:00,21.08,101.647,5.93 +2016-11-17 11:17:00,23.7062,101.817,5.95 +2016-11-17 11:32:00,21.0737,101.915,5.99 +2016-11-17 11:47:00,23.9425,102.025,6.03 +2016-11-17 12:02:00,21.4238,102.137,6.05 +2016-11-17 12:17:00,23.0225,102.23,6.07 +2016-11-17 12:32:00,21.8662,102.34,6.1 +2016-11-17 12:47:00,21.4725,102.387,6.12 +2016-11-17 13:02:00,22.0587,102.362,6.16 +2016-11-17 13:17:00,21.3737,102.352,6.18 +2016-11-17 13:32:00,20.9725,102.287,6.18 +2016-11-17 13:47:00,23.07,102.315,6.19 +2016-11-17 14:02:00,21.1725,102.362,6.21 +2016-11-17 14:17:00,21.1237,102.552,6.23 +2016-11-17 14:32:00,21.375,103.005,6.25 +2016-11-17 14:47:00,22.5912,103.63,6.28 +2016-11-17 15:02:00,22.7838,104.085,6.35 +2016-11-17 15:17:00,20.685,104.327,6.33 +2016-11-17 15:32:00,22.8812,104.378,6.39 +2016-11-17 15:47:00,22.8812,104.24,6.34 +2016-11-17 16:02:00,23.2125,104.05,6.29 +2016-11-17 16:17:00,22.6375,103.893,6.27 +2016-11-17 16:32:00,20.1062,103.772,6.29 +2016-11-17 16:47:00,22.3937,103.762,6.31 +2016-11-17 17:02:00,24.0887,103.802,6.33 +2016-11-17 17:17:00,21.7175,103.857,6.33 +2016-11-17 17:32:00,23.5075,103.94,6.35 +2016-11-17 17:47:00,19.815,103.992,6.36 +2016-11-17 18:02:00,21.4225,104.042,6.39 +2016-11-17 18:17:00,22.54,104.062,6.41 +2016-11-17 18:32:00,21.82,104.02,6.43 +2016-11-17 18:47:00,22.9287,103.925,6.46 +2016-11-17 19:02:00,21.5625,103.798,6.47 +2016-11-17 19:17:00,22.4412,103.655,6.48 +2016-11-17 19:32:00,21.6125,103.5,6.51 +2016-11-17 19:47:00,22.1087,103.438,6.53 +2016-11-17 20:02:00,20.9238,103.43,6.55 +2016-11-17 20:17:00,23.0737,103.438,6.56 +2016-11-17 20:32:00,22.2975,103.472,6.57 +2016-11-17 20:47:00,21.2738,103.555,6.58 +2016-11-17 21:02:00,23.845,103.6,6.58 +2016-11-17 21:17:00,21.6625,103.64,6.57 +2016-11-17 21:32:00,22.4412,103.605,6.58 +2016-11-17 21:47:00,23.2612,103.495,6.6 +2016-11-17 22:02:00,22.0587,103.327,6.59 +2016-11-17 22:17:00,21.5675,103.128,6.6 +2016-11-17 22:32:00,22.1575,102.997,6.59 +2016-11-17 22:47:00,21.9587,102.927,6.6 +2016-11-17 23:02:00,22.4388,102.912,6.62 +2016-11-17 23:17:00,21.9625,102.882,6.63 +2016-11-17 23:32:00,22.01,102.882,6.63 +2016-11-17 23:47:00,22.8812,102.845,6.64 +2016-11-18 00:02:00,22.69,102.815,6.65 +2016-11-18 00:17:00,22.255,102.765,6.66 +2016-11-18 00:32:00,20.3025,102.65,6.68 +2016-11-18 00:47:00,21.6663,102.49,6.7 +2016-11-18 01:02:00,20.0037,102.387,6.71 +2016-11-18 01:17:00,22.155,102.397,6.72 +2016-11-18 01:32:00,21.4212,102.462,6.74 +2016-11-18 01:47:00,21.715,102.51,6.76 +2016-11-18 02:02:00,21.3262,102.542,6.78 +2016-11-18 02:17:00,21.0775,102.632,6.78 +2016-11-18 02:32:00,23.1675,102.658,6.8 +2016-11-18 02:47:00,22.06,102.665,6.81 +2016-11-18 03:02:00,23.5088,102.615,6.82 +2016-11-18 03:17:00,22.155,102.44,6.84 +2016-11-18 03:32:00,23.3613,102.26,6.85 +2016-11-18 03:47:00,23.4125,102.1,6.86 +2016-11-18 04:02:00,22.16,101.882,6.87 +2016-11-18 04:17:00,22.1075,101.732,6.89 +2016-11-18 04:32:00,21.2213,101.682,6.91 +2016-11-18 04:47:00,22.8812,101.677,6.91 +2016-11-18 05:02:00,21.8637,101.677,6.91 +2016-11-18 05:17:00,22.5888,101.735,6.92 +2016-11-18 05:32:00,19.5225,101.8,6.93 +2016-11-18 05:47:00,22.5925,101.887,6.93 +2016-11-18 06:02:00,23.5112,101.945,6.93 +2016-11-18 06:17:00,24.19,101.967,6.94 +2016-11-18 06:32:00,21.4662,101.97,6.94 +2016-11-18 06:47:00,23.1137,101.912,6.94 +2016-11-18 07:02:00,21.0225,101.787,6.94 +2016-11-18 07:17:00,21.27,101.697,6.94 +2016-11-18 07:32:00,21.7663,101.607,6.94 +2016-11-18 07:47:00,21.765,101.567,6.94 +2016-11-18 08:02:00,21.2237,101.537,6.94 +2016-11-18 08:17:00,22.1537,101.59,6.96 +2016-11-18 08:32:00,22.0563,101.682,6.97 +2016-11-18 08:47:00,22.535,101.792,6.98 +2016-11-18 09:02:00,23.2087,101.875,7.01 +2016-11-18 09:17:00,22.34,102.21,7.01 +2016-11-18 09:32:00,23.6075,102.895,7.07 +2016-11-18 09:47:00,22.64,103.482,7.13 +2016-11-18 10:02:00,23.2625,103.992,7.12 +2016-11-18 10:17:00,21.9625,104.632,7.22 +2016-11-18 10:32:00,24.2438,105.08,7.26 +2016-11-18 10:47:00,23.7062,105.253,7.25 +2016-11-18 11:02:00,24.1387,105.188,7.27 +2016-11-18 11:17:00,23.46,105.125,7.31 +2016-11-18 11:32:00,22.69,105.115,7.3 +2016-11-18 11:47:00,22.7812,105.07,7.27 +2016-11-18 12:02:00,22.0587,104.947,7.29 +2016-11-18 12:17:00,23.4587,104.935,7.31 +2016-11-18 12:32:00,23.7062,104.86,7.32 +2016-11-18 12:47:00,22.3925,104.832,7.33 +2016-11-18 13:02:00,21.8662,104.765,7.38 +2016-11-18 13:17:00,22.1637,104.712,7.41 +2016-11-18 13:32:00,22.4925,104.775,7.43 +2016-11-18 13:47:00,21.7612,104.807,7.44 +2016-11-18 14:02:00,22.39,105.02,7.46 +2016-11-18 14:17:00,23.5088,105.22,7.47 +2016-11-18 14:32:00,21.2225,105.435,7.49 +2016-11-18 14:47:00,23.115,105.6,7.51 +2016-11-18 15:02:00,20.2025,105.885,7.51 +2016-11-18 15:17:00,20.9275,106.12,7.52 +2016-11-18 15:32:00,21.0275,106.242,7.56 +2016-11-18 15:47:00,22.975,106.327,7.58 +2016-11-18 16:02:00,22.7312,106.375,7.6 +2016-11-18 16:17:00,22.0112,106.605,7.63 +2016-11-18 16:32:00,23.9412,106.745,7.62 +2016-11-18 16:47:00,23.51,106.9,7.61 +2016-11-18 17:02:00,23.4625,107.05,7.59 +2016-11-18 17:17:00,22.06,107.12,7.57 +2016-11-18 17:32:00,22.2038,107.225,7.55 +2016-11-18 17:47:00,20.6387,107.25,7.53 +2016-11-18 18:02:00,22.7825,107.192,7.52 +2016-11-18 18:17:00,23.8438,107.135,7.5 +2016-11-18 18:32:00,21.8613,107.067,7.48 +2016-11-18 18:47:00,23.845,107.092,7.46 +2016-11-18 19:02:00,20.4962,107.24,7.45 +2016-11-18 19:17:00,23.6062,107.367,7.45 +2016-11-18 19:32:00,22.785,107.492,7.44 +2016-11-18 19:47:00,22.8275,107.655,7.44 +2016-11-18 20:02:00,22.585,107.787,7.45 +2016-11-18 20:17:00,23.2612,107.845,7.44 +2016-11-18 20:32:00,23.3087,107.862,7.43 +2016-11-18 20:47:00,22.2975,107.81,7.43 +2016-11-18 21:02:00,23.3112,107.675,7.44 +2016-11-18 21:17:00,21.025,107.582,7.43 +2016-11-18 21:32:00,24.0863,107.57,7.42 +2016-11-18 21:47:00,23.2625,107.59,7.42 +2016-11-18 22:02:00,20.5425,107.68,7.41 +2016-11-18 22:17:00,21.1738,107.725,7.4 +2016-11-18 22:32:00,22.4875,107.832,7.38 +2016-11-18 22:47:00,22.49,108.015,7.36 +2016-11-18 23:02:00,21.7162,108.162,7.33 +2016-11-18 23:17:00,22.245,108.212,7.32 +2016-11-18 23:32:00,21.7637,108.275,7.32 +2016-11-18 23:47:00,20.1012,108.21,7.31 +2016-11-19 00:02:00,21.765,108.287,7.29 +2016-11-19 00:17:00,21.565,108.28,7.27 +2016-11-19 00:32:00,22.1062,108.415,7.27 +2016-11-19 00:47:00,22.0112,108.582,7.27 +2016-11-19 01:02:00,22.7838,108.81,7.26 +2016-11-19 01:17:00,23.31,109.0,7.25 +2016-11-19 01:32:00,24.4938,109.207,7.23 +2016-11-19 01:47:00,22.1562,109.43,7.22 +2016-11-19 02:02:00,23.3587,109.552,7.22 +2016-11-19 02:17:00,21.1225,109.595,7.21 +2016-11-19 02:32:00,22.2525,109.552,7.19 +2016-11-19 02:47:00,21.125,109.572,7.17 +2016-11-19 03:02:00,22.8825,109.63,7.16 +2016-11-19 03:17:00,22.1537,109.82,7.16 +2016-11-19 03:32:00,20.9725,110.0,7.16 +2016-11-19 03:47:00,22.9762,110.268,7.17 +2016-11-19 04:02:00,19.6675,110.495,7.15 +2016-11-19 04:17:00,19.7213,110.768,7.14 +2016-11-19 04:32:00,20.735,111.027,7.13 +2016-11-19 04:47:00,22.4912,111.182,7.11 +2016-11-19 05:02:00,22.1562,111.292,7.09 +2016-11-19 05:17:00,24.59,111.352,7.07 +2016-11-19 05:32:00,21.1212,111.503,7.06 +2016-11-19 05:47:00,21.8162,111.65,7.03 +2016-11-19 06:02:00,23.215,111.893,7.02 +2016-11-19 06:17:00,22.6413,112.212,7.02 +2016-11-19 06:32:00,22.5362,112.477,6.98 +2016-11-19 06:47:00,21.6625,112.76,6.97 +2016-11-19 07:02:00,22.9775,112.99,6.95 +2016-11-19 07:17:00,22.1562,113.253,6.93 +2016-11-19 07:32:00,20.2513,113.435,6.92 +2016-11-19 07:47:00,21.2725,113.64,6.91 +2016-11-19 08:02:00,21.5675,114.932,6.91 +2016-11-19 08:17:00,21.7637,116.503,6.9 +2016-11-19 08:32:00,23.66,117.692,6.91 +2016-11-19 08:47:00,21.815,118.292,6.91 +2016-11-19 09:02:00,22.1525,118.622,6.93 +2016-11-19 09:17:00,23.4575,118.76,6.95 +2016-11-19 09:32:00,22.8787,118.775,6.95 +2016-11-19 09:47:00,23.7537,118.78,6.97 +2016-11-19 10:02:00,21.7663,118.817,6.98 +2016-11-19 10:17:00,24.7425,118.785,7.0 +2016-11-19 10:32:00,22.01,118.802,7.01 +2016-11-19 10:47:00,21.2725,118.812,7.01 +2016-11-19 11:02:00,21.3688,118.847,7.03 +2016-11-19 11:17:00,22.5863,118.79,7.07 +2016-11-19 11:32:00,24.04,118.685,7.09 +2016-11-19 11:47:00,23.5075,118.587,7.11 +2016-11-19 12:02:00,20.7775,118.53,7.12 +2016-11-19 12:17:00,21.42,118.472,7.12 +2016-11-19 12:32:00,22.7325,118.51,7.13 +2016-11-19 12:47:00,23.2113,118.555,7.14 +2016-11-19 13:02:00,23.9388,118.662,7.15 +2016-11-19 13:17:00,21.865,118.827,7.13 +2016-11-19 13:32:00,23.705,118.912,7.13 +2016-11-19 13:47:00,22.2937,118.997,7.14 +2016-11-19 14:02:00,22.0625,119.045,7.14 +2016-11-19 14:17:00,22.2487,119.117,7.14 +2016-11-19 14:32:00,22.6375,119.122,7.15 +2016-11-19 14:47:00,21.1237,119.087,7.15 +2016-11-19 15:02:00,23.1137,119.117,7.15 +2016-11-19 15:17:00,22.7363,119.25,7.15 +2016-11-19 15:32:00,21.3237,119.48,7.17 +2016-11-19 15:47:00,20.3037,119.6,7.16 +2016-11-19 16:02:00,21.9625,119.755,7.15 +2016-11-19 16:17:00,23.1612,119.917,7.17 +2016-11-19 16:32:00,21.7612,120.04,7.17 +2016-11-19 16:47:00,22.3425,120.175,7.18 +2016-11-19 17:02:00,21.9562,120.268,7.17 +2016-11-19 17:17:00,21.5175,120.335,7.17 +2016-11-19 17:32:00,21.075,120.45,7.17 +2016-11-19 17:47:00,21.9137,120.57,7.17 +2016-11-19 18:02:00,24.55,120.827,7.17 +2016-11-19 18:17:00,22.16,121.097,7.16 +2016-11-19 18:32:00,22.8312,121.447,7.15 +2016-11-19 18:47:00,22.3425,121.835,7.15 +2016-11-19 19:02:00,22.0537,122.173,7.14 +2016-11-19 19:17:00,22.3925,122.445,7.14 +2016-11-19 19:32:00,23.56,122.673,7.12 +2016-11-19 19:47:00,22.7862,122.77,7.1 +2016-11-19 20:02:00,22.7812,122.887,7.09 +2016-11-19 20:17:00,22.4388,122.975,7.08 +2016-11-19 20:32:00,23.0662,123.05,7.08 +2016-11-19 20:47:00,23.0687,123.21,7.05 +2016-11-19 21:02:00,24.2913,123.387,7.05 +2016-11-19 21:17:00,24.6437,123.54,7.03 +2016-11-19 21:32:00,24.0425,123.585,7.03 +2016-11-19 21:47:00,23.1663,123.56,7.02 +2016-11-19 22:02:00,21.3725,123.595,6.99 +2016-11-19 22:17:00,23.9437,123.557,6.97 +2016-11-19 22:32:00,21.52,123.465,6.97 +2016-11-19 22:47:00,23.7988,123.362,6.97 +2016-11-19 23:02:00,22.49,123.257,6.96 +2016-11-19 23:17:00,22.8325,123.24,6.96 +2016-11-19 23:32:00,24.2975,123.298,6.94 +2016-11-19 23:47:00,24.995,123.275,6.93 +2016-11-20 00:02:00,22.3887,123.305,6.91 +2016-11-20 00:17:00,22.3425,123.325,6.9 +2016-11-20 00:32:00,23.5075,123.342,6.89 +2016-11-20 00:47:00,22.8325,123.355,6.87 +2016-11-20 01:02:00,24.24,123.307,6.84 +2016-11-20 01:17:00,22.835,123.145,6.82 +2016-11-20 01:32:00,26.0212,123.033,6.8 +2016-11-20 01:47:00,23.3575,122.9,6.78 +2016-11-20 02:02:00,22.8312,122.742,6.76 +2016-11-20 02:17:00,24.4975,122.71,6.76 +2016-11-20 02:32:00,24.4425,122.697,6.73 +2016-11-20 02:47:00,24.4962,122.688,6.72 +2016-11-20 03:02:00,25.09,122.673,6.7 +2016-11-20 03:17:00,22.885,122.662,6.68 +2016-11-20 03:32:00,24.4975,122.67,6.68 +2016-11-20 03:47:00,21.37,122.658,6.67 +2016-11-20 04:02:00,24.3925,122.505,6.66 +2016-11-20 04:17:00,24.395,122.357,6.65 +2016-11-20 04:32:00,23.41,122.225,6.64 +2016-11-20 04:47:00,23.165,122.082,6.63 +2016-11-20 05:02:00,24.8937,121.98,6.62 +2016-11-20 05:17:00,24.2462,121.895,6.59 +2016-11-20 05:32:00,23.2588,121.917,6.59 +2016-11-20 05:47:00,24.7375,121.875,6.58 +2016-11-20 06:02:00,23.1175,121.847,6.58 +2016-11-20 06:17:00,25.5737,121.872,6.55 +2016-11-20 06:32:00,23.755,121.762,6.53 +2016-11-20 06:47:00,23.36,121.667,6.51 +2016-11-20 07:02:00,24.145,121.58,6.5 +2016-11-20 07:17:00,25.4775,121.49,6.5 +2016-11-20 07:32:00,25.7225,121.423,6.48 +2016-11-20 07:47:00,24.3937,121.382,6.48 +2016-11-20 08:02:00,23.46,121.32,6.47 +2016-11-20 08:17:00,23.5062,121.557,6.47 +2016-11-20 08:32:00,24.4975,122.07,6.48 +2016-11-20 08:47:00,26.5062,121.8,6.49 +2016-11-20 09:02:00,25.6775,121.472,6.5 +2016-11-20 09:17:00,23.7513,121.227,6.51 +2016-11-20 09:32:00,23.2113,121.143,6.53 +2016-11-20 09:47:00,24.79,121.135,6.54 +2016-11-20 10:02:00,25.0863,121.14,6.52 +2016-11-20 10:17:00,25.0387,121.085,6.51 +2016-11-20 10:32:00,24.1413,121.048,6.5 +2016-11-20 10:47:00,24.3463,121.06,6.51 +2016-11-20 11:02:00,24.5462,121.05,6.49 +2016-11-20 11:17:00,24.89,120.992,6.48 +2016-11-20 11:32:00,24.5925,120.9,6.47 +2016-11-20 11:47:00,26.1588,120.798,6.48 +2016-11-20 12:02:00,24.14,120.745,6.48 +2016-11-20 12:17:00,26.4487,120.832,6.49 +2016-11-20 12:32:00,23.56,120.982,6.5 +2016-11-20 12:47:00,26.9912,121.202,6.51 +2016-11-20 13:02:00,23.6575,121.397,6.51 +2016-11-20 13:17:00,26.305,121.535,6.5 +2016-11-20 13:32:00,26.7038,121.725,6.5 +2016-11-20 13:47:00,24.04,121.902,6.52 +2016-11-20 14:02:00,26.205,122.045,6.51 +2016-11-20 14:17:00,25.8712,122.07,6.51 +2016-11-20 14:32:00,24.9425,122.07,6.52 +2016-11-20 14:47:00,24.5938,122.03,6.52 +2016-11-20 15:02:00,26.1125,122.12,6.53 +2016-11-20 15:17:00,25.5262,122.173,6.52 +2016-11-20 15:32:00,26.7012,122.29,6.53 +2016-11-20 15:47:00,26.1612,122.35,6.54 +2016-11-20 16:02:00,26.3575,122.4,6.54 +2016-11-20 16:17:00,24.2962,122.307,6.55 +2016-11-20 16:32:00,23.895,122.29,6.56 +2016-11-20 16:47:00,24.84,122.262,6.56 +2016-11-20 17:02:00,26.1113,122.135,6.57 +2016-11-20 17:17:00,24.7375,121.952,6.57 +2016-11-20 17:32:00,26.2038,121.745,6.58 +2016-11-20 17:47:00,27.14,121.652,6.57 +2016-11-20 18:02:00,26.0175,121.602,6.58 +2016-11-20 18:17:00,24.6387,121.58,6.59 +2016-11-20 18:32:00,26.1137,121.577,6.58 +2016-11-20 18:47:00,26.3012,121.675,6.59 +2016-11-20 19:02:00,25.7738,121.675,6.61 +2016-11-20 19:17:00,26.5987,121.617,6.62 +2016-11-20 19:32:00,26.6987,121.49,6.63 +2016-11-20 19:47:00,26.2525,121.23,6.63 +2016-11-20 20:02:00,25.0863,121.03,6.64 +2016-11-20 20:17:00,26.405,120.837,6.63 +2016-11-20 20:32:00,24.6413,120.692,6.61 +2016-11-20 20:47:00,26.5025,120.62,6.61 +2016-11-20 21:02:00,26.25,120.585,6.61 +2016-11-20 21:17:00,26.1575,120.575,6.59 +2016-11-20 21:32:00,25.575,120.56,6.58 +2016-11-20 21:47:00,25.04,120.555,6.58 +2016-11-20 22:02:00,26.2087,120.54,6.59 +2016-11-20 22:17:00,24.89,120.452,6.59 +2016-11-20 22:32:00,24.7363,120.382,6.59 +2016-11-20 22:47:00,27.1387,120.197,6.6 +2016-11-20 23:02:00,25.5225,120.042,6.6 +2016-11-20 23:17:00,25.1888,119.897,6.61 +2016-11-20 23:32:00,26.65,119.755,6.61 +2016-11-20 23:47:00,26.35,119.675,6.62 +2016-11-21 00:02:00,25.8688,119.645,6.61 +2016-11-21 00:17:00,27.0413,119.662,6.59 +2016-11-21 00:32:00,25.6188,119.628,6.59 +2016-11-21 00:47:00,26.2062,119.632,6.61 +2016-11-21 01:02:00,26.0137,119.612,6.61 +2016-11-21 01:17:00,26.1125,119.555,6.58 +2016-11-21 01:32:00,26.6038,119.442,6.56 +2016-11-21 01:47:00,25.875,119.265,6.56 +2016-11-21 02:02:00,26.5088,119.155,6.55 +2016-11-21 02:17:00,26.8,119.018,6.54 +2016-11-21 02:32:00,25.87,118.947,6.53 +2016-11-21 02:47:00,25.2887,118.915,6.51 +2016-11-21 03:02:00,25.4762,118.935,6.5 +2016-11-21 03:17:00,26.75,118.945,6.48 +2016-11-21 03:32:00,25.5737,118.97,6.49 +2016-11-21 03:47:00,26.5575,119.007,6.47 +2016-11-21 04:02:00,26.07,119.005,6.45 +2016-11-21 04:17:00,25.9175,118.992,6.43 +2016-11-21 04:32:00,25.1862,118.925,6.43 +2016-11-21 04:47:00,23.2575,118.842,6.43 +2016-11-21 05:02:00,25.0887,118.685,6.42 +2016-11-21 05:17:00,26.4012,118.63,6.4 +2016-11-21 05:32:00,27.0425,118.652,6.4 +2016-11-21 05:47:00,26.2537,118.65,6.4 +2016-11-21 06:02:00,27.49,118.688,6.41 +2016-11-21 06:17:00,26.0187,118.722,6.41 +2016-11-21 06:32:00,23.9938,118.69,6.4 +2016-11-21 06:47:00,26.4025,118.658,6.38 +2016-11-21 07:02:00,25.82,118.632,6.38 +2016-11-21 07:17:00,26.5025,118.582,6.38 +2016-11-21 07:32:00,26.1612,118.545,6.4 +2016-11-21 07:47:00,25.8275,118.442,6.4 +2016-11-21 08:02:00,25.1875,118.785,6.39 +2016-11-21 08:17:00,25.8187,118.83,6.4 +2016-11-21 08:32:00,24.0375,118.665,6.4 +2016-11-21 08:47:00,25.0387,118.55,6.39 +2016-11-21 09:02:00,25.4775,118.535,6.41 +2016-11-21 09:17:00,25.3812,118.525,6.43 +2016-11-21 09:32:00,25.0938,118.432,6.44 +2016-11-21 09:47:00,25.8237,118.345,6.44 +2016-11-21 10:02:00,25.0375,118.207,6.44 +2016-11-21 10:17:00,24.89,118.155,6.45 +2016-11-21 10:32:00,25.6712,118.137,6.48 +2016-11-21 10:47:00,25.7687,118.195,6.47 +2016-11-21 11:02:00,25.0875,118.277,6.48 +2016-11-21 11:17:00,26.6562,118.367,6.5 +2016-11-21 11:32:00,24.0413,118.475,6.51 +2016-11-21 11:47:00,26.85,118.56,6.51 +2016-11-21 12:02:00,26.0175,118.59,6.53 +2016-11-21 12:17:00,25.7175,118.572,6.53 +2016-11-21 12:32:00,25.4762,118.53,6.54 +2016-11-21 12:47:00,25.135,118.452,6.54 +2016-11-21 13:02:00,24.29,118.408,6.54 +2016-11-21 13:17:00,24.8925,118.357,6.54 +2016-11-21 13:32:00,25.1912,118.382,6.54 +2016-11-21 13:47:00,24.64,118.477,6.57 +2016-11-21 14:02:00,24.29,118.6,6.58 +2016-11-21 14:17:00,26.2525,118.658,6.59 +2016-11-21 14:32:00,24.1888,118.737,6.59 +2016-11-21 14:47:00,24.3937,118.812,6.59 +2016-11-21 15:02:00,25.1413,118.84,6.59 +2016-11-21 15:17:00,25.6762,118.783,6.6 +2016-11-21 15:32:00,26.305,118.76,6.61 +2016-11-21 15:47:00,26.5537,118.677,6.61 +2016-11-21 16:02:00,23.1137,118.635,6.61 +2016-11-21 16:17:00,26.5587,118.64,6.63 +2016-11-21 16:32:00,26.7012,118.685,6.66 +2016-11-21 16:47:00,24.6425,118.725,6.68 +2016-11-21 17:02:00,24.5475,118.837,6.7 +2016-11-21 17:17:00,26.3037,118.92,6.7 +2016-11-21 17:32:00,24.9925,118.977,6.71 +2016-11-21 17:47:00,25.6675,118.908,6.72 +2016-11-21 18:02:00,25.0387,118.832,6.73 +2016-11-21 18:17:00,25.6725,118.725,6.73 +2016-11-21 18:32:00,22.9762,118.617,6.73 +2016-11-21 18:47:00,24.6912,118.587,6.75 +2016-11-21 19:02:00,24.2988,118.562,6.74 +2016-11-21 19:17:00,25.3787,118.607,6.75 +2016-11-21 19:32:00,25.9212,118.65,6.75 +2016-11-21 19:47:00,24.2887,118.652,6.75 +2016-11-21 20:02:00,24.0375,118.692,6.75 +2016-11-21 20:17:00,23.3587,118.682,6.75 +2016-11-21 20:32:00,23.1637,118.552,6.75 +2016-11-21 20:47:00,24.5,118.43,6.76 +2016-11-21 21:02:00,22.3937,118.305,6.77 +2016-11-21 21:17:00,24.8387,118.173,6.76 +2016-11-21 21:32:00,24.89,118.092,6.77 +2016-11-21 21:47:00,24.3925,118.055,6.77 +2016-11-21 22:02:00,25.19,118.012,6.78 +2016-11-21 22:17:00,26.3075,118.012,6.78 +2016-11-21 22:32:00,23.6612,117.99,6.79 +2016-11-21 22:47:00,25.78,118.022,6.8 +2016-11-21 23:02:00,24.0912,117.98,6.8 +2016-11-21 23:17:00,24.5925,117.867,6.8 +2016-11-21 23:32:00,24.495,117.717,6.82 +2016-11-21 23:47:00,24.9925,117.555,6.82 +2016-11-22 00:02:00,24.89,117.385,6.82 +2016-11-22 00:17:00,26.355,117.307,6.82 +2016-11-22 00:32:00,23.7513,117.237,6.83 +2016-11-22 00:47:00,25.525,117.232,6.85 +2016-11-22 01:02:00,25.04,117.227,6.86 +2016-11-22 01:17:00,26.3988,117.257,6.86 +2016-11-22 01:32:00,21.9062,117.257,6.86 +2016-11-22 01:47:00,23.5537,117.175,6.85 +2016-11-22 02:02:00,24.9887,117.085,6.86 +2016-11-22 02:17:00,22.685,116.902,6.86 +2016-11-22 02:32:00,26.4525,116.75,6.85 +2016-11-22 02:47:00,23.8487,116.622,6.83 +2016-11-22 03:02:00,22.4863,116.55,6.83 +2016-11-22 03:17:00,24.8425,116.518,6.85 +2016-11-22 03:32:00,25.2337,116.533,6.86 +2016-11-22 03:47:00,25.4762,116.567,6.85 +2016-11-22 04:02:00,25.8187,116.565,6.84 +2016-11-22 04:17:00,24.345,116.615,6.83 +2016-11-22 04:32:00,24.6387,116.577,6.85 +2016-11-22 04:47:00,23.7038,116.46,6.85 +2016-11-22 05:02:00,23.6038,116.33,6.86 +2016-11-22 05:17:00,25.1375,116.245,6.85 +2016-11-22 05:32:00,24.6862,116.09,6.85 +2016-11-22 05:47:00,25.3312,115.985,6.86 +2016-11-22 06:02:00,22.5837,115.925,6.87 +2016-11-22 06:17:00,23.5112,115.955,6.89 +2016-11-22 06:32:00,22.7787,116.06,6.89 +2016-11-22 06:47:00,25.5762,116.048,6.88 +2016-11-22 07:02:00,23.4575,115.992,6.9 +2016-11-22 07:17:00,24.6875,115.917,6.9 +2016-11-22 07:32:00,23.4575,115.835,6.92 +2016-11-22 07:47:00,22.97,115.745,6.93 +2016-11-22 08:02:00,24.0413,115.68,6.94 +2016-11-22 08:17:00,24.6387,115.567,6.95 +2016-11-22 08:32:00,23.5575,115.557,6.97 +2016-11-22 08:47:00,22.8787,115.555,6.98 +2016-11-22 09:02:00,24.0362,115.585,7.0 +2016-11-22 09:17:00,25.725,115.67,7.02 +2016-11-22 09:32:00,25.425,115.685,7.04 +2016-11-22 09:47:00,24.6375,115.695,7.06 +2016-11-22 10:02:00,24.3438,115.595,7.08 +2016-11-22 10:17:00,23.8438,115.492,7.1 +2016-11-22 10:32:00,23.8925,115.408,7.11 +2016-11-22 10:47:00,22.485,115.268,7.12 +2016-11-22 11:02:00,24.54,115.227,7.16 +2016-11-22 11:17:00,24.34,115.195,7.18 +2016-11-22 11:32:00,24.445,115.205,7.21 +2016-11-22 11:47:00,23.9912,115.197,7.21 +2016-11-22 12:02:00,25.3825,115.25,7.22 +2016-11-22 12:17:00,24.685,115.227,7.24 +2016-11-22 12:32:00,24.6862,115.24,7.25 +2016-11-22 12:47:00,24.94,115.122,7.26 +2016-11-22 13:02:00,24.09,115.025,7.28 +2016-11-22 13:17:00,23.4575,114.935,7.28 +2016-11-22 13:32:00,23.795,114.8,7.28 +2016-11-22 13:47:00,22.345,114.665,7.31 +2016-11-22 14:02:00,26.755,114.612,7.33 +2016-11-22 14:17:00,24.84,114.577,7.32 +2016-11-22 14:32:00,22.93,114.57,7.31 +2016-11-22 14:47:00,24.2937,114.617,7.32 +2016-11-22 15:02:00,24.735,114.643,7.34 +2016-11-22 15:17:00,25.7237,114.643,7.37 +2016-11-22 15:32:00,24.495,114.537,7.39 +2016-11-22 15:47:00,23.1675,114.41,7.4 +2016-11-22 16:02:00,25.8262,114.28,7.41 +2016-11-22 16:17:00,24.4437,114.16,7.42 +2016-11-22 16:32:00,23.1637,114.13,7.44 +2016-11-22 16:47:00,26.2562,114.14,7.46 +2016-11-22 17:02:00,24.84,114.197,7.46 +2016-11-22 17:17:00,23.555,114.227,7.46 +2016-11-22 17:32:00,25.3375,114.26,7.46 +2016-11-22 17:47:00,23.3625,114.242,7.46 +2016-11-22 18:02:00,24.5425,114.175,7.46 +2016-11-22 18:17:00,24.64,114.065,7.46 +2016-11-22 18:32:00,23.5088,113.972,7.45 +2016-11-22 18:47:00,25.2375,113.855,7.43 +2016-11-22 19:02:00,21.7125,113.753,7.44 +2016-11-22 19:17:00,24.445,113.72,7.45 +2016-11-22 19:32:00,23.3162,113.73,7.44 +2016-11-22 19:47:00,23.8487,113.755,7.42 +2016-11-22 20:02:00,22.8337,113.795,7.41 +2016-11-22 20:17:00,24.3925,113.862,7.4 +2016-11-22 20:32:00,23.7975,113.88,7.4 +2016-11-22 20:47:00,23.4088,113.86,7.4 +2016-11-22 21:02:00,22.2962,113.822,7.39 +2016-11-22 21:17:00,25.6275,113.727,7.38 +2016-11-22 21:32:00,24.9925,113.612,7.38 +2016-11-22 21:47:00,23.3063,113.522,7.38 +2016-11-22 22:02:00,22.9262,113.465,7.38 +2016-11-22 22:17:00,23.1625,113.447,7.37 +2016-11-22 22:32:00,24.6375,113.49,7.37 +2016-11-22 22:47:00,24.6413,113.53,7.37 +2016-11-22 23:02:00,23.16,113.592,7.37 +2016-11-22 23:17:00,24.14,113.612,7.37 +2016-11-22 23:32:00,23.9925,113.55,7.37 +2016-11-22 23:47:00,23.8925,113.44,7.37 +2016-11-23 00:02:00,24.8925,113.345,7.37 +2016-11-23 00:17:00,22.7838,113.205,7.36 +2016-11-23 00:32:00,24.6338,113.115,7.37 +2016-11-23 00:47:00,23.5537,113.107,7.37 +2016-11-23 01:02:00,24.945,113.125,7.36 +2016-11-23 01:17:00,25.24,113.19,7.34 +2016-11-23 01:32:00,24.04,113.262,7.33 +2016-11-23 01:47:00,23.99,113.342,7.34 +2016-11-23 02:02:00,23.115,113.36,7.35 +2016-11-23 02:17:00,23.7925,113.302,7.34 +2016-11-23 02:32:00,22.8312,113.195,7.34 +2016-11-23 02:47:00,23.165,113.075,7.31 +2016-11-23 03:02:00,23.5625,112.977,7.29 +2016-11-23 03:17:00,23.8512,112.925,7.27 +2016-11-23 03:32:00,24.8887,112.917,7.25 +2016-11-23 03:47:00,22.88,113.012,7.23 +2016-11-23 04:02:00,23.1637,113.02,7.22 +2016-11-23 04:17:00,22.9737,113.05,7.21 +2016-11-23 04:32:00,23.21,113.097,7.21 +2016-11-23 04:47:00,23.9912,113.097,7.19 +2016-11-23 05:02:00,23.0263,113.052,7.18 +2016-11-23 05:17:00,24.2462,112.975,7.17 +2016-11-23 05:32:00,23.36,112.897,7.16 +2016-11-23 05:47:00,24.29,112.822,7.16 +2016-11-23 06:02:00,23.355,112.742,7.15 +2016-11-23 06:17:00,23.5563,112.697,7.15 +2016-11-23 06:32:00,22.5863,112.625,7.14 +2016-11-23 06:47:00,22.4863,112.615,7.13 +2016-11-23 07:02:00,22.5875,112.612,7.14 +2016-11-23 07:17:00,24.8913,112.688,7.15 +2016-11-23 07:32:00,23.7525,112.772,7.15 +2016-11-23 07:47:00,24.0863,112.845,7.16 +2016-11-23 08:02:00,24.7875,113.19,7.16 +2016-11-23 08:17:00,25.2387,113.02,7.15 +2016-11-23 08:32:00,23.8412,110.875,7.14 +2016-11-23 08:47:00,24.74,109.215,7.12 +2016-11-23 09:02:00,25.335,108.265,7.15 +2016-11-23 09:17:00,22.6837,107.79,7.16 +2016-11-23 09:32:00,23.845,107.615,7.18 +2016-11-23 09:47:00,24.9412,107.99,7.19 +2016-11-23 10:02:00,23.8425,109.645,7.18 +2016-11-23 10:17:00,26.0638,112.482,7.16 +2016-11-23 10:32:00,23.7087,115.757,7.15 +2016-11-23 10:47:00,24.095,119.062,7.15 +2016-11-23 11:02:00,24.3913,122.18,7.16 +2016-11-23 11:17:00,24.24,124.842,7.17 +2016-11-23 11:32:00,24.4938,126.927,7.16 +2016-11-23 11:47:00,24.6888,128.237,7.16 +2016-11-23 12:02:00,15.8363,129.21,7.17 +2016-11-23 12:17:00,22.4388,129.732,7.18 +2016-11-23 12:32:00,24.0925,129.6,7.18 +2016-11-23 12:47:00,25.2887,129.165,7.2 +2016-11-23 13:02:00,23.99,128.64,7.23 +2016-11-23 13:17:00,23.21,127.977,7.26 +2016-11-23 13:32:00,23.9887,127.25,7.27 +2016-11-23 13:47:00,24.1937,126.47,7.29 +2016-11-23 14:02:00,23.7537,125.625,7.31 +2016-11-23 14:17:00,25.1425,124.827,7.33 +2016-11-23 14:32:00,22.3925,123.987,7.35 +2016-11-23 14:47:00,22.7337,123.115,7.36 +2016-11-23 15:02:00,23.5525,122.217,7.36 +2016-11-23 15:17:00,23.7513,121.32,7.37 +2016-11-23 15:32:00,22.2937,120.417,7.38 +2016-11-23 15:47:00,25.0387,119.63,7.36 +2016-11-23 16:02:00,21.6137,118.912,7.35 +2016-11-23 16:17:00,22.49,118.265,7.35 +2016-11-23 16:32:00,23.415,117.68,7.35 +2016-11-23 16:47:00,24.3925,117.152,7.36 +2016-11-23 17:02:00,23.1137,116.622,7.37 +2016-11-23 17:17:00,24.2425,116.16,7.38 +2016-11-23 17:32:00,24.64,115.673,7.39 +2016-11-23 17:47:00,23.895,115.275,7.4 +2016-11-23 18:02:00,25.7262,114.89,7.4 +2016-11-23 18:17:00,24.2962,114.52,7.39 +2016-11-23 18:32:00,24.0413,114.125,7.4 +2016-11-23 18:47:00,25.1875,113.725,7.4 +2016-11-23 19:02:00,24.0887,113.362,7.4 +2016-11-23 19:17:00,23.6537,113.132,7.41 +2016-11-23 19:32:00,26.7537,112.925,7.42 +2016-11-23 19:47:00,25.7237,112.762,7.44 +2016-11-23 20:02:00,23.3637,112.605,7.43 +2016-11-23 20:17:00,24.5938,112.51,7.43 +2016-11-23 20:32:00,21.5675,112.465,7.43 +2016-11-23 20:47:00,24.6387,112.42,7.44 +2016-11-23 21:02:00,24.6912,112.355,7.44 +2016-11-23 21:17:00,23.6562,112.302,7.44 +2016-11-23 21:32:00,23.0687,112.197,7.44 +2016-11-23 21:47:00,23.5575,112.012,7.43 +2016-11-23 22:02:00,23.66,111.885,7.43 +2016-11-23 22:17:00,25.6287,111.747,7.43 +2016-11-23 22:32:00,23.655,111.688,7.44 +2016-11-23 22:47:00,23.0687,111.712,7.43 +2016-11-23 23:02:00,21.0737,111.735,7.42 +2016-11-23 23:17:00,24.14,111.745,7.41 +2016-11-23 23:32:00,23.6562,111.75,7.41 +2016-11-23 23:47:00,23.0713,111.735,7.41 +2016-11-24 00:02:00,30.6925,111.76,7.4 +2016-11-24 00:17:00,23.3087,111.795,7.38 +2016-11-24 00:32:00,23.1637,111.78,7.36 +2016-11-24 00:47:00,24.495,111.772,7.36 +2016-11-24 01:02:00,23.9912,111.697,7.35 +2016-11-24 01:17:00,22.105,111.582,7.35 +2016-11-24 01:32:00,25.2875,111.472,7.35 +2016-11-24 01:47:00,23.2612,111.415,7.33 +2016-11-24 02:02:00,22.93,111.357,7.31 +2016-11-24 02:17:00,24.8363,111.337,7.3 +2016-11-24 02:32:00,24.0413,111.378,7.29 +2016-11-24 02:47:00,23.5575,111.408,7.28 +2016-11-24 03:02:00,28.9863,111.415,7.28 +2016-11-24 03:17:00,23.8925,111.447,7.28 +2016-11-24 03:32:00,23.1663,111.447,7.28 +2016-11-24 03:47:00,23.165,111.447,7.29 +2016-11-24 04:02:00,24.24,111.43,7.3 +2016-11-24 04:17:00,23.7537,111.35,7.3 +2016-11-24 04:32:00,23.5037,111.227,7.29 +2016-11-24 04:47:00,24.4925,111.102,7.3 +2016-11-24 05:02:00,23.655,110.965,7.31 +2016-11-24 05:17:00,24.2412,110.878,7.32 +2016-11-24 05:32:00,23.76,110.87,7.33 +2016-11-24 05:47:00,23.8463,110.845,7.32 +2016-11-24 06:02:00,24.5912,110.89,7.32 +2016-11-24 06:17:00,23.02,110.972,7.33 +2016-11-24 06:32:00,24.1937,111.067,7.35 +2016-11-24 06:47:00,24.6375,111.087,7.42 +2016-11-24 07:02:00,23.705,111.135,7.47 +2016-11-24 07:17:00,23.895,111.117,7.51 +2016-11-24 07:32:00,25.8275,111.075,7.52 +2016-11-24 07:47:00,22.2038,111.005,7.54 +2016-11-24 08:02:00,23.21,110.945,7.53 +2016-11-24 08:17:00,22.685,110.908,7.54 +2016-11-24 08:32:00,24.1925,110.845,7.55 +2016-11-24 08:47:00,24.0837,110.787,7.58 +2016-11-24 09:02:00,18.6462,110.762,7.6 +2016-11-24 09:17:00,24.0938,110.77,7.62 +2016-11-24 09:32:00,24.4987,110.753,7.58 +2016-11-24 09:47:00,23.555,110.78,7.55 +2016-11-24 10:02:00,22.9737,110.765,7.55 +2016-11-24 10:17:00,22.2475,110.732,7.54 +2016-11-24 10:32:00,22.3425,110.705,7.55 +2016-11-24 10:47:00,22.7337,110.71,7.55 +2016-11-24 11:02:00,23.89,110.66,7.55 +2016-11-24 11:17:00,23.3125,110.64,7.56 +2016-11-24 11:32:00,25.5788,110.665,7.56 +2016-11-24 11:47:00,24.4925,110.655,7.57 +2016-11-24 12:02:00,23.7025,110.607,7.58 +2016-11-24 12:17:00,23.9875,110.485,7.59 +2016-11-24 12:32:00,24.0425,110.307,7.6 +2016-11-24 12:47:00,22.6338,110.097,7.56 +2016-11-24 13:02:00,22.8838,109.912,7.51 +2016-11-24 13:17:00,23.4613,109.722,7.48 +2016-11-24 13:32:00,22.975,109.605,7.46 +2016-11-24 13:47:00,21.9625,109.535,7.44 +2016-11-24 14:02:00,24.3363,109.527,7.44 +2016-11-24 14:17:00,22.8812,109.537,7.42 +2016-11-24 14:32:00,23.065,109.52,7.43 +2016-11-24 14:47:00,23.26,109.455,7.46 +2016-11-24 15:02:00,21.3763,109.317,7.47 +2016-11-24 15:17:00,22.9775,109.182,7.46 +2016-11-24 15:32:00,22.1087,109.065,7.44 +2016-11-24 15:47:00,24.9887,108.912,7.44 +2016-11-24 16:02:00,24.8387,108.82,7.44 +2016-11-24 16:17:00,23.705,108.775,7.41 +2016-11-24 16:32:00,23.02,108.75,7.4 +2016-11-24 16:47:00,21.6188,108.707,7.39 +2016-11-24 17:02:00,23.6113,108.705,7.39 +2016-11-24 17:17:00,24.3925,108.712,7.39 +2016-11-24 17:32:00,21.3725,108.635,7.39 +2016-11-24 17:47:00,24.9938,108.51,7.39 +2016-11-24 18:02:00,27.7438,108.367,7.37 +2016-11-24 18:17:00,25.7738,108.237,7.36 +2016-11-24 18:32:00,23.9875,108.057,7.38 +2016-11-24 18:47:00,24.7913,107.977,7.37 +2016-11-24 19:02:00,24.5462,107.97,7.34 +2016-11-24 19:17:00,24.3412,107.99,7.31 +2016-11-24 19:32:00,24.2975,107.987,7.29 +2016-11-24 19:47:00,23.6588,108.042,7.28 +2016-11-24 20:02:00,22.0563,108.06,7.27 +2016-11-24 20:17:00,24.2438,108.052,7.28 +2016-11-24 20:32:00,24.5488,107.982,7.28 +2016-11-24 20:47:00,23.3662,107.935,7.28 +2016-11-24 21:02:00,21.8138,107.857,7.27 +2016-11-24 21:17:00,23.1663,107.753,7.27 +2016-11-24 21:32:00,24.3438,107.722,7.26 +2016-11-24 21:47:00,24.8387,107.747,7.23 +2016-11-24 22:02:00,24.2387,107.765,7.21 +2016-11-24 22:17:00,22.345,107.802,7.19 +2016-11-24 22:32:00,22.98,107.862,7.18 +2016-11-24 22:47:00,23.6562,107.912,7.16 +2016-11-24 23:02:00,24.1937,107.912,7.13 +2016-11-24 23:17:00,23.505,107.885,7.11 +2016-11-24 23:32:00,22.5362,107.79,7.1 +2016-11-24 23:47:00,22.3412,107.697,7.08 +2016-11-25 00:02:00,23.7012,107.577,7.05 +2016-11-25 00:17:00,23.6537,107.533,7.02 +2016-11-25 00:32:00,22.3925,107.57,6.99 +2016-11-25 00:47:00,23.2612,107.61,6.96 +2016-11-25 01:02:00,22.9762,107.688,6.95 +2016-11-25 01:17:00,23.1625,107.75,6.94 +2016-11-25 01:32:00,23.115,107.83,6.91 +2016-11-25 01:47:00,23.3087,107.852,6.88 +2016-11-25 02:02:00,24.49,107.852,6.86 +2016-11-25 02:17:00,23.4112,107.77,6.86 +2016-11-25 02:32:00,24.345,107.69,6.85 +2016-11-25 02:47:00,21.865,107.615,6.83 +2016-11-25 03:02:00,14.5638,107.555,6.79 +2016-11-25 03:17:00,23.7487,107.56,6.78 +2016-11-25 03:32:00,23.2113,107.622,6.78 +2016-11-25 03:47:00,23.3587,107.677,6.77 +2016-11-25 04:02:00,23.8425,107.737,6.76 +2016-11-25 04:17:00,23.2162,107.798,6.75 +2016-11-25 04:32:00,23.4137,107.827,6.74 +2016-11-25 04:47:00,23.2625,107.807,6.73 +2016-11-25 05:02:00,24.79,107.742,6.72 +2016-11-25 05:17:00,23.8925,107.667,6.71 +2016-11-25 05:32:00,23.9425,107.562,6.69 +2016-11-25 05:47:00,23.21,107.512,6.67 +2016-11-25 06:02:00,29.1338,107.495,6.67 +2016-11-25 06:17:00,23.3112,107.51,6.67 +2016-11-25 06:32:00,23.0662,107.592,6.66 +2016-11-25 06:47:00,24.1862,107.65,6.66 +2016-11-25 07:02:00,23.2575,107.722,6.65 +2016-11-25 07:17:00,24.2887,107.707,6.63 +2016-11-25 07:32:00,24.6888,107.71,6.62 +2016-11-25 07:47:00,24.6362,107.852,6.61 +2016-11-25 08:02:00,21.5675,108.09,6.61 +2016-11-25 08:17:00,23.9912,105.07,6.62 +2016-11-25 08:32:00,24.49,102.357,6.61 +2016-11-25 08:47:00,23.26,100.882,6.59 +2016-11-25 09:02:00,20.445,100.255,6.6 +2016-11-25 09:17:00,23.3613,100.175,6.63 +2016-11-25 09:32:00,22.9275,100.447,6.62 +2016-11-25 09:47:00,24.6875,100.887,6.63 +2016-11-25 10:02:00,24.8412,101.45,6.62 +2016-11-25 10:17:00,25.3363,101.997,6.61 +2016-11-25 10:32:00,23.16,102.562,6.61 +2016-11-25 10:47:00,23.41,103.01,6.63 +2016-11-25 11:02:00,24.1413,103.38,6.65 +2016-11-25 11:17:00,23.5088,103.742,6.64 +2016-11-25 11:32:00,23.6525,104.062,6.64 +2016-11-25 11:47:00,24.1937,104.467,6.64 +2016-11-25 12:02:00,24.9437,104.835,6.65 +2016-11-25 12:17:00,22.975,105.182,6.64 +2016-11-25 12:32:00,22.2038,105.533,6.62 +2016-11-25 12:47:00,23.6588,105.847,6.62 +2016-11-25 13:02:00,25.5788,106.095,6.62 +2016-11-25 13:17:00,23.9887,106.237,6.61 +2016-11-25 13:32:00,23.61,106.312,6.6 +2016-11-25 13:47:00,23.9925,106.33,6.58 +2016-11-25 14:02:00,23.56,106.285,6.56 +2016-11-25 14:17:00,22.6362,106.38,6.55 +2016-11-25 14:32:00,24.8412,106.48,6.54 +2016-11-25 14:47:00,23.7075,106.612,6.52 +2016-11-25 15:02:00,20.6787,106.762,6.51 +2016-11-25 15:17:00,23.8463,106.917,6.49 +2016-11-25 15:32:00,24.195,107.057,6.48 +2016-11-25 15:47:00,23.8988,107.155,6.46 +2016-11-25 16:02:00,23.46,107.19,6.45 +2016-11-25 16:17:00,20.7775,107.135,6.44 +2016-11-25 16:32:00,24.1437,107.057,6.45 +2016-11-25 16:47:00,21.8175,107.012,6.46 +2016-11-25 17:02:00,23.7062,107.05,6.46 +2016-11-25 17:17:00,22.5425,107.147,6.47 +2016-11-25 17:32:00,22.7337,107.24,6.47 +2016-11-25 17:47:00,22.1137,107.395,6.48 +2016-11-25 18:02:00,22.0537,107.495,6.49 +2016-11-25 18:17:00,23.7038,107.622,6.5 +2016-11-25 18:32:00,25.09,107.727,6.49 +2016-11-25 18:47:00,24.39,107.712,6.47 +2016-11-25 19:02:00,24.5437,107.647,6.47 +2016-11-25 19:17:00,24.7913,107.555,6.48 +2016-11-25 19:32:00,24.6937,107.51,6.47 +2016-11-25 19:47:00,23.5587,107.565,6.47 +2016-11-25 20:02:00,24.5425,107.655,6.47 +2016-11-25 20:17:00,24.9887,107.78,6.47 +2016-11-25 20:32:00,23.7062,107.872,6.46 +2016-11-25 20:47:00,22.8775,107.98,6.45 +2016-11-25 21:02:00,22.6813,108.135,6.44 +2016-11-25 21:17:00,25.2875,108.175,6.4 +2016-11-25 21:32:00,24.345,108.177,6.38 +2016-11-25 21:47:00,24.3425,108.117,6.38 +2016-11-25 22:02:00,23.6012,108.037,6.36 +2016-11-25 22:17:00,23.6025,108.0,6.35 +2016-11-25 22:32:00,22.3438,107.99,6.33 +2016-11-25 22:47:00,22.3412,108.112,6.33 +2016-11-25 23:02:00,24.0425,108.188,6.3 +2016-11-25 23:17:00,24.9437,108.312,6.29 +2016-11-25 23:32:00,22.0088,108.39,6.27 +2016-11-25 23:47:00,23.6588,108.492,6.25 +2016-11-26 00:02:00,25.1912,108.565,6.23 +2016-11-26 00:17:00,22.4863,108.567,6.21 +2016-11-26 00:32:00,22.735,108.467,6.19 +2016-11-26 00:47:00,23.5075,108.375,6.18 +2016-11-26 01:02:00,23.9463,108.27,6.15 +2016-11-26 01:17:00,22.8325,108.253,6.12 +2016-11-26 01:32:00,24.8925,108.253,6.09 +2016-11-26 01:47:00,23.9412,108.325,6.07 +2016-11-26 02:02:00,22.9762,108.417,6.05 +2016-11-26 02:17:00,24.0425,108.492,6.03 +2016-11-26 02:32:00,23.5563,108.57,6.0 +2016-11-26 02:47:00,24.8925,108.64,6.0 +2016-11-26 03:02:00,30.0125,108.622,5.98 +2016-11-26 03:17:00,25.2887,108.592,5.96 +2016-11-26 03:32:00,24.04,108.515,5.95 +2016-11-26 03:47:00,21.9112,108.387,5.95 +2016-11-26 04:02:00,21.7113,108.302,5.94 +2016-11-26 04:17:00,22.8275,108.34,5.93 +2016-11-26 04:32:00,22.0088,108.365,5.92 +2016-11-26 04:47:00,23.5112,108.495,5.9 +2016-11-26 05:02:00,23.7537,108.582,5.88 +2016-11-26 05:17:00,23.6025,108.677,5.87 +2016-11-26 05:32:00,22.8812,108.785,5.85 +2016-11-26 05:47:00,23.9887,108.832,5.85 +2016-11-26 06:02:00,15.8825,108.825,5.83 +2016-11-26 06:17:00,24.8387,108.787,5.83 +2016-11-26 06:32:00,23.2125,108.695,5.81 +2016-11-26 06:47:00,22.64,108.7,5.81 +2016-11-26 07:02:00,22.2962,108.688,5.79 +2016-11-26 07:17:00,23.7012,108.673,5.78 +2016-11-26 07:32:00,21.8138,108.667,5.77 +2016-11-26 07:47:00,23.7,108.712,5.76 +2016-11-26 08:02:00,23.8438,108.742,5.75 +2016-11-26 08:17:00,23.16,108.885,5.74 +2016-11-26 08:32:00,22.2975,108.987,5.74 +2016-11-26 08:47:00,22.6837,109.092,5.73 +2016-11-26 09:02:00,23.7962,109.885,5.72 +2016-11-26 09:17:00,22.6813,111.2,5.71 +2016-11-26 09:32:00,22.59,112.102,5.71 +2016-11-26 09:47:00,23.7513,112.585,5.68 +2016-11-26 10:02:00,23.8913,112.692,5.66 +2016-11-26 10:17:00,24.445,112.617,5.66 +2016-11-26 10:32:00,22.7875,112.408,5.67 +2016-11-26 10:47:00,22.0612,112.175,5.67 +2016-11-26 11:02:00,21.075,111.95,5.65 +2016-11-26 11:17:00,22.6837,111.755,5.64 +2016-11-26 11:32:00,21.465,111.612,5.64 +2016-11-26 11:47:00,22.78,111.527,5.65 +2016-11-26 12:02:00,23.7513,111.372,5.64 +2016-11-26 12:17:00,25.6712,111.227,5.63 +2016-11-26 12:32:00,23.6575,111.135,5.6 +2016-11-26 12:47:00,22.9262,111.025,5.58 +2016-11-26 13:02:00,24.3913,110.84,5.56 +2016-11-26 13:17:00,23.6038,110.652,5.57 +2016-11-26 13:32:00,22.88,110.445,5.56 +2016-11-26 13:47:00,21.465,110.298,5.55 +2016-11-26 14:02:00,22.6387,110.188,5.52 +2016-11-26 14:17:00,23.3637,110.122,5.5 +2016-11-26 14:32:00,22.7363,110.087,5.49 +2016-11-26 14:47:00,23.1137,110.117,5.48 +2016-11-26 15:02:00,23.5062,110.085,5.48 +2016-11-26 15:17:00,24.5413,110.092,5.48 +2016-11-26 15:32:00,25.0362,110.045,5.46 +2016-11-26 15:47:00,25.9212,109.962,5.45 +2016-11-26 16:02:00,23.99,109.812,5.44 +2016-11-26 16:17:00,23.895,109.688,5.43 +2016-11-26 16:32:00,23.7062,109.577,5.42 +2016-11-26 16:47:00,22.1075,109.535,5.42 +2016-11-26 17:02:00,22.44,109.5,5.43 +2016-11-26 17:17:00,24.4938,109.548,5.43 +2016-11-26 17:32:00,23.26,109.575,5.44 +2016-11-26 17:47:00,22.0563,109.54,5.44 +2016-11-26 18:02:00,23.215,109.548,5.44 +2016-11-26 18:17:00,24.7937,109.57,5.44 +2016-11-26 18:32:00,23.84,109.607,5.42 +2016-11-26 18:47:00,22.6813,109.53,5.41 +2016-11-26 19:02:00,24.3387,109.44,5.4 +2016-11-26 19:17:00,23.3075,109.322,5.39 +2016-11-26 19:32:00,22.3425,109.247,5.37 +2016-11-26 19:47:00,24.0387,109.23,5.35 +2016-11-26 20:02:00,22.205,109.242,5.35 +2016-11-26 20:17:00,24.0387,109.245,5.35 +2016-11-26 20:32:00,21.9125,109.327,5.33 +2016-11-26 20:47:00,23.605,109.38,5.33 +2016-11-26 21:02:00,23.755,109.41,5.33 +2016-11-26 21:17:00,23.6537,109.47,5.33 +2016-11-26 21:32:00,22.4837,109.475,5.33 +2016-11-26 21:47:00,22.88,109.41,5.33 +2016-11-26 22:02:00,24.5963,109.327,5.32 +2016-11-26 22:17:00,24.2937,109.21,5.29 +2016-11-26 22:32:00,23.2125,109.125,5.28 +2016-11-26 22:47:00,21.9625,109.097,5.28 +2016-11-26 23:02:00,24.19,109.115,5.28 +2016-11-26 23:17:00,24.7412,109.14,5.28 +2016-11-26 23:32:00,21.7687,109.215,5.28 +2016-11-26 23:47:00,23.6113,109.242,5.29 +2016-11-27 00:02:00,22.2962,109.225,5.28 +2016-11-27 00:17:00,24.0863,109.215,5.27 +2016-11-27 00:32:00,22.9313,109.158,5.28 +2016-11-27 00:47:00,22.2025,109.035,5.29 +2016-11-27 01:02:00,25.335,108.967,5.27 +2016-11-27 01:17:00,25.2337,108.847,5.26 +2016-11-27 01:32:00,22.8875,108.787,5.27 +2016-11-27 01:47:00,23.4163,108.77,5.27 +2016-11-27 02:02:00,24.8862,108.8,5.27 +2016-11-27 02:17:00,24.0837,108.798,5.25 +2016-11-27 02:32:00,24.1387,108.865,5.24 +2016-11-27 02:47:00,22.155,108.95,5.23 +2016-11-27 03:02:00,25.3775,109.015,5.22 +2016-11-27 03:17:00,22.3937,109.027,5.22 +2016-11-27 03:32:00,22.7875,108.965,5.22 +2016-11-27 03:47:00,25.6762,108.878,5.21 +2016-11-27 04:02:00,23.4125,108.783,5.2 +2016-11-27 04:17:00,24.0387,108.682,5.2 +2016-11-27 04:32:00,23.02,108.677,5.21 +2016-11-27 04:47:00,23.4538,108.7,5.2 +2016-11-27 05:02:00,22.9725,108.772,5.2 +2016-11-27 05:17:00,22.54,108.84,5.22 +2016-11-27 05:32:00,24.0413,108.927,5.22 +2016-11-27 05:47:00,24.3925,108.98,5.23 +2016-11-27 06:02:00,22.5875,108.985,5.23 +2016-11-27 06:17:00,24.445,109.048,5.23 +2016-11-27 06:32:00,22.0563,108.98,5.23 +2016-11-27 06:47:00,23.3112,108.91,5.24 +2016-11-27 07:02:00,22.935,108.837,5.24 +2016-11-27 07:17:00,23.5125,108.775,5.23 +2016-11-27 07:32:00,23.1663,108.745,5.24 +2016-11-27 07:47:00,22.2925,108.637,5.23 +2016-11-27 08:02:00,24.7412,108.595,5.24 +2016-11-27 08:17:00,24.1912,108.548,5.24 +2016-11-27 08:32:00,23.4088,108.507,5.23 +2016-11-27 08:47:00,22.9737,108.565,5.24 +2016-11-27 09:02:00,22.06,108.652,5.25 +2016-11-27 09:17:00,24.2937,108.71,5.25 +2016-11-27 09:32:00,25.6225,108.765,5.28 +2016-11-27 09:47:00,22.78,108.862,5.28 +2016-11-27 10:02:00,24.085,108.9,5.3 +2016-11-27 10:17:00,24.785,108.887,5.33 +2016-11-27 10:32:00,22.0062,108.812,5.33 +2016-11-27 10:47:00,25.9187,108.717,5.33 +2016-11-27 11:02:00,23.6575,108.645,5.34 +2016-11-27 11:17:00,21.225,108.645,5.33 +2016-11-27 11:32:00,22.7812,108.697,5.34 +2016-11-27 11:47:00,23.2588,108.785,5.35 +2016-11-27 12:02:00,23.3587,108.835,5.36 +2016-11-27 12:17:00,23.4088,108.878,5.36 +2016-11-27 12:32:00,23.4587,108.908,5.33 +2016-11-27 12:47:00,24.0413,108.94,5.32 +2016-11-27 13:02:00,22.3463,108.887,5.31 +2016-11-27 13:17:00,24.085,108.812,5.31 +2016-11-27 13:32:00,24.4412,108.702,5.31 +2016-11-27 13:47:00,22.7325,108.592,5.3 +2016-11-27 14:02:00,22.7312,108.537,5.3 +2016-11-27 14:17:00,22.7787,108.562,5.29 +2016-11-27 14:32:00,22.875,108.607,5.27 +2016-11-27 14:47:00,25.3363,108.673,5.26 +2016-11-27 15:02:00,22.3425,108.762,5.26 +2016-11-27 15:17:00,24.085,108.865,5.25 +2016-11-27 15:32:00,23.4075,108.92,5.27 +2016-11-27 15:47:00,24.5413,108.942,5.27 +2016-11-27 16:02:00,24.5387,108.865,5.27 +2016-11-27 16:17:00,23.555,108.8,5.27 +2016-11-27 16:32:00,24.2425,108.71,5.27 +2016-11-27 16:47:00,25.9225,108.66,5.26 +2016-11-27 17:02:00,22.39,108.69,5.27 +2016-11-27 17:17:00,22.6362,108.747,5.26 +2016-11-27 17:32:00,22.7825,108.805,5.25 +2016-11-27 17:47:00,23.5537,108.84,5.26 +2016-11-27 18:02:00,24.635,108.89,5.26 +2016-11-27 18:17:00,24.3375,108.935,5.26 +2016-11-27 18:32:00,23.36,108.982,5.26 +2016-11-27 18:47:00,23.7525,108.923,5.24 +2016-11-27 19:02:00,22.7337,108.862,5.23 +2016-11-27 19:17:00,23.6512,108.78,5.23 +2016-11-27 19:32:00,22.9238,108.688,5.22 +2016-11-27 19:47:00,23.2612,108.662,5.21 +2016-11-27 20:02:00,23.655,108.685,5.19 +2016-11-27 20:17:00,24.3937,108.735,5.17 +2016-11-27 20:32:00,24.345,108.78,5.14 +2016-11-27 20:47:00,24.3387,108.89,5.12 +2016-11-27 21:02:00,24.4412,108.93,5.1 +2016-11-27 21:17:00,24.1362,109.018,5.09 +2016-11-27 21:32:00,23.5563,109.01,5.05 +2016-11-27 21:47:00,24.085,108.917,5.03 +2016-11-27 22:02:00,23.555,108.837,4.99 +2016-11-27 22:17:00,23.115,108.715,4.96 +2016-11-27 22:32:00,23.4112,108.635,4.94 +2016-11-27 22:47:00,24.1888,108.607,4.93 +2016-11-27 23:02:00,23.0212,108.658,4.9 +2016-11-27 23:17:00,23.5025,108.7,4.88 +2016-11-27 23:32:00,24.3412,108.762,4.87 +2016-11-27 23:47:00,25.375,108.812,4.85 +2016-11-28 00:02:00,23.5062,108.847,4.84 +2016-11-28 00:17:00,22.9737,108.88,4.8 +2016-11-28 00:32:00,23.1663,108.842,4.77 +2016-11-28 00:47:00,23.5062,108.753,4.74 +2016-11-28 01:02:00,22.975,108.643,4.7 +2016-11-28 01:17:00,23.1612,108.555,4.67 +2016-11-28 01:32:00,24.5425,108.555,4.63 +2016-11-28 01:47:00,23.6075,108.545,4.58 +2016-11-28 02:02:00,23.365,108.582,4.55 +2016-11-28 02:17:00,22.8838,108.585,4.5 +2016-11-28 02:32:00,22.34,108.597,4.45 +2016-11-28 02:47:00,23.7012,108.61,4.42 +2016-11-28 03:02:00,23.8412,108.617,4.38 +2016-11-28 03:17:00,23.9375,108.537,4.35 +2016-11-28 03:32:00,23.3075,108.442,4.31 +2016-11-28 03:47:00,23.21,108.307,4.26 +2016-11-28 04:02:00,23.5088,108.175,4.24 +2016-11-28 04:17:00,23.7525,108.087,4.21 +2016-11-28 04:32:00,23.5062,108.077,4.19 +2016-11-28 04:47:00,23.795,108.115,4.17 +2016-11-28 05:02:00,24.4925,108.14,4.15 +2016-11-28 05:17:00,24.6387,108.188,4.12 +2016-11-28 05:32:00,23.555,108.24,4.11 +2016-11-28 05:47:00,24.3425,108.232,4.1 +2016-11-28 06:02:00,24.7375,108.182,4.08 +2016-11-28 06:17:00,23.8887,108.06,4.03 +2016-11-28 06:32:00,23.9887,107.92,4.0 +2016-11-28 06:47:00,24.19,107.84,3.96 +2016-11-28 07:02:00,23.21,107.75,3.95 +2016-11-28 07:17:00,23.5075,107.702,3.95 +2016-11-28 07:32:00,23.7513,107.617,3.94 +2016-11-28 07:47:00,23.165,107.63,3.93 +2016-11-28 08:02:00,24.3925,107.7,3.91 +2016-11-28 08:17:00,25.475,107.747,3.89 +2016-11-28 08:32:00,24.2913,107.83,3.9 +2016-11-28 08:47:00,23.94,107.837,3.87 +2016-11-28 09:02:00,24.8387,107.802,3.86 +2016-11-28 09:17:00,23.845,107.722,3.86 +2016-11-28 09:32:00,23.6038,107.645,3.85 +2016-11-28 09:47:00,23.8487,107.525,3.87 +2016-11-28 10:02:00,25.2825,107.438,3.87 +2016-11-28 10:17:00,24.14,107.38,3.84 +2016-11-28 10:32:00,25.6225,107.427,3.82 +2016-11-28 10:47:00,24.1362,107.485,3.81 +2016-11-28 11:02:00,25.135,107.552,3.81 +2016-11-28 11:17:00,21.6612,107.575,3.8 +2016-11-28 11:32:00,24.09,107.655,3.78 +2016-11-28 11:47:00,24.9925,107.707,3.77 +2016-11-28 12:02:00,22.5362,107.635,3.78 +2016-11-28 12:17:00,25.0375,107.518,3.78 +2016-11-28 12:32:00,24.2887,107.445,3.75 +2016-11-28 12:47:00,24.84,107.3,3.74 +2016-11-28 13:02:00,23.94,107.217,3.71 +2016-11-28 13:17:00,25.3375,107.102,3.69 +2016-11-28 13:32:00,23.8962,107.007,3.69 +2016-11-28 13:47:00,23.6038,106.89,3.67 +2016-11-28 14:02:00,23.7525,106.812,3.65 +2016-11-28 14:17:00,23.75,106.802,3.64 +2016-11-28 14:32:00,24.4938,106.812,3.63 +2016-11-28 14:47:00,24.5462,106.837,3.62 +2016-11-28 15:02:00,23.8925,106.878,3.61 +2016-11-28 15:17:00,22.835,106.927,3.6 +2016-11-28 15:32:00,25.8225,106.955,3.6 +2016-11-28 15:47:00,23.2588,106.995,3.61 +2016-11-28 16:02:00,25.2375,106.865,3.62 +2016-11-28 16:17:00,25.4262,106.755,3.63 +2016-11-28 16:32:00,24.7337,106.61,3.64 +2016-11-28 16:47:00,24.29,106.522,3.66 +2016-11-28 17:02:00,23.7525,106.465,3.67 +2016-11-28 17:17:00,24.6912,106.465,3.7 +2016-11-28 17:32:00,24.4463,106.452,3.72 +2016-11-28 17:47:00,25.1862,106.497,3.73 +2016-11-28 18:02:00,22.7312,106.53,3.73 +2016-11-28 18:17:00,22.88,106.533,3.74 +2016-11-28 18:32:00,24.0887,106.567,3.76 +2016-11-28 18:47:00,24.29,106.565,3.77 +2016-11-28 19:02:00,25.1875,106.48,3.75 +2016-11-28 19:17:00,23.4587,106.397,3.74 +2016-11-28 19:32:00,24.2375,106.255,3.74 +2016-11-28 19:47:00,23.4075,106.192,3.74 +2016-11-28 20:02:00,23.1625,106.162,3.74 +2016-11-28 20:17:00,23.8438,106.16,3.72 +2016-11-28 20:32:00,24.9412,106.197,3.7 +2016-11-28 20:47:00,21.7138,106.202,3.68 +2016-11-28 21:02:00,24.545,106.262,3.66 +2016-11-28 21:17:00,22.6387,106.298,3.63 +2016-11-28 21:32:00,23.555,106.27,3.59 +2016-11-28 21:47:00,23.3037,106.15,3.56 +2016-11-28 22:02:00,23.7025,106.03,3.54 +2016-11-28 22:17:00,25.185,105.915,3.51 +2016-11-28 22:32:00,23.8913,105.822,3.48 +2016-11-28 22:47:00,22.7375,105.798,3.46 +2016-11-28 23:02:00,22.93,105.83,3.44 +2016-11-28 23:17:00,24.3937,105.852,3.42 +2016-11-28 23:32:00,25.14,105.893,3.4 +2016-11-28 23:47:00,22.7337,105.9,3.38 +2016-11-29 00:02:00,23.2125,105.908,3.35 +2016-11-29 00:17:00,25.1875,105.905,3.32 +2016-11-29 00:32:00,24.6375,105.815,3.3 +2016-11-29 00:47:00,23.7525,105.735,3.27 +2016-11-29 01:02:00,23.3125,105.575,3.24 +2016-11-29 01:17:00,24.8838,105.445,3.22 +2016-11-29 01:32:00,22.39,105.378,3.17 +2016-11-29 01:47:00,23.99,105.34,3.14 +2016-11-29 02:02:00,24.5437,105.335,3.1 +2016-11-29 02:17:00,24.0875,105.37,3.08 +2016-11-29 02:32:00,22.6362,105.38,3.05 +2016-11-29 02:47:00,24.2937,105.4,3.02 +2016-11-29 03:02:00,25.2387,105.405,2.97 +2016-11-29 03:17:00,24.9925,105.45,2.93 +2016-11-29 03:32:00,23.845,105.37,2.89 +2016-11-29 03:47:00,22.2438,105.235,2.87 +2016-11-29 04:02:00,25.5238,105.117,2.83 +2016-11-29 04:17:00,24.1387,105.01,2.79 +2016-11-29 04:32:00,23.8962,104.965,2.76 +2016-11-29 04:47:00,23.8463,105.01,2.74 +2016-11-29 05:02:00,23.89,105.03,2.72 +2016-11-29 05:17:00,23.6537,105.062,2.7 +2016-11-29 05:32:00,24.7363,105.097,2.67 +2016-11-29 05:47:00,22.2025,105.13,2.66 +2016-11-29 06:02:00,23.36,105.155,2.64 +2016-11-29 06:17:00,24.1925,105.175,2.61 +2016-11-29 06:32:00,25.5775,105.095,2.6 +2016-11-29 06:47:00,23.9375,105.037,2.6 +2016-11-29 07:02:00,24.8913,104.95,2.57 +2016-11-29 07:17:00,24.4425,104.872,2.56 +2016-11-29 07:32:00,24.3412,104.83,2.54 +2016-11-29 07:47:00,23.4112,104.742,2.52 +2016-11-29 08:02:00,23.6562,104.675,2.52 +2016-11-29 08:17:00,23.9912,104.595,2.5 +2016-11-29 08:32:00,22.16,104.59,2.49 +2016-11-29 08:47:00,24.5887,104.602,2.49 +2016-11-29 09:02:00,24.6862,104.645,2.48 +2016-11-29 09:17:00,24.7375,104.662,2.48 +2016-11-29 09:32:00,24.6362,105.655,2.45 +2016-11-29 09:47:00,24.24,104.503,2.44 +2016-11-29 10:02:00,24.8937,102.685,2.43 +2016-11-29 10:17:00,24.3438,101.382,2.4 +2016-11-29 10:32:00,25.525,100.613,2.41 +2016-11-29 10:47:00,26.205,100.247,2.44 +2016-11-29 11:02:00,23.9875,100.128,2.44 +2016-11-29 11:17:00,24.3913,100.23,2.42 +2016-11-29 11:32:00,22.6375,100.477,2.4 +2016-11-29 11:47:00,23.94,100.798,2.39 +2016-11-29 12:02:00,24.1925,101.16,2.39 +2016-11-29 12:17:00,25.2887,101.515,2.38 +2016-11-29 12:32:00,24.5425,101.885,2.37 +2016-11-29 12:47:00,24.34,102.232,2.35 +2016-11-29 13:02:00,24.5887,102.582,2.33 +2016-11-29 13:17:00,22.3862,102.812,2.32 +2016-11-29 13:32:00,23.8875,102.987,2.3 +2016-11-29 13:47:00,24.24,103.112,2.3 +2016-11-29 14:02:00,22.8288,103.188,2.29 +2016-11-29 14:17:00,24.545,103.357,2.28 +2016-11-29 14:32:00,22.6362,103.592,2.28 +2016-11-29 14:47:00,23.2087,103.798,2.27 +2016-11-29 15:02:00,24.3375,104.057,2.26 +2016-11-29 15:17:00,24.0825,104.302,2.23 +2016-11-29 15:32:00,23.7487,104.477,2.2 +2016-11-29 15:47:00,22.735,104.63,2.21 +2016-11-29 16:02:00,24.3412,104.725,2.23 +2016-11-29 16:17:00,24.685,104.682,2.22 +2016-11-29 16:32:00,23.505,104.605,2.2 +2016-11-29 16:47:00,23.8925,104.48,2.2 +2016-11-29 17:02:00,23.505,104.352,2.2 +2016-11-29 17:17:00,26.1137,104.292,2.2 +2016-11-29 17:32:00,23.655,104.25,2.21 +2016-11-29 17:47:00,24.1413,104.227,2.22 +2016-11-29 18:02:00,24.7925,104.242,2.22 +2016-11-29 18:17:00,24.8375,104.205,2.23 +2016-11-29 18:32:00,24.3925,104.177,2.24 +2016-11-29 18:47:00,25.085,104.125,2.25 +2016-11-29 19:02:00,24.1888,104.022,2.26 +2016-11-29 19:17:00,23.2588,103.837,2.25 +2016-11-29 19:32:00,25.24,103.637,2.25 +2016-11-29 19:47:00,23.99,103.45,2.25 +2016-11-29 20:02:00,25.5238,103.347,2.26 +2016-11-29 20:17:00,23.2138,103.255,2.25 +2016-11-29 20:32:00,24.3875,103.242,2.25 +2016-11-29 20:47:00,23.94,103.25,2.24 +2016-11-29 21:02:00,23.4088,103.25,2.23 +2016-11-29 21:17:00,22.7775,103.302,2.21 +2016-11-29 21:32:00,23.5075,103.3,2.2 +2016-11-29 21:47:00,23.8,103.357,2.19 +2016-11-29 22:02:00,23.0175,103.315,2.17 +2016-11-29 22:17:00,24.3925,103.212,2.15 +2016-11-29 22:32:00,23.8438,103.092,2.15 +2016-11-29 22:47:00,23.94,102.997,2.13 +2016-11-29 23:02:00,25.5275,102.987,2.1 +2016-11-29 23:17:00,24.84,103.055,2.08 +2016-11-29 23:32:00,25.8225,103.097,2.06 +2016-11-29 23:47:00,25.1375,103.2,2.05 +2016-11-30 00:02:00,22.2012,103.277,2.03 +2016-11-30 00:17:00,23.5013,103.37,2.02 +2016-11-30 00:32:00,22.9737,103.462,2.0 +2016-11-30 00:47:00,23.6575,103.562,1.97 +2016-11-30 01:02:00,24.24,103.522,1.95 +2016-11-30 01:17:00,24.9412,103.507,1.92 +2016-11-30 01:32:00,24.295,103.435,1.89 +2016-11-30 01:47:00,23.3075,103.342,1.86 +2016-11-30 02:02:00,24.7363,103.268,1.83 +2016-11-30 02:17:00,24.6837,103.298,1.81 +2016-11-30 02:32:00,24.8363,103.337,1.78 +2016-11-30 02:47:00,25.4725,103.447,1.75 +2016-11-30 03:02:00,24.795,103.562,1.73 +2016-11-30 03:17:00,24.7412,103.673,1.7 +2016-11-30 03:32:00,24.4437,103.783,1.68 +2016-11-30 03:47:00,23.3087,103.887,1.65 +2016-11-30 04:02:00,22.6362,103.87,1.63 +2016-11-30 04:17:00,23.5088,103.79,1.6 +2016-11-30 04:32:00,21.2712,103.745,1.6 +2016-11-30 04:47:00,24.245,103.625,1.58 +2016-11-30 05:02:00,24.4975,103.635,1.58 +2016-11-30 05:17:00,23.2637,103.675,1.55 +2016-11-30 05:32:00,24.6387,103.755,1.54 +2016-11-30 05:47:00,24.5925,103.835,1.55 +2016-11-30 06:02:00,25.3763,103.893,1.52 +2016-11-30 06:17:00,24.735,103.932,1.5 +2016-11-30 06:32:00,23.1637,104.02,1.49 +2016-11-30 06:47:00,24.195,104.065,1.46 +2016-11-30 07:02:00,23.2162,104.018,1.45 +2016-11-30 07:17:00,23.8,103.952,1.44 +2016-11-30 07:32:00,23.2575,103.857,1.45 +2016-11-30 07:47:00,22.8763,103.742,1.46 +2016-11-30 08:02:00,25.6212,103.65,1.46 +2016-11-30 08:17:00,25.8187,103.602,1.46 +2016-11-30 08:32:00,24.24,103.56,1.47 +2016-11-30 08:47:00,25.4287,103.577,1.48 +2016-11-30 09:02:00,23.6562,103.66,1.51 +2016-11-30 09:17:00,23.0675,103.77,1.53 +2016-11-30 09:32:00,24.0875,103.9,1.54 +2016-11-30 09:47:00,23.7962,104.005,1.56 +2016-11-30 10:02:00,24.2387,104.085,1.59 +2016-11-30 10:17:00,23.6038,104.175,1.61 +2016-11-30 10:32:00,25.0437,104.237,1.63 +2016-11-30 10:47:00,23.655,104.197,1.63 +2016-11-30 11:02:00,25.1362,104.102,1.64 +2016-11-30 11:17:00,25.335,103.962,1.66 +2016-11-30 11:32:00,24.2887,103.852,1.66 +2016-11-30 11:47:00,25.235,103.802,1.68 +2016-11-30 12:02:00,24.19,103.815,1.71 +2016-11-30 12:17:00,23.0187,103.815,1.77 +2016-11-30 12:32:00,23.9938,103.807,1.81 +2016-11-30 12:47:00,24.0375,103.885,1.81 +2016-11-30 13:02:00,25.4775,103.955,1.81 +2016-11-30 13:17:00,23.36,104.03,1.82 +2016-11-30 13:32:00,24.2887,104.132,1.82 +2016-11-30 13:47:00,23.845,104.102,1.81 +2016-11-30 14:02:00,23.9388,104.007,1.8 +2016-11-30 14:17:00,24.2375,103.875,1.79 +2016-11-30 14:32:00,22.6875,103.61,1.8 +2016-11-30 14:47:00,24.4475,103.43,1.81 +2016-11-30 15:02:00,22.6362,103.227,1.82 +2016-11-30 15:17:00,23.605,103.027,1.82 +2016-11-30 15:32:00,23.4088,102.802,1.84 +2016-11-30 15:47:00,24.1375,102.562,1.86 +2016-11-30 16:02:00,23.9388,102.27,1.89 +2016-11-30 16:17:00,23.6087,101.975,1.91 +2016-11-30 16:32:00,23.3138,101.71,1.9 +2016-11-30 16:47:00,24.64,101.4,1.92 +2016-11-30 17:02:00,23.7513,101.007,1.94 +2016-11-30 17:17:00,25.335,100.658,1.97 +2016-11-30 17:32:00,22.4388,100.32,2.0 +2016-11-30 17:47:00,23.5062,100.075,2.04 +2016-11-30 18:02:00,22.4388,99.95,2.08 +2016-11-30 18:17:00,23.46,99.8575,2.12 +2016-11-30 18:32:00,24.5,99.8425,2.15 +2016-11-30 18:47:00,23.2575,99.8875,2.18 +2016-11-30 19:02:00,23.6562,99.91,2.18 +2016-11-30 19:17:00,21.9112,99.96,2.19 +2016-11-30 19:32:00,23.46,100.022,2.21 +2016-11-30 19:47:00,24.5887,99.98,2.24 +2016-11-30 20:02:00,24.0912,99.955,2.27 +2016-11-30 20:17:00,23.7525,99.9075,2.27 +2016-11-30 20:32:00,22.6825,99.9275,2.28 +2016-11-30 20:47:00,21.2237,100.02,2.31 +2016-11-30 21:02:00,21.22,100.15,2.34 +2016-11-30 21:17:00,24.6875,100.357,2.36 +2016-11-30 21:32:00,22.2012,100.533,2.37 +2016-11-30 21:47:00,23.755,100.762,2.37 +2016-11-30 22:02:00,23.705,100.982,2.38 +2016-11-30 22:17:00,23.8012,101.182,2.38 +2016-11-30 22:32:00,22.7325,101.24,2.4 +2016-11-30 22:47:00,23.46,101.3,2.4 +2016-11-30 23:02:00,23.4112,101.315,2.39 +2016-11-30 23:17:00,23.2138,101.32,2.4 +2016-11-30 23:32:00,23.845,101.375,2.4 +2016-11-30 23:47:00,24.3463,101.447,2.42 +2016-12-01 00:02:00,24.6937,101.635,2.42 +2016-12-01 00:17:00,24.1413,101.81,2.44 +2016-12-01 00:32:00,22.4412,101.977,2.45 +2016-12-01 00:47:00,23.755,102.137,2.45 +2016-12-01 01:02:00,24.29,102.315,2.45 +2016-12-01 01:17:00,23.5088,102.507,2.46 +2016-12-01 01:32:00,22.7787,102.595,2.46 +2016-12-01 01:47:00,23.215,102.587,2.47 +2016-12-01 02:02:00,22.4875,102.54,2.48 +2016-12-01 02:17:00,23.0662,102.533,2.5 +2016-12-01 02:32:00,23.1625,102.505,2.5 +2016-12-01 02:47:00,22.9275,102.637,2.49 +2016-12-01 03:02:00,23.36,102.792,2.49 +2016-12-01 03:17:00,23.505,102.955,2.5 +2016-12-01 03:32:00,22.4887,103.08,2.52 +2016-12-01 03:47:00,23.7537,103.225,2.52 +2016-12-01 04:02:00,24.5925,103.345,2.53 +2016-12-01 04:17:00,22.3375,103.395,2.55 +2016-12-01 04:32:00,23.795,103.378,2.56 +2016-12-01 04:47:00,23.3625,103.33,2.57 +2016-12-01 05:02:00,25.1862,103.272,2.59 +2016-12-01 05:17:00,24.3425,103.22,2.6 +2016-12-01 05:32:00,24.5938,103.355,2.61 +2016-12-01 05:47:00,23.8475,103.505,2.63 +2016-12-01 06:02:00,23.4088,103.68,2.65 +2016-12-01 06:17:00,22.7812,103.88,2.67 +2016-12-01 06:32:00,22.3862,104.08,2.66 +2016-12-01 06:47:00,23.8925,104.147,2.68 +2016-12-01 07:02:00,22.3412,104.175,2.68 +2016-12-01 07:17:00,23.5587,104.192,2.7 +2016-12-01 07:32:00,23.5575,104.23,2.71 +2016-12-01 07:47:00,24.8387,104.245,2.72 +2016-12-01 08:02:00,23.2125,104.255,2.75 +2016-12-01 08:17:00,23.845,104.31,2.77 +2016-12-01 08:32:00,23.2087,104.39,2.8 +2016-12-01 08:47:00,24.0362,104.495,2.82 +2016-12-01 09:02:00,23.5062,104.577,2.84 +2016-12-01 09:17:00,24.3425,104.777,2.88 +2016-12-01 09:32:00,24.7375,104.87,2.89 +2016-12-01 09:47:00,22.3887,104.967,2.9 +2016-12-01 10:02:00,24.29,105.015,2.93 +2016-12-01 10:17:00,24.5437,105.022,2.96 +2016-12-01 10:32:00,24.085,104.917,2.98 +2016-12-01 10:47:00,23.1162,104.802,3.01 +2016-12-01 11:02:00,22.8312,104.707,3.03 +2016-12-01 11:17:00,23.7562,104.727,3.04 +2016-12-01 11:32:00,21.6137,104.722,3.06 +2016-12-01 11:47:00,22.9737,104.805,3.09 +2016-12-01 12:02:00,23.8925,104.947,3.12 +2016-12-01 12:17:00,25.1375,105.042,3.14 +2016-12-01 12:32:00,23.0212,105.12,3.14 +2016-12-01 12:47:00,22.295,105.217,3.16 +2016-12-01 13:02:00,23.2188,105.245,3.17 +2016-12-01 13:17:00,23.66,105.253,3.2 +2016-12-01 13:32:00,22.8325,105.152,3.21 +2016-12-01 13:47:00,23.8913,105.11,3.22 +2016-12-01 14:02:00,24.1912,105.065,3.24 +2016-12-01 14:17:00,21.9088,105.128,3.25 +2016-12-01 14:32:00,21.22,105.212,3.27 +2016-12-01 14:47:00,22.8312,105.335,3.3 +2016-12-01 15:02:00,23.0238,105.475,3.31 +2016-12-01 15:17:00,22.5362,105.637,3.31 +2016-12-01 15:32:00,22.1588,105.765,3.32 +2016-12-01 15:47:00,22.3875,105.93,3.36 +2016-12-01 16:02:00,24.6875,106.02,3.38 +2016-12-01 16:17:00,23.41,106.042,3.39 +2016-12-01 16:32:00,21.9175,106.092,3.41 +2016-12-01 16:47:00,21.7188,106.085,3.44 +2016-12-01 17:02:00,24.2438,106.24,3.47 +2016-12-01 17:17:00,22.9287,106.365,3.49 +2016-12-01 17:32:00,23.8438,106.585,3.51 +2016-12-01 17:47:00,23.7975,106.802,3.54 +2016-12-01 18:02:00,23.9425,107.08,3.55 +2016-12-01 18:17:00,23.8463,107.3,3.56 +2016-12-01 18:32:00,24.24,107.522,3.6 +2016-12-01 18:47:00,22.3475,107.768,3.62 +2016-12-01 19:02:00,23.7525,107.96,3.65 +2016-12-01 19:17:00,22.1562,108.027,3.66 +2016-12-01 19:32:00,22.7825,108.052,3.69 +2016-12-01 19:47:00,22.5338,108.057,3.71 +2016-12-01 20:02:00,23.3063,108.112,3.75 +2016-12-01 20:17:00,25.0925,108.262,3.77 +2016-12-01 20:32:00,23.1675,108.447,3.79 +2016-12-01 20:47:00,23.2675,108.64,3.81 +2016-12-01 21:02:00,23.5112,108.895,3.82 +2016-12-01 21:17:00,23.89,109.01,3.84 +2016-12-01 21:32:00,22.9762,109.152,3.85 +2016-12-01 21:47:00,22.8312,109.24,3.87 +2016-12-01 22:02:00,22.295,109.225,3.88 +2016-12-01 22:17:00,22.8775,109.162,3.89 +2016-12-01 22:32:00,22.9337,109.092,3.89 +2016-12-01 22:47:00,22.3925,108.91,3.9 +2016-12-01 23:02:00,23.6575,108.872,3.93 +2016-12-01 23:17:00,24.495,108.94,3.95 +2016-12-01 23:32:00,23.7525,109.007,3.96 +2016-12-01 23:47:00,23.41,109.048,3.96 +2016-12-02 00:02:00,22.88,109.107,3.97 +2016-12-02 00:17:00,23.3138,109.097,3.96 +2016-12-02 00:32:00,23.4637,109.12,3.97 +2016-12-02 00:47:00,21.865,109.195,3.99 +2016-12-02 01:02:00,23.5575,109.102,4.0 +2016-12-02 01:17:00,24.495,108.965,4.02 +2016-12-02 01:32:00,23.6562,108.75,4.03 +2016-12-02 01:47:00,21.765,108.63,4.03 +2016-12-02 02:02:00,24.1375,108.455,4.05 +2016-12-02 02:17:00,25.0425,108.302,4.06 +2016-12-02 02:32:00,22.25,108.425,4.08 +2016-12-02 02:47:00,22.2475,108.6,4.11 +2016-12-02 03:02:00,23.75,108.78,4.15 +2016-12-02 03:17:00,22.6387,108.878,4.19 +2016-12-02 03:32:00,23.7038,108.912,4.2 +2016-12-02 03:47:00,23.9425,108.807,4.21 +2016-12-02 04:02:00,24.1437,108.605,4.18 +2016-12-02 04:17:00,23.995,108.302,4.18 +2016-12-02 04:32:00,23.9925,108.09,4.19 +2016-12-02 04:47:00,22.3475,107.74,4.22 +2016-12-02 05:02:00,23.1663,107.482,4.25 +2016-12-02 05:17:00,22.93,107.212,4.22 +2016-12-02 05:32:00,25.1912,106.945,4.2 +2016-12-02 05:47:00,22.2988,106.705,4.18 +2016-12-02 06:02:00,24.7462,106.442,4.14 +2016-12-02 06:17:00,22.9788,106.19,4.11 +2016-12-02 06:32:00,24.5912,105.932,4.11 +2016-12-02 06:47:00,21.6137,105.697,4.09 +2016-12-02 07:02:00,22.6837,105.48,4.1 +2016-12-02 07:17:00,23.5112,105.28,4.11 +2016-12-02 07:32:00,22.7825,105.005,4.09 +2016-12-02 07:47:00,24.7913,104.727,4.1 +2016-12-02 08:02:00,24.945,104.395,4.11 +2016-12-02 08:17:00,22.6437,104.29,4.12 +2016-12-02 08:32:00,24.04,104.21,4.13 +2016-12-02 08:47:00,25.0925,104.17,4.12 +2016-12-02 09:02:00,22.49,104.18,4.12 +2016-12-02 09:17:00,22.685,104.24,4.13 +2016-12-02 09:32:00,22.8787,104.287,4.13 +2016-12-02 09:47:00,24.55,104.25,4.13 +2016-12-02 10:02:00,23.6113,104.235,4.14 +2016-12-02 10:17:00,23.1162,104.22,4.15 +2016-12-02 10:32:00,22.7312,104.192,4.14 +2016-12-02 10:47:00,23.0687,104.215,4.14 +2016-12-02 11:02:00,22.055,104.317,4.17 +2016-12-02 11:17:00,23.5563,104.423,4.16 +2016-12-02 11:32:00,22.2937,104.512,4.15 +2016-12-02 11:47:00,24.7425,104.577,4.14 +2016-12-02 12:02:00,24.6425,104.67,4.14 +2016-12-02 12:17:00,24.5887,104.742,4.12 +2016-12-02 12:32:00,22.93,104.807,4.11 +2016-12-02 12:47:00,23.115,104.857,4.09 +2016-12-02 13:02:00,23.3637,104.965,4.07 +2016-12-02 13:17:00,21.715,105.085,4.07 +2016-12-02 13:32:00,23.7113,105.195,4.07 +2016-12-02 13:47:00,23.2663,105.242,4.06 +2016-12-02 14:02:00,23.4112,105.315,4.04 +2016-12-02 14:17:00,23.41,105.312,4.02 +2016-12-02 14:32:00,24.545,105.33,4.01 +2016-12-02 14:47:00,25.2375,105.515,4.0 +2016-12-02 15:02:00,22.6888,105.697,3.99 +2016-12-02 15:17:00,21.7663,105.88,3.96 +2016-12-02 15:32:00,24.245,106.055,3.96 +2016-12-02 15:47:00,22.8363,106.305,3.94 +2016-12-02 16:02:00,23.7062,106.577,3.93 +2016-12-02 16:17:00,23.4587,106.862,3.94 +2016-12-02 16:32:00,23.6062,107.165,3.93 +2016-12-02 16:47:00,23.4112,107.472,3.93 +2016-12-02 17:02:00,22.3925,107.747,3.94 +2016-12-02 17:17:00,23.9475,107.957,3.95 +2016-12-02 17:32:00,25.1912,108.115,3.95 +2016-12-02 17:47:00,23.7988,108.24,3.94 +2016-12-02 18:02:00,22.8812,108.36,3.94 +2016-12-02 18:17:00,23.0187,108.495,3.94 +2016-12-02 18:32:00,23.315,108.62,3.96 +2016-12-02 18:47:00,21.465,108.765,3.96 +2016-12-02 19:02:00,23.3613,108.905,3.95 +2016-12-02 19:17:00,23.2213,109.035,3.95 +2016-12-02 19:32:00,22.635,109.173,3.96 +2016-12-02 19:47:00,24.5462,109.27,3.97 +2016-12-02 20:02:00,20.9212,109.322,3.97 +2016-12-02 20:17:00,23.845,109.325,3.96 +2016-12-02 20:32:00,23.7062,109.272,3.95 +2016-12-02 20:47:00,23.8,109.192,3.94 +2016-12-02 21:02:00,22.9788,109.105,3.94 +2016-12-02 21:17:00,23.7087,109.067,3.93 +2016-12-02 21:32:00,23.6575,109.082,3.91 +2016-12-02 21:47:00,23.02,109.1,3.91 +2016-12-02 22:02:00,23.3625,109.13,3.9 +2016-12-02 22:17:00,22.2038,109.137,3.9 +2016-12-02 22:32:00,23.025,109.155,3.91 +2016-12-02 22:47:00,22.8337,109.155,3.88 +2016-12-02 23:02:00,23.465,109.158,3.88 +2016-12-02 23:17:00,23.5638,109.095,3.88 +2016-12-02 23:32:00,23.9912,108.987,3.87 +2016-12-02 23:47:00,22.7825,108.827,3.86 +2016-12-03 00:02:00,23.605,108.677,3.84 +2016-12-03 00:17:00,21.6175,108.57,3.82 +2016-12-03 00:32:00,25.2363,108.548,3.8 +2016-12-03 00:47:00,23.5125,108.545,3.78 +2016-12-03 01:02:00,24.595,108.552,3.77 +2016-12-03 01:17:00,23.8037,108.58,3.73 +2016-12-03 01:32:00,23.41,108.6,3.7 +2016-12-03 01:47:00,23.945,108.645,3.67 +2016-12-03 02:02:00,24.0912,108.61,3.64 +2016-12-03 02:17:00,24.79,108.545,3.62 +2016-12-03 02:32:00,23.2113,108.438,3.58 +2016-12-03 02:47:00,24.045,108.317,3.55 +2016-12-03 03:02:00,22.545,108.253,3.52 +2016-12-03 03:17:00,22.7363,108.215,3.5 +2016-12-03 03:32:00,23.1663,108.237,3.47 +2016-12-03 03:47:00,24.395,108.283,3.45 +2016-12-03 04:02:00,23.1162,108.345,3.43 +2016-12-03 04:17:00,23.3613,108.397,3.4 +2016-12-03 04:32:00,23.5587,108.465,3.4 +2016-12-03 04:47:00,23.2637,108.53,3.38 +2016-12-03 05:02:00,22.3,108.54,3.36 +2016-12-03 05:17:00,23.0675,108.505,3.33 +2016-12-03 05:32:00,24.545,108.43,3.31 +2016-12-03 05:47:00,23.46,108.322,3.32 +2016-12-03 06:02:00,21.815,108.215,3.3 +2016-12-03 06:17:00,25.2363,108.202,3.29 +2016-12-03 06:32:00,22.205,108.237,3.28 +2016-12-03 06:47:00,23.415,108.283,3.25 +2016-12-03 07:02:00,23.02,108.357,3.24 +2016-12-03 07:17:00,24.0938,108.425,3.24 +2016-12-03 07:32:00,24.74,108.477,3.24 +2016-12-03 07:47:00,24.69,108.51,3.24 +2016-12-03 08:02:00,23.8438,108.49,3.24 +2016-12-03 08:17:00,23.46,108.408,3.23 +2016-12-03 08:32:00,23.3138,108.357,3.23 +2016-12-03 08:47:00,23.1663,108.295,3.24 +2016-12-03 09:02:00,23.0238,108.23,3.24 +2016-12-03 09:17:00,25.3812,108.202,3.25 +2016-12-03 09:32:00,25.0887,108.14,3.25 +2016-12-03 09:47:00,24.4425,108.102,3.25 +2016-12-03 10:02:00,22.8288,108.13,3.27 +2016-12-03 10:17:00,23.4637,108.185,3.27 +2016-12-03 10:32:00,21.565,108.232,3.28 +2016-12-03 10:47:00,24.8387,108.28,3.28 +2016-12-03 11:02:00,22.8312,108.427,3.27 +2016-12-03 11:17:00,23.4125,108.605,3.28 +2016-12-03 11:32:00,25.43,108.78,3.29 +2016-12-03 11:47:00,22.5875,108.885,3.31 +2016-12-03 12:02:00,24.0338,108.872,3.31 +2016-12-03 12:17:00,23.31,108.775,3.31 +2016-12-03 12:32:00,22.4425,108.655,3.32 +2016-12-03 12:47:00,23.6062,108.582,3.32 +2016-12-03 13:02:00,23.4562,108.542,3.32 +2016-12-03 13:17:00,24.8862,108.562,3.33 +2016-12-03 13:32:00,22.535,108.597,3.33 +2016-12-03 13:47:00,24.2375,108.652,3.35 +2016-12-03 14:02:00,24.1963,108.692,3.35 +2016-12-03 14:17:00,21.1263,108.717,3.35 +2016-12-03 14:32:00,23.2588,108.768,3.35 +2016-12-03 14:47:00,23.41,108.802,3.35 +2016-12-03 15:02:00,24.3412,108.745,3.35 +2016-12-03 15:17:00,24.4925,108.64,3.36 +2016-12-03 15:32:00,24.24,108.515,3.37 +2016-12-03 15:47:00,23.6588,108.39,3.39 +2016-12-03 16:02:00,24.9475,108.352,3.39 +2016-12-03 16:17:00,23.515,108.36,3.39 +2016-12-03 16:32:00,23.2113,108.397,3.38 +2016-12-03 16:47:00,22.2962,108.442,3.4 +2016-12-03 17:02:00,24.7887,108.52,3.41 +2016-12-03 17:17:00,23.1637,108.555,3.42 +2016-12-03 17:32:00,23.94,108.59,3.43 +2016-12-03 17:47:00,24.0887,108.597,3.44 +2016-12-03 18:02:00,23.7562,108.552,3.44 +2016-12-03 18:17:00,24.5963,108.462,3.45 +2016-12-03 18:32:00,25.6212,108.33,3.46 +2016-12-03 18:47:00,23.8438,108.207,3.47 +2016-12-03 19:02:00,24.1937,108.17,3.48 +2016-12-03 19:17:00,23.2138,108.188,3.49 +2016-12-03 19:32:00,24.3925,108.245,3.5 +2016-12-03 19:47:00,23.8975,108.287,3.51 +2016-12-03 20:02:00,23.755,108.33,3.52 +2016-12-03 20:17:00,23.0225,108.357,3.5 +2016-12-03 20:32:00,24.6875,108.395,3.47 +2016-12-03 20:47:00,25.4775,108.337,3.46 +2016-12-03 21:02:00,23.215,108.262,3.44 +2016-12-03 21:17:00,22.2025,108.132,3.44 +2016-12-03 21:32:00,24.395,108.012,3.41 +2016-12-03 21:47:00,22.835,107.962,3.39 +2016-12-03 22:02:00,22.6413,107.942,3.38 +2016-12-03 22:17:00,23.8,107.962,3.38 +2016-12-03 22:32:00,24.9887,108.025,3.36 +2016-12-03 22:47:00,23.7537,108.077,3.34 +2016-12-03 23:02:00,23.795,108.14,3.34 +2016-12-03 23:17:00,24.085,108.192,3.33 +2016-12-03 23:32:00,24.0925,108.217,3.31 +2016-12-03 23:47:00,22.6413,108.162,3.3 +2016-12-04 00:02:00,24.0387,108.07,3.27 +2016-12-04 00:17:00,22.9775,107.94,3.23 +2016-12-04 00:32:00,22.9287,107.837,3.21 +2016-12-04 00:47:00,23.7513,107.783,3.19 +2016-12-04 01:02:00,23.5075,107.777,3.18 +2016-12-04 01:17:00,23.8913,107.795,3.14 +2016-12-04 01:32:00,24.0925,107.837,3.1 +2016-12-04 01:47:00,23.8025,107.875,3.09 +2016-12-04 02:02:00,24.0863,107.952,3.06 +2016-12-04 02:17:00,24.195,107.987,3.02 +2016-12-04 02:32:00,23.36,108.042,3.0 +2016-12-04 02:47:00,23.4125,108.045,2.95 +2016-12-04 03:02:00,22.8275,107.972,2.92 +2016-12-04 03:17:00,22.9788,107.887,2.9 +2016-12-04 03:32:00,22.395,107.777,2.89 +2016-12-04 03:47:00,25.525,107.71,2.86 +2016-12-04 04:02:00,21.9112,107.695,2.81 +2016-12-04 04:17:00,24.6888,107.717,2.79 +2016-12-04 04:32:00,24.5413,107.768,2.77 +2016-12-04 04:47:00,25.09,107.812,2.75 +2016-12-04 05:02:00,23.7012,107.872,2.72 +2016-12-04 05:17:00,23.1188,107.952,2.69 +2016-12-04 05:32:00,22.3937,107.985,2.68 +2016-12-04 05:47:00,23.0687,107.942,2.66 +2016-12-04 06:02:00,24.39,107.862,2.65 +2016-12-04 06:17:00,23.6075,107.72,2.64 +2016-12-04 06:32:00,21.715,107.625,2.61 +2016-12-04 06:47:00,23.0662,107.572,2.58 +2016-12-04 07:02:00,24.2425,107.592,2.57 +2016-12-04 07:17:00,24.6912,107.658,2.57 +2016-12-04 07:32:00,23.4137,107.762,2.57 +2016-12-04 07:47:00,22.9762,107.857,2.55 +2016-12-04 08:02:00,22.9262,107.895,2.54 +2016-12-04 08:17:00,24.9912,107.872,2.53 +2016-12-04 08:32:00,25.2875,107.825,2.54 +2016-12-04 08:47:00,25.1387,107.735,2.53 +2016-12-04 09:02:00,24.6425,107.66,2.52 +2016-12-04 09:17:00,26.3075,107.6,2.53 +2016-12-04 09:32:00,24.195,107.595,2.53 +2016-12-04 09:47:00,23.7513,107.643,2.53 +2016-12-04 10:02:00,25.2363,107.71,2.53 +2016-12-04 10:17:00,24.5437,107.772,2.53 +2016-12-04 10:32:00,23.5563,107.842,2.52 +2016-12-04 10:47:00,25.2925,107.923,2.51 +2016-12-04 11:02:00,22.835,107.977,2.5 +2016-12-04 11:17:00,24.69,107.97,2.5 +2016-12-04 11:32:00,23.7038,107.92,2.49 +2016-12-04 11:47:00,22.2925,107.82,2.49 +2016-12-04 12:02:00,25.14,107.688,2.49 +2016-12-04 12:17:00,23.8438,107.592,2.49 +2016-12-04 12:32:00,23.02,107.58,2.5 +2016-12-04 12:47:00,23.0225,107.62,2.49 +2016-12-04 13:02:00,24.8925,107.677,2.48 +2016-12-04 13:17:00,24.2913,107.757,2.47 +2016-12-04 13:32:00,22.6837,107.795,2.46 +2016-12-04 13:47:00,23.5563,107.84,2.47 +2016-12-04 14:02:00,25.625,107.895,2.46 +2016-12-04 14:17:00,24.9938,107.867,2.44 +2016-12-04 14:32:00,25.5788,107.765,2.43 +2016-12-04 14:47:00,23.6113,107.617,2.43 +2016-12-04 15:02:00,23.26,107.442,2.42 +2016-12-04 15:17:00,25.1875,107.298,2.4 +2016-12-04 15:32:00,23.9425,107.205,2.4 +2016-12-04 15:47:00,22.0088,107.177,2.38 +2016-12-04 16:02:00,23.5587,107.197,2.38 +2016-12-04 16:17:00,24.84,107.197,2.38 +2016-12-04 16:32:00,24.74,107.212,2.39 +2016-12-04 16:47:00,24.3988,107.217,2.39 +2016-12-04 17:02:00,24.645,107.212,2.4 +2016-12-04 17:17:00,23.1663,107.17,2.4 +2016-12-04 17:32:00,23.215,107.067,2.4 +2016-12-04 17:47:00,24.5437,106.92,2.41 +2016-12-04 18:02:00,23.6062,106.737,2.42 +2016-12-04 18:17:00,23.705,106.605,2.41 +2016-12-04 18:32:00,23.8962,106.527,2.41 +2016-12-04 18:47:00,24.0938,106.503,2.42 +2016-12-04 19:02:00,24.9912,106.49,2.42 +2016-12-04 19:17:00,25.8712,106.482,2.43 +2016-12-04 19:32:00,23.9412,106.485,2.42 +2016-12-04 19:47:00,24.1925,106.5,2.41 +2016-12-04 20:02:00,24.7887,106.485,2.4 +2016-12-04 20:17:00,23.6087,106.427,2.4 +2016-12-04 20:32:00,22.9337,106.298,2.39 +2016-12-04 20:47:00,23.9925,106.158,2.38 +2016-12-04 21:02:00,24.6888,106.015,2.36 +2016-12-04 21:17:00,23.9412,105.902,2.35 +2016-12-04 21:32:00,24.2937,105.867,2.34 +2016-12-04 21:47:00,23.7975,105.86,2.33 +2016-12-04 22:02:00,24.0863,105.87,2.31 +2016-12-04 22:17:00,25.5775,105.908,2.28 +2016-12-04 22:32:00,23.1663,105.94,2.25 +2016-12-04 22:47:00,23.5563,105.962,2.23 +2016-12-04 23:02:00,24.1888,105.987,2.21 +2016-12-04 23:17:00,25.82,106.003,2.19 +2016-12-04 23:32:00,24.8363,105.96,2.16 +2016-12-04 23:47:00,23.1137,105.81,2.13 +2016-12-05 00:02:00,24.1925,105.697,2.1 +2016-12-05 00:17:00,25.1912,105.567,2.09 +2016-12-05 00:32:00,23.9875,105.51,2.07 +2016-12-05 00:47:00,26.0175,105.5,2.05 +2016-12-05 01:02:00,25.5762,105.57,2.02 +2016-12-05 01:17:00,24.6888,105.66,1.99 +2016-12-05 01:32:00,23.7025,105.71,1.97 +2016-12-05 01:47:00,23.7975,105.805,1.94 +2016-12-05 02:02:00,24.9425,105.88,1.9 +2016-12-05 02:17:00,23.5638,105.905,1.87 +2016-12-05 02:32:00,23.21,105.855,1.83 +2016-12-05 02:47:00,24.0875,105.79,1.79 +2016-12-05 03:02:00,24.2412,105.66,1.75 +2016-12-05 03:17:00,24.735,105.557,1.73 +2016-12-05 03:32:00,24.9412,105.535,1.69 +2016-12-05 03:47:00,24.845,105.577,1.65 +2016-12-05 04:02:00,24.89,105.65,1.62 +2016-12-05 04:17:00,24.0863,105.69,1.59 +2016-12-05 04:32:00,25.1875,105.742,1.57 +2016-12-05 04:47:00,26.205,105.787,1.54 +2016-12-05 05:02:00,24.1387,105.84,1.51 +2016-12-05 05:17:00,23.655,105.825,1.48 +2016-12-05 05:32:00,24.9875,105.757,1.46 +2016-12-05 05:47:00,25.4775,105.643,1.44 +2016-12-05 06:02:00,25.3875,105.54,1.42 +2016-12-05 06:17:00,24.735,105.44,1.4 +2016-12-05 06:32:00,25.9175,105.34,1.38 +2016-12-05 06:47:00,23.1125,105.257,1.37 +2016-12-05 07:02:00,24.9388,105.173,1.35 +2016-12-05 07:17:00,24.445,105.132,1.33 +2016-12-05 07:32:00,23.655,105.137,1.3 +2016-12-05 07:47:00,24.6413,105.205,1.27 +2016-12-05 08:02:00,25.235,105.29,1.26 +2016-12-05 08:17:00,25.2363,105.415,1.26 +2016-12-05 08:32:00,24.94,105.515,1.26 +2016-12-05 08:47:00,25.0875,105.582,1.23 +2016-12-05 09:02:00,26.895,105.635,1.22 +2016-12-05 09:17:00,24.9388,105.65,1.21 +2016-12-05 09:32:00,26.1137,105.65,1.19 +2016-12-05 09:47:00,24.6413,105.512,1.19 +2016-12-05 10:02:00,23.2625,105.35,1.18 +2016-12-05 10:17:00,24.6413,105.158,1.17 +2016-12-05 10:32:00,25.8712,104.975,1.16 +2016-12-05 10:47:00,24.14,104.887,1.15 +2016-12-05 11:02:00,25.3763,104.83,1.16 +2016-12-05 11:17:00,23.995,104.812,1.15 +2016-12-05 11:32:00,24.1925,104.855,1.15 +2016-12-05 11:47:00,23.705,104.862,1.12 +2016-12-05 12:02:00,24.9388,104.893,1.11 +2016-12-05 12:17:00,24.6338,104.895,1.11 +2016-12-05 12:32:00,25.3337,104.85,1.1 +2016-12-05 12:47:00,24.6912,104.747,1.09 +2016-12-05 13:02:00,24.2913,104.587,1.1 +2016-12-05 13:17:00,24.7387,104.367,1.09 +2016-12-05 13:32:00,25.9713,104.207,1.08 +2016-12-05 13:47:00,23.7962,104.117,1.08 +2016-12-05 14:02:00,24.0362,104.072,1.07 +2016-12-05 14:17:00,24.6362,104.035,1.06 +2016-12-05 14:32:00,24.7875,104.027,1.05 +2016-12-05 14:47:00,24.4938,104.022,1.04 +2016-12-05 15:02:00,24.3387,104.003,1.04 +2016-12-05 15:17:00,25.04,104.025,1.01 +2016-12-05 15:32:00,24.345,103.965,0.98 +2016-12-05 15:47:00,24.9887,103.83,0.97 +2016-12-05 16:02:00,23.89,103.617,0.97 +2016-12-05 16:17:00,24.2887,103.427,0.97 +2016-12-05 16:32:00,26.5025,103.262,0.96 +2016-12-05 16:47:00,26.4512,103.21,0.95 +2016-12-05 17:02:00,26.1637,103.175,0.95 +2016-12-05 17:17:00,25.4262,103.162,0.94 +2016-12-05 17:32:00,25.67,103.188,0.95 +2016-12-05 17:47:00,25.185,103.165,0.95 +2016-12-05 18:02:00,25.24,103.16,0.96 +2016-12-05 18:17:00,24.0375,103.147,0.98 +2016-12-05 18:32:00,23.21,103.095,0.99 +2016-12-05 18:47:00,24.6888,102.975,1.0 +2016-12-05 19:02:00,24.145,102.83,0.99 +2016-12-05 19:17:00,25.2913,102.655,0.99 +2016-12-05 19:32:00,25.775,102.522,1.0 +2016-12-05 19:47:00,24.685,102.462,1.0 +2016-12-05 20:02:00,24.8937,102.472,1.01 +2016-12-05 20:17:00,24.495,102.472,1.0 +2016-12-05 20:32:00,24.3887,102.49,0.99 +2016-12-05 20:47:00,24.45,102.542,0.98 +2016-12-05 21:02:00,25.5287,102.575,0.98 +2016-12-05 21:17:00,26.7,102.607,0.96 +2016-12-05 21:32:00,23.5563,102.59,0.93 +2016-12-05 21:47:00,23.4587,102.51,0.9 +2016-12-05 22:02:00,24.4425,102.352,0.88 +2016-12-05 22:17:00,23.55,102.2,0.86 +2016-12-05 22:32:00,23.6012,102.1,0.84 +2016-12-05 22:47:00,24.2937,102.077,0.83 +2016-12-05 23:02:00,25.4788,102.12,0.8 +2016-12-05 23:17:00,25.5225,102.167,0.77 +2016-12-05 23:32:00,24.79,102.227,0.76 +2016-12-05 23:47:00,24.7363,102.302,0.74 +2016-12-06 00:02:00,23.94,102.362,0.72 +2016-12-06 00:17:00,24.0375,102.442,0.7 +2016-12-06 00:32:00,24.9425,102.452,0.68 +2016-12-06 00:47:00,24.1437,102.425,0.66 +2016-12-06 01:02:00,25.8688,102.34,0.64 +2016-12-06 01:17:00,25.2887,102.24,0.63 +2016-12-06 01:32:00,23.7937,102.155,0.62 +2016-12-06 01:47:00,24.1362,102.177,0.59 +2016-12-06 02:02:00,24.735,102.227,0.57 +2016-12-06 02:17:00,24.4412,102.295,0.56 +2016-12-06 02:32:00,23.9925,102.382,0.54 +2016-12-06 02:47:00,23.31,102.477,0.51 +2016-12-06 03:02:00,26.02,102.565,0.46 +2016-12-06 03:17:00,25.5262,102.647,0.42 +2016-12-06 03:32:00,24.3425,102.707,0.41 +2016-12-06 03:47:00,26.5525,102.695,0.38 +2016-12-06 04:02:00,23.7988,102.655,0.36 +2016-12-06 04:17:00,25.9688,102.58,0.34 +2016-12-06 04:32:00,25.09,102.5,0.33 +2016-12-06 04:47:00,24.2363,102.5,0.3 +2016-12-06 05:02:00,26.0662,102.55,0.3 +2016-12-06 05:17:00,24.9388,102.628,0.29 +2016-12-06 05:32:00,24.99,102.722,0.25 +2016-12-06 05:47:00,23.89,102.807,0.25 +2016-12-06 06:02:00,25.5725,102.915,0.26 +2016-12-06 06:17:00,23.99,102.938,0.27 +2016-12-06 06:32:00,24.5887,102.925,0.28 +2016-12-06 06:47:00,25.8688,102.897,0.27 +2016-12-06 07:02:00,24.885,102.84,0.25 +2016-12-06 07:17:00,24.7325,102.762,0.26 +2016-12-06 07:32:00,25.285,102.705,0.27 +2016-12-06 07:47:00,23.8425,102.628,0.26 +2016-12-06 08:02:00,25.3337,102.587,0.25 +2016-12-06 08:17:00,24.6875,102.63,0.26 +2016-12-06 08:32:00,24.9362,102.705,0.28 +2016-12-06 08:47:00,23.5525,102.775,0.31 +2016-12-06 09:02:00,26.015,102.825,0.34 +2016-12-06 09:17:00,24.2887,102.932,0.33 +2016-12-06 09:32:00,24.1338,103.025,0.32 +2016-12-06 09:47:00,24.8337,103.097,0.37 +2016-12-06 10:02:00,24.9925,103.107,0.41 +2016-12-06 10:17:00,26.4,103.062,0.41 +2016-12-06 10:32:00,24.835,102.985,0.43 +2016-12-06 10:47:00,26.1137,102.91,0.43 +2016-12-06 11:02:00,25.1862,102.91,0.43 +2016-12-06 11:17:00,26.1125,102.97,0.44 +2016-12-06 11:32:00,26.395,103.042,0.46 +2016-12-06 11:47:00,25.625,103.135,0.46 +2016-12-06 12:02:00,25.4275,103.253,0.45 +2016-12-06 12:17:00,24.3875,103.365,0.46 +2016-12-06 12:32:00,24.2387,103.485,0.48 +2016-12-06 12:47:00,23.7937,103.59,0.5 +2016-12-06 13:02:00,24.4425,103.64,0.5 +2016-12-06 13:17:00,24.34,103.615,0.5 +2016-12-06 13:32:00,25.0387,103.55,0.5 +2016-12-06 13:47:00,23.9437,103.472,0.5 +2016-12-06 14:02:00,24.945,103.455,0.5 +2016-12-06 14:17:00,24.495,103.46,0.5 +2016-12-06 14:32:00,24.29,103.52,0.5 +2016-12-06 14:47:00,24.8875,103.572,0.5 +2016-12-06 15:02:00,25.4725,103.597,0.52 +2016-12-06 15:17:00,24.635,103.625,0.52 +2016-12-06 15:32:00,25.14,103.63,0.52 +2016-12-06 15:47:00,25.965,103.602,0.51 +2016-12-06 16:02:00,25.0887,103.52,0.53 +2016-12-06 16:17:00,24.785,103.36,0.55 +2016-12-06 16:32:00,24.6862,103.145,0.58 +2016-12-06 16:47:00,24.7387,102.947,0.59 +2016-12-06 17:02:00,25.5187,102.805,0.6 +2016-12-06 17:17:00,24.8375,102.735,0.63 +2016-12-06 17:32:00,24.6875,102.652,0.66 +2016-12-06 17:47:00,25.9225,102.582,0.7 +2016-12-06 18:02:00,24.6387,102.565,0.73 +2016-12-06 18:17:00,24.8875,102.518,0.76 +2016-12-06 18:32:00,24.3412,102.47,0.78 +2016-12-06 18:47:00,25.77,102.393,0.82 +2016-12-06 19:02:00,26.3,102.255,0.86 +2016-12-06 19:17:00,23.655,102.085,0.89 +2016-12-06 19:32:00,23.07,101.88,0.9 +2016-12-06 19:47:00,25.0413,101.707,0.94 +2016-12-06 20:02:00,24.2913,101.575,0.98 +2016-12-06 20:17:00,23.555,101.507,1.01 +2016-12-06 20:32:00,25.7237,101.455,1.02 +2016-12-06 20:47:00,24.5887,101.423,1.04 +2016-12-06 21:02:00,25.1362,101.397,1.06 +2016-12-06 21:17:00,25.7262,101.382,1.06 +2016-12-06 21:32:00,25.1425,101.335,1.08 +2016-12-06 21:47:00,24.2425,101.295,1.1 +2016-12-06 22:02:00,24.4962,101.143,1.1 +2016-12-06 22:17:00,24.3412,100.965,1.09 +2016-12-06 22:32:00,23.7038,100.745,1.08 +2016-12-06 22:47:00,23.8438,100.51,1.07 +2016-12-06 23:02:00,26.16,100.337,1.08 +2016-12-06 23:17:00,24.7925,100.247,1.05 +2016-12-06 23:32:00,24.89,100.195,1.04 +2016-12-06 23:47:00,24.6437,100.13,1.05 +2016-12-07 00:02:00,23.7525,100.097,1.04 +2016-12-07 00:17:00,24.5925,100.04,1.04 +2016-12-07 00:32:00,24.0413,99.9825,1.03 +2016-12-07 00:47:00,24.1925,99.87,1.02 +2016-12-07 01:02:00,23.7087,99.675,1.01 +2016-12-07 01:17:00,24.9925,99.4425,1.01 +2016-12-07 01:32:00,24.89,99.23,1.01 +2016-12-07 01:47:00,24.2425,99.0375,1.0 +2016-12-07 02:02:00,26.3562,98.895,0.98 +2016-12-07 02:17:00,24.7387,98.7925,0.97 +2016-12-07 02:32:00,22.585,98.735,0.96 +2016-12-07 02:47:00,24.995,98.65,0.95 +2016-12-07 03:02:00,25.0413,98.6125,0.95 +2016-12-07 03:17:00,23.125,98.5325,0.93 +2016-12-07 03:32:00,23.7537,98.445,0.91 +2016-12-07 03:47:00,25.4737,98.3075,0.91 +2016-12-07 04:02:00,25.0387,98.11,0.92 +2016-12-07 04:17:00,25.775,97.8675,0.93 +2016-12-07 04:32:00,24.3913,97.6025,0.92 +2016-12-07 04:47:00,24.7425,97.415,0.89 +2016-12-07 05:02:00,22.9788,97.2725,0.87 +2016-12-07 05:17:00,24.5925,97.1875,0.85 +2016-12-07 05:32:00,24.1375,97.1175,0.85 +2016-12-07 05:47:00,23.7087,97.0225,0.85 +2016-12-07 06:02:00,25.0413,96.9375,0.85 +2016-12-07 06:17:00,23.8512,96.8325,0.83 +2016-12-07 06:32:00,24.6425,96.6725,0.82 +2016-12-07 06:47:00,25.9725,96.515,0.81 +2016-12-07 07:02:00,25.3838,96.325,0.8 +2016-12-07 07:17:00,25.0425,96.1425,0.8 +2016-12-07 07:32:00,23.655,95.9775,0.8 +2016-12-07 07:47:00,24.0413,95.8,0.8 +2016-12-07 08:02:00,23.7525,95.6475,0.83 +2016-12-07 08:17:00,25.4775,95.52,0.84 +2016-12-07 08:32:00,23.755,95.4575,0.83 +2016-12-07 08:47:00,25.3387,95.3925,0.84 +2016-12-07 09:02:00,24.9975,95.37,0.85 +2016-12-07 09:17:00,26.8012,95.3325,0.87 +2016-12-07 09:32:00,24.5938,95.26,0.89 +2016-12-07 09:47:00,24.6387,95.2175,0.91 +2016-12-07 10:02:00,26.3538,95.095,0.92 +2016-12-07 10:17:00,23.4125,94.945,0.92 +2016-12-07 10:32:00,26.6562,94.7325,0.93 +2016-12-07 10:47:00,23.85,94.5275,0.95 +2016-12-07 11:02:00,23.8425,94.3825,0.99 +2016-12-07 11:17:00,24.0387,94.3275,1.02 +2016-12-07 11:32:00,24.94,94.255,1.03 +2016-12-07 11:47:00,25.0375,94.2425,1.05 +2016-12-07 12:02:00,23.2575,94.2425,1.08 +2016-12-07 12:17:00,24.395,94.2275,1.1 +2016-12-07 12:32:00,25.4325,94.205,1.11 +2016-12-07 12:47:00,24.64,94.2125,1.12 +2016-12-07 13:02:00,25.6738,94.175,1.13 +2016-12-07 13:17:00,25.0912,94.03,1.15 +2016-12-07 13:32:00,26.505,93.87,1.15 +2016-12-07 13:47:00,25.8275,93.6675,1.14 +2016-12-07 14:02:00,25.19,93.51,1.14 +2016-12-07 14:17:00,25.6787,93.4225,1.14 +2016-12-07 14:32:00,24.995,93.4175,1.15 +2016-12-07 14:47:00,24.84,93.4275,1.15 +2016-12-07 15:02:00,24.5875,93.44,1.15 +2016-12-07 15:17:00,24.5437,93.4825,1.14 +2016-12-07 15:32:00,24.6912,93.5325,1.12 +2016-12-07 15:47:00,23.7962,93.58,1.13 +2016-12-07 16:02:00,25.5287,93.58,1.15 +2016-12-07 16:17:00,25.9737,93.5225,1.15 +2016-12-07 16:32:00,25.1425,93.4425,1.15 +2016-12-07 16:47:00,23.6562,93.345,1.16 +2016-12-07 17:02:00,25.2375,93.28,1.18 +2016-12-07 17:17:00,22.9262,93.2675,1.2 +2016-12-07 17:32:00,24.9925,93.305,1.21 +2016-12-07 17:47:00,25.9187,93.3425,1.22 +2016-12-07 18:02:00,25.4337,93.405,1.24 +2016-12-07 18:17:00,23.4137,93.4375,1.25 +2016-12-07 18:32:00,24.5887,93.4425,1.27 +2016-12-07 18:47:00,24.6338,93.3875,1.28 +2016-12-07 19:02:00,26.2062,93.2425,1.3 +2016-12-07 19:17:00,24.345,92.9675,1.33 +2016-12-07 19:32:00,23.795,92.635,1.36 +2016-12-07 19:47:00,24.7925,92.23,1.4 +2016-12-07 20:02:00,24.545,91.83,1.42 +2016-12-07 20:17:00,24.1925,91.4725,1.44 +2016-12-07 20:32:00,23.505,91.1375,1.48 +2016-12-07 20:47:00,25.0863,90.79,1.51 +2016-12-07 21:02:00,26.0187,90.4475,1.53 +2016-12-07 21:17:00,24.8875,90.155,1.55 +2016-12-07 21:32:00,24.6862,89.8675,1.56 +2016-12-07 21:47:00,23.7113,89.595,1.57 +2016-12-07 22:02:00,26.0175,89.2825,1.6 +2016-12-07 22:17:00,24.3412,88.945,1.61 +2016-12-07 22:32:00,23.655,88.59,1.62 +2016-12-07 22:47:00,24.8887,88.2375,1.63 +2016-12-07 23:02:00,24.79,87.995,1.64 +2016-12-07 23:17:00,23.7525,87.8425,1.66 +2016-12-07 23:32:00,25.1437,87.77,1.68 +2016-12-07 23:47:00,25.4788,87.71,1.69 +2016-12-08 00:02:00,26.2562,87.67,1.7 +2016-12-08 00:17:00,25.5275,87.6875,1.71 +2016-12-08 00:32:00,24.7412,87.71,1.72 +2016-12-08 00:47:00,25.575,87.7525,1.74 +2016-12-08 01:02:00,25.04,87.7325,1.75 +2016-12-08 01:17:00,26.7537,87.665,1.76 +2016-12-08 01:32:00,23.9437,87.5625,1.79 +2016-12-08 01:47:00,24.3988,87.4725,1.81 +2016-12-08 02:02:00,25.1875,87.395,1.82 +2016-12-08 02:17:00,23.02,87.38,1.85 +2016-12-08 02:32:00,24.99,87.4475,1.88 +2016-12-08 02:47:00,25.235,87.5375,1.92 +2016-12-08 03:02:00,24.2412,87.6425,1.93 +2016-12-08 03:17:00,25.7775,87.7325,1.92 +2016-12-08 03:32:00,23.265,87.8425,1.91 +2016-12-08 03:47:00,23.8012,87.945,1.89 +2016-12-08 04:02:00,24.4938,87.995,1.88 +2016-12-08 04:17:00,25.2375,87.975,1.89 +2016-12-08 04:32:00,24.84,87.9275,1.89 +2016-12-08 04:47:00,24.1925,87.8775,1.89 +2016-12-08 05:02:00,23.5088,87.9025,1.88 +2016-12-08 05:17:00,24.4,88.0,1.87 +2016-12-08 05:32:00,24.0925,88.115,1.87 +2016-12-08 05:47:00,24.3975,88.21,1.87 +2016-12-08 06:02:00,25.2375,88.3175,1.88 +2016-12-08 06:17:00,23.4625,88.43,1.88 +2016-12-08 06:30:58,26.4075,88.55,1.86 +2016-12-08 06:47:00,23.4112,88.6,1.85 +2016-12-08 07:02:00,23.61,88.585,1.83 +2016-12-08 07:17:00,24.8937,88.5325,1.83 +2016-12-08 07:32:00,23.705,88.455,1.81 +2016-12-08 07:47:00,23.6562,88.365,1.81 +2016-12-08 08:02:00,24.1925,88.315,1.82 +2016-12-08 08:17:00,26.5088,88.315,1.84 +2016-12-08 08:32:00,23.415,88.3475,1.87 +2016-12-08 08:47:00,23.9938,88.44,1.89 +2016-12-08 09:02:00,25.1387,88.59,1.91 +2016-12-08 09:17:00,25.1912,88.775,1.93 +2016-12-08 09:32:00,22.7825,88.925,1.96 +2016-12-08 09:47:00,24.495,89.0425,1.99 +2016-12-08 10:02:00,24.745,89.16,2.03 +2016-12-08 10:17:00,25.3887,89.28,2.07 +2016-12-08 10:32:00,24.6888,89.3825,2.1 +2016-12-08 10:47:00,25.8225,89.435,2.13 +2016-12-08 11:02:00,23.115,89.405,2.18 +2016-12-08 11:17:00,25.725,89.355,2.23 +2016-12-08 11:32:00,22.7375,89.26,2.24 +2016-12-08 11:47:00,25.8237,89.1875,2.23 +2016-12-08 12:02:00,24.0462,89.2,2.22 +2016-12-08 12:17:00,23.9463,89.275,2.23 +2016-12-08 12:32:00,26.605,89.3825,2.26 +2016-12-08 12:47:00,23.6075,89.5225,2.32 +2016-12-08 13:02:00,24.3925,89.655,2.35 +2016-12-08 13:17:00,25.6237,89.8,2.37 +2016-12-08 13:32:00,25.3337,89.895,2.36 +2016-12-08 13:47:00,23.9925,89.9325,2.36 +2016-12-08 14:02:00,24.5013,89.9325,2.37 +2016-12-08 14:17:00,24.4437,89.8975,2.4 +2016-12-08 14:32:00,24.7375,89.8875,2.43 +2016-12-08 14:47:00,24.6888,89.9275,2.43 +2016-12-08 15:02:00,24.6912,89.9825,2.42 +2016-12-08 15:17:00,24.3962,90.095,2.42 +2016-12-08 15:32:00,25.335,90.2025,2.43 +2016-12-08 15:47:00,23.9425,90.3325,2.44 +2016-12-08 16:02:00,24.2487,90.455,2.46 +2016-12-08 16:17:00,24.9925,90.5275,2.47 +2016-12-08 16:32:00,26.305,90.555,2.48 +2016-12-08 16:47:00,26.1625,90.56,2.48 +2016-12-08 17:02:00,24.9938,90.53,2.49 +2016-12-08 17:17:00,25.7738,90.5075,2.5 +2016-12-08 17:32:00,24.345,90.5325,2.52 +2016-12-08 17:47:00,23.5575,90.5875,2.54 +2016-12-08 18:02:00,25.9725,90.645,2.56 +2016-12-08 18:17:00,24.6912,90.7225,2.59 +2016-12-08 18:32:00,24.545,90.805,2.62 +2016-12-08 18:47:00,23.7062,90.895,2.63 +2016-12-08 19:02:00,22.7825,90.94,2.65 +2016-12-08 19:17:00,25.29,90.955,2.68 +2016-12-08 19:32:00,25.3825,90.9275,2.7 +2016-12-08 19:47:00,24.5488,90.8725,2.74 +2016-12-08 20:02:00,23.2637,90.8625,2.77 +2016-12-08 20:17:00,26.0225,90.8525,2.79 +2016-12-08 20:32:00,23.7537,90.895,2.8 +2016-12-08 20:47:00,25.9725,90.9425,2.81 +2016-12-08 21:02:00,25.575,90.985,2.82 +2016-12-08 21:17:00,23.4112,91.06,2.84 +2016-12-08 21:32:00,25.1425,91.12,2.86 +2016-12-08 21:47:00,23.8525,91.12,2.88 +2016-12-08 22:02:00,24.545,91.095,2.87 +2016-12-08 22:17:00,24.9437,91.015,2.88 +2016-12-08 22:32:00,25.8725,90.9325,2.9 +2016-12-08 22:47:00,26.0175,90.9,2.92 +2016-12-08 23:02:00,23.7475,90.89,2.93 +2016-12-08 23:17:00,26.6075,90.9025,2.94 +2016-12-08 23:32:00,23.9962,90.9325,2.95 +2016-12-08 23:47:00,24.64,90.97,2.96 +2016-12-09 00:02:00,23.9925,91.0225,2.97 +2016-12-09 00:17:00,26.1625,91.02,2.97 +2016-12-09 00:32:00,24.4925,90.9575,2.97 +2016-12-09 00:47:00,24.5475,90.8925,2.97 +2016-12-09 01:02:00,25.3375,90.84,2.99 +2016-12-09 01:17:00,23.8975,90.7575,3.01 +2016-12-09 01:32:00,24.0912,90.725,3.04 +2016-12-09 01:47:00,23.6062,90.7275,3.05 +2016-12-09 02:02:00,25.09,90.76,3.05 +2016-12-09 02:17:00,25.0387,90.7975,3.07 +2016-12-09 02:32:00,24.19,90.855,3.08 +2016-12-09 02:47:00,22.9737,90.9325,3.08 +2016-12-09 03:02:00,25.6762,90.9825,3.1 +2016-12-09 03:17:00,25.5788,90.995,3.11 +2016-12-09 03:32:00,22.0112,90.95,3.11 +2016-12-09 03:47:00,22.7325,90.8925,3.14 +2016-12-09 04:02:00,25.9675,90.805,3.17 +2016-12-09 04:17:00,22.5875,90.74,3.17 +2016-12-09 04:32:00,24.7887,90.73,3.17 +2016-12-09 04:47:00,22.7838,90.7675,3.18 +2016-12-09 05:02:00,24.4475,90.8225,3.18 +2016-12-09 05:17:00,24.9512,90.9025,3.19 +2016-12-09 05:32:00,24.3387,91.0025,3.18 +2016-12-09 05:47:00,21.7138,91.065,3.17 +2016-12-09 06:02:00,24.7875,91.12,3.17 +2016-12-09 06:17:00,25.3363,91.095,3.17 +2016-12-09 06:32:00,25.2862,91.025,3.16 +2016-12-09 06:47:00,25.0462,90.9125,3.15 +2016-12-09 07:02:00,24.5013,90.82,3.13 +2016-12-09 07:17:00,24.3937,90.7475,3.12 +2016-12-09 07:32:00,25.0887,90.74,3.12 +2016-12-09 07:47:00,25.5762,90.7875,3.13 +2016-12-09 08:02:00,24.8412,90.8375,3.12 +2016-12-09 08:17:00,24.7412,90.865,3.1 +2016-12-09 08:32:00,24.0362,90.8675,3.11 +2016-12-09 08:47:00,25.68,90.865,3.12 +2016-12-09 09:02:00,24.8937,90.7525,3.13 +2016-12-09 09:17:00,24.2925,90.67,3.15 +2016-12-09 09:32:00,23.845,90.6175,3.16 +2016-12-09 09:47:00,23.8925,90.6275,3.19 +2016-12-09 10:02:00,26.0225,90.695,3.22 +2016-12-09 10:17:00,26.21,90.76,3.26 +2016-12-09 10:32:00,24.6425,90.8225,3.29 +2016-12-09 10:47:00,24.8425,90.905,3.31 +2016-12-09 11:02:00,24.4487,90.9775,3.32 +2016-12-09 11:17:00,24.6413,90.965,3.34 +2016-12-09 11:32:00,25.0413,90.91,3.37 +2016-12-09 11:47:00,25.185,90.7875,3.41 +2016-12-09 12:02:00,25.09,90.7125,3.44 +2016-12-09 12:17:00,25.1413,90.645,3.49 +2016-12-09 12:32:00,22.0625,90.62,3.57 +2016-12-09 12:47:00,24.745,90.665,3.62 +2016-12-09 13:02:00,23.16,90.7075,3.65 +2016-12-09 13:17:00,23.1625,90.77,3.68 +2016-12-09 13:32:00,24.7875,90.825,3.72 +2016-12-09 13:47:00,23.165,90.8675,3.77 +2016-12-09 14:02:00,24.3463,90.8475,3.79 +2016-12-09 14:17:00,24.5963,90.7925,3.8 +2016-12-09 14:32:00,24.6963,90.6725,3.81 +2016-12-09 14:47:00,25.7812,90.51,3.82 +2016-12-09 15:02:00,23.26,90.3725,3.81 +2016-12-09 15:17:00,25.82,90.325,3.8 +2016-12-09 15:32:00,24.1413,90.3225,3.81 +2016-12-09 15:47:00,25.335,90.37,3.83 +2016-12-09 16:02:00,23.2625,90.4275,3.84 +2016-12-09 16:17:00,24.0437,90.485,3.85 +2016-12-09 16:32:00,25.9737,90.5225,3.85 +2016-12-09 16:47:00,24.4962,90.56,3.87 +2016-12-09 17:02:00,24.09,90.51,3.89 +2016-12-09 17:17:00,23.1663,90.45,3.9 +2016-12-09 17:32:00,24.7913,90.2825,3.91 +2016-12-09 17:47:00,22.7862,90.14,3.92 +2016-12-09 18:02:00,23.1675,90.0325,3.95 +2016-12-09 18:17:00,24.7475,90.0025,3.98 +2016-12-09 18:32:00,23.2637,90.015,4.02 +2016-12-09 18:47:00,23.5575,90.0625,4.06 +2016-12-09 19:02:00,25.675,90.13,4.09 +2016-12-09 19:17:00,22.2025,90.2125,4.12 +2016-12-09 19:32:00,24.2425,90.245,4.16 +2016-12-09 19:47:00,24.345,90.2125,4.2 +2016-12-09 20:02:00,23.7113,90.1425,4.23 +2016-12-09 20:17:00,23.165,90.0525,4.26 +2016-12-09 20:32:00,24.5925,89.9725,4.28 +2016-12-09 20:47:00,23.2588,89.895,4.3 +2016-12-09 21:02:00,24.545,89.8875,4.31 +2016-12-09 21:17:00,23.115,89.9275,4.32 +2016-12-09 21:32:00,23.6562,89.985,4.32 +2016-12-09 21:47:00,24.54,90.0675,4.32 +2016-12-09 22:02:00,24.2937,90.1175,4.32 +2016-12-09 22:17:00,23.8037,90.205,4.32 +2016-12-09 22:32:00,23.3613,90.2075,4.34 +2016-12-09 22:47:00,23.8463,90.16,4.34 +2016-12-09 23:02:00,25.4287,90.07,4.36 +2016-12-09 23:17:00,23.9425,89.965,4.37 +2016-12-09 23:32:00,24.8913,89.8525,4.38 +2016-12-09 23:47:00,23.1175,89.7525,4.39 +2016-12-10 00:02:00,23.51,89.7075,4.41 +2016-12-10 00:17:00,21.8637,89.6825,4.43 +2016-12-10 00:32:00,24.495,89.6425,4.44 +2016-12-10 00:47:00,25.0912,89.6125,4.43 +2016-12-10 01:02:00,24.6912,89.5325,4.42 +2016-12-10 01:17:00,22.9775,89.4625,4.43 +2016-12-10 01:32:00,23.895,89.255,4.43 +2016-12-10 01:47:00,24.0425,88.9925,4.45 +2016-12-10 02:02:00,22.3925,88.7275,4.45 +2016-12-10 02:17:00,24.2425,88.395,4.47 +2016-12-10 02:32:00,24.5912,88.08,4.49 +2016-12-10 02:47:00,20.9713,87.8325,4.52 +2016-12-10 03:02:00,24.3962,87.5975,4.54 +2016-12-10 03:17:00,22.9762,87.42,4.54 +2016-12-10 03:32:00,25.1437,87.235,4.55 +2016-12-10 03:47:00,21.82,87.0775,4.57 +2016-12-10 04:02:00,24.6475,86.9175,4.59 +2016-12-10 04:17:00,22.54,86.7275,4.61 +2016-12-10 04:32:00,22.2525,86.5025,4.6 +2016-12-10 04:47:00,24.2937,86.2575,4.61 +2016-12-10 05:02:00,23.5563,86.0425,4.63 +2016-12-10 05:17:00,24.7375,85.89,4.65 +2016-12-10 05:32:00,23.515,85.865,4.68 +2016-12-10 05:47:00,24.0912,85.87,4.7 +2016-12-10 06:02:00,22.4875,85.945,4.71 +2016-12-10 06:17:00,22.245,86.05,4.73 +2016-12-10 06:32:00,23.6525,86.19,4.74 +2016-12-10 06:47:00,21.765,86.25,4.75 +2016-12-10 07:02:00,23.6062,86.2475,4.74 +2016-12-10 07:17:00,23.8962,86.2175,4.72 +2016-12-10 07:32:00,24.3438,86.2,4.7 +2016-12-10 07:47:00,24.4975,86.1625,4.7 +2016-12-10 08:02:00,23.6562,86.1175,4.74 +2016-12-10 08:17:00,23.8925,86.1475,4.75 +2016-12-10 08:32:00,21.9587,86.1925,4.76 +2016-12-10 08:47:00,23.26,86.2425,4.77 +2016-12-10 09:02:00,24.24,86.35,4.78 +2016-12-10 09:17:00,23.8037,86.505,4.79 +2016-12-10 09:32:00,23.1162,86.6975,4.8 +2016-12-10 09:47:00,22.8288,86.885,4.81 +2016-12-10 10:02:00,23.605,87.0725,4.81 +2016-12-10 10:17:00,23.4613,87.2275,4.83 +2016-12-10 10:32:00,22.7325,87.34,4.87 +2016-12-10 10:47:00,22.7825,87.4075,4.89 +2016-12-10 11:02:00,24.14,87.44,4.89 +2016-12-10 11:17:00,23.8025,87.4025,4.91 +2016-12-10 11:32:00,23.4137,87.3725,4.94 +2016-12-10 11:47:00,23.9875,87.4025,4.98 +2016-12-10 12:02:00,23.26,87.49,4.98 +2016-12-10 12:17:00,23.7513,87.5825,4.98 +2016-12-10 12:32:00,22.3887,87.7175,4.99 +2016-12-10 12:47:00,22.975,87.86,5.01 +2016-12-10 13:02:00,24.5975,87.975,5.02 +2016-12-10 13:17:00,22.7337,88.0325,5.04 +2016-12-10 13:32:00,22.9275,88.0525,5.05 +2016-12-10 13:47:00,22.2038,88.0575,5.05 +2016-12-10 14:02:00,22.5912,88.0925,5.06 +2016-12-10 14:17:00,21.515,88.1125,5.08 +2016-12-10 14:32:00,23.8925,88.13,5.09 +2016-12-10 14:47:00,23.5075,88.175,5.08 +2016-12-10 15:02:00,23.7575,88.21,5.1 +2016-12-10 15:17:00,23.7087,88.2775,5.09 +2016-12-10 15:32:00,22.155,88.3475,5.09 +2016-12-10 15:47:00,24.6875,88.415,5.09 +2016-12-10 16:02:00,24.2925,88.46,5.09 +2016-12-10 16:17:00,23.895,88.5,5.11 +2016-12-10 16:32:00,22.44,88.5075,5.14 +2016-12-10 16:47:00,23.9938,88.4875,5.16 +2016-12-10 17:02:00,23.6087,88.47,5.18 +2016-12-10 17:17:00,22.5375,88.465,5.19 +2016-12-10 17:32:00,24.945,88.495,5.21 +2016-12-10 17:47:00,23.6562,88.5625,5.22 +2016-12-10 18:02:00,24.3925,88.6575,5.25 +2016-12-10 18:17:00,23.36,88.775,5.26 +2016-12-10 18:32:00,22.83,88.9275,5.27 +2016-12-10 18:47:00,21.6212,89.0775,5.27 +2016-12-10 19:02:00,21.8675,89.24,5.29 +2016-12-10 19:17:00,23.7038,89.405,5.3 +2016-12-10 19:32:00,23.6038,89.545,5.32 +2016-12-10 19:47:00,23.1637,89.7275,5.33 +2016-12-10 20:02:00,24.9412,89.9525,5.35 +2016-12-10 20:17:00,23.2637,90.205,5.38 +2016-12-10 20:32:00,23.3112,90.4675,5.41 +2016-12-10 20:47:00,23.2138,90.745,5.44 +2016-12-10 21:02:00,23.7988,91.035,5.47 +2016-12-10 21:17:00,23.115,91.32,5.48 +2016-12-10 21:32:00,24.1387,91.57,5.5 +2016-12-10 21:47:00,24.0375,91.8225,5.54 +2016-12-10 22:02:00,23.8925,92.0375,5.58 +2016-12-10 22:17:00,22.2475,92.2475,5.61 +2016-12-10 22:32:00,22.8337,92.45,5.62 +2016-12-10 22:47:00,21.5175,92.64,5.63 +2016-12-10 23:02:00,22.8312,92.82,5.65 +2016-12-10 23:17:00,24.7925,92.99,5.66 +2016-12-10 23:32:00,23.2612,93.1225,5.66 +2016-12-10 23:47:00,22.44,93.25,5.68 +2016-12-11 00:02:00,24.4437,93.36,5.7 +2016-12-11 00:17:00,24.3937,93.4175,5.7 +2016-12-11 00:32:00,22.8812,93.425,5.71 +2016-12-11 00:47:00,22.735,93.39,5.73 +2016-12-11 01:02:00,22.1588,93.315,5.73 +2016-12-11 01:17:00,24.24,93.2325,5.73 +2016-12-11 01:32:00,22.9775,93.155,5.74 +2016-12-11 01:47:00,24.5912,93.05,5.75 +2016-12-11 02:02:00,25.0387,92.975,5.76 +2016-12-11 02:17:00,22.6888,92.875,5.76 +2016-12-11 02:32:00,21.67,92.795,5.76 +2016-12-11 02:47:00,23.0238,92.7225,5.76 +2016-12-11 03:02:00,23.4125,92.615,5.76 +2016-12-11 03:17:00,23.1162,92.465,5.78 +2016-12-11 03:32:00,23.4613,92.3025,5.81 +2016-12-11 03:47:00,22.585,92.0875,5.82 +2016-12-11 04:02:00,24.495,91.8925,5.83 +2016-12-11 04:17:00,23.4137,91.73,5.86 +2016-12-11 04:32:00,22.7387,91.6025,5.87 +2016-12-11 04:47:00,22.2925,91.4925,5.87 +2016-12-11 05:02:00,23.655,91.4525,5.86 +2016-12-11 05:17:00,23.4538,91.4375,5.87 +2016-12-11 05:32:00,23.2575,91.43,5.89 +2016-12-11 05:47:00,24.1387,91.485,5.94 +2016-12-11 06:02:00,23.3112,91.5325,5.99 +2016-12-11 06:17:00,22.4887,91.555,6.0 +2016-12-11 06:32:00,24.3937,91.56,6.0 +2016-12-11 06:47:00,22.975,91.5275,5.98 +2016-12-11 07:02:00,24.2925,91.4925,5.95 +2016-12-11 07:17:00,23.8425,91.4325,5.94 +2016-12-11 07:32:00,25.9175,91.415,5.93 +2016-12-11 07:47:00,24.1937,91.4375,5.94 +2016-12-11 08:02:00,24.9938,91.415,5.97 +2016-12-11 08:17:00,24.3475,91.405,5.98 +2016-12-11 08:32:00,23.655,91.325,6.01 +2016-12-11 08:47:00,23.9912,91.33,6.01 +2016-12-11 09:02:00,23.0687,91.3175,6.0 +2016-12-11 09:17:00,21.6162,91.2725,6.01 +2016-12-11 09:32:00,23.505,91.355,6.03 +2016-12-11 09:47:00,23.5075,91.3575,6.06 +2016-12-11 10:02:00,22.49,91.4125,6.09 +2016-12-11 10:17:00,23.215,91.435,6.1 +2016-12-11 10:32:00,23.02,91.46,6.12 +2016-12-11 10:47:00,23.605,91.4425,6.15 +2016-12-11 11:02:00,21.5137,91.4625,6.19 +2016-12-11 11:17:00,24.5425,91.49,6.21 +2016-12-11 11:32:00,23.3613,91.475,6.22 +2016-12-11 11:47:00,23.7975,91.4375,6.23 +2016-12-11 12:02:00,24.7425,91.3225,6.25 +2016-12-11 12:17:00,24.0362,91.175,6.28 +2016-12-11 12:32:00,22.4875,91.015,6.29 +2016-12-11 12:47:00,23.2612,90.875,6.29 +2016-12-11 13:02:00,22.9287,90.77,6.3 +2016-12-11 13:17:00,23.1175,90.7025,6.3 +2016-12-11 13:32:00,23.9412,90.725,6.32 +2016-12-11 13:47:00,22.785,90.72,6.34 +2016-12-11 14:02:00,22.16,90.72,6.37 +2016-12-11 14:17:00,23.89,90.7325,6.39 +2016-12-11 14:32:00,22.0075,90.7075,6.4 +2016-12-11 14:47:00,23.75,90.605,6.39 +2016-12-11 15:02:00,24.3412,90.535,6.4 +2016-12-11 15:17:00,21.2725,90.4325,6.39 +2016-12-11 15:32:00,23.1663,90.35,6.4 +2016-12-11 15:47:00,22.1612,90.285,6.4 +2016-12-11 16:02:00,22.59,90.275,6.39 +2016-12-11 16:17:00,24.0863,90.3025,6.39 +2016-12-11 16:32:00,23.5563,90.3475,6.39 +2016-12-11 16:47:00,23.7062,90.3975,6.4 +2016-12-11 17:02:00,23.51,90.47,6.41 +2016-12-11 17:17:00,22.0088,90.5375,6.42 +2016-12-11 17:32:00,22.6462,90.565,6.43 +2016-12-11 17:47:00,23.8975,90.5525,6.42 +2016-12-11 18:02:00,22.1525,90.52,6.43 +2016-12-11 18:17:00,23.6575,90.5,6.43 +2016-12-11 18:32:00,23.31,90.47,6.45 +2016-12-11 18:47:00,23.505,90.5,6.46 +2016-12-11 19:02:00,23.36,90.5675,6.46 +2016-12-11 19:17:00,23.415,90.6275,6.46 +2016-12-11 19:32:00,24.2487,90.7075,6.46 +2016-12-11 19:47:00,23.0675,90.7825,6.47 +2016-12-11 20:02:00,23.9412,90.855,6.48 +2016-12-11 20:17:00,23.7962,90.87,6.49 +2016-12-11 20:32:00,23.555,90.8475,6.49 +2016-12-11 20:47:00,23.6087,90.83,6.48 +2016-12-11 21:02:00,21.8125,90.7675,6.49 +2016-12-11 21:17:00,23.5112,90.74,6.51 +2016-12-11 21:32:00,22.2975,90.79,6.52 +2016-12-11 21:47:00,25.3375,90.835,6.54 +2016-12-11 22:02:00,22.4388,90.8975,6.55 +2016-12-11 22:17:00,23.555,90.9825,6.56 +2016-12-11 22:32:00,22.2925,91.0875,6.56 +2016-12-11 22:47:00,24.5925,91.125,6.55 +2016-12-11 23:02:00,23.8975,91.2075,6.54 +2016-12-11 23:17:00,23.415,91.215,6.52 +2016-12-11 23:32:00,24.845,91.1775,6.51 +2016-12-11 23:47:00,23.5088,91.1575,6.51 +2016-12-12 00:02:00,23.4562,91.12,6.52 +2016-12-12 00:17:00,23.5537,91.13,6.52 +2016-12-12 00:32:00,24.7862,91.14,6.51 +2016-12-12 00:47:00,24.89,91.205,6.51 +2016-12-12 01:02:00,21.6188,91.2725,6.52 +2016-12-12 01:17:00,23.5587,91.365,6.52 +2016-12-12 01:32:00,22.735,91.4325,6.52 +2016-12-12 01:47:00,22.345,91.4525,6.51 +2016-12-12 02:02:00,23.5575,91.4325,6.51 +2016-12-12 02:17:00,24.5437,91.355,6.52 +2016-12-12 02:32:00,22.01,91.2925,6.51 +2016-12-12 02:47:00,23.61,91.2,6.51 +2016-12-12 03:02:00,22.685,91.1575,6.51 +2016-12-12 03:17:00,22.83,91.13,6.5 +2016-12-12 03:32:00,22.0088,91.1425,6.51 +2016-12-12 03:47:00,21.3225,91.2025,6.51 +2016-12-12 04:02:00,23.0212,91.2475,6.51 +2016-12-12 04:17:00,23.9425,91.2725,6.51 +2016-12-12 04:32:00,21.9125,91.3175,6.51 +2016-12-12 04:47:00,23.46,91.3025,6.51 +2016-12-12 05:02:00,23.6062,91.255,6.51 +2016-12-12 05:17:00,24.69,91.22,6.52 +2016-12-12 05:32:00,24.29,91.1425,6.55 +2016-12-12 05:47:00,21.5638,91.105,6.57 +2016-12-12 06:02:00,22.155,91.0725,6.58 +2016-12-12 06:17:00,23.0212,91.0675,6.59 +2016-12-12 06:32:00,22.7862,91.1075,6.59 +2016-12-12 06:47:00,23.4637,91.1475,6.6 +2016-12-12 07:02:00,22.6413,91.205,6.58 +2016-12-12 07:17:00,24.4987,91.265,6.57 +2016-12-12 07:32:00,21.3712,91.33,6.57 +2016-12-12 07:47:00,24.29,91.415,6.6 +2016-12-12 08:02:00,24.395,91.53,6.64 +2016-12-12 08:17:00,22.6387,91.7275,6.63 +2016-12-12 08:32:00,25.245,91.92,6.64 +2016-12-12 08:47:00,24.195,92.1025,6.63 +2016-12-12 09:02:00,25.4313,92.2875,6.62 +2016-12-12 09:17:00,23.6562,92.4625,6.64 +2016-12-12 09:32:00,24.7425,92.6025,6.62 +2016-12-12 09:47:00,24.8913,92.7225,6.61 +2016-12-12 10:02:00,24.995,92.7975,6.63 +2016-12-12 10:17:00,25.625,92.8825,6.64 +2016-12-12 10:32:00,24.7425,92.9175,6.64 +2016-12-12 10:47:00,25.5312,92.99,6.63 +2016-12-12 11:02:00,25.775,93.045,6.63 +2016-12-12 11:17:00,22.835,93.0425,6.65 +2016-12-12 11:32:00,23.1663,93.0175,6.67 +2016-12-12 11:47:00,25.2937,93.0,6.7 +2016-12-12 12:02:00,21.8688,92.9975,6.71 +2016-12-12 12:17:00,23.3688,93.02,6.72 +2016-12-12 12:32:00,22.6425,93.05,6.75 +2016-12-12 12:47:00,23.7575,93.1,6.78 +2016-12-12 13:02:00,21.9613,93.175,6.81 +2016-12-12 13:17:00,24.045,93.2775,6.81 +2016-12-12 13:32:00,24.0887,93.375,6.8 +2016-12-12 13:47:00,22.445,93.475,6.81 +2016-12-12 14:02:00,23.56,93.5875,6.83 +2016-12-12 14:17:00,24.5488,93.7,6.84 +2016-12-12 14:32:00,23.8025,93.815,6.82 +2016-12-12 14:47:00,23.1675,93.9275,6.8 +2016-12-12 15:02:00,24.3925,94.065,6.8 +2016-12-12 15:17:00,22.0587,94.2125,6.8 +2016-12-12 15:32:00,22.735,94.385,6.79 +2016-12-12 15:47:00,24.4475,94.575,6.79 +2016-12-12 16:02:00,24.745,94.7975,6.79 +2016-12-12 16:17:00,24.4512,95.03,6.78 +2016-12-12 16:32:00,25.295,95.2525,6.76 +2016-12-12 16:47:00,23.6575,95.4625,6.76 +2016-12-12 17:02:00,22.49,95.6625,6.75 +2016-12-12 17:17:00,23.7075,95.84,6.74 +2016-12-12 17:32:00,23.8937,96.005,6.73 +2016-12-12 17:47:00,23.4613,96.15,6.73 +2016-12-12 18:02:00,23.0263,96.2425,6.73 +2016-12-12 18:17:00,23.075,96.28,6.72 +2016-12-12 18:32:00,22.8838,96.265,6.72 +2016-12-12 18:47:00,24.5475,96.185,6.72 +2016-12-12 19:02:00,22.4912,96.025,6.72 +2016-12-12 19:17:00,24.4962,95.8175,6.73 +2016-12-12 19:32:00,25.675,95.5525,6.73 +2016-12-12 19:47:00,23.3138,95.3375,6.73 +2016-12-12 20:02:00,23.8988,95.1475,6.72 +2016-12-12 20:17:00,22.6425,94.9975,6.71 +2016-12-12 20:32:00,23.3162,94.8525,6.71 +2016-12-12 20:47:00,22.49,94.7325,6.72 +2016-12-12 21:02:00,24.6912,94.61,6.72 +2016-12-12 21:17:00,24.4475,94.5175,6.7 +2016-12-12 21:32:00,21.865,94.435,6.68 +2016-12-12 21:47:00,22.885,94.3675,6.67 +2016-12-12 22:02:00,22.3962,94.3075,6.67 +2016-12-12 22:17:00,22.4887,94.23,6.67 +2016-12-12 22:32:00,22.8325,94.16,6.68 +2016-12-12 22:47:00,23.845,94.015,6.69 +2016-12-12 23:02:00,22.3425,93.855,6.69 +2016-12-12 23:17:00,26.115,93.7325,6.7 +2016-12-12 23:32:00,23.31,93.6575,6.7 +2016-12-12 23:47:00,23.9437,93.61,6.7 +2016-12-13 00:02:00,24.045,93.6,6.7 +2016-12-13 00:17:00,22.3463,93.58,6.69 +2016-12-13 00:32:00,24.94,93.5875,6.67 +2016-12-13 00:47:00,23.07,93.595,6.66 +2016-12-13 01:02:00,25.6263,93.62,6.65 +2016-12-13 01:17:00,23.9425,93.65,6.65 +2016-12-13 01:32:00,25.2937,93.67,6.65 +2016-12-13 01:47:00,21.2775,93.705,6.64 +2016-12-13 02:02:00,22.0612,93.685,6.63 +2016-12-13 02:17:00,23.7525,93.6575,6.62 +2016-12-13 02:32:00,23.0687,93.57,6.62 +2016-12-13 02:47:00,21.5638,93.475,6.6 +2016-12-13 03:02:00,22.7363,93.3975,6.57 +2016-12-13 03:17:00,24.245,93.3925,6.55 +2016-12-13 03:32:00,23.6588,93.41,6.52 +2016-12-13 03:47:00,21.965,93.435,6.5 +2016-12-13 04:02:00,22.8288,93.4825,6.5 +2016-12-13 04:17:00,24.5912,93.5325,6.51 +2016-12-13 04:32:00,23.1175,93.565,6.5 +2016-12-13 04:47:00,23.6612,93.6375,6.49 +2016-12-13 05:02:00,22.445,93.7125,6.48 +2016-12-13 05:17:00,24.4475,93.7725,6.48 +2016-12-13 05:32:00,25.435,93.85,6.46 +2016-12-13 05:47:00,23.71,93.9025,6.44 +2016-12-13 06:02:00,23.7525,93.9275,6.43 +2016-12-13 06:17:00,22.835,93.9275,6.41 +2016-12-13 06:32:00,24.0887,93.895,6.41 +2016-12-13 06:47:00,23.0725,93.8675,6.42 +2016-12-13 07:02:00,25.8725,93.8675,6.42 +2016-12-13 07:17:00,23.7575,93.8675,6.43 +2016-12-13 07:32:00,23.415,93.905,6.42 +2016-12-13 07:47:00,22.88,93.955,6.4 +2016-12-13 08:02:00,24.0863,94.0075,6.38 +2016-12-13 08:17:00,22.7337,94.04,6.36 +2016-12-13 08:32:00,22.2937,94.0625,6.37 +2016-12-13 08:47:00,23.7075,94.0625,6.38 +2016-12-13 09:02:00,23.46,94.0675,6.41 +2016-12-13 09:17:00,24.995,94.085,6.41 +2016-12-13 09:32:00,23.5112,94.135,6.42 +2016-12-13 09:47:00,23.755,94.185,6.44 +2016-12-13 10:02:00,23.6075,94.255,6.47 +2016-12-13 10:17:00,24.74,94.31,6.51 +2016-12-13 10:32:00,24.04,94.3575,6.49 +2016-12-13 10:47:00,24.6925,94.4,6.47 +2016-12-13 11:02:00,24.1462,94.4525,6.46 +2016-12-13 11:17:00,24.095,94.505,6.45 +2016-12-13 11:32:00,24.2438,94.555,6.46 +2016-12-13 11:47:00,24.6437,94.605,6.47 +2016-12-13 12:02:00,23.3625,94.6225,6.48 +2016-12-13 12:17:00,21.2262,94.615,6.47 +2016-12-13 12:32:00,26.2612,94.5625,6.46 +2016-12-13 12:47:00,25.0912,94.4825,6.47 +2016-12-13 13:02:00,24.245,94.42,6.46 +2016-12-13 13:17:00,22.395,94.365,6.45 +2016-12-13 13:32:00,23.51,94.3525,6.44 +2016-12-13 13:47:00,23.3125,94.355,6.42 +2016-12-13 14:02:00,24.09,94.355,6.43 +2016-12-13 14:17:00,24.6413,94.375,6.41 +2016-12-13 14:32:00,22.5413,94.3925,6.38 +2016-12-13 14:47:00,22.8862,94.425,6.36 +2016-12-13 15:02:00,23.0725,94.4275,6.35 +2016-12-13 15:17:00,22.3438,94.415,6.39 +2016-12-13 15:32:00,23.215,94.3875,6.41 +2016-12-13 15:47:00,22.8337,94.325,6.08 +2016-12-13 16:02:00,23.02,94.2675,6.42 +2016-12-13 16:17:00,22.785,94.2425,6.41 +2016-12-13 16:30:40,23.1888,94.235,6.42 +2016-12-13 16:47:00,22.11,94.295,6.42 +2016-12-13 17:02:00,22.0112,94.335,6.41 +2016-12-13 17:17:00,22.4425,94.38,6.42 +2016-12-13 17:32:00,21.6175,94.3775,6.49 +2016-12-13 17:47:00,22.7825,94.3625,6.46 +2016-12-13 18:02:00,21.8162,94.3425,6.4 +2016-12-13 18:17:00,22.2038,94.365,6.37 +2016-12-13 18:32:00,24.7925,94.3825,6.4 +2016-12-13 18:47:00,23.1162,94.4175,6.4 +2016-12-13 19:02:00,23.0238,94.455,6.41 +2016-12-13 19:17:00,21.9112,94.4925,6.41 +2016-12-13 19:32:00,24.2387,94.505,6.4 +2016-12-13 19:47:00,23.4538,94.505,6.39 +2016-12-13 20:02:00,24.0887,94.475,6.38 +2016-12-13 20:17:00,22.7812,94.48,6.36 +2016-12-13 20:32:00,23.1625,94.475,6.35 +2016-12-13 20:47:00,21.515,94.485,6.37 +2016-12-13 21:02:00,21.3725,94.5125,6.39 +2016-12-13 21:17:00,23.165,94.535,6.45 +2016-12-13 21:32:00,23.7038,94.5725,6.45 +2016-12-13 21:47:00,22.49,94.61,6.44 +2016-12-13 22:02:00,22.4425,94.6125,6.48 +2016-12-13 22:17:00,21.6137,94.6,6.48 +2016-12-13 22:32:00,22.25,94.605,6.44 +2016-12-13 22:47:00,20.2025,94.5975,6.43 +2016-12-13 23:02:00,23.6038,94.57,6.44 +2016-12-13 23:17:00,24.4437,94.565,6.44 +2016-12-13 23:32:00,22.975,94.545,6.45 +2016-12-13 23:47:00,22.2025,94.51,6.46 +2016-12-14 00:02:00,22.11,94.445,6.45 +2016-12-14 00:17:00,21.6125,94.315,6.46 +2016-12-14 00:32:00,24.2425,94.1625,6.46 +2016-12-14 00:47:00,23.3087,94.03,6.46 +2016-12-14 01:02:00,21.9613,93.9725,6.47 +2016-12-14 01:17:00,23.2113,93.925,6.5 +2016-12-14 01:32:00,22.2038,93.92,6.52 +2016-12-14 01:47:00,23.845,93.9225,6.52 +2016-12-14 02:02:00,21.9175,93.9575,6.52 +2016-12-14 02:17:00,22.395,93.975,6.52 +2016-12-14 02:32:00,21.7663,94.025,6.53 +2016-12-14 02:47:00,22.155,94.075,6.52 +2016-12-14 03:02:00,23.6087,94.1275,6.51 +2016-12-14 03:17:00,24.84,94.2075,6.53 +2016-12-14 03:32:00,23.2637,94.2525,6.55 +2016-12-14 03:47:00,24.195,94.2725,6.56 +2016-12-14 04:02:00,23.1137,94.26,6.55 +2016-12-14 04:17:00,23.2625,94.205,6.54 +2016-12-14 04:32:00,22.6862,94.1225,6.52 +2016-12-14 04:47:00,21.7175,94.0625,6.52 +2016-12-14 05:02:00,20.8725,94.015,6.53 +2016-12-14 05:17:00,22.6387,94.01,6.53 +2016-12-14 05:32:00,20.8312,94.0175,6.54 +2016-12-14 05:47:00,21.7637,94.0375,6.54 +2016-12-14 06:02:00,23.4112,94.0525,6.53 +2016-12-14 06:17:00,22.3,94.065,6.52 +2016-12-14 06:32:00,21.865,94.06,6.49 +2016-12-14 06:47:00,22.8825,94.0625,6.47 +2016-12-14 07:02:00,22.3925,94.0125,6.46 +2016-12-14 07:17:00,21.3725,93.9475,6.46 +2016-12-14 07:32:00,22.6875,93.865,6.46 +2016-12-14 07:47:00,22.1087,93.8,6.46 +2016-12-14 08:02:00,22.4412,93.7675,6.47 +2016-12-14 08:17:00,20.255,93.675,6.56 +2016-12-14 08:32:00,23.1162,93.62,6.62 +2016-12-14 08:47:00,21.5137,93.5425,6.6 +2016-12-14 09:02:00,22.2962,93.5275,6.56 +2016-12-14 09:17:00,22.93,93.535,6.59 +2016-12-14 09:32:00,22.685,93.5675,6.61 +2016-12-14 09:47:00,24.3438,93.6325,6.59 +2016-12-14 10:02:00,23.0212,93.6925,6.59 +2016-12-14 10:17:00,23.7988,93.755,6.61 +2016-12-14 10:32:00,23.705,93.81,6.63 +2016-12-14 10:47:00,23.1663,93.8725,6.65 +2016-12-14 11:02:00,22.34,93.9475,6.66 +2016-12-14 11:17:00,23.9388,94.005,6.69 +2016-12-14 11:32:00,23.4088,94.015,6.75 +2016-12-14 11:47:00,21.5625,94.0075,6.78 +2016-12-14 12:02:00,23.8425,93.9525,6.79 +2016-12-14 12:17:00,23.02,93.8925,6.79 +2016-12-14 12:32:00,23.5563,93.84,6.79 +2016-12-14 12:47:00,21.8613,93.7925,6.78 +2016-12-14 13:02:00,21.5163,93.75,6.78 +2016-12-14 13:17:00,22.39,93.7225,6.8 +2016-12-14 13:32:00,23.5575,93.7025,6.83 +2016-12-14 13:47:00,21.4662,93.6975,6.82 +2016-12-14 14:02:00,24.0375,93.6825,6.81 +2016-12-14 14:17:00,22.5875,93.6775,6.82 +2016-12-14 14:32:00,22.6837,93.6175,6.83 +2016-12-14 14:47:00,22.73,93.56,6.83 +2016-12-14 15:02:00,21.8112,93.4625,6.82 +2016-12-14 15:17:00,22.2462,93.3525,6.81 +2016-12-14 15:32:00,22.4425,93.24,6.81 +2016-12-14 15:47:00,22.2025,93.145,6.81 +2016-12-14 16:02:00,21.91,93.09,6.82 +2016-12-14 16:17:00,22.0575,93.0475,6.82 +2016-12-14 16:32:00,21.8613,93.015,6.83 +2016-12-14 16:47:00,23.8438,93.01,6.84 +2016-12-14 17:02:00,22.8275,93.005,6.84 +2016-12-14 17:17:00,21.56,93.025,6.85 +2016-12-14 17:32:00,22.4863,93.035,6.85 +2016-12-14 17:47:00,22.88,93.0175,6.83 +2016-12-14 18:02:00,23.2625,92.96,6.84 +2016-12-14 18:17:00,22.3887,92.89,6.85 +2016-12-14 18:32:00,22.7312,92.7975,6.88 +2016-12-14 18:47:00,22.9725,92.72,6.89 +2016-12-14 19:02:00,23.215,92.6625,6.9 +2016-12-14 19:17:00,22.3425,92.635,6.89 +2016-12-14 19:32:00,23.115,92.635,6.89 +2016-12-14 19:47:00,23.8962,92.645,6.89 +2016-12-14 20:02:00,23.7025,92.6575,6.89 +2016-12-14 20:17:00,23.3625,92.68,6.89 +2016-12-14 20:32:00,22.6362,92.715,6.88 +2016-12-14 20:47:00,22.9775,92.72,6.87 +2016-12-14 21:02:00,23.0212,92.7125,6.88 +2016-12-14 21:17:00,23.2138,92.67,6.88 +2016-12-14 21:32:00,21.3225,92.5725,6.87 +2016-12-14 21:47:00,23.2612,92.48,6.87 +2016-12-14 22:02:00,21.765,92.4,6.84 +2016-12-14 22:17:00,23.605,92.3375,6.82 +2016-12-14 22:32:00,20.9688,92.3175,6.83 +2016-12-14 22:47:00,22.4875,92.345,6.88 +2016-12-14 23:02:00,23.115,92.37,6.89 +2016-12-14 23:17:00,23.94,92.4125,6.88 +2016-12-14 23:32:00,21.1725,92.46,6.87 +2016-12-14 23:47:00,23.8463,92.5,6.87 +2016-12-15 00:02:00,21.4675,92.5025,6.87 +2016-12-15 00:17:00,21.32,92.4775,6.86 +2016-12-15 00:32:00,23.4613,92.43,6.86 +2016-12-15 00:47:00,23.5112,92.35,6.86 +2016-12-15 01:02:00,22.735,92.2825,6.86 +2016-12-15 01:17:00,22.88,92.2275,6.86 +2016-12-15 01:32:00,22.735,92.205,6.85 +2016-12-15 01:47:00,21.5638,92.19,6.84 +2016-12-15 02:02:00,22.4412,92.1875,6.84 +2016-12-15 02:17:00,21.5662,92.2125,6.83 +2016-12-15 02:32:00,22.9287,92.235,6.84 +2016-12-15 02:47:00,24.195,92.2525,6.83 +2016-12-15 03:02:00,23.0675,92.2825,6.83 +2016-12-15 03:17:00,21.6663,92.275,6.83 +2016-12-15 03:32:00,23.2562,92.2525,6.82 +2016-12-15 03:47:00,24.1437,92.1925,6.79 +2016-12-15 04:02:00,22.2025,92.1325,6.77 +2016-12-15 04:17:00,23.0225,92.07,6.75 +2016-12-15 04:32:00,23.895,92.0275,6.75 +2016-12-15 04:47:00,21.5638,92.0175,6.73 +2016-12-15 05:02:00,22.8812,92.0225,6.73 +2016-12-15 05:17:00,21.96,92.035,6.73 +2016-12-15 05:32:00,21.3225,92.065,6.72 +2016-12-15 05:47:00,21.9112,92.1025,6.72 +2016-12-15 06:02:00,21.5625,92.1375,6.7 +2016-12-15 06:17:00,22.44,92.1225,6.69 +2016-12-15 06:32:00,23.605,92.095,6.68 +2016-12-15 06:47:00,23.9925,92.055,6.67 +2016-12-15 07:02:00,24.8387,92.005,6.65 +2016-12-15 07:17:00,24.545,91.93,6.63 +2016-12-15 07:32:00,22.1062,91.835,6.62 +2016-12-15 07:47:00,22.8812,91.7675,6.58 +2016-12-15 08:02:00,24.2425,91.725,6.55 +2016-12-15 08:17:00,22.6362,91.7275,6.55 +2016-12-15 08:32:00,22.7363,91.73,6.56 +2016-12-15 08:47:00,24.0887,91.745,6.56 +2016-12-15 09:02:00,21.9638,91.7475,6.54 +2016-12-15 09:17:00,22.5362,91.775,6.52 +2016-12-15 09:32:00,24.0387,91.8275,6.51 +2016-12-15 09:47:00,23.115,91.84,6.5 +2016-12-15 10:02:00,22.6837,91.86,6.51 +2016-12-15 10:17:00,22.6875,91.8625,6.5 +2016-12-15 10:32:00,22.2475,91.815,6.5 +2016-12-15 10:47:00,23.2075,91.73,6.51 +2016-12-15 11:02:00,22.345,91.6425,6.51 +2016-12-15 11:17:00,24.6875,91.59,6.5 +2016-12-15 11:32:00,21.76,91.57,6.49 +2016-12-15 11:47:00,23.8913,91.575,6.49 +2016-12-15 12:02:00,23.2138,91.6025,6.48 +2016-12-15 12:17:00,21.6125,91.5975,6.48 +2016-12-15 12:32:00,23.2125,91.6375,6.47 +2016-12-15 12:47:00,24.8887,91.6575,6.46 +2016-12-15 13:02:00,22.685,91.665,6.44 +2016-12-15 13:17:00,22.88,91.6675,6.42 +2016-12-15 13:32:00,23.6075,91.595,6.4 +2016-12-15 13:47:00,23.0187,91.4675,6.39 +2016-12-15 14:02:00,24.3387,91.35,6.39 +2016-12-15 14:17:00,23.9938,91.28,6.36 +2016-12-15 14:32:00,24.445,91.22,6.34 +2016-12-15 14:47:00,23.56,91.2175,6.33 +2016-12-15 15:02:00,24.2412,91.2575,6.32 +2016-12-15 15:17:00,24.7887,91.31,6.28 +2016-12-15 15:32:00,24.5413,91.37,6.25 +2016-12-15 15:47:00,23.8887,91.42,6.25 +2016-12-15 16:02:00,23.7525,91.48,6.23 +2016-12-15 16:17:00,22.34,91.5,6.23 +2016-12-15 16:32:00,23.31,91.475,6.2 +2016-12-15 16:47:00,22.9262,91.3925,6.19 +2016-12-15 17:02:00,22.9238,91.275,6.18 +2016-12-15 17:17:00,22.4388,91.1975,6.15 +2016-12-15 17:32:00,22.9262,91.16,6.12 +2016-12-15 17:47:00,24.5425,91.1575,6.08 +2016-12-15 18:02:00,22.88,91.2,6.06 +2016-12-15 18:17:00,22.7325,91.24,6.04 +2016-12-15 18:32:00,25.04,91.285,6.04 +2016-12-15 18:47:00,23.065,91.345,6.01 +2016-12-15 19:02:00,24.2375,91.3975,5.97 +2016-12-15 19:17:00,22.3913,91.42,5.93 +2016-12-15 19:32:00,21.9112,91.405,5.89 +2016-12-15 19:47:00,23.7038,91.34,5.87 +2016-12-15 20:02:00,23.1663,91.2425,5.84 +2016-12-15 20:17:00,22.005,91.1625,5.8 +2016-12-15 20:32:00,23.1125,91.105,5.76 +2016-12-15 20:47:00,22.78,91.105,5.73 +2016-12-15 21:02:00,23.0675,91.1475,5.71 +2016-12-15 21:17:00,22.6375,91.2275,5.71 +2016-12-15 21:32:00,23.2562,91.31,5.72 +2016-12-15 21:47:00,24.8862,91.4025,5.74 +2016-12-15 22:02:00,25.0875,91.475,5.74 +2016-12-15 22:17:00,24.8875,91.5475,5.71 +2016-12-15 22:32:00,24.545,91.56,5.69 +2016-12-15 22:47:00,22.4362,91.5525,5.67 +2016-12-15 23:02:00,22.6325,91.5075,5.65 +2016-12-15 23:17:00,23.065,91.4425,5.64 +2016-12-15 23:32:00,23.2562,91.385,5.62 +2016-12-15 23:47:00,24.84,91.395,5.61 +2016-12-16 00:02:00,22.7337,91.4125,5.61 +2016-12-16 00:17:00,23.8412,91.45,5.6 +2016-12-16 00:32:00,23.6525,91.475,5.61 +2016-12-16 00:47:00,22.78,91.55,5.61 +2016-12-16 01:02:00,24.8875,91.6075,5.6 +2016-12-16 01:17:00,23.2575,91.665,5.59 +2016-12-16 01:32:00,22.7787,91.6775,5.59 +2016-12-16 01:47:00,21.8112,91.65,5.59 +2016-12-16 02:02:00,23.8913,91.5625,5.58 +2016-12-16 02:17:00,23.305,91.4525,5.57 +2016-12-16 02:32:00,23.1125,91.35,5.55 +2016-12-16 02:47:00,22.6375,91.285,5.53 +2016-12-16 03:02:00,23.8913,91.2975,5.51 +2016-12-16 03:17:00,24.1375,91.285,5.51 +2016-12-16 03:32:00,23.505,91.3275,5.51 +2016-12-16 03:47:00,23.115,91.3475,5.5 +2016-12-16 04:02:00,22.3862,91.39,5.47 +2016-12-16 04:17:00,22.4337,91.4225,5.44 +2016-12-16 04:32:00,24.885,91.41,5.42 +2016-12-16 04:47:00,22.8787,91.3675,5.41 +2016-12-16 05:02:00,23.3587,91.29,5.39 +2016-12-16 05:17:00,23.2113,91.1725,5.38 +2016-12-16 05:32:00,23.6512,91.0875,5.36 +2016-12-16 05:47:00,23.985,91.025,5.35 +2016-12-16 06:02:00,23.8887,91.0,5.35 +2016-12-16 06:17:00,21.7125,91.0175,5.34 +2016-12-16 06:32:00,23.6025,91.0225,5.31 +2016-12-16 06:47:00,23.305,91.0425,5.3 +2016-12-16 07:02:00,23.75,91.0925,5.27 +2016-12-16 07:17:00,22.1987,91.0975,5.23 +2016-12-16 07:32:00,23.0662,91.065,5.19 +2016-12-16 07:47:00,24.4437,90.9825,5.16 +2016-12-16 08:02:00,23.7038,90.9225,5.16 +2016-12-16 08:17:00,23.455,90.84,5.16 +2016-12-16 08:32:00,23.5062,90.75,5.17 +2016-12-16 08:47:00,26.16,90.6475,5.21 +2016-12-16 09:02:00,23.8387,90.5825,5.2 +2016-12-16 09:17:00,22.7337,90.5425,5.18 +2016-12-16 09:32:00,22.825,90.58,5.18 +2016-12-16 09:47:00,22.6338,90.615,5.16 +2016-12-16 10:02:00,22.6837,90.6725,5.16 +2016-12-16 10:17:00,24.7838,90.7275,5.17 +2016-12-16 10:32:00,24.2887,90.7675,5.18 +2016-12-16 10:47:00,25.2337,90.825,5.18 +2016-12-16 11:02:00,24.6862,90.8375,5.18 +2016-12-16 11:17:00,23.2113,90.8425,5.16 +2016-12-16 11:32:00,23.3562,90.7975,5.15 +2016-12-16 11:47:00,22.9762,90.725,5.15 +2016-12-16 12:02:00,23.6512,90.6275,5.16 +2016-12-16 12:17:00,24.0387,90.555,5.17 +2016-12-16 12:32:00,23.1137,90.485,5.16 +2016-12-16 12:47:00,22.5312,90.4975,5.15 +2016-12-16 13:02:00,24.6362,90.49,5.15 +2016-12-16 13:17:00,24.24,90.53,5.16 +2016-12-16 13:32:00,22.8787,90.5425,5.16 +2016-12-16 13:47:00,23.305,90.5975,5.13 +2016-12-16 14:02:00,24.5425,90.635,5.11 +2016-12-16 14:17:00,24.1912,90.6375,5.13 +2016-12-16 14:32:00,24.4388,90.6325,5.13 +2016-12-16 14:47:00,24.035,90.555,5.11 +2016-12-16 15:02:00,23.2588,90.4625,5.09 +2016-12-16 15:17:00,22.5837,90.3825,5.05 +2016-12-16 15:32:00,22.88,90.3475,5.01 +2016-12-16 15:47:00,23.6012,90.33,4.99 +2016-12-16 16:02:00,23.75,90.3425,4.94 +2016-12-16 16:17:00,23.0163,90.355,4.9 +2016-12-16 16:32:00,23.5987,90.4,4.88 +2016-12-16 16:47:00,23.985,90.4475,4.87 +2016-12-16 17:02:00,23.1575,90.495,4.86 +2016-12-16 17:17:00,22.29,90.54,4.85 +2016-12-16 17:32:00,23.89,90.525,4.84 +2016-12-16 17:47:00,21.955,90.445,4.81 +2016-12-16 18:02:00,22.73,90.36,4.81 +2016-12-16 18:17:00,23.7012,90.245,4.79 +2016-12-16 18:32:00,23.8887,90.18,4.77 +2016-12-16 18:47:00,22.2937,90.1675,4.75 +2016-12-16 19:02:00,24.0362,90.19,4.73 +2016-12-16 19:17:00,21.9562,90.255,4.73 +2016-12-16 19:32:00,22.7775,90.335,4.7 +2016-12-16 19:47:00,24.9362,90.435,4.67 +2016-12-16 20:02:00,22.535,90.5775,4.67 +2016-12-16 20:17:00,23.4062,90.7275,4.65 +2016-12-16 20:32:00,25.1362,90.8675,4.62 +2016-12-16 20:47:00,24.39,91.03,4.62 +2016-12-16 21:02:00,23.4575,91.16,4.61 +2016-12-16 21:17:00,23.7962,91.325,4.63 +2016-12-16 21:32:00,24.2913,91.5075,4.64 +2016-12-16 21:47:00,24.4412,91.7175,4.64 +2016-12-16 22:02:00,23.2588,91.95,4.65 +2016-12-16 22:17:00,25.085,92.225,4.63 +2016-12-16 22:32:00,23.3037,92.52,4.58 +2016-12-16 22:47:00,23.4062,92.8175,4.55 +2016-12-16 23:02:00,22.9225,93.1125,4.52 +2016-12-16 23:17:00,23.985,93.4175,4.49 +2016-12-16 23:32:00,25.3337,93.7,4.45 +2016-12-16 23:47:00,24.2862,93.9775,4.43 +2016-12-17 00:02:00,23.795,94.225,4.4 +2016-12-17 00:17:00,23.1625,94.4275,4.37 +2016-12-17 00:32:00,23.5537,94.5825,4.34 +2016-12-17 00:47:00,25.6687,94.74,4.31 +2016-12-17 01:02:00,22.4837,94.8725,4.28 +2016-12-17 01:17:00,23.3037,95.005,4.25 +2016-12-17 01:32:00,23.46,95.12,4.22 +2016-12-17 01:47:00,24.2375,95.2,4.19 +2016-12-17 02:02:00,23.7,95.2725,4.17 +2016-12-17 02:17:00,24.1862,95.29,4.12 +2016-12-17 02:32:00,22.8775,95.305,4.09 +2016-12-17 02:47:00,23.3037,95.2575,4.07 +2016-12-17 03:02:00,23.0638,95.115,4.05 +2016-12-17 03:17:00,24.3375,94.92,4.02 +2016-12-17 03:32:00,24.1862,94.715,4.01 +2016-12-17 03:47:00,23.7025,94.5175,3.97 +2016-12-17 04:02:00,24.085,94.36,3.94 +2016-12-17 04:17:00,25.0863,94.2375,3.91 +2016-12-17 04:32:00,22.78,94.13,3.88 +2016-12-17 04:47:00,23.0612,94.0275,3.85 +2016-12-17 05:02:00,23.0137,93.95,3.84 +2016-12-17 05:17:00,22.245,93.8675,3.8 +2016-12-17 05:32:00,22.4837,93.755,3.77 +2016-12-17 05:47:00,23.7012,93.645,3.75 +2016-12-17 06:02:00,23.6012,93.4775,3.74 +2016-12-17 06:17:00,25.1837,93.2725,3.73 +2016-12-17 06:32:00,24.2862,93.09,3.7 +2016-12-17 06:47:00,24.3862,92.93,3.67 +2016-12-17 07:02:00,25.2363,92.79,3.65 +2016-12-17 07:17:00,21.6575,92.7,3.65 +2016-12-17 07:32:00,25.665,92.615,3.64 +2016-12-17 07:47:00,22.925,92.54,3.64 +2016-12-17 08:02:00,22.5287,92.465,3.63 +2016-12-17 08:17:00,25.0387,92.3825,3.63 +2016-12-17 08:32:00,23.4062,92.265,3.63 +2016-12-17 08:47:00,23.5025,92.15,3.63 +2016-12-17 09:02:00,23.8375,91.99,3.66 +2016-12-17 09:17:00,23.9825,91.855,3.65 +2016-12-17 09:32:00,22.725,91.75,3.67 +2016-12-17 09:47:00,24.0287,91.6575,3.67 +2016-12-17 10:02:00,24.045,91.605,3.69 +2016-12-17 10:17:00,22.98,91.555,3.72 +2016-12-17 10:32:00,23.85,91.5425,3.74 +2016-12-17 10:47:00,24.6012,91.525,3.74 +2016-12-17 11:02:00,25.3913,91.515,3.75 +2016-12-17 11:17:00,23.3225,91.5225,3.77 +2016-12-17 11:32:00,24.6488,91.535,3.78 +2016-12-17 11:47:00,24.0362,91.51,3.8 +2016-12-17 12:02:00,23.7525,91.4825,3.81 +2016-12-17 12:17:00,21.775,91.38,3.81 +2016-12-17 12:32:00,24.9463,91.275,3.81 +2016-12-17 12:47:00,22.835,90.9575,3.82 +2016-12-17 13:02:00,22.7225,90.8525,3.85 +2016-12-17 13:17:00,26.11,90.84,3.86 +2016-12-17 13:32:00,24.235,90.87,3.86 +2016-12-17 13:47:00,22.7775,90.8975,3.88 +2016-12-17 14:02:00,24.1325,90.945,3.89 +2016-12-17 14:17:00,24.44,90.9725,3.89 +2016-12-17 14:32:00,23.65,91.0,3.88 +2016-12-17 14:47:00,23.455,90.9825,3.89 +2016-12-17 15:02:00,22.15,90.8825,3.88 +2016-12-17 15:17:00,24.0775,90.7675,3.87 +2016-12-17 15:32:00,25.1787,90.6825,3.86 +2016-12-17 15:47:00,24.2838,90.585,3.85 +2016-12-17 16:02:00,23.6025,90.525,3.86 +2016-12-17 16:17:00,22.53,90.505,3.85 +2016-12-17 16:32:00,23.4075,90.5,3.83 +2016-12-17 16:47:00,23.885,90.5225,3.81 +2016-12-17 17:02:00,22.7787,90.5525,3.8 +2016-12-17 17:17:00,23.3063,90.605,3.79 +2016-12-17 17:32:00,24.6338,90.635,3.81 +2016-12-17 17:47:00,23.0587,90.6375,3.81 +2016-12-17 18:02:00,23.9837,90.6,3.82 +2016-12-17 18:17:00,22.1987,90.475,3.81 +2016-12-17 18:32:00,24.5837,90.305,3.82 +2016-12-17 18:47:00,24.1362,90.165,3.83 +2016-12-17 19:02:00,22.53,90.0625,3.85 +2016-12-17 19:17:00,22.8763,90.0025,3.86 +2016-12-17 19:32:00,23.65,90.0075,3.86 +2016-12-17 19:47:00,24.6825,90.0525,3.88 +2016-12-17 20:02:00,23.7475,90.065,3.9 +2016-12-17 20:17:00,22.3337,90.085,3.93 +2016-12-17 20:32:00,22.2887,90.1125,3.94 +2016-12-17 20:47:00,23.605,90.13,3.94 +2016-12-17 21:02:00,24.8825,90.125,3.95 +2016-12-17 21:17:00,23.3562,90.0525,3.97 +2016-12-17 21:32:00,24.7862,89.9225,4.0 +2016-12-17 21:47:00,25.2325,89.7525,4.03 +2016-12-17 22:02:00,24.7875,89.5675,4.03 +2016-12-17 22:17:00,23.3587,89.485,4.02 +2016-12-17 22:32:00,23.1562,89.465,4.03 +2016-12-17 22:47:00,24.3862,89.48,4.06 +2016-12-17 23:02:00,22.3388,89.5075,4.07 +2016-12-17 23:17:00,22.5825,89.5425,4.05 +2016-12-17 23:32:00,24.185,89.5725,4.05 +2016-12-17 23:47:00,23.7487,89.6225,4.07 +2016-12-18 00:02:00,24.8363,89.64,4.09 +2016-12-18 00:17:00,23.9362,89.635,4.1 +2016-12-18 00:32:00,22.29,89.6075,4.12 +2016-12-18 00:47:00,23.3075,89.475,4.13 +2016-12-18 01:02:00,21.2687,89.3225,4.15 +2016-12-18 01:17:00,23.5987,89.2075,4.17 +2016-12-18 01:32:00,23.5525,89.1425,4.19 +2016-12-18 01:47:00,24.0825,89.1425,4.19 +2016-12-18 02:02:00,22.9675,89.17,4.19 +2016-12-18 02:17:00,23.5512,89.1975,4.2 +2016-12-18 02:32:00,24.6362,89.235,4.22 +2016-12-18 02:47:00,23.8387,89.285,4.24 +2016-12-18 03:02:00,23.5,89.3175,4.23 +2016-12-18 03:17:00,24.2875,89.305,4.24 +2016-12-18 03:32:00,23.4512,89.24,4.27 +2016-12-18 03:47:00,23.6975,89.1225,4.28 +2016-12-18 04:02:00,23.0612,88.9975,4.28 +2016-12-18 04:17:00,23.9837,88.88,4.28 +2016-12-18 04:32:00,26.25,88.81,4.27 +2016-12-18 04:47:00,25.0863,88.825,4.26 +2016-12-18 05:02:00,24.185,88.8925,4.26 +2016-12-18 05:17:00,24.545,88.9525,4.27 +2016-12-18 05:32:00,25.0825,89.0125,4.28 +2016-12-18 05:47:00,24.235,89.0775,4.25 +2016-12-18 06:02:00,24.6312,89.11,4.26 +2016-12-18 06:17:00,23.3037,89.1,4.26 +2016-12-18 06:32:00,26.4463,89.0225,4.25 +2016-12-18 06:47:00,25.5713,88.9025,4.22 +2016-12-18 07:02:00,24.7838,88.7375,4.19 +2016-12-18 07:17:00,25.0338,88.58,4.17 +2016-12-18 07:32:00,23.1113,88.5325,4.15 +2016-12-18 07:47:00,23.4538,88.52,4.15 +2016-12-18 08:02:00,22.6813,88.555,4.16 +2016-12-18 08:17:00,22.73,88.5925,4.17 +2016-12-18 08:32:00,24.1888,88.6125,4.17 +2016-12-18 08:47:00,24.0863,88.6375,4.17 +2016-12-18 09:02:00,23.4562,88.6625,4.18 +2016-12-18 09:17:00,24.2387,88.6475,4.21 +2016-12-18 09:32:00,24.6862,88.58,4.22 +2016-12-18 09:47:00,21.4175,88.54,4.24 +2016-12-18 10:02:00,23.0638,88.5075,4.24 +2016-12-18 10:17:00,23.8425,88.505,4.25 +2016-12-18 10:32:00,23.555,88.4825,4.28 +2016-12-18 10:47:00,24.8862,88.505,4.31 +2016-12-18 11:02:00,24.1338,88.545,4.35 +2016-12-18 11:17:00,23.355,88.5675,4.38 +2016-12-18 11:32:00,23.935,88.6425,4.4 +2016-12-18 11:47:00,23.355,88.6825,4.43 +2016-12-18 12:02:00,24.8363,88.6725,4.45 +2016-12-18 12:17:00,23.3538,88.63,4.47 +2016-12-18 12:32:00,24.1375,88.52,4.47 +2016-12-18 12:47:00,24.2375,88.425,4.46 +2016-12-18 13:02:00,24.585,88.4,4.47 +2016-12-18 13:17:00,25.3337,88.375,4.48 +2016-12-18 13:32:00,23.46,88.3975,4.5 +2016-12-18 13:47:00,23.7,88.43,4.52 +2016-12-18 14:02:00,23.7462,88.495,4.52 +2016-12-18 14:17:00,24.6338,88.5475,4.52 +2016-12-18 14:32:00,23.8838,88.61,4.52 +2016-12-18 14:47:00,23.0612,88.635,4.54 +2016-12-18 15:02:00,25.8712,88.585,4.56 +2016-12-18 15:17:00,23.2537,88.53,4.55 +2016-12-18 15:32:00,25.1325,88.4375,4.54 +2016-12-18 15:47:00,23.505,88.3575,4.54 +2016-12-18 16:02:00,24.6325,88.305,4.55 +2016-12-18 16:17:00,24.7838,88.3025,4.55 +2016-12-18 16:32:00,23.9875,88.34,4.57 +2016-12-18 16:47:00,24.14,88.39,4.55 +2016-12-18 17:02:00,23.4088,88.4575,4.54 +2016-12-18 17:17:00,23.4088,88.52,4.54 +2016-12-18 17:32:00,23.3575,88.585,4.55 +2016-12-18 17:47:00,24.2375,88.605,4.56 +2016-12-18 18:02:00,25.0887,88.58,4.56 +2016-12-18 18:17:00,23.75,88.51,4.58 +2016-12-18 18:32:00,24.0362,88.42,4.59 +2016-12-18 18:47:00,23.115,88.365,4.61 +2016-12-18 19:02:00,24.39,88.3825,4.62 +2016-12-18 19:17:00,23.5025,88.4,4.66 +2016-12-18 19:32:00,23.0187,88.4825,4.69 +2016-12-18 19:47:00,23.1137,88.5625,4.71 +2016-12-18 20:02:00,25.0863,88.6425,4.72 +2016-12-18 20:17:00,24.1912,88.6875,4.71 +2016-12-18 20:32:00,23.8875,88.755,4.68 +2016-12-18 20:47:00,21.9538,88.815,4.69 +2016-12-18 21:02:00,24.4875,88.83,4.71 +2016-12-18 21:17:00,22.3337,88.7975,4.71 +2016-12-18 21:32:00,23.5537,88.6825,4.71 +2016-12-18 21:47:00,23.5525,88.5625,4.71 +2016-12-18 22:02:00,24.1875,88.495,4.7 +2016-12-18 22:17:00,23.94,88.4475,4.67 +2016-12-18 22:32:00,22.2913,88.4675,4.66 +2016-12-18 22:47:00,23.3025,88.505,4.68 +2016-12-18 23:02:00,23.9362,88.5775,4.69 +2016-12-18 23:17:00,22.43,88.65,4.7 +2016-12-18 23:32:00,22.4837,88.705,4.71 +2016-12-18 23:47:00,24.7862,88.7325,4.72 +2016-12-19 00:02:00,25.085,88.6875,4.73 +2016-12-19 00:17:00,23.4062,88.615,4.73 +2016-12-19 00:32:00,22.4325,88.5075,4.76 +2016-12-19 00:47:00,22.6787,88.4275,4.77 +2016-12-19 01:02:00,22.2412,88.41,4.78 +2016-12-19 01:17:00,22.8763,88.4425,4.79 +2016-12-19 01:32:00,22.055,88.4775,4.79 +2016-12-19 01:47:00,23.6025,88.535,4.78 +2016-12-19 02:02:00,23.555,88.5925,4.78 +2016-12-19 02:17:00,23.5037,88.64,4.77 +2016-12-19 02:32:00,22.825,88.675,4.78 +2016-12-19 02:47:00,23.55,88.665,4.76 +2016-12-19 03:02:00,25.2312,88.6,4.76 +2016-12-19 03:17:00,23.7487,88.475,4.77 +2016-12-19 03:32:00,24.1375,88.3925,4.78 +2016-12-19 03:47:00,24.2375,88.295,4.78 +2016-12-19 04:02:00,23.7475,88.255,4.77 +2016-12-19 04:17:00,23.6012,88.24,4.77 +2016-12-19 04:32:00,23.9362,88.2725,4.76 +2016-12-19 04:47:00,23.9875,88.3075,4.75 +2016-12-19 05:02:00,25.425,88.365,4.75 +2016-12-19 05:17:00,25.1825,88.3975,4.76 +2016-12-19 05:32:00,23.4088,88.435,4.76 +2016-12-19 05:47:00,23.6038,88.3925,4.76 +2016-12-19 06:02:00,24.585,88.3125,4.76 +2016-12-19 06:17:00,23.7937,88.225,4.76 +2016-12-19 06:32:00,24.9912,88.1475,4.74 +2016-12-19 06:47:00,24.685,88.095,4.72 +2016-12-19 07:02:00,23.6038,88.05,4.77 +2016-12-19 07:17:00,24.085,88.0125,4.86 +2016-12-19 07:32:00,24.735,87.9775,4.89 +2016-12-19 07:47:00,24.0863,87.9825,4.9 +2016-12-19 08:02:00,24.3375,88.05,4.9 +2016-12-19 08:17:00,24.1387,88.1325,4.9 +2016-12-19 08:32:00,23.0187,88.23,4.92 +2016-12-19 08:47:00,25.1862,88.315,4.94 +2016-12-19 09:02:00,24.3387,88.395,4.94 +2016-12-19 09:17:00,22.73,88.4525,4.94 +2016-12-19 09:32:00,23.2575,88.495,4.94 +2016-12-19 09:47:00,23.165,88.5125,4.94 +2016-12-19 10:02:00,23.015,88.5375,4.95 +2016-12-19 10:17:00,22.7288,88.49,4.95 +2016-12-19 10:32:00,22.8275,88.4125,4.97 +2016-12-19 10:47:00,22.3875,88.2875,5.01 +2016-12-19 11:02:00,22.3875,88.1425,5.04 +2016-12-19 11:17:00,25.4737,88.0275,5.04 +2016-12-19 11:32:00,21.5112,87.9875,5.04 +2016-12-19 11:47:00,23.4575,88.0,5.03 +2016-12-19 12:02:00,23.3063,88.0225,5.08 +2016-12-19 12:17:00,22.5362,88.09,5.13 +2016-12-19 12:32:00,23.065,88.2175,5.14 +2016-12-19 12:47:00,22.775,88.395,5.14 +2016-12-19 13:02:00,23.6,88.5925,5.15 +2016-12-19 13:17:00,25.5713,88.805,5.19 +2016-12-19 13:32:00,23.705,88.945,5.18 +2016-12-19 13:47:00,23.355,88.915,5.14 +2016-12-19 14:02:00,21.37,88.7975,5.03 +2016-12-19 14:17:00,23.2087,88.64,4.82 +2016-12-19 14:32:00,23.11,88.42,4.71 +2016-12-19 14:47:00,22.97,88.2075,4.67 +2016-12-19 15:02:00,24.4425,87.95,4.66 +2016-12-19 15:17:00,22.8237,87.655,4.65 +2016-12-19 15:32:00,22.8763,87.3275,4.62 +2016-12-19 15:47:00,21.7588,86.9975,4.62 +2016-12-19 16:02:00,22.7787,86.65,4.62 +2016-12-19 16:17:00,23.36,86.285,4.63 +2016-12-19 16:32:00,23.6512,85.9275,4.64 +2016-12-19 16:47:00,23.84,85.5525,4.65 +2016-12-19 17:02:00,23.2588,85.1575,4.66 +2016-12-19 17:17:00,25.7213,84.7225,4.67 +2016-12-19 17:32:00,23.3587,84.3,4.67 +2016-12-19 17:47:00,22.4875,83.98,4.67 +2016-12-19 18:02:00,23.5525,83.7475,4.64 +2016-12-19 18:17:00,22.005,83.5975,4.64 +2016-12-19 18:32:00,24.0362,83.5025,4.65 +2016-12-19 18:47:00,24.495,83.46,4.65 +2016-12-19 19:02:00,23.3587,83.46,4.63 +2016-12-19 19:17:00,24.7887,83.4925,4.61 +2016-12-19 19:32:00,24.6375,83.5275,4.58 +2016-12-19 19:47:00,23.6038,83.5875,4.55 +2016-12-19 20:02:00,23.0212,83.6525,4.52 +2016-12-19 20:17:00,22.83,83.7025,4.52 +2016-12-19 20:32:00,23.5025,83.6825,4.49 +2016-12-19 20:47:00,24.5387,83.65,4.46 +2016-12-19 21:02:00,23.015,83.6275,4.46 +2016-12-19 21:17:00,23.4125,83.6675,4.47 +2016-12-19 21:32:00,24.6338,83.7775,4.47 +2016-12-19 21:47:00,23.9388,83.935,4.45 +2016-12-19 22:02:00,23.0163,84.0975,4.44 +2016-12-19 22:17:00,25.1875,84.28,4.44 +2016-12-19 22:32:00,22.925,84.4525,4.44 +2016-12-19 22:47:00,24.4412,84.615,4.43 +2016-12-19 23:02:00,24.0837,84.7775,4.41 +2016-12-19 23:17:00,21.0675,84.9525,4.39 +2016-12-19 23:32:00,21.61,85.08,4.37 +2016-12-19 23:47:00,23.4562,85.15,4.36 +2016-12-20 00:02:00,23.9388,85.135,4.36 +2016-12-20 00:17:00,23.16,85.09,4.33 +2016-12-20 00:32:00,24.6338,85.115,4.31 +2016-12-20 00:47:00,24.5887,85.185,4.3 +2016-12-20 01:02:00,22.5888,85.275,4.31 +2016-12-20 01:17:00,23.5075,85.395,4.31 +2016-12-20 01:32:00,22.9725,85.5525,4.3 +2016-12-20 01:47:00,23.6025,85.6725,4.3 +2016-12-20 02:02:00,22.7775,85.8,4.32 +2016-12-20 02:17:00,21.86,85.93,4.32 +2016-12-20 02:32:00,24.0338,86.0575,4.32 +2016-12-20 02:47:00,22.535,86.1575,4.33 +2016-12-20 03:02:00,24.6875,86.235,4.32 +2016-12-20 03:17:00,24.4437,86.2375,4.32 +2016-12-20 03:32:00,24.3913,86.1975,4.31 +2016-12-20 03:47:00,22.5362,86.125,4.31 +2016-12-20 04:02:00,25.2825,86.11,4.28 +2016-12-20 04:17:00,23.84,86.1275,4.26 +2016-12-20 04:32:00,24.1375,86.165,4.24 +2016-12-20 04:47:00,22.0075,86.245,4.23 +2016-12-20 05:02:00,22.8775,86.33,4.22 +2016-12-20 05:17:00,24.0887,86.4375,4.2 +2016-12-20 05:32:00,24.4875,86.55,4.18 +2016-12-20 05:47:00,23.9388,86.635,4.17 +2016-12-20 06:02:00,23.8875,86.73,4.15 +2016-12-20 06:17:00,23.015,86.765,4.13 +2016-12-20 06:32:00,24.2875,86.7275,4.11 +2016-12-20 06:47:00,24.3425,86.665,4.08 +2016-12-20 07:02:00,24.885,86.61,4.07 +2016-12-20 07:17:00,23.1137,86.5525,4.04 +2016-12-20 07:32:00,24.085,86.4925,4.02 +2016-12-20 07:47:00,22.635,86.49,3.98 +2016-12-20 08:02:00,23.5062,86.54,3.96 +2016-12-20 08:17:00,23.5987,86.585,3.94 +2016-12-20 08:32:00,23.6987,86.645,3.95 +2016-12-20 08:47:00,22.2038,86.72,3.94 +2016-12-20 09:02:00,25.0863,86.8075,3.92 +2016-12-20 09:17:00,23.885,86.9025,3.9 +2016-12-20 09:32:00,25.1813,86.9675,3.9 +2016-12-20 09:47:00,23.75,87.0325,3.89 +2016-12-20 10:02:00,25.8688,87.0825,3.88 +2016-12-20 10:17:00,25.2838,87.095,3.88 +2016-12-20 10:32:00,23.9388,87.075,3.87 +2016-12-20 10:47:00,23.505,86.9775,3.88 +2016-12-20 11:02:00,24.29,86.87,3.89 +2016-12-20 11:17:00,24.4938,86.8075,3.89 +2016-12-20 11:32:00,25.6738,86.79,3.89 +2016-12-20 11:47:00,23.0662,86.8025,3.89 +2016-12-20 12:02:00,25.2825,86.855,3.92 +2016-12-20 12:17:00,23.7925,86.9,3.95 +2016-12-20 12:32:00,23.75,86.95,3.96 +2016-12-20 12:47:00,22.8763,86.9975,3.96 +2016-12-20 13:02:00,24.2363,87.0525,3.95 +2016-12-20 13:17:00,23.0638,87.1475,3.95 +2016-12-20 13:32:00,24.0875,87.2125,3.95 +2016-12-20 13:47:00,23.2575,87.255,3.96 +2016-12-20 14:02:00,22.635,87.2,3.99 +2016-12-20 14:17:00,23.1125,87.135,3.98 +2016-12-20 14:32:00,22.635,87.0575,3.97 +2016-12-20 14:47:00,24.0375,87.01,3.97 +2016-12-20 15:02:00,24.0387,86.9775,3.96 +2016-12-20 15:17:00,24.29,86.9825,3.91 +2016-12-20 15:32:00,24.6813,87.0075,3.89 +2016-12-20 15:47:00,24.24,87.04,3.89 +2016-12-20 16:02:00,24.59,87.075,3.88 +2016-12-20 16:17:00,24.1862,87.1075,3.88 +2016-12-20 16:32:00,24.2387,87.1475,3.88 +2016-12-20 16:47:00,23.7025,87.18,3.88 +2016-12-20 17:02:00,23.795,87.175,3.89 +2016-12-20 17:17:00,24.0863,87.155,3.88 +2016-12-20 17:32:00,23.6025,87.0775,3.89 +2016-12-20 17:47:00,23.015,86.9775,3.88 +2016-12-20 18:02:00,21.8138,86.8875,3.85 +2016-12-20 18:17:00,22.1562,86.8175,3.85 +2016-12-20 18:32:00,26.2062,86.7975,3.85 +2016-12-20 18:47:00,24.4938,86.8075,3.84 +2016-12-20 19:02:00,24.6875,86.8575,3.82 +2016-12-20 19:17:00,23.4075,86.89,3.8 +2016-12-20 19:32:00,22.1525,86.95,3.79 +2016-12-20 19:47:00,25.0837,86.9925,3.78 +2016-12-20 20:02:00,25.1787,87.03,3.76 +2016-12-20 20:17:00,23.7038,87.055,3.74 +2016-12-20 20:32:00,23.4538,87.0525,3.72 +2016-12-20 20:47:00,24.735,87.04,3.71 +2016-12-20 21:02:00,24.73,86.9625,3.7 +2016-12-20 21:17:00,22.2,86.8575,3.72 +2016-12-20 21:32:00,23.7487,86.7975,3.71 +2016-12-20 21:47:00,24.0825,86.75,3.7 +2016-12-20 22:02:00,21.9525,86.735,3.7 +2016-12-20 22:17:00,25.82,86.7525,3.68 +2016-12-20 22:32:00,23.7937,86.7775,3.68 +2016-12-20 22:47:00,22.2438,86.8225,3.67 +2016-12-20 23:02:00,24.4412,86.8575,3.65 +2016-12-20 23:17:00,23.7937,86.905,3.62 +2016-12-20 23:32:00,23.21,86.965,3.63 +2016-12-20 23:47:00,25.3737,86.99,3.61 +2016-12-21 00:02:00,23.16,87.025,3.6 +2016-12-21 00:17:00,22.8787,86.98,3.59 +2016-12-21 00:32:00,24.635,86.9125,3.58 +2016-12-21 00:47:00,24.3375,86.82,3.58 +2016-12-21 01:02:00,22.8737,86.7475,3.58 +2016-12-21 01:17:00,23.9875,86.6975,3.56 +2016-12-21 01:32:00,24.235,86.68,3.52 +2016-12-21 01:47:00,21.76,86.6825,3.49 +2016-12-21 02:02:00,23.89,86.71,3.48 +2016-12-21 02:17:00,22.5837,86.755,3.47 +2016-12-21 02:32:00,23.1588,86.8225,3.46 +2016-12-21 02:47:00,24.2387,86.89,3.47 +2016-12-21 03:02:00,24.14,86.9575,3.48 +2016-12-21 03:17:00,22.3388,87.0375,3.48 +2016-12-21 03:32:00,23.7012,87.0625,3.47 +2016-12-21 03:47:00,24.4388,87.06,3.46 +2016-12-21 04:02:00,22.8275,87.0125,3.43 +2016-12-21 04:17:00,23.2087,86.9425,3.4 +2016-12-21 04:32:00,22.2425,86.875,3.38 +2016-12-21 04:47:00,24.185,86.835,3.36 +2016-12-21 05:02:00,24.54,86.8225,3.33 +2016-12-21 05:17:00,23.8913,86.8475,3.29 +2016-12-21 05:32:00,26.06,86.8875,3.28 +2016-12-21 05:47:00,24.6813,86.9275,3.25 +2016-12-21 06:02:00,24.285,86.9775,3.22 +2016-12-21 06:17:00,24.7325,87.0225,3.2 +2016-12-21 06:32:00,25.5325,87.0225,3.17 +2016-12-21 06:47:00,24.345,86.9925,3.14 +2016-12-21 07:02:00,22.8825,86.95,3.11 +2016-12-21 07:17:00,23.21,86.8875,3.08 +2016-12-21 07:32:00,23.6025,86.865,3.06 +2016-12-21 07:47:00,25.1375,86.8775,3.01 +2016-12-21 08:02:00,24.2375,86.9325,2.99 +2016-12-21 08:17:00,23.16,87.0275,2.98 +2016-12-21 08:32:00,23.3075,87.135,2.96 +2016-12-21 08:47:00,23.2087,87.2425,2.97 +2016-12-21 09:02:00,22.6325,87.36,2.96 +2016-12-21 09:17:00,25.1375,87.4775,2.94 +2016-12-21 09:32:00,24.1888,87.595,2.91 +2016-12-21 09:47:00,23.94,87.695,2.89 +2016-12-21 10:02:00,25.1862,87.78,2.89 +2016-12-21 10:17:00,25.5238,87.8675,2.9 +2016-12-21 10:32:00,22.83,87.875,2.9 +2016-12-21 10:47:00,24.685,87.86,2.9 +2016-12-21 11:02:00,25.3337,87.775,2.89 +2016-12-21 11:17:00,21.56,87.7025,2.89 +2016-12-21 11:32:00,24.4425,87.6725,2.92 +2016-12-21 11:47:00,25.185,87.71,2.94 +2016-12-21 12:02:00,23.65,87.78,2.95 +2016-12-21 12:17:00,23.9887,87.8375,2.95 +2016-12-21 12:32:00,23.02,87.92,2.96 +2016-12-21 12:47:00,24.6362,87.9975,2.96 +2016-12-21 13:02:00,24.2375,88.065,2.96 +2016-12-21 13:17:00,23.4525,88.1375,2.98 +2016-12-21 13:32:00,23.0625,88.195,2.99 +2016-12-21 13:47:00,23.0687,88.2525,2.97 +2016-12-21 14:02:00,23.9412,88.23,2.97 +2016-12-21 14:17:00,23.2738,88.125,2.98 +2016-12-21 14:32:00,23.79,88.0125,2.97 +2016-12-21 14:47:00,22.195,87.8975,2.91 +2016-12-21 15:02:00,24.9863,87.8625,2.87 +2016-12-21 15:17:00,24.4875,87.8975,2.89 +2016-12-21 15:32:00,23.45,87.9475,2.93 +2016-12-21 15:47:00,24.3875,88.0175,2.94 +2016-12-21 16:02:00,24.49,88.085,2.95 +2016-12-21 16:17:00,23.5013,88.1575,2.96 +2016-12-21 16:32:00,25.515,88.22,2.93 +2016-12-21 16:47:00,23.9825,88.2875,2.91 +2016-12-21 17:02:00,23.8875,88.355,2.91 +2016-12-21 17:17:00,24.8325,88.4275,2.89 +2016-12-21 17:32:00,24.3337,88.4525,2.88 +2016-12-21 17:47:00,23.4037,88.4625,2.89 +2016-12-21 18:02:00,22.8775,88.415,2.88 +2016-12-21 18:17:00,23.5475,88.3375,2.87 +2016-12-21 18:32:00,24.3838,88.2575,2.89 +2016-12-21 18:47:00,21.4587,88.22,2.92 +2016-12-21 19:02:00,24.4837,88.2275,2.93 +2016-12-21 19:17:00,22.8737,88.285,2.92 +2016-12-21 19:32:00,23.5488,88.3625,2.91 +2016-12-21 19:47:00,22.9625,88.425,2.92 +2016-12-21 20:02:00,23.105,88.5125,2.95 +2016-12-21 20:17:00,25.1312,88.59,2.96 +2016-12-21 20:32:00,25.6162,88.69,2.96 +2016-12-21 20:47:00,24.2312,88.7525,2.95 +2016-12-21 21:02:00,25.9187,88.755,2.98 +2016-12-21 21:17:00,23.5475,88.7075,2.99 +2016-12-21 21:32:00,23.1525,88.6225,3.01 +2016-12-21 21:47:00,24.9512,88.5375,3.01 +2016-12-21 22:02:00,24.7475,88.495,3.01 +2016-12-21 22:17:00,24.6462,88.48,3.0 +2016-12-21 22:32:00,24.4538,88.5525,3.0 +2016-12-21 22:47:00,26.03,88.6,3.0 +2016-12-21 23:02:00,24.8075,88.6875,2.98 +2016-12-21 23:17:00,24.7988,88.7175,2.96 +2016-12-21 23:32:00,24.3438,88.75,2.94 +2016-12-21 23:47:00,23.3613,88.785,2.93 +2016-12-22 00:02:00,25.8187,88.82,2.9 +2016-12-22 00:17:00,25.72,88.8625,2.89 +2016-12-22 00:32:00,25.09,88.7775,2.85 +2016-12-22 00:47:00,24.0362,88.7075,2.84 +2016-12-22 01:02:00,23.9887,88.61,2.83 +2016-12-22 01:17:00,25.575,88.49,2.83 +2016-12-22 01:32:00,23.41,88.4425,2.82 +2016-12-22 01:47:00,26.4025,88.405,2.81 +2016-12-22 02:02:00,24.04,88.415,2.8 +2016-12-22 02:17:00,25.6237,88.4225,2.79 +2016-12-22 02:32:00,23.6012,88.4375,2.79 +2016-12-22 02:47:00,25.2825,88.49,2.78 +2016-12-22 03:02:00,25.6212,88.53,2.77 +2016-12-22 03:17:00,25.3275,88.58,2.75 +2016-12-22 03:32:00,24.3412,88.595,2.74 +2016-12-22 03:47:00,26.0638,88.55,2.72 +2016-12-22 04:02:00,23.55,88.47,2.7 +2016-12-22 04:17:00,24.4388,88.345,2.67 +2016-12-22 04:32:00,22.2438,88.2125,2.65 +2016-12-22 04:47:00,23.5525,88.085,2.64 +2016-12-22 05:02:00,25.82,88.0225,2.64 +2016-12-22 05:17:00,25.1837,87.99,2.63 +2016-12-22 05:32:00,24.24,87.9975,2.6 +2016-12-22 05:47:00,23.3037,88.0,2.57 +2016-12-22 06:02:00,25.3737,88.02,2.57 +2016-12-22 06:17:00,24.6837,88.0425,2.56 +2016-12-22 06:32:00,22.6312,88.03,2.53 +2016-12-22 06:47:00,23.4062,87.9925,2.49 +2016-12-22 07:02:00,26.3037,87.915,2.47 +2016-12-22 07:17:00,23.355,87.8375,2.46 +2016-12-22 07:32:00,24.9362,87.7325,2.45 +2016-12-22 07:47:00,25.6675,87.6425,2.44 +2016-12-22 08:02:00,27.39,87.59,2.4 +2016-12-22 08:17:00,24.6825,87.5925,2.39 +2016-12-22 08:32:00,24.54,87.615,2.39 +2016-12-22 08:47:00,24.885,87.6525,2.39 +2016-12-22 09:02:00,24.335,87.6925,2.41 +2016-12-22 09:17:00,23.06,87.72,2.39 +2016-12-22 09:32:00,23.0625,87.8075,2.38 +2016-12-22 09:47:00,24.835,87.88,2.38 +2016-12-22 10:02:00,22.3875,87.87,2.4 +2016-12-22 10:17:00,24.9863,87.79,2.46 +2016-12-22 10:32:00,23.3075,87.67,2.48 +2016-12-22 10:47:00,24.6362,87.5725,2.46 +2016-12-22 11:02:00,24.1862,87.5475,2.45 +2016-12-22 11:17:00,25.3312,87.5775,2.48 +2016-12-22 11:32:00,25.475,87.6225,2.52 +2016-12-22 11:47:00,25.965,87.6775,2.56 +2016-12-22 12:02:00,25.5187,87.7425,2.58 +2016-12-22 12:17:00,24.8363,87.7975,2.58 +2016-12-22 12:32:00,23.7462,87.855,2.58 +2016-12-22 12:47:00,23.355,87.8975,2.6 +2016-12-22 13:02:00,23.6512,87.94,2.61 +2016-12-22 13:17:00,24.3875,87.975,2.62 +2016-12-22 13:32:00,25.8187,88.0125,2.62 +2016-12-22 13:47:00,24.5875,88.08,2.63 +2016-12-22 14:02:00,23.2087,88.065,2.64 +2016-12-22 14:17:00,24.0825,88.02,2.65 +2016-12-22 14:32:00,25.1837,87.9575,2.67 +2016-12-22 14:47:00,22.6813,87.915,2.69 +2016-12-22 15:02:00,25.1375,87.8825,2.7 +2016-12-22 15:17:00,23.89,87.885,2.68 +2016-12-22 15:32:00,23.7925,87.9225,2.67 +2016-12-22 15:47:00,26.9375,87.965,2.68 +2016-12-22 16:02:00,25.3763,88.03,2.67 +2016-12-22 16:17:00,24.035,88.07,2.64 +2016-12-22 16:32:00,24.2913,88.135,2.63 +2016-12-22 16:47:00,23.84,88.2025,2.64 +2016-12-22 17:02:00,24.6375,88.25,2.64 +2016-12-22 17:17:00,23.7462,88.3125,2.65 +2016-12-22 17:32:00,24.8375,88.39,2.66 +2016-12-22 17:47:00,23.2087,88.41,2.67 +2016-12-22 18:02:00,23.7487,88.3525,2.69 +2016-12-22 18:17:00,24.0825,88.2775,2.7 +2016-12-22 18:32:00,23.9887,88.1525,2.7 +2016-12-22 18:47:00,23.8425,88.0575,2.73 +2016-12-22 19:02:00,23.8425,88.0025,2.74 +2016-12-22 19:17:00,22.6325,88.01,2.71 +2016-12-22 19:32:00,24.8862,88.04,2.71 +2016-12-22 19:47:00,27.1888,88.0675,2.72 +2016-12-22 20:02:00,23.2612,88.115,2.71 +2016-12-22 20:17:00,25.3775,88.155,2.72 +2016-12-22 20:32:00,24.2375,88.185,2.72 +2016-12-22 20:47:00,23.9388,88.21,2.7 +2016-12-22 21:02:00,25.1362,88.255,2.7 +2016-12-22 21:17:00,22.6825,88.26,2.72 +2016-12-22 21:32:00,24.9388,88.29,2.73 +2016-12-22 21:47:00,23.795,88.2875,2.75 +2016-12-22 22:02:00,24.3887,88.25,2.76 +2016-12-22 22:17:00,24.085,88.1425,2.77 +2016-12-22 22:32:00,23.8887,88.01,2.81 +2016-12-22 22:47:00,24.54,87.8675,2.81 +2016-12-22 23:02:00,24.8375,87.7825,2.82 +2016-12-22 23:17:00,25.0875,87.7275,2.83 +2016-12-22 23:32:00,24.49,87.7175,2.81 +2016-12-22 23:47:00,23.7025,87.73,2.8 +2016-12-23 00:02:00,24.7862,87.7575,2.77 +2016-12-23 00:17:00,23.6525,87.8025,2.75 +2016-12-23 00:32:00,24.735,87.8175,2.75 +2016-12-23 00:47:00,23.7487,87.8325,2.77 +2016-12-23 01:02:00,25.38,87.8875,2.78 +2016-12-23 01:17:00,24.785,87.9325,2.78 +2016-12-23 01:32:00,23.7,87.97,2.78 +2016-12-23 01:47:00,23.1137,87.99,2.8 +2016-12-23 02:02:00,24.2375,87.9875,2.81 +2016-12-23 02:17:00,23.405,87.91,2.85 +2016-12-23 02:32:00,25.0362,87.7825,2.86 +2016-12-23 02:47:00,23.455,87.625,2.86 +2016-12-23 03:02:00,23.7,87.5025,2.88 +2016-12-23 03:17:00,24.235,87.4225,2.88 +2016-12-23 03:32:00,26.3463,87.3975,2.87 +2016-12-23 03:47:00,23.255,87.375,2.86 +2016-12-23 04:02:00,24.5375,87.39,2.85 +2016-12-23 04:17:00,25.0837,87.4025,2.82 +2016-12-23 04:32:00,26.5975,87.4625,2.82 +2016-12-23 04:47:00,24.5863,87.5175,2.8 +2016-12-23 05:02:00,23.55,87.56,2.78 +2016-12-23 05:17:00,24.9863,87.6125,2.76 +2016-12-23 05:32:00,23.985,87.6375,2.74 +2016-12-23 05:47:00,23.6963,87.6325,2.72 +2016-12-23 06:02:00,22.9675,87.595,2.71 +2016-12-23 06:17:00,24.49,87.53,2.71 +2016-12-23 06:32:00,24.135,87.43,2.67 +2016-12-23 06:47:00,23.9362,87.3475,2.65 +2016-12-23 07:02:00,24.8825,87.255,2.64 +2016-12-23 07:17:00,24.6325,87.1725,2.62 +2016-12-23 07:32:00,24.835,87.145,2.62 +2016-12-23 07:47:00,23.7937,87.135,2.64 +2016-12-23 08:02:00,25.1825,87.1525,2.68 +2016-12-23 08:17:00,23.11,87.165,2.67 +2016-12-23 08:32:00,25.1837,87.21,2.63 +2016-12-23 08:47:00,23.5,87.255,2.61 +2016-12-23 09:02:00,23.5013,87.3375,2.61 +2016-12-23 09:17:00,22.875,87.4125,2.62 +2016-12-23 09:32:00,25.28,87.45,2.61 +2016-12-23 09:47:00,23.7462,87.4825,2.59 +2016-12-23 10:02:00,26.2562,87.525,2.59 +2016-12-23 10:17:00,25.5238,87.565,2.59 +2016-12-23 10:32:00,22.925,87.6125,2.6 +2016-12-23 10:47:00,26.5025,87.66,2.61 +2016-12-23 11:02:00,24.5413,87.6675,2.62 +2016-12-23 11:17:00,22.7787,87.625,2.61 +2016-12-23 11:32:00,22.0525,87.5125,2.61 +2016-12-23 11:47:00,22.8775,87.405,2.62 +2016-12-23 12:02:00,24.99,87.305,2.65 +2016-12-23 12:17:00,24.0863,87.255,2.66 +2016-12-23 12:32:00,23.9437,87.2225,2.69 +2016-12-23 12:47:00,25.5338,87.2375,2.69 +2016-12-23 13:02:00,25.3725,87.2875,2.67 +2016-12-23 13:17:00,24.2862,87.415,2.66 +2016-12-23 13:32:00,24.2887,87.61,2.66 +2016-12-23 13:47:00,24.2887,87.855,2.65 +2016-12-23 14:02:00,24.9362,88.1525,2.65 +2016-12-23 14:17:00,24.6338,88.45,2.65 +2016-12-23 14:32:00,24.0788,88.7275,2.66 +2016-12-23 14:47:00,24.5375,88.99,2.64 +2016-12-23 15:02:00,24.9863,89.1575,2.64 +2016-12-23 15:17:00,25.7687,89.27,2.62 +2016-12-23 15:32:00,25.23,89.2625,2.61 +2016-12-23 15:47:00,22.2425,89.15,2.61 +2016-12-23 16:02:00,24.4388,88.9775,2.61 +2016-12-23 16:17:00,25.2337,88.7675,2.61 +2016-12-23 16:32:00,23.5512,88.51,2.6 +2016-12-23 16:47:00,24.1862,88.2625,2.59 +2016-12-23 17:02:00,23.3562,88.04,2.57 +2016-12-23 17:17:00,24.7825,87.755,2.57 +2016-12-23 17:32:00,23.935,87.4875,2.57 +2016-12-23 17:47:00,24.5837,87.245,2.58 +2016-12-23 18:02:00,23.9837,87.025,2.58 +2016-12-23 18:17:00,25.1338,86.825,2.59 +2016-12-23 18:32:00,25.2387,86.6375,2.59 +2016-12-23 18:47:00,22.8763,86.5025,2.59 +2016-12-23 19:02:00,25.82,86.3275,2.6 +2016-12-23 19:17:00,23.79,86.1575,2.61 +2016-12-23 19:32:00,25.2325,85.98,2.61 +2016-12-23 19:47:00,24.6338,85.81,2.62 +2016-12-23 20:02:00,23.4512,85.65,2.64 +2016-12-23 20:17:00,25.57,85.5475,2.65 +2016-12-23 20:32:00,24.0825,85.46,2.66 +2016-12-23 20:47:00,24.9388,85.4725,2.66 +2016-12-23 21:02:00,23.0662,85.4975,2.66 +2016-12-23 21:17:00,26.395,85.59,2.69 +2016-12-23 21:32:00,25.4737,85.6425,2.69 +2016-12-23 21:47:00,25.1825,85.71,2.7 +2016-12-23 22:02:00,22.2425,85.7625,2.68 +2016-12-23 22:17:00,23.3562,85.8025,2.68 +2016-12-23 22:32:00,24.6362,85.8575,2.67 +2016-12-23 22:47:00,25.1813,85.9325,2.67 +2016-12-23 23:02:00,23.1562,85.975,2.67 +2016-12-23 23:17:00,25.2337,85.9475,2.67 +2016-12-23 23:32:00,26.2487,85.915,2.69 +2016-12-23 23:47:00,26.3487,85.915,2.7 +2016-12-24 00:02:00,22.3375,85.9075,2.7 +2016-12-24 00:17:00,25.5713,85.92,2.69 +2016-12-24 00:32:00,25.5713,85.915,2.63 +2016-12-24 00:47:00,24.0812,85.9375,2.62 +2016-12-24 01:02:00,23.255,85.955,2.61 +2016-12-24 01:17:00,23.1562,85.985,2.61 +2016-12-24 01:32:00,23.8887,85.99,2.62 +2016-12-24 01:47:00,24.035,86.0675,2.62 +2016-12-24 02:02:00,25.8162,86.125,2.62 +2016-12-24 02:17:00,25.5212,86.1725,2.63 +2016-12-24 02:32:00,23.65,86.2,2.63 +2016-12-24 02:47:00,24.3887,86.19,2.64 +2016-12-24 03:02:00,26.9388,86.1575,2.65 +2016-12-24 03:17:00,24.49,86.0825,2.65 +2016-12-24 03:32:00,25.1312,86.04,2.67 +2016-12-24 03:47:00,23.8875,86.0225,2.68 +2016-12-24 04:02:00,24.1875,86.0125,2.71 +2016-12-24 04:17:00,24.6312,86.0475,2.71 +2016-12-24 04:32:00,25.6162,86.0875,2.7 +2016-12-24 04:47:00,24.4412,86.1525,2.69 +2016-12-24 05:02:00,24.6362,86.185,2.7 +2016-12-24 05:17:00,23.1137,86.235,2.71 +2016-12-24 05:32:00,24.3887,86.28,2.71 +2016-12-24 05:47:00,24.3887,86.3425,2.7 +2016-12-24 06:02:00,25.185,86.3575,2.7 +2016-12-24 06:17:00,24.3887,86.365,2.7 +2016-12-24 06:32:00,25.5212,86.3325,2.69 +2016-12-24 06:47:00,25.1387,86.2875,2.65 +2016-12-24 07:02:00,24.4425,86.175,2.62 +2016-12-24 07:17:00,26.305,86.07,2.61 +2016-12-24 07:32:00,23.7525,86.0375,2.65 +2016-12-24 07:47:00,25.965,86.0275,2.74 +2016-12-24 08:02:00,23.6488,86.065,2.74 +2016-12-24 08:17:00,24.985,86.1,2.71 +2016-12-24 08:32:00,26.4475,86.1475,2.7 +2016-12-24 08:47:00,24.1888,86.1525,2.68 +2016-12-24 09:02:00,25.5238,86.185,2.7 +2016-12-24 09:17:00,24.2887,86.18,2.69 +2016-12-24 09:32:00,24.4425,86.1875,2.71 +2016-12-24 09:47:00,24.3387,86.18,2.73 +2016-12-24 10:02:00,24.235,86.215,2.74 +2016-12-24 10:17:00,25.285,86.2275,2.74 +2016-12-24 10:32:00,24.0825,86.2375,2.75 +2016-12-24 10:47:00,26.5963,86.2775,2.76 +2016-12-24 11:02:00,24.8862,86.3125,2.78 +2016-12-24 11:17:00,26.6475,86.335,2.79 +2016-12-24 11:32:00,24.54,86.3775,2.81 +2016-12-24 11:47:00,26.4987,86.4325,2.84 +2016-12-24 12:02:00,23.9875,86.49,2.85 +2016-12-24 12:17:00,24.2387,86.515,2.87 +2016-12-24 12:32:00,22.485,86.585,2.94 +2016-12-24 12:47:00,23.2575,86.5975,2.99 +2016-12-24 13:02:00,25.3312,86.5575,3.02 +2016-12-24 13:17:00,26.205,86.4675,3.02 +2016-12-24 13:32:00,24.4437,86.3925,3.03 +2016-12-24 13:47:00,24.335,86.325,3.06 +2016-12-24 14:02:00,24.0825,86.28,3.07 +2016-12-24 14:17:00,25.085,86.295,3.06 +2016-12-24 14:32:00,23.7,86.3025,3.07 +2016-12-24 14:47:00,24.0325,86.3375,3.08 +2016-12-24 15:02:00,25.0362,86.37,3.06 +2016-12-24 15:17:00,24.3363,86.4325,3.06 +2016-12-24 15:32:00,23.4112,86.495,3.09 +2016-12-24 15:47:00,25.6212,86.535,3.1 +2016-12-24 16:02:00,24.3913,86.6025,3.1 +2016-12-24 16:17:00,24.24,86.635,3.1 +2016-12-24 16:32:00,25.3312,86.655,3.11 +2016-12-24 16:47:00,25.1338,86.6025,3.13 +2016-12-24 17:02:00,23.7025,86.5225,3.15 +2016-12-24 17:17:00,24.7312,86.3625,3.16 +2016-12-24 17:32:00,24.2875,86.1775,3.15 +2016-12-24 17:47:00,25.965,86.045,3.13 +2016-12-24 18:02:00,25.9187,85.9675,3.14 +2016-12-24 18:17:00,26.3525,85.9275,3.17 +2016-12-24 18:32:00,26.4487,85.9275,3.17 +2016-12-24 18:47:00,22.4375,85.8925,3.19 +2016-12-24 19:02:00,23.405,85.9575,3.21 +2016-12-24 19:17:00,24.1362,85.9975,3.23 +2016-12-24 19:32:00,23.7513,86.0525,3.25 +2016-12-24 19:47:00,24.835,86.12,3.26 +2016-12-24 20:02:00,25.4238,86.1725,3.28 +2016-12-24 20:17:00,23.8425,86.215,3.29 +2016-12-24 20:32:00,23.6012,86.225,3.31 +2016-12-24 20:47:00,25.1375,86.2025,3.32 +2016-12-24 21:02:00,25.8688,86.085,3.34 +2016-12-24 21:17:00,23.8887,85.97,3.37 +2016-12-24 21:32:00,25.4262,85.8725,3.37 +2016-12-24 21:47:00,23.8913,85.7875,3.38 +2016-12-24 22:02:00,26.6975,85.7475,3.39 +2016-12-24 22:17:00,25.3775,85.7725,3.4 +2016-12-24 22:32:00,23.1137,85.7475,3.41 +2016-12-24 22:47:00,25.57,85.78,3.41 +2016-12-24 23:02:00,23.4538,85.8025,3.42 +2016-12-24 23:17:00,23.9425,85.825,3.44 +2016-12-24 23:32:00,23.7975,85.8375,3.43 +2016-12-24 23:47:00,23.655,85.8275,3.43 +2016-12-25 00:02:00,23.9863,85.785,3.44 +2016-12-25 00:17:00,23.9337,85.825,3.44 +2016-12-25 00:32:00,25.4737,85.8275,3.44 +2016-12-25 00:47:00,24.94,85.8175,3.44 +2016-12-25 01:02:00,23.405,85.765,3.46 +2016-12-25 01:17:00,24.8862,85.66,3.46 +2016-12-25 01:32:00,23.6525,85.5275,3.45 +2016-12-25 01:47:00,25.135,85.455,3.46 +2016-12-25 02:02:00,22.7763,85.36,3.47 +2016-12-25 02:17:00,25.1325,85.3675,3.5 +2016-12-25 02:32:00,23.55,85.3925,3.52 +2016-12-25 02:47:00,27.0375,85.485,3.52 +2016-12-25 03:02:00,24.54,85.5525,3.5 +2016-12-25 03:17:00,23.4562,85.6275,3.5 +2016-12-25 03:32:00,26.0675,85.6825,3.49 +2016-12-25 03:47:00,23.7487,85.78,3.5 +2016-12-25 04:02:00,23.9388,85.81,3.51 +2016-12-25 04:17:00,25.77,85.8625,3.53 +2016-12-25 04:32:00,25.62,85.9,3.54 +2016-12-25 04:47:00,23.7937,85.8525,3.57 +2016-12-25 05:02:00,23.455,85.7775,3.58 +2016-12-25 05:17:00,25.285,85.6425,3.57 +2016-12-25 05:32:00,26.35,85.5125,3.59 +2016-12-25 05:47:00,25.2862,85.4075,3.6 +2016-12-25 06:02:00,23.8425,85.3825,3.62 +2016-12-25 06:17:00,23.84,85.355,3.61 +2016-12-25 06:32:00,23.745,85.365,3.62 +2016-12-25 06:47:00,25.5212,85.4025,3.64 +2016-12-25 07:02:00,24.39,85.445,3.65 +2016-12-25 07:17:00,23.9863,85.4925,3.66 +2016-12-25 07:32:00,25.0875,85.5625,3.67 +2016-12-25 07:47:00,25.5725,85.62,3.68 +2016-12-25 08:02:00,25.33,85.6275,3.7 +2016-12-25 08:17:00,24.54,85.625,3.72 +2016-12-25 08:32:00,24.79,85.5525,3.72 +2016-12-25 08:47:00,24.8375,85.47,3.73 +2016-12-25 09:02:00,26.065,85.3725,3.73 +2016-12-25 09:17:00,23.7075,85.2825,3.74 +2016-12-25 09:32:00,25.3337,85.2375,3.77 +2016-12-25 09:47:00,25.4262,85.2375,3.79 +2016-12-25 10:02:00,25.4275,85.2725,3.81 +2016-12-25 10:17:00,26.7462,85.31,3.85 +2016-12-25 10:32:00,24.9375,85.345,3.89 +2016-12-25 10:47:00,23.9887,85.395,3.94 +2016-12-25 11:02:00,24.135,85.4275,3.98 +2016-12-25 11:17:00,24.3925,85.4275,4.01 +2016-12-25 11:32:00,25.5725,85.45,4.04 +2016-12-25 11:47:00,23.6525,85.465,4.07 +2016-12-25 12:02:00,25.1837,85.5025,4.11 +2016-12-25 12:17:00,25.8712,85.5125,4.17 +2016-12-25 12:32:00,24.5425,85.5375,4.23 +2016-12-25 12:47:00,26.25,85.5075,4.26 +2016-12-25 13:02:00,26.0638,85.4075,4.28 +2016-12-25 13:17:00,24.5425,85.2975,4.3 +2016-12-25 13:32:00,25.4737,85.2225,4.33 +2016-12-25 13:47:00,22.7763,85.1775,4.38 +2016-12-25 14:02:00,24.2875,85.1825,4.39 +2016-12-25 14:17:00,23.8425,85.2375,4.39 +2016-12-25 14:32:00,25.3787,85.29,4.41 +2016-12-25 14:47:00,24.5425,85.34,4.44 +2016-12-25 15:02:00,25.5775,85.4075,4.47 +2016-12-25 15:17:00,25.0875,85.4675,4.47 +2016-12-25 15:32:00,23.3063,85.5175,4.46 +2016-12-25 15:47:00,24.5887,85.5375,4.48 +2016-12-25 16:02:00,24.7412,85.5875,4.51 +2016-12-25 16:17:00,25.1862,85.6025,4.55 +2016-12-25 16:32:00,24.5387,85.575,4.57 +2016-12-25 16:47:00,24.8887,85.505,4.58 +2016-12-25 17:02:00,22.635,85.4125,4.58 +2016-12-25 17:17:00,23.2612,85.3,4.61 +2016-12-25 17:32:00,24.5875,85.2075,4.63 +2016-12-25 17:47:00,25.3337,85.15,4.64 +2016-12-25 18:02:00,22.535,85.1075,4.68 +2016-12-25 18:17:00,23.795,85.095,4.7 +2016-12-25 18:32:00,22.6825,85.0925,4.72 +2016-12-25 18:47:00,23.6,85.13,4.73 +2016-12-25 19:02:00,23.5062,85.1775,4.75 +2016-12-25 19:17:00,24.8375,85.215,4.77 +2016-12-25 19:32:00,23.46,85.2625,4.78 +2016-12-25 19:47:00,25.2862,85.2975,4.81 +2016-12-25 20:02:00,25.09,85.3025,4.83 +2016-12-25 20:17:00,24.1937,85.3275,4.86 +2016-12-25 20:32:00,26.1625,85.305,4.89 +2016-12-25 20:47:00,24.1888,85.1925,4.91 +2016-12-25 21:02:00,25.185,85.05,4.95 +2016-12-25 21:17:00,24.7875,84.9325,4.99 +2016-12-25 21:32:00,23.8412,84.8675,5.01 +2016-12-25 21:47:00,23.9412,84.8675,5.04 +2016-12-25 22:02:00,23.7513,84.9125,5.07 +2016-12-25 22:17:00,24.1888,84.98,5.08 +2016-12-25 22:32:00,23.2062,85.0875,5.09 +2016-12-25 22:47:00,25.6237,85.105,5.12 +2016-12-25 23:02:00,25.2375,85.1275,5.15 +2016-12-25 23:17:00,25.8675,85.195,5.17 +2016-12-25 23:32:00,23.9875,85.1975,5.19 +2016-12-25 23:47:00,25.5238,85.225,5.2 +2016-12-26 00:02:00,23.41,85.2325,5.21 +2016-12-26 00:17:00,25.2838,85.1925,5.24 +2016-12-26 00:32:00,23.9875,85.1075,5.26 +2016-12-26 00:47:00,23.5537,84.9825,5.29 +2016-12-26 01:02:00,24.3887,84.855,5.33 +2016-12-26 01:17:00,23.795,84.6975,5.34 +2016-12-26 01:32:00,23.555,84.5825,5.34 +2016-12-26 01:47:00,25.1825,84.5175,5.34 +2016-12-26 02:02:00,24.9388,84.54,5.36 +2016-12-26 02:17:00,23.6512,84.62,5.39 +2016-12-26 02:32:00,23.5025,84.6875,5.42 +2016-12-26 02:47:00,24.2412,84.7575,5.46 +2016-12-26 03:02:00,24.4412,84.8175,5.48 +2016-12-26 03:17:00,24.4437,84.875,5.5 +2016-12-26 03:32:00,25.3825,84.975,5.52 +2016-12-26 03:47:00,25.8675,85.0625,5.55 +2016-12-26 04:02:00,23.555,85.115,5.57 +2016-12-26 04:17:00,24.3412,85.0825,5.6 +2016-12-26 04:32:00,23.9412,84.975,5.63 +2016-12-26 04:47:00,25.235,84.8675,5.65 +2016-12-26 05:02:00,24.0863,84.745,5.66 +2016-12-26 05:17:00,24.3925,84.6575,5.69 +2016-12-26 05:32:00,24.685,84.645,5.73 +2016-12-26 05:47:00,23.7988,84.6325,5.74 +2016-12-26 06:02:00,24.1375,84.655,5.76 +2016-12-26 06:17:00,24.085,84.67,5.76 +2016-12-26 06:32:00,23.7012,84.7175,5.78 +2016-12-26 06:47:00,23.7975,84.7675,5.79 +2016-12-26 07:02:00,22.3388,84.7625,5.81 +2016-12-26 07:17:00,23.9887,84.7175,5.83 +2016-12-26 07:32:00,24.8375,84.655,5.84 +2016-12-26 07:47:00,24.085,84.575,5.85 +2016-12-26 08:02:00,24.0863,84.5,5.88 +2016-12-26 08:17:00,25.09,84.4925,5.9 +2016-12-26 08:32:00,25.1888,84.51,5.92 +2016-12-26 08:47:00,24.6875,84.5375,5.93 +2016-12-26 09:02:00,25.6687,84.57,5.94 +2016-12-26 09:17:00,26.3037,84.615,5.98 +2016-12-26 09:32:00,25.1862,84.635,6.01 +2016-12-26 09:47:00,24.1413,84.67,6.03 +2016-12-26 10:02:00,23.8425,84.6925,6.07 +2016-12-26 10:17:00,25.2375,84.7175,6.09 +2016-12-26 10:32:00,26.02,84.73,6.13 +2016-12-26 10:47:00,25.4725,84.775,6.17 +2016-12-26 11:02:00,23.9362,84.8025,6.2 +2016-12-26 11:17:00,26.3525,84.9225,6.21 +2016-12-26 11:32:00,23.455,84.9575,6.2 +2016-12-26 11:47:00,23.215,85.1525,6.24 +2016-12-26 12:02:00,21.4662,85.2175,6.28 +2016-12-26 12:17:00,22.3438,85.2775,6.29 +2016-12-26 12:32:00,24.0863,85.36,6.29 +2016-12-26 12:47:00,25.77,85.325,6.27 +2016-12-26 13:02:00,23.1137,85.3375,6.27 +2016-12-26 13:17:00,25.77,85.2775,6.26 +2016-12-26 13:32:00,24.94,85.2475,6.25 +2016-12-26 13:47:00,23.7025,85.25,6.24 +2016-12-26 14:02:00,25.1387,85.29,6.22 +2016-12-26 14:17:00,25.43,85.3625,6.2 +2016-12-26 14:32:00,24.3387,85.4425,6.17 +2016-12-26 14:47:00,23.6537,85.5225,6.16 +2016-12-26 15:02:00,25.0387,85.6125,6.15 +2016-12-26 15:17:00,24.94,85.63,6.14 +2016-12-26 15:32:00,25.3763,85.5425,6.14 +2016-12-26 15:47:00,23.6525,85.46,6.14 +2016-12-26 16:02:00,23.46,85.5125,6.14 +2016-12-26 16:17:00,25.725,85.6075,6.14 +2016-12-26 16:32:00,24.3913,85.68,6.13 +2016-12-26 16:47:00,24.7887,85.6825,6.14 +2016-12-26 17:02:00,24.545,85.73,6.11 +2016-12-26 17:17:00,23.8438,85.7775,6.09 +2016-12-26 17:32:00,26.2087,85.93,6.08 +2016-12-26 17:47:00,24.14,86.0175,6.06 +2016-12-26 18:02:00,23.7988,86.0825,6.04 +2016-12-26 18:17:00,23.305,86.135,6.04 +2016-12-26 18:32:00,23.555,86.215,6.03 +2016-12-26 18:47:00,23.7962,86.235,6.0 +2016-12-26 19:02:00,25.5238,86.205,5.98 +2016-12-26 19:17:00,24.9425,86.0925,5.97 +2016-12-26 19:32:00,24.7875,85.945,5.96 +2016-12-26 19:47:00,23.5037,85.745,5.97 +2016-12-26 20:02:00,23.5525,85.6375,5.95 +2016-12-26 20:17:00,24.5413,85.62,5.93 +2016-12-26 20:32:00,24.0362,85.525,5.91 +2016-12-26 20:47:00,25.2325,85.565,5.88 +2016-12-26 21:02:00,24.24,85.5775,5.87 +2016-12-26 21:17:00,24.085,85.62,5.85 +2016-12-26 21:32:00,23.6062,85.7,5.84 +2016-12-26 21:47:00,24.89,85.7525,5.81 +2016-12-26 22:02:00,25.82,85.7975,5.77 +2016-12-26 22:17:00,22.9275,85.815,5.73 +2016-12-26 22:32:00,25.0875,85.8425,5.72 +2016-12-26 22:47:00,23.6025,85.88,5.69 +2016-12-26 23:02:00,24.9912,85.9125,5.66 +2016-12-26 23:17:00,23.36,85.9025,5.64 +2016-12-26 23:32:00,25.4225,85.7925,5.61 +2016-12-26 23:47:00,25.3787,85.61,5.58 +2016-12-27 00:02:00,23.9375,85.5775,5.55 +2016-12-27 00:17:00,24.5912,85.58,5.52 +2016-12-27 00:32:00,24.54,85.6625,5.48 +2016-12-27 00:47:00,23.94,85.6975,5.43 +2016-12-27 01:02:00,25.7237,85.6675,5.41 +2016-12-27 01:17:00,24.2913,85.8725,5.4 +2016-12-27 01:32:00,24.6875,85.92,5.39 +2016-12-27 01:47:00,23.555,85.9675,5.36 +2016-12-27 02:02:00,23.455,86.0325,5.33 +2016-12-27 02:17:00,23.89,86.0525,5.32 +2016-12-27 02:32:00,23.0187,86.085,5.34 +2016-12-27 02:47:00,25.8213,86.04,5.31 +2016-12-27 03:02:00,23.6,85.9875,5.27 +2016-12-27 03:17:00,25.5713,85.875,5.25 +2016-12-27 03:32:00,23.985,85.78,5.25 +2016-12-27 03:47:00,25.77,85.6375,5.26 +2016-12-27 04:02:00,24.19,85.5775,5.24 +2016-12-27 04:17:00,24.7862,85.525,5.22 +2016-12-27 04:32:00,25.8225,85.5525,5.17 +2016-12-27 04:47:00,26.1588,85.6125,5.13 +2016-12-27 05:02:00,25.0375,85.6575,5.11 +2016-12-27 05:17:00,22.39,85.6875,5.07 +2016-12-27 05:32:00,24.4375,85.7475,5.05 +2016-12-27 05:47:00,24.1888,85.845,5.01 +2016-12-27 06:02:00,25.1862,85.9625,5.0 +2016-12-27 06:17:00,24.785,86.065,4.97 +2016-12-27 06:32:00,24.5413,86.1075,4.93 +2016-12-27 06:47:00,24.785,86.0725,4.9 +2016-12-27 07:02:00,24.7862,86.06,4.87 +2016-12-27 07:17:00,24.885,85.93,4.85 +2016-12-27 07:32:00,24.3913,85.95,4.82 +2016-12-27 07:47:00,24.135,85.84,4.81 +2016-12-27 08:02:00,24.94,85.77,4.82 +2016-12-27 08:17:00,26.55,85.635,4.79 +2016-12-27 08:32:00,22.6775,85.66,4.77 +2016-12-27 08:47:00,23.505,85.7475,4.77 +2016-12-27 09:02:00,25.085,85.84,4.78 +2016-12-27 09:17:00,24.44,85.99,4.8 +2016-12-27 09:32:00,24.9887,86.1075,4.8 +2016-12-27 09:47:00,26.4,86.195,4.81 +2016-12-27 10:02:00,24.44,86.255,4.85 +2016-12-27 10:17:00,23.3063,86.3125,4.87 +2016-12-27 10:32:00,24.2937,86.4275,4.9 +2016-12-27 10:47:00,24.2875,86.635,4.91 +2016-12-27 11:02:00,25.62,86.7675,4.94 +2016-12-27 11:17:00,26.7462,86.81,5.03 +2016-12-27 11:32:00,25.7213,86.8725,5.1 +2016-12-27 11:47:00,23.36,86.855,5.11 +2016-12-27 12:02:00,24.2375,86.855,5.09 +2016-12-27 12:17:00,25.475,86.7525,5.08 +2016-12-27 12:32:00,23.8438,86.71,5.1 +2016-12-27 12:47:00,24.2887,86.64,5.13 +2016-12-27 13:02:00,23.705,86.4825,5.15 +2016-12-27 13:17:00,23.845,86.3575,5.14 +2016-12-27 13:32:00,25.7738,86.3775,5.15 +2016-12-27 13:47:00,24.1875,86.3775,5.17 +2016-12-27 14:02:00,26.45,86.4625,5.18 +2016-12-27 14:17:00,24.685,86.51,5.2 +2016-12-27 14:32:00,24.5375,86.57,5.22 +2016-12-27 14:47:00,23.985,86.6375,5.23 +2016-12-27 15:02:00,25.4713,86.655,5.24 +2016-12-27 15:17:00,24.68,86.6575,5.22 +2016-12-27 15:32:00,26.2537,86.705,5.22 +2016-12-27 15:47:00,26.2475,86.8225,5.22 +2016-12-27 16:02:00,22.2913,86.7975,5.24 +2016-12-27 16:17:00,26.2975,86.7925,5.26 +2016-12-27 16:32:00,24.2862,86.6925,5.28 +2016-12-27 16:47:00,24.3887,86.535,5.29 +2016-12-27 17:02:00,25.6712,86.4375,5.3 +2016-12-27 17:17:00,23.2087,86.4325,5.32 +2016-12-27 17:32:00,24.7387,86.44,5.35 +2016-12-27 17:47:00,24.0338,86.5,5.38 +2016-12-27 18:02:00,24.0837,86.56,5.39 +2016-12-27 18:17:00,25.0863,86.59,5.42 +2016-12-27 18:32:00,23.555,86.6225,5.44 +2016-12-27 18:47:00,25.1825,86.6425,5.45 +2016-12-27 19:02:00,24.2875,86.7225,5.43 +2016-12-27 19:17:00,26.0625,86.7675,5.43 +2016-12-27 19:32:00,25.2838,86.8075,5.45 +2016-12-27 19:47:00,24.1888,86.8275,5.47 +2016-12-27 20:02:00,23.3575,86.82,5.48 +2016-12-27 20:17:00,25.6212,86.7775,5.5 +2016-12-27 20:32:00,26.3012,86.7025,5.5 +2016-12-27 20:47:00,23.8913,86.6275,5.5 +2016-12-27 21:02:00,23.795,86.54,5.51 +2016-12-27 21:17:00,24.8875,86.4325,5.54 +2016-12-27 21:32:00,25.6675,86.355,5.57 +2016-12-27 21:47:00,26.8475,86.3525,5.59 +2016-12-27 22:02:00,25.5675,86.3325,5.59 +2016-12-27 22:17:00,24.5887,86.3775,5.61 +2016-12-27 22:32:00,25.5675,86.4175,5.63 +2016-12-27 22:47:00,23.7475,86.45,5.64 +2016-12-27 23:02:00,26.1575,86.4925,5.65 +2016-12-27 23:17:00,24.6375,86.535,5.66 +2016-12-27 23:32:00,25.8675,86.6025,5.68 +2016-12-27 23:47:00,25.135,86.6375,5.69 +2016-12-28 00:02:00,23.9375,86.65,5.71 +2016-12-28 00:17:00,25.5713,86.6825,5.7 +2016-12-28 00:32:00,22.8288,86.71,5.68 +2016-12-28 00:47:00,25.1325,86.5875,5.68 +2016-12-28 01:02:00,24.3438,86.4625,5.7 +2016-12-28 01:17:00,23.985,86.3425,5.72 +2016-12-28 01:32:00,22.8262,86.195,5.74 +2016-12-28 01:47:00,23.8913,86.1625,5.74 +2016-12-28 02:02:00,24.445,86.1625,5.72 +2016-12-28 02:17:00,24.5875,86.235,5.71 +2016-12-28 02:32:00,25.3763,86.2075,5.73 +2016-12-28 02:47:00,25.82,86.23,5.73 +2016-12-28 03:02:00,26.5512,86.2225,5.73 +2016-12-28 03:17:00,24.5887,86.2225,5.72 +2016-12-28 03:32:00,25.2375,86.3075,5.71 +2016-12-28 03:47:00,25.525,86.3725,5.72 +2016-12-28 04:02:00,24.39,86.3525,5.73 +2016-12-28 04:17:00,24.0875,86.45,5.73 +2016-12-28 04:32:00,24.3875,86.485,5.73 +2016-12-28 04:47:00,25.4225,86.4875,5.74 +2016-12-28 05:02:00,25.1325,86.5025,5.75 +2016-12-28 05:17:00,24.9887,86.49,5.75 +2016-12-28 05:32:00,23.7462,86.5025,5.74 +2016-12-28 05:47:00,26.2975,86.4775,5.73 +2016-12-28 06:02:00,23.6038,86.485,5.73 +2016-12-28 06:17:00,24.6875,86.445,5.72 +2016-12-28 06:32:00,23.505,86.44,5.73 +2016-12-28 06:47:00,24.7337,86.43,5.72 +2016-12-28 07:02:00,26.3538,86.3475,5.7 +2016-12-28 07:17:00,25.5713,86.2225,5.7 +2016-12-28 07:32:00,23.6512,86.115,5.7 +2016-12-28 07:47:00,26.015,86.0,5.69 +2016-12-28 08:02:00,25.4262,85.935,5.68 +2016-12-28 08:17:00,24.3913,85.8675,5.68 +2016-12-28 08:32:00,25.3775,85.9,5.7 +2016-12-28 08:47:00,24.54,85.97,5.7 +2016-12-28 09:02:00,26.65,86.0025,5.71 +2016-12-28 09:17:00,24.4912,86.0575,5.75 +2016-12-28 09:32:00,26.4987,86.145,5.76 +2016-12-28 09:47:00,24.5425,86.195,5.75 +2016-12-28 10:02:00,23.065,86.195,5.75 +2016-12-28 10:17:00,26.1125,86.23,5.78 +2016-12-28 10:32:00,25.2375,86.2825,5.82 +2016-12-28 10:47:00,26.35,86.315,5.81 +2016-12-28 11:02:00,25.1862,86.395,5.81 +2016-12-28 11:17:00,26.0163,86.46,5.83 +2016-12-28 11:32:00,24.8875,86.5375,5.88 +2016-12-28 11:47:00,25.6212,86.5975,5.9 +2016-12-28 12:02:00,26.9425,86.6425,5.91 +2016-12-28 12:17:00,26.015,86.6525,5.93 +2016-12-28 12:32:00,26.5013,86.675,5.95 +2016-12-28 12:47:00,26.2562,86.66,5.97 +2016-12-28 13:02:00,26.1625,86.6375,5.96 +2016-12-28 13:17:00,25.2363,86.7125,5.95 +2016-12-28 13:32:00,23.89,86.6925,5.94 +2016-12-28 13:47:00,24.6375,86.7225,5.92 +2016-12-28 14:02:00,23.6537,86.735,5.92 +2016-12-28 14:17:00,24.0362,86.725,5.9 +2016-12-28 14:32:00,24.9912,86.7275,5.89 +2016-12-28 14:47:00,23.75,86.605,5.89 +2016-12-28 15:02:00,24.7862,86.4775,5.89 +2016-12-28 15:17:00,24.1888,86.315,5.87 +2016-12-28 15:32:00,26.5975,86.1875,5.87 +2016-12-28 15:47:00,25.62,86.095,5.87 +2016-12-28 16:02:00,24.44,86.045,5.86 +2016-12-28 16:17:00,25.9675,86.0325,5.88 +2016-12-28 16:32:00,24.5863,86.0225,5.88 +2016-12-28 16:47:00,24.5413,86.0225,5.86 +2016-12-28 17:02:00,24.3387,86.045,5.84 +2016-12-28 17:17:00,25.87,86.04,5.83 +2016-12-28 17:32:00,26.065,86.055,5.83 +2016-12-28 17:47:00,25.1837,86.0675,5.85 +2016-12-28 18:02:00,25.0875,86.0775,5.86 +2016-12-28 18:17:00,23.255,86.09,5.85 +2016-12-28 18:32:00,25.375,86.115,5.84 +2016-12-28 18:47:00,25.0837,86.1525,5.84 +2016-12-28 19:02:00,26.3,86.1725,5.86 +2016-12-28 19:17:00,25.2838,86.205,5.87 +2016-12-28 19:32:00,25.4262,86.15,5.89 +2016-12-28 19:47:00,25.5212,86.055,5.94 +2016-12-28 20:02:00,26.2075,85.9175,5.97 +2016-12-28 20:17:00,24.3387,85.7925,5.99 +2016-12-28 20:32:00,26.9912,85.73,6.01 +2016-12-28 20:47:00,26.45,85.725,6.01 +2016-12-28 21:02:00,25.2825,85.77,6.04 +2016-12-28 21:17:00,25.2363,85.8625,6.09 +2016-12-28 21:32:00,25.38,85.9,6.1 +2016-12-28 21:47:00,26.8475,85.9375,6.08 +2016-12-28 22:02:00,25.0375,85.9825,6.05 +2016-12-28 22:17:00,24.0825,86.01,6.01 +2016-12-28 22:32:00,24.3375,86.0125,5.97 +2016-12-28 22:47:00,24.5413,85.9875,5.95 +2016-12-28 23:02:00,26.4,85.8875,5.93 +2016-12-28 23:17:00,24.9875,85.7575,5.93 +2016-12-28 23:32:00,25.6725,85.62,5.93 +2016-12-28 23:47:00,25.6225,85.5475,5.93 +2016-12-29 00:02:00,25.6175,85.5025,5.93 +2016-12-29 00:17:00,26.3525,85.47,5.92 +2016-12-29 00:32:00,26.1562,85.4975,5.9 +2016-12-29 00:47:00,25.7725,85.5475,5.87 +2016-12-29 01:02:00,25.7237,85.6025,5.85 +2016-12-29 01:17:00,26.94,85.67,5.83 +2016-12-29 01:32:00,25.8162,85.705,5.81 +2016-12-29 01:47:00,24.2412,85.7425,5.79 +2016-12-29 02:02:00,26.5987,85.7875,5.76 +2016-12-29 02:17:00,27.4425,85.7975,5.74 +2016-12-29 02:32:00,26.99,85.785,5.75 +2016-12-29 02:47:00,23.9875,85.6925,5.75 +2016-12-29 03:02:00,23.7038,85.57,5.75 +2016-12-29 03:17:00,25.9662,85.4325,5.74 +2016-12-29 03:32:00,24.2887,85.34,5.75 +2016-12-29 03:47:00,24.7862,85.29,5.76 +2016-12-29 04:02:00,22.3838,85.275,5.76 +2016-12-29 04:17:00,25.5225,85.2875,5.78 +2016-12-29 04:32:00,25.7725,85.305,5.77 +2016-12-29 04:47:00,25.4713,85.34,5.75 +2016-12-29 05:02:00,25.6212,85.3875,5.75 +2016-12-29 05:17:00,24.4938,85.405,5.75 +2016-12-29 05:32:00,26.895,85.4175,5.74 +2016-12-29 05:47:00,25.2838,85.4275,5.72 +2016-12-29 06:02:00,26.255,85.44,5.71 +2016-12-29 06:17:00,24.8375,85.4425,5.7 +2016-12-29 06:32:00,25.9187,85.4025,5.69 +2016-12-29 06:47:00,25.0375,85.3175,5.69 +2016-12-29 07:02:00,25.1362,85.215,5.67 +2016-12-29 07:17:00,24.29,85.0875,5.65 +2016-12-29 07:32:00,22.8775,84.9575,5.65 +2016-12-29 07:47:00,24.2387,84.815,5.63 +2016-12-29 08:02:00,26.1113,84.7275,5.6 +2016-12-29 08:17:00,27.2363,84.6725,5.56 +2016-12-29 08:32:00,24.6862,84.6875,5.53 +2016-12-29 08:47:00,24.0387,84.705,5.55 +2016-12-29 09:02:00,24.7363,84.69,5.55 +2016-12-29 09:17:00,25.3312,84.7125,5.54 +2016-12-29 09:32:00,24.39,84.7175,5.53 +2016-12-29 09:47:00,26.945,84.735,5.53 +2016-12-29 10:02:00,24.585,84.745,5.53 +2016-12-29 10:17:00,25.6675,84.745,5.54 +2016-12-29 10:32:00,26.5025,84.7575,5.54 +2016-12-29 10:47:00,25.9637,84.75,5.54 +2016-12-29 11:02:00,26.5987,84.7725,5.53 +2016-12-29 11:17:00,26.4463,84.775,5.53 +2016-12-29 11:32:00,27.1387,84.7975,5.54 +2016-12-29 11:47:00,26.3,84.795,5.57 +2016-12-29 12:02:00,27.2887,84.81,5.57 +2016-12-29 12:17:00,26.2525,84.8425,5.56 +2016-12-29 12:32:00,26.5512,84.86,5.56 +2016-12-29 12:47:00,24.685,84.865,5.56 +2016-12-29 13:02:00,25.525,84.885,5.58 +2016-12-29 13:17:00,24.5863,84.87,5.57 +2016-12-29 13:32:00,24.1375,84.8725,5.53 +2016-12-29 13:47:00,25.2825,84.89,5.5 +2016-12-29 14:02:00,26.2988,84.8725,5.47 +2016-12-29 14:17:00,26.4475,84.89,5.45 +2016-12-29 14:32:00,25.62,84.875,5.44 +2016-12-29 14:47:00,26.1113,84.89,5.41 +2016-12-29 15:02:00,23.7975,84.9025,5.4 +2016-12-29 15:17:00,25.6237,84.9275,5.39 +2016-12-29 15:32:00,25.38,84.955,5.39 +2016-12-29 15:47:00,23.6038,84.9575,5.39 +2016-12-29 16:02:00,25.2337,84.9825,5.36 +2016-12-29 16:17:00,25.0387,84.99,5.35 +2016-12-29 16:32:00,25.0413,85.0,5.33 +2016-12-29 16:47:00,23.46,85.01,5.3 +2016-12-29 17:02:00,26.1125,85.0175,5.28 +2016-12-29 17:17:00,24.94,85.035,5.27 +2016-12-29 17:32:00,25.8225,85.0475,5.25 +2016-12-29 17:47:00,24.4425,85.0475,5.24 +2016-12-29 18:02:00,25.3337,85.0625,5.22 +2016-12-29 18:17:00,24.9925,85.055,5.22 +2016-12-29 18:32:00,26.6012,85.08,5.18 +2016-12-29 18:47:00,24.6925,85.095,5.16 +2016-12-29 19:02:00,23.89,85.095,5.14 +2016-12-29 19:17:00,24.885,85.1025,5.12 +2016-12-29 19:32:00,26.5537,85.115,5.12 +2016-12-29 19:47:00,25.3775,85.1075,5.1 +2016-12-29 20:02:00,25.0887,85.105,5.08 +2016-12-29 20:17:00,26.7475,85.11,5.06 +2016-12-29 20:32:00,26.75,85.1125,5.06 +2016-12-29 20:47:00,23.555,85.125,5.03 +2016-12-29 21:02:00,26.065,85.1475,5.03 +2016-12-29 21:17:00,25.4275,85.1475,5.03 +2016-12-29 21:32:00,26.1588,85.1625,5.04 +2016-12-29 21:47:00,26.165,85.175,5.03 +2016-12-29 22:02:00,24.8387,85.1725,5.02 +2016-12-29 22:17:00,26.6025,85.1725,5.0 +2016-12-29 22:32:00,25.425,85.1625,4.96 +2016-12-29 22:47:00,25.8675,85.1675,4.95 +2016-12-29 23:02:00,24.39,85.1525,4.93 +2016-12-29 23:17:00,25.2838,85.1575,4.91 +2016-12-29 23:32:00,24.3887,85.1675,4.89 +2016-12-29 23:47:00,23.1137,85.1725,4.88 +2016-12-30 00:02:00,23.89,85.1725,4.85 +2016-12-30 00:17:00,25.135,85.1775,4.84 +2016-12-30 00:32:00,26.3512,85.165,4.79 +2016-12-30 00:47:00,24.5863,85.1625,4.75 +2016-12-30 01:02:00,25.2375,85.18,4.72 +2016-12-30 01:17:00,27.2937,85.1675,4.7 +2016-12-30 01:32:00,27.0413,85.165,4.7 +2016-12-30 01:47:00,26.5525,85.1625,4.67 +2016-12-30 02:02:00,25.7237,85.1625,4.65 +2016-12-30 02:17:00,25.475,85.1525,4.63 +2016-12-30 02:32:00,26.16,85.13,4.6 +2016-12-30 02:47:00,27.6912,85.1075,4.56 +2016-12-30 03:02:00,26.6987,85.095,4.52 +2016-12-30 03:17:00,23.6562,85.0725,4.49 +2016-12-30 03:32:00,25.72,85.055,4.44 +2016-12-30 03:47:00,26.5987,85.03,4.41 +2016-12-30 04:02:00,25.0387,85.01,4.39 +2016-12-30 04:17:00,27.04,84.995,4.38 +2016-12-30 04:32:00,27.4962,84.9525,4.35 +2016-12-30 04:47:00,25.085,84.9025,4.32 +2016-12-30 05:02:00,25.185,84.875,4.28 +2016-12-30 05:17:00,25.185,84.855,4.24 +2016-12-30 05:32:00,24.3925,84.8325,4.22 +2016-12-30 05:47:00,25.1362,84.7975,4.2 +2016-12-30 06:02:00,26.55,84.755,4.18 +2016-12-30 06:17:00,23.7925,84.735,4.14 +2016-12-30 06:32:00,28.2425,84.7025,4.09 +2016-12-30 06:47:00,26.3487,84.6725,4.05 +2016-12-30 07:02:00,26.1113,84.6375,4.02 +2016-12-30 07:17:00,26.11,84.605,3.98 +2016-12-30 07:32:00,25.5225,84.59,3.93 +2016-12-30 07:47:00,25.1813,84.5575,3.88 +2016-12-30 08:02:00,25.9212,84.51,3.88 +2016-12-30 08:17:00,25.665,84.44,3.85 +2016-12-30 08:32:00,23.455,84.37,3.82 +2016-12-30 08:47:00,25.1362,84.29,3.8 +2016-12-30 09:02:00,26.6488,84.2025,3.79 +2016-12-30 09:17:00,25.2325,84.145,3.77 +2016-12-30 09:32:00,26.2513,84.105,3.75 +2016-12-30 09:47:00,24.6325,84.0475,3.75 +2016-12-30 10:02:00,27.6937,84.0275,3.73 +2016-12-30 10:17:00,26.745,84.0125,3.72 +2016-12-30 10:32:00,26.8487,83.9975,3.72 +2016-12-30 10:47:00,27.8913,84.0,3.74 +2016-12-30 11:02:00,25.5687,84.0175,3.75 +2016-12-30 11:17:00,26.155,84.05,3.74 +2016-12-30 11:32:00,26.2525,84.05,3.74 +2016-12-30 11:47:00,27.9375,84.09,3.74 +2016-12-30 12:02:00,26.0163,84.125,3.76 +2016-12-30 12:17:00,26.2012,84.1425,3.76 +2016-12-30 12:32:00,24.8838,84.1825,3.76 +2016-12-30 12:47:00,24.4887,84.22,3.76 +2016-12-30 13:02:00,27.1387,84.2325,3.75 +2016-12-30 13:17:00,24.4412,84.2525,3.74 +2016-12-30 13:32:00,27.235,84.2825,3.73 +2016-12-30 13:47:00,23.7,84.34,3.72 +2016-12-30 14:02:00,26.1113,84.3725,3.69 +2016-12-30 14:17:00,26.8475,84.4175,3.68 +2016-12-30 14:32:00,25.7712,84.485,3.68 +2016-12-30 14:47:00,26.4475,84.565,3.69 +2016-12-30 15:02:00,26.9875,84.655,3.68 +2016-12-30 15:17:00,25.9125,84.7275,3.66 +2016-12-30 15:32:00,25.7188,84.8,3.65 +2016-12-30 15:47:00,24.4388,84.8775,3.64 +2016-12-30 16:02:00,26.5987,84.955,3.62 +2016-12-30 16:17:00,25.7162,85.025,3.59 +2016-12-30 16:32:00,24.0338,85.0875,3.57 +2016-12-30 16:47:00,25.135,85.14,3.55 +2016-12-30 17:02:00,26.8475,85.155,3.53 +2016-12-30 17:17:00,26.1125,85.175,3.53 +2016-12-30 17:32:00,25.04,85.1875,3.49 +2016-12-30 17:47:00,25.7237,85.17,3.45 +2016-12-30 18:02:00,24.5875,85.07,3.43 +2016-12-30 18:17:00,26.75,84.9175,3.4 +2016-12-30 18:32:00,27.6975,84.74,3.4 +2016-12-30 18:47:00,28.4437,84.56,3.4 +2016-12-30 19:02:00,25.3825,84.375,3.37 +2016-12-30 19:17:00,26.1113,84.1875,3.37 +2016-12-30 19:32:00,25.52,83.995,3.36 +2016-12-30 19:47:00,26.16,83.85,3.36 +2016-12-30 20:02:00,24.6862,83.715,3.38 +2016-12-30 20:17:00,26.5025,83.6225,3.36 +2016-12-30 20:32:00,25.4725,83.535,3.35 +2016-12-30 20:47:00,26.7012,83.5175,3.37 +2016-12-30 21:02:00,25.7225,83.5125,3.41 +2016-12-30 21:17:00,27.1387,83.4975,3.47 +2016-12-30 21:32:00,24.2375,83.48,3.49 +2016-12-30 21:47:00,26.255,83.4975,3.52 +2016-12-30 22:02:00,25.2337,83.4825,3.52 +2016-12-30 22:17:00,26.2537,83.485,3.49 +2016-12-30 22:32:00,26.25,83.495,3.45 +2016-12-30 22:47:00,23.8875,83.5025,3.36 +2016-12-30 23:02:00,24.7875,83.5625,3.32 +2016-12-30 23:17:00,26.1588,83.65,3.31 +2016-12-30 23:32:00,25.8675,83.76,3.24 +2016-12-30 23:47:00,24.14,83.8625,3.18 +2016-12-31 00:02:00,24.54,83.96,3.11 +2016-12-31 00:17:00,26.5987,84.0125,3.03 +2016-12-31 00:32:00,28.1912,84.1225,2.99 +2016-12-31 00:47:00,24.8887,84.185,3.0 +2016-12-31 01:02:00,27.5437,84.26,3.1 +2016-12-31 01:17:00,27.8913,84.3125,3.16 +2016-12-31 01:32:00,27.94,84.3425,3.12 +2016-12-31 01:47:00,26.2537,84.3625,3.09 +2016-12-31 02:02:00,26.8487,84.3675,3.06 +2016-12-31 02:17:00,27.1362,84.3675,3.04 +2016-12-31 02:32:00,24.7838,84.365,3.02 +2016-12-31 02:47:00,26.9425,84.3325,2.99 +2016-12-31 03:02:00,26.9437,84.3175,2.97 +2016-12-31 03:17:00,26.3988,84.31,2.96 +2016-12-31 03:32:00,27.7887,84.2975,2.96 +2016-12-31 03:47:00,25.2812,84.2775,2.95 +2016-12-31 04:02:00,27.2375,84.2775,2.94 +2016-12-31 04:17:00,25.7225,84.2875,2.92 +2016-12-31 04:32:00,25.8187,84.2775,2.89 +2016-12-31 04:47:00,25.7237,84.265,2.86 +2016-12-31 05:02:00,26.3,84.26,2.82 +2016-12-31 05:17:00,27.2363,84.255,2.82 +2016-12-31 05:32:00,26.7,84.2575,2.79 +2016-12-31 05:47:00,24.885,84.2325,2.78 +2016-12-31 06:02:00,27.3412,84.2225,2.76 +2016-12-31 06:17:00,25.3363,84.2075,2.72 +2016-12-31 06:32:00,25.2925,84.1625,2.69 +2016-12-31 06:47:00,27.7412,84.125,2.63 +2016-12-31 07:02:00,25.77,84.1025,2.52 +2016-12-31 07:17:00,25.2825,84.0825,2.46 +2016-12-31 07:32:00,27.3925,84.105,2.43 +2016-12-31 07:47:00,27.74,84.1325,2.42 +2016-12-31 08:02:00,25.8725,84.17,2.38 +2016-12-31 08:17:00,26.995,84.185,2.36 +2016-12-31 08:32:00,26.645,84.1775,2.32 +2016-12-31 08:47:00,27.1875,84.155,2.3 +2016-12-31 09:02:00,26.5987,84.11,2.29 +2016-12-31 09:17:00,26.0638,84.09,2.28 +2016-12-31 09:32:00,27.89,84.105,2.26 +2016-12-31 09:47:00,28.3375,84.125,2.24 +2016-12-31 10:02:00,26.8937,84.155,2.23 +2016-12-31 10:17:00,27.1387,84.1875,2.22 +2016-12-31 10:32:00,28.4425,84.2175,2.2 +2016-12-31 10:47:00,28.09,84.24,2.21 +2016-12-31 11:02:00,25.9637,84.2575,2.23 +2016-12-31 11:17:00,27.1825,84.275,2.21 +2016-12-31 11:32:00,27.6437,84.2875,2.22 +2016-12-31 11:47:00,27.1425,84.35,2.15 +2016-12-31 12:02:00,24.3387,84.4225,2.13 +2016-12-31 12:17:00,28.5825,84.47,2.14 +2016-12-31 12:32:00,26.4437,84.525,2.13 +2016-12-31 12:47:00,27.5437,84.54,2.14 +2016-12-31 13:02:00,26.545,84.555,2.17 +2016-12-31 13:17:00,26.6975,84.5625,2.16 +2016-12-31 13:32:00,28.5837,84.5675,2.14 +2016-12-31 13:47:00,26.945,84.5325,2.14 +2016-12-31 14:02:00,27.7387,84.5,2.18 +2016-12-31 14:17:00,28.585,84.455,2.16 +2016-12-31 14:32:00,26.1612,84.4075,2.15 +2016-12-31 14:47:00,25.8688,84.36,2.14 +2016-12-31 15:02:00,26.3637,84.2925,2.14 +2016-12-31 15:17:00,28.1075,84.2475,2.15 +2016-12-31 15:32:00,26.6087,84.1925,2.12 +2016-12-31 15:47:00,28.7875,84.1525,2.08 +2016-12-31 16:02:00,27.1425,84.09,2.06 +2016-12-31 16:17:00,26.8538,84.0925,2.06 +2016-12-31 16:32:00,27.7925,84.105,2.07 +2016-12-31 16:47:00,27.1425,84.1475,2.09 +2016-12-31 17:02:00,26.45,84.1725,2.08 +2016-12-31 17:17:00,27.6,84.1775,2.07 +2016-12-31 17:32:00,27.6975,84.1675,2.05 +2016-12-31 17:47:00,27.595,84.115,2.06 +2016-12-31 18:02:00,26.4512,84.07,2.09 +2016-12-31 18:17:00,28.5875,84.03,2.06 +2016-12-31 18:32:00,27.1862,83.945,2.04 +2016-12-31 18:47:00,29.0325,83.8775,2.04 +2016-12-31 19:02:00,26.6025,83.815,2.03 +2016-12-31 19:17:00,25.3787,83.76,2.03 +2016-12-31 19:32:00,27.445,83.685,2.01 +2016-12-31 19:47:00,28.0938,83.64,1.99 +2016-12-31 20:02:00,27.645,83.5875,1.99 +2016-12-31 20:17:00,26.115,83.5375,2.0 +2016-12-31 20:32:00,26.8025,83.475,2.01 +2016-12-31 20:47:00,28.0413,83.475,2.03 +2016-12-31 21:02:00,27.99,83.52,2.04 +2016-12-31 21:17:00,27.8412,83.5625,2.06 +2016-12-31 21:32:00,27.8425,83.6275,2.09 +2016-12-31 21:47:00,27.0387,83.645,2.09 +2016-12-31 22:02:00,25.87,83.68,2.11 +2016-12-31 22:17:00,26.99,83.7,2.14 +2016-12-31 22:32:00,27.6488,83.6725,2.15 +2016-12-31 22:47:00,26.1113,83.6475,2.16 +2016-12-31 23:02:00,27.8887,83.635,2.18 +2016-12-31 23:17:00,27.2375,83.6025,2.13 +2016-12-31 23:32:00,27.1425,83.5825,2.12 +2016-12-31 23:47:00,26.9925,83.5425,2.11 +2017-01-01 00:02:00,27.79,83.5,2.09 +2017-01-01 00:17:00,28.1475,83.46,2.07 +2017-01-01 00:32:00,26.1137,83.4325,2.07 +2017-01-01 00:47:00,27.1387,83.39,2.05 +2017-01-01 01:02:00,26.7988,83.3725,2.06 +2017-01-01 01:17:00,26.6488,83.36,2.05 +2017-01-01 01:32:00,27.14,83.3425,2.05 +2017-01-01 01:47:00,26.3975,83.365,2.03 +2017-01-01 02:02:00,25.5687,83.4225,2.0 +2017-01-01 02:17:00,26.9912,83.475,2.02 +2017-01-01 02:32:00,25.815,83.5575,2.03 +2017-01-01 02:47:00,28.585,83.6175,2.02 +2017-01-01 03:02:00,26.9388,83.675,2.04 +2017-01-01 03:17:00,26.7487,83.7125,2.06 +2017-01-01 03:32:00,27.34,83.75,2.07 +2017-01-01 03:47:00,25.5225,83.7675,2.07 +2017-01-01 04:02:00,27.835,83.7875,2.09 +2017-01-01 04:17:00,26.9412,83.775,2.09 +2017-01-01 04:32:00,27.2875,83.7625,2.11 +2017-01-01 04:47:00,26.4487,83.7425,2.12 +2017-01-01 05:02:00,25.965,83.7525,2.12 +2017-01-01 05:17:00,26.305,83.735,2.14 +2017-01-01 05:32:00,27.4425,83.73,2.12 +2017-01-01 05:47:00,26.4525,83.7375,2.08 +2017-01-01 06:02:00,25.7687,83.745,2.08 +2017-01-01 06:17:00,26.55,83.78,2.08 +2017-01-01 06:32:00,26.8475,83.805,2.07 +2017-01-01 06:47:00,26.9437,83.8175,2.07 +2017-01-01 07:02:00,26.8,83.8525,2.03 +2017-01-01 07:17:00,26.1125,83.875,1.98 +2017-01-01 07:32:00,25.8162,83.9275,1.96 +2017-01-01 07:47:00,26.8,83.96,1.93 +2017-01-01 08:02:00,25.9688,83.9775,1.93 +2017-01-01 08:17:00,27.2887,83.99,1.93 +2017-01-01 08:32:00,26.75,83.9525,1.91 +2017-01-01 08:47:00,27.3425,83.895,1.88 +2017-01-01 09:02:00,26.55,83.865,1.86 +2017-01-01 09:17:00,27.2937,83.84,1.87 +2017-01-01 09:32:00,27.0338,83.81,1.88 +2017-01-01 09:47:00,27.695,83.7825,1.89 +2017-01-01 10:02:00,27.6425,83.7825,1.91 +2017-01-01 10:17:00,26.85,83.795,1.92 +2017-01-01 10:32:00,29.1775,83.7825,1.93 +2017-01-01 10:47:00,26.8988,83.7725,1.95 +2017-01-01 11:02:00,27.5425,83.785,1.98 +2017-01-01 11:17:00,26.4487,83.8175,2.0 +2017-01-01 11:32:00,25.9187,83.83,2.03 +2017-01-01 11:47:00,26.6512,83.8175,2.06 +2017-01-01 12:02:00,28.2438,83.85,2.07 +2017-01-01 12:17:00,25.3312,83.875,2.08 +2017-01-01 12:32:00,27.3913,83.9075,2.09 +2017-01-01 12:47:00,25.6725,83.965,2.1 +2017-01-01 13:02:00,25.4262,84.0375,2.1 +2017-01-01 13:17:00,27.3925,84.1175,2.1 +2017-01-01 13:32:00,27.5437,84.2125,2.11 +2017-01-01 13:47:00,27.1375,84.27,2.12 +2017-01-01 14:02:00,26.0662,84.3325,2.13 +2017-01-01 14:17:00,26.795,84.37,2.12 +2017-01-01 14:32:00,25.935,84.41,2.13 +2017-01-01 14:47:00,26.2588,84.445,2.13 +2017-01-01 15:02:00,26.7925,84.4675,2.13 +2017-01-01 15:17:00,27.2875,84.4875,2.1 +2017-01-01 15:32:00,24.735,84.4975,2.09 +2017-01-01 15:47:00,25.9637,84.5025,2.07 +2017-01-01 16:02:00,26.3487,84.5175,2.06 +2017-01-01 16:17:00,28.24,84.52,2.06 +2017-01-01 16:32:00,28.1912,84.5175,2.06 +2017-01-01 16:47:00,24.7337,84.5075,2.04 +2017-01-01 17:02:00,26.745,84.515,2.02 +2017-01-01 17:17:00,27.7375,84.5275,2.01 +2017-01-01 17:32:00,28.4425,84.535,2.0 +2017-01-01 17:47:00,26.845,84.5275,1.99 +2017-01-01 18:02:00,25.57,84.5375,1.98 +2017-01-01 18:17:00,28.9325,84.515,1.97 +2017-01-01 18:32:00,25.8662,84.495,1.97 +2017-01-01 18:47:00,26.6475,84.5,1.95 +2017-01-01 19:02:00,28.4887,84.5,1.92 +2017-01-01 19:17:00,26.8463,84.5025,1.91 +2017-01-01 19:32:00,25.135,84.515,1.91 +2017-01-01 19:47:00,25.8112,84.515,1.91 +2017-01-01 20:02:00,26.3875,84.5,1.93 +2017-01-01 20:17:00,25.6113,84.4975,1.94 +2017-01-01 20:32:00,28.1338,84.4925,1.93 +2017-01-01 20:47:00,27.0825,84.4975,1.95 +2017-01-01 21:02:00,27.4388,84.495,1.97 +2017-01-01 21:17:00,27.6437,84.505,2.0 +2017-01-01 21:32:00,25.465,84.4975,2.04 +2017-01-01 21:47:00,26.755,84.4875,2.08 +2017-01-01 22:02:00,26.0287,84.485,2.1 +2017-01-01 22:17:00,25.4825,84.465,2.11 +2017-01-01 22:32:00,26.3613,84.455,2.12 +2017-01-01 22:47:00,25.535,84.4325,2.15 +2017-01-01 23:02:00,26.4112,84.4075,2.16 +2017-01-01 23:17:00,26.955,84.395,2.16 +2017-01-01 23:32:00,27.75,84.385,2.17 +2017-01-01 23:47:00,25.6338,84.37,2.17 +2017-01-02 00:02:00,26.8525,84.3525,2.18 +2017-01-02 00:17:00,26.56,84.3425,2.18 +2017-01-02 00:32:00,26.1237,84.335,2.18 +2017-01-02 00:47:00,26.2675,84.3325,2.18 +2017-01-02 01:02:00,25.585,84.3125,2.18 +2017-01-02 01:17:00,26.5662,84.2975,2.21 +2017-01-02 01:32:00,26.4125,84.315,2.19 +2017-01-02 01:47:00,25.78,84.3125,2.18 +2017-01-02 02:02:00,24.8988,84.325,2.2 +2017-01-02 02:17:00,27.6038,84.385,2.23 +2017-01-02 02:32:00,28.2012,84.4675,2.23 +2017-01-02 02:47:00,26.2663,84.5725,2.22 +2017-01-02 03:02:00,26.6612,84.66,2.21 +2017-01-02 03:17:00,25.0975,84.7375,2.22 +2017-01-02 03:32:00,26.1263,84.825,2.24 +2017-01-02 03:47:00,25.6862,84.8925,2.24 +2017-01-02 04:02:00,25.68,84.955,2.23 +2017-01-02 04:17:00,27.705,85.01,2.22 +2017-01-02 04:32:00,27.3937,85.065,2.21 +2017-01-02 04:47:00,26.2663,85.1225,2.2 +2017-01-02 05:02:00,26.3138,85.16,2.2 +2017-01-02 05:17:00,27.1537,85.1775,2.2 +2017-01-02 05:32:00,27.3512,85.2225,2.18 +2017-01-02 05:47:00,26.5025,85.235,2.17 +2017-01-02 06:02:00,26.4562,85.245,2.16 +2017-01-02 06:17:00,25.195,85.2625,2.15 +2017-01-02 06:32:00,24.24,85.2725,2.12 +2017-01-02 06:47:00,26.6625,85.285,2.07 +2017-01-02 07:02:00,27.2475,85.3075,2.07 +2017-01-02 07:17:00,25.785,85.325,2.06 +2017-01-02 07:32:00,26.5638,85.3325,2.02 +2017-01-02 07:47:00,26.5963,85.32,1.99 +2017-01-02 08:02:00,26.3475,85.29,1.97 +2017-01-02 08:17:00,27.34,85.2575,1.98 +2017-01-02 08:32:00,26.9463,85.215,1.97 +2017-01-02 08:47:00,26.6512,85.1675,1.94 +2017-01-02 09:02:00,26.1188,85.1625,1.91 +2017-01-02 09:17:00,25.8712,85.1775,1.91 +2017-01-02 09:32:00,25.5825,85.21,1.98 +2017-01-02 09:47:00,26.8012,85.3025,2.11 +2017-01-02 10:02:00,25.05,85.4575,2.18 +2017-01-02 10:17:00,28.205,85.555,2.21 +2017-01-02 10:32:00,28.6912,85.6325,2.21 +2017-01-02 10:47:00,27.3825,85.6825,2.23 +2017-01-02 11:02:00,26.4925,85.6875,2.22 +2017-01-02 11:17:00,26.0587,85.665,2.17 +2017-01-02 11:32:00,26.345,85.6225,2.1 +2017-01-02 11:47:00,25.4688,85.5625,2.06 +2017-01-02 12:02:00,24.9875,85.4775,2.05 +2017-01-02 12:17:00,26.2475,85.395,2.06 +2017-01-02 12:32:00,27.0387,85.3425,2.08 +2017-01-02 12:47:00,26.9912,85.35,2.09 +2017-01-02 13:02:00,26.8425,85.38,2.09 +2017-01-02 13:17:00,27.1362,85.415,2.1 +2017-01-02 13:32:00,26.4512,85.45,2.11 +2017-01-02 13:47:00,26.6,85.4625,2.13 +2017-01-02 14:02:00,26.6963,85.4325,2.15 +2017-01-02 14:17:00,26.3975,85.4125,2.15 +2017-01-02 14:32:00,25.915,85.3775,2.15 +2017-01-02 14:47:00,27.0375,85.325,2.15 +2017-01-02 15:02:00,27.135,85.2875,2.16 +2017-01-02 15:17:00,26.9912,85.2325,2.16 +2017-01-02 15:32:00,27.0413,85.21,2.13 +2017-01-02 15:47:00,25.9637,85.205,2.11 +2017-01-02 16:02:00,24.9863,85.245,2.09 +2017-01-02 16:17:00,27.7875,85.275,2.08 +2017-01-02 16:32:00,26.1113,85.3125,2.09 +2017-01-02 16:47:00,26.11,85.3375,2.09 +2017-01-02 17:02:00,25.8662,85.3525,2.06 +2017-01-02 17:17:00,26.8,85.365,2.04 +2017-01-02 17:32:00,25.6675,85.3625,2.03 +2017-01-02 17:47:00,26.445,85.3425,2.01 +2017-01-02 18:02:00,26.6,85.325,2.01 +2017-01-02 18:17:00,26.3,85.3125,1.99 +2017-01-02 18:32:00,27.3387,85.265,1.97 +2017-01-02 18:47:00,26.5987,85.245,1.95 +2017-01-02 19:02:00,27.4938,85.265,1.95 +2017-01-02 19:17:00,27.8875,85.3025,1.94 +2017-01-02 19:32:00,26.0625,85.3425,1.93 +2017-01-02 19:47:00,26.6987,85.375,1.92 +2017-01-02 20:02:00,26.745,85.4175,1.91 +2017-01-02 20:17:00,27.4412,85.4325,1.9 +2017-01-02 20:32:00,25.1862,85.41,1.91 +2017-01-02 20:47:00,27.235,85.38,1.9 +2017-01-02 21:02:00,28.735,85.375,1.88 +2017-01-02 21:17:00,27.7875,85.3325,1.86 +2017-01-02 21:32:00,27.5413,85.32,1.85 +2017-01-02 21:47:00,27.29,85.3275,1.86 +2017-01-02 22:02:00,26.0625,85.3675,1.85 +2017-01-02 22:17:00,26.015,85.4025,1.84 +2017-01-02 22:32:00,28.6338,85.4125,1.83 +2017-01-02 22:47:00,27.2875,85.4375,1.84 +2017-01-02 23:02:00,26.8475,85.44,1.84 +2017-01-02 23:17:00,26.1575,85.4375,1.87 +2017-01-02 23:32:00,28.4875,85.405,1.86 +2017-01-02 23:47:00,27.8375,85.37,1.85 +2017-01-03 00:02:00,26.3475,85.3475,1.85 +2017-01-03 00:17:00,28.2425,85.305,1.86 +2017-01-03 00:32:00,27.3875,85.2675,1.86 +2017-01-03 00:47:00,25.52,85.2625,1.84 +2017-01-03 01:02:00,26.445,85.2875,1.85 +2017-01-03 01:17:00,26.25,85.3225,1.85 +2017-01-03 01:32:00,24.635,85.3575,1.86 +2017-01-03 01:47:00,26.2487,85.345,1.85 +2017-01-03 02:02:00,26.6462,85.33,1.84 +2017-01-03 02:17:00,24.5863,85.3125,1.85 +2017-01-03 02:32:00,26.3475,85.305,1.86 +2017-01-03 02:47:00,25.4713,85.2575,1.84 +2017-01-03 03:02:00,27.235,85.2425,1.86 +2017-01-03 03:17:00,25.4688,85.2575,1.87 +2017-01-03 03:32:00,26.695,85.275,1.88 +2017-01-03 03:47:00,25.9637,85.3425,1.88 +2017-01-03 04:02:00,25.33,85.395,1.89 +2017-01-03 04:17:00,25.1325,85.455,1.88 +2017-01-03 04:32:00,26.4962,85.485,1.84 +2017-01-03 04:47:00,26.6925,85.495,1.82 +2017-01-03 05:02:00,26.5475,85.51,1.82 +2017-01-03 05:17:00,28.5312,85.45,1.81 +2017-01-03 05:32:00,27.6925,85.47,1.8 +2017-01-03 05:47:00,28.63,85.4475,1.78 +2017-01-03 06:02:00,26.2487,85.4325,1.77 +2017-01-03 06:17:00,25.7687,85.4175,1.77 +2017-01-03 06:32:00,28.4388,85.3975,1.77 +2017-01-03 06:47:00,26.45,85.43,1.76 +2017-01-03 07:02:00,24.935,85.4625,1.75 +2017-01-03 07:17:00,27.5375,85.48,1.73 +2017-01-03 07:32:00,25.375,85.5125,1.7 +2017-01-03 07:47:00,27.5925,85.5275,1.69 +2017-01-03 08:02:00,26.7438,85.56,1.69 +2017-01-03 08:17:00,24.4388,85.58,1.68 +2017-01-03 08:32:00,26.8487,85.5975,1.7 +2017-01-03 08:47:00,26.2,85.6075,1.73 +2017-01-03 09:02:00,26.11,85.6125,1.75 +2017-01-03 09:17:00,27.3387,85.58,1.74 +2017-01-03 09:32:00,26.8463,85.585,1.73 +2017-01-03 09:47:00,26.7487,85.5775,1.73 +2017-01-03 10:02:00,27.44,85.3275,1.77 +2017-01-03 10:17:00,28.7812,85.335,1.8 +2017-01-03 10:32:00,27.0375,85.2975,1.83 +2017-01-03 10:47:00,26.4962,85.3275,1.82 +2017-01-03 11:02:00,26.84,85.5875,1.82 +2017-01-03 11:17:00,27.2887,85.665,1.85 +2017-01-03 11:32:00,27.5462,85.55,1.87 +2017-01-03 11:47:00,28.5338,85.4675,1.9 +2017-01-03 12:02:00,26.2487,85.475,1.91 +2017-01-03 12:17:00,26.6475,85.3875,1.92 +2017-01-03 12:32:00,27.49,85.3725,1.96 +2017-01-03 12:47:00,25.8162,85.3,1.99 +2017-01-03 13:02:00,25.8162,85.2675,2.01 +2017-01-03 13:17:00,26.25,85.1925,2.02 +2017-01-03 13:32:00,26.155,85.3625,2.01 +2017-01-03 13:47:00,27.2337,85.4025,2.02 +2017-01-03 14:02:00,27.5887,85.4475,2.04 +2017-01-03 14:17:00,24.8312,85.49,2.06 +2017-01-03 14:32:00,27.185,85.5875,2.07 +2017-01-03 14:47:00,26.8913,85.595,2.08 +2017-01-03 15:02:00,28.73,85.725,2.11 +2017-01-03 15:17:00,27.7363,85.8025,2.12 +2017-01-03 15:32:00,25.1338,85.815,2.14 +2017-01-03 15:47:00,25.4238,85.835,2.15 +2017-01-03 16:02:00,27.5387,85.8475,2.14 +2017-01-03 16:17:00,26.55,85.8975,2.14 +2017-01-03 16:32:00,26.4975,85.91,2.18 +2017-01-03 16:47:00,24.5837,85.8575,2.22 +2017-01-03 17:02:00,27.2375,85.95,2.25 +2017-01-03 17:17:00,27.5437,85.8475,2.25 +2017-01-03 17:32:00,27.2387,85.7825,2.25 +2017-01-03 17:47:00,26.7962,85.5325,2.25 +2017-01-03 18:02:00,26.1137,85.495,2.26 +2017-01-03 18:17:00,26.945,85.4525,2.26 +2017-01-03 18:32:00,27.7913,85.4675,2.26 +2017-01-03 18:47:00,27.14,85.6175,2.27 +2017-01-03 19:02:00,26.6012,85.615,2.29 +2017-01-03 19:17:00,26.3,85.745,2.3 +2017-01-03 19:32:00,26.0625,85.8075,2.3 +2017-01-03 19:47:00,25.3775,86.0225,2.3 +2017-01-03 20:02:00,25.0825,86.2025,2.31 +2017-01-03 20:17:00,28.2962,86.3175,2.34 +2017-01-03 20:32:00,25.7188,86.375,2.34 +2017-01-03 20:47:00,26.6987,86.3975,2.34 +2017-01-03 21:02:00,26.3025,86.5275,2.33 +2017-01-03 21:17:00,26.7462,86.705,2.33 +2017-01-03 21:32:00,25.3312,86.8175,2.35 +2017-01-03 21:47:00,28.4463,86.88,2.37 +2017-01-03 22:02:00,26.7462,86.915,2.38 +2017-01-03 22:17:00,26.7962,87.035,2.38 +2017-01-03 22:32:00,25.3763,86.92,2.39 +2017-01-03 22:47:00,29.2213,86.8625,2.4 +2017-01-03 23:02:00,26.155,86.695,2.41 +2017-01-03 23:17:00,26.2525,86.655,2.42 +2017-01-03 23:32:00,24.24,86.6475,2.44 +2017-01-03 23:47:00,27.1338,86.75,2.46 +2017-01-04 00:02:00,27.1338,86.9025,2.47 +2017-01-04 00:17:00,27.64,86.8425,2.49 +2017-01-04 00:32:00,29.0812,86.92,2.52 +2017-01-04 00:47:00,27.5912,87.1025,2.5 +2017-01-04 01:02:00,26.7438,87.0625,2.48 +2017-01-04 01:17:00,25.8662,87.0725,2.48 +2017-01-04 01:32:00,25.9625,87.0275,2.49 +2017-01-04 01:47:00,24.7838,87.085,2.49 +2017-01-04 02:02:00,23.985,87.1625,2.48 +2017-01-04 02:17:00,27.4912,87.1125,2.48 +2017-01-04 02:32:00,27.0887,87.0425,2.49 +2017-01-04 02:47:00,25.9625,87.2125,2.51 +2017-01-04 03:02:00,26.2012,87.3075,2.52 +2017-01-04 03:17:00,25.7237,87.26,2.54 +2017-01-04 03:32:00,25.5238,87.325,2.56 +2017-01-04 03:47:00,27.0875,87.4775,2.61 +2017-01-04 04:02:00,26.1588,87.7775,2.71 +2017-01-04 04:17:00,28.4887,88.5175,2.73 +2017-01-04 04:32:00,27.9388,89.1025,2.74 +2017-01-04 04:47:00,27.0362,89.36,2.72 +2017-01-04 05:02:00,28.6312,89.435,2.73 +2017-01-04 05:17:00,27.8875,89.32,2.73 +2017-01-04 05:32:00,28.4887,89.105,2.7 +2017-01-04 05:47:00,28.2925,89.05,2.63 +2017-01-04 06:02:00,28.535,88.8475,2.6 +2017-01-04 06:17:00,28.8337,88.8925,2.59 +2017-01-04 06:32:00,26.7,88.81,2.58 +2017-01-04 06:47:00,25.87,88.835,2.57 +2017-01-04 07:02:00,24.9875,88.8175,2.56 +2017-01-04 07:17:00,27.5462,88.655,2.55 +2017-01-04 07:32:00,28.2438,88.6225,2.55 +2017-01-04 07:47:00,27.1375,88.475,2.57 +2017-01-04 08:02:00,25.425,88.28,2.61 +2017-01-04 08:17:00,26.5,88.105,2.63 +2017-01-04 08:32:00,27.2387,88.0825,2.65 +2017-01-04 08:47:00,26.7025,88.2,2.68 +2017-01-04 09:02:00,29.465,88.07,2.72 +2017-01-04 09:17:00,27.8875,88.1775,2.76 +2017-01-04 09:32:00,27.24,88.1375,2.79 +2017-01-04 09:47:00,27.8913,88.1775,2.79 +2017-01-04 10:02:00,26.4512,88.305,2.77 +2017-01-04 10:17:00,28.2438,88.1025,2.78 +2017-01-04 10:32:00,27.14,88.0875,2.8 +2017-01-04 10:47:00,27.6437,88.2125,2.79 +2017-01-04 11:02:00,26.55,88.0575,2.81 +2017-01-04 11:17:00,26.9412,88.195,2.84 +2017-01-04 11:32:00,26.0675,88.0625,2.85 +2017-01-04 11:47:00,25.2838,87.9175,2.86 +2017-01-04 12:02:00,26.7988,87.94,2.89 +2017-01-04 12:17:00,28.495,88.015,2.89 +2017-01-04 12:32:00,26.2525,87.98,2.91 +2017-01-04 12:47:00,28.6837,87.94,2.91 +2017-01-04 13:02:00,27.29,88.0775,2.94 +2017-01-04 13:17:00,26.9463,88.04,2.98 +2017-01-04 13:32:00,28.4912,88.42,2.98 +2017-01-04 13:47:00,28.4487,88.6775,2.97 +2017-01-04 14:02:00,28.3925,89.0125,2.97 +2017-01-04 14:17:00,27.94,89.29,2.96 +2017-01-04 14:32:00,25.8688,89.415,2.95 +2017-01-04 14:47:00,27.9875,89.5175,2.93 +2017-01-04 15:02:00,26.2537,89.5575,2.91 +2017-01-04 15:17:00,27.7875,89.635,2.86 +2017-01-04 15:32:00,27.595,89.7,2.84 +2017-01-04 15:47:00,26.3525,89.6475,2.83 +2017-01-04 16:02:00,27.3887,89.805,2.82 +2017-01-04 16:17:00,26.4475,90.01,2.74 +2017-01-04 16:32:00,26.9912,90.17,2.71 +2017-01-04 16:47:00,25.5225,90.4075,2.68 +2017-01-04 17:02:00,27.6012,90.3425,2.67 +2017-01-04 17:17:00,25.7725,90.3325,2.7 +2017-01-04 17:32:00,25.6225,90.195,2.68 +2017-01-04 17:47:00,27.2887,89.96,2.65 +2017-01-04 18:02:00,27.5437,89.87,2.64 +2017-01-04 18:17:00,28.7387,89.8425,2.64 +2017-01-04 18:32:00,27.6475,89.9525,2.65 +2017-01-04 18:47:00,27.645,90.0,2.64 +2017-01-04 19:02:00,25.7712,90.0925,2.63 +2017-01-04 19:17:00,26.3037,90.1825,2.65 +2017-01-04 19:32:00,26.5525,90.3125,2.64 +2017-01-04 19:47:00,25.7237,90.3725,2.65 +2017-01-04 20:02:00,28.1937,90.4375,2.63 +2017-01-04 20:17:00,25.5687,90.47,2.61 +2017-01-04 20:32:00,27.8412,90.495,2.6 +2017-01-04 20:47:00,26.6987,90.4325,2.59 +2017-01-04 21:02:00,28.095,90.47,2.59 +2017-01-04 21:17:00,25.9163,90.4025,2.56 +2017-01-04 21:32:00,27.1888,90.4425,2.53 +2017-01-04 21:47:00,28.8312,90.585,2.52 +2017-01-04 22:02:00,27.1375,90.515,2.5 +2017-01-04 22:17:00,27.545,90.4025,2.46 +2017-01-04 22:32:00,26.4475,90.1225,2.47 +2017-01-04 22:47:00,25.2825,90.0025,2.45 +2017-01-04 23:02:00,26.6975,90.12,2.43 +2017-01-04 23:17:00,25.82,90.045,2.43 +2017-01-04 23:32:00,28.0387,90.1575,2.42 +2017-01-04 23:47:00,25.6188,90.2225,2.41 +2017-01-05 00:02:00,27.4912,90.29,2.38 +2017-01-05 00:17:00,26.1137,90.265,2.33 +2017-01-05 00:32:00,26.0163,90.3,2.3 +2017-01-05 00:47:00,27.1362,90.4075,2.28 +2017-01-05 01:02:00,26.995,90.4875,2.28 +2017-01-05 01:17:00,27.5975,90.5925,2.26 +2017-01-05 01:32:00,27.2375,90.675,2.25 +2017-01-05 01:47:00,26.7988,90.8275,2.24 +2017-01-05 02:02:00,26.4012,90.89,2.23 +2017-01-05 02:17:00,25.38,91.0225,2.22 +2017-01-05 02:32:00,26.7988,91.1225,2.2 +2017-01-05 02:47:00,26.99,91.2225,2.18 +2017-01-05 03:02:00,28.0425,91.2575,2.16 +2017-01-05 03:17:00,27.5413,91.2275,2.16 +2017-01-05 03:32:00,28.34,91.205,2.15 +2017-01-05 03:47:00,27.3875,91.2675,2.13 +2017-01-05 04:02:00,26.2525,91.3475,2.1 +2017-01-05 04:17:00,25.6188,91.5525,2.07 +2017-01-05 04:32:00,26.8,91.6975,2.05 +2017-01-05 04:47:00,27.1837,91.955,2.04 +2017-01-05 05:02:00,24.135,92.1425,2.01 +2017-01-05 05:17:00,24.49,92.34,1.99 +2017-01-05 05:32:00,25.9137,92.47,1.97 +2017-01-05 05:47:00,26.2012,92.695,1.96 +2017-01-05 06:02:00,27.1387,92.8875,1.94 +2017-01-05 06:17:00,26.3463,93.0675,1.92 +2017-01-05 06:32:00,26.9887,93.1225,1.88 +2017-01-05 06:47:00,26.1525,93.185,1.85 +2017-01-05 07:02:00,26.9412,93.2,1.84 +2017-01-05 07:17:00,28.3925,93.35,1.84 +2017-01-05 07:32:00,26.5975,93.4775,1.84 +2017-01-05 07:47:00,26.5475,93.8,1.84 +2017-01-05 08:02:00,26.4012,93.9725,1.86 +2017-01-05 08:17:00,27.2363,94.135,1.86 +2017-01-05 08:32:00,26.5525,94.4,1.87 +2017-01-05 08:47:00,28.3925,94.5875,1.86 +2017-01-05 09:02:00,27.0387,94.83,1.87 +2017-01-05 09:17:00,27.6937,95.04,1.86 +2017-01-05 09:32:00,25.665,95.245,1.87 +2017-01-05 09:47:00,27.6413,95.5325,1.89 +2017-01-05 10:02:00,28.5875,95.6,1.86 +2017-01-05 10:17:00,27.49,95.76,1.89 +2017-01-05 10:30:58,26.8463,95.985,1.91 +2017-01-05 10:47:00,26.9887,96.125,1.94 +2017-01-05 11:02:00,27.0362,96.155,1.95 +2017-01-05 11:17:00,28.19,96.305,1.94 +2017-01-05 11:32:00,27.3412,96.385,1.94 +2017-01-05 11:47:00,27.2838,96.42,1.96 +2017-01-05 12:02:00,26.0112,96.3175,1.94 +2017-01-05 12:17:00,26.3988,96.255,1.92 +2017-01-05 12:32:00,27.4912,96.0825,1.91 +2017-01-05 12:47:00,27.0375,96.15,1.9 +2017-01-05 13:02:00,27.1825,96.1775,1.9 +2017-01-05 13:17:00,25.4675,96.225,1.9 +2017-01-05 13:32:00,28.575,96.37,1.89 +2017-01-05 13:47:00,27.8887,96.3625,1.86 +2017-01-05 14:02:00,27.885,96.4725,1.84 +2017-01-05 14:17:00,26.8075,96.55,1.84 +2017-01-05 14:32:00,28.6038,96.5275,1.85 +2017-01-05 14:47:00,29.1325,96.58,1.85 +2017-01-05 15:02:00,27.1462,96.51,1.83 +2017-01-05 15:17:00,26.16,96.48,1.8 +2017-01-05 15:32:00,26.6525,96.54,1.77 +2017-01-05 15:47:00,26.205,96.44,1.76 +2017-01-05 16:02:00,26.7513,96.3925,1.74 +2017-01-05 16:17:00,25.87,96.3625,1.73 +2017-01-05 16:32:00,27.595,96.1925,1.7 +2017-01-05 16:47:00,28.0413,96.0175,1.68 +2017-01-05 17:02:00,27.6413,95.7175,1.67 +2017-01-05 17:17:00,26.9887,95.675,1.65 +2017-01-05 17:32:00,27.185,95.6225,1.63 +2017-01-05 17:47:00,27.4912,95.585,1.61 +2017-01-05 18:02:00,27.3937,95.535,1.57 +2017-01-05 18:17:00,27.9912,95.465,1.56 +2017-01-05 18:32:00,27.2913,95.4375,1.53 +2017-01-05 18:47:00,25.7225,95.4675,1.5 +2017-01-05 19:02:00,25.3775,95.4325,1.49 +2017-01-05 19:17:00,26.9912,95.4025,1.47 +2017-01-05 19:32:00,26.3012,95.42,1.45 +2017-01-05 19:47:00,27.595,95.3,1.45 +2017-01-05 20:02:00,26.3988,95.2625,1.43 +2017-01-05 20:17:00,25.8187,95.1925,1.41 +2017-01-05 20:32:00,27.445,95.0875,1.38 +2017-01-05 20:47:00,26.2975,94.9125,1.36 +2017-01-05 21:02:00,25.82,94.9,1.35 +2017-01-05 21:17:00,27.6488,94.66,1.33 +2017-01-05 21:32:00,27.0375,94.3875,1.3 +2017-01-05 21:47:00,27.8375,94.065,1.3 +2017-01-05 22:02:00,25.3312,93.85,1.28 +2017-01-05 22:17:00,26.6975,93.7875,1.25 +2017-01-05 22:32:00,26.6462,93.6475,1.22 +2017-01-05 22:47:00,25.425,93.66,1.2 +2017-01-05 23:02:00,27.1375,93.535,1.16 +2017-01-05 23:17:00,26.5013,93.59,1.12 +2017-01-05 23:32:00,26.8463,93.49,1.11 +2017-01-05 23:47:00,27.39,93.4375,1.12 +2017-01-06 00:02:00,25.8162,93.375,1.1 +2017-01-06 00:17:00,27.3425,93.385,1.08 +2017-01-06 00:32:00,26.8475,93.34,1.07 +2017-01-06 00:47:00,26.6462,93.17,1.04 +2017-01-06 01:02:00,28.29,93.1475,1.02 +2017-01-06 01:17:00,27.8425,93.1525,1.02 +2017-01-06 01:32:00,26.0125,93.105,0.99 +2017-01-06 01:47:00,27.6375,93.0675,0.97 +2017-01-06 02:02:00,26.3,92.9525,0.96 +2017-01-06 02:17:00,26.745,92.77,0.94 +2017-01-06 02:32:00,27.8875,92.5125,0.92 +2017-01-06 02:47:00,26.5025,92.32,0.89 +2017-01-06 03:02:00,27.8937,92.25,0.84 +2017-01-06 03:17:00,28.6813,92.135,0.83 +2017-01-06 03:32:00,26.7975,92.1825,0.79 +2017-01-06 03:47:00,27.1387,92.08,0.77 +2017-01-06 04:02:00,29.6087,92.0025,0.73 +2017-01-06 04:17:00,25.5187,92.0325,0.69 +2017-01-06 04:32:00,28.9812,91.955,0.67 +2017-01-06 04:47:00,28.04,92.0125,0.65 +2017-01-06 05:02:00,28.1425,91.925,0.62 +2017-01-06 05:17:00,25.9163,91.9525,0.6 +2017-01-06 05:32:00,26.015,91.925,0.56 +2017-01-06 05:47:00,27.4887,91.945,0.54 +2017-01-06 06:02:00,25.6225,91.85,0.49 +2017-01-06 06:17:00,27.7887,91.8575,0.45 +2017-01-06 06:32:00,25.9637,91.755,0.42 +2017-01-06 06:47:00,27.0863,91.6575,0.37 +2017-01-06 07:02:00,28.1413,91.4625,0.35 +2017-01-06 07:17:00,27.34,91.245,0.31 +2017-01-06 07:32:00,26.1075,91.065,0.28 +2017-01-06 07:47:00,27.3937,90.865,0.26 +2017-01-06 08:02:00,26.3988,90.62,0.24 +2017-01-06 08:17:00,28.4437,90.24,0.23 +2017-01-06 08:32:00,27.8375,89.745,0.23 +2017-01-06 08:47:00,27.5387,89.3,0.21 +2017-01-06 09:02:00,26.8487,88.75,0.21 +2017-01-06 09:17:00,27.8337,88.3175,0.19 +2017-01-06 09:32:00,27.8363,87.9025,0.17 +2017-01-06 09:47:00,26.4962,87.5325,0.17 +2017-01-06 10:02:00,28.2913,87.1525,0.19 +2017-01-06 10:17:00,27.7387,86.8475,0.21 +2017-01-06 10:32:00,26.3975,86.65,0.22 +2017-01-06 10:47:00,27.1875,86.51,0.24 +2017-01-06 11:02:00,28.1462,86.4525,0.25 +2017-01-06 11:17:00,27.4437,86.39,0.28 +2017-01-06 11:32:00,27.035,86.59,0.28 +2017-01-06 11:47:00,25.4688,86.795,0.29 +2017-01-06 12:02:00,26.3,87.0625,0.29 +2017-01-06 12:17:00,28.1925,87.335,0.3 +2017-01-06 12:32:00,27.3375,87.5025,0.29 +2017-01-06 12:47:00,27.8363,87.6525,0.28 +2017-01-06 13:02:00,27.5413,87.7,0.27 +2017-01-06 13:17:00,27.39,87.7675,0.26 +2017-01-06 13:32:00,28.19,87.8225,0.26 +2017-01-06 13:47:00,26.4425,87.9075,0.24 +2017-01-06 14:02:00,27.5938,88.045,0.21 +2017-01-06 14:17:00,29.51,87.995,0.2 +2017-01-06 14:32:00,29.0287,87.985,0.21 +2017-01-06 14:47:00,28.6338,87.9675,0.22 +2017-01-06 15:02:00,28.39,87.835,0.21 +2017-01-06 15:17:00,28.6825,87.8175,0.19 +2017-01-06 15:32:00,26.0625,87.6625,0.18 +2017-01-06 15:47:00,28.8325,87.5625,0.17 +2017-01-06 16:02:00,28.39,87.41,0.17 +2017-01-06 16:17:00,26.6462,87.1775,0.18 +2017-01-06 16:32:00,27.5912,86.9325,0.17 +2017-01-06 16:47:00,27.8363,86.7275,0.14 +2017-01-06 17:02:00,28.0887,86.3425,0.13 +2017-01-06 17:17:00,28.0387,85.7925,0.13 +2017-01-06 17:32:00,27.8862,85.185,0.13 +2017-01-06 17:47:00,29.3675,84.5375,0.11 +2017-01-06 18:02:00,27.5925,83.8975,0.1 +2017-01-06 18:17:00,27.8337,83.285,0.1 +2017-01-06 18:32:00,28.9287,82.6675,0.11 +2017-01-06 18:47:00,27.2375,82.0575,0.11 +2017-01-06 19:02:00,27.9375,81.5,0.13 +2017-01-06 19:17:00,28.0912,80.87,0.12 +2017-01-06 19:32:00,28.2913,80.1775,0.11 +2017-01-06 19:47:00,28.0375,79.445,0.12 +2017-01-06 20:02:00,26.8438,78.715,0.13 +2017-01-06 20:17:00,28.7375,77.955,0.14 +2017-01-06 20:32:00,29.0312,77.165,0.12 +2017-01-06 20:47:00,27.885,76.415,0.12 +2017-01-06 21:02:00,29.365,75.6425,0.13 +2017-01-06 21:17:00,27.6912,74.9425,0.14 +2017-01-06 21:32:00,27.7875,74.31,0.15 +2017-01-06 21:47:00,29.805,73.61,0.14 +2017-01-06 22:02:00,28.0912,72.9125,0.14 +2017-01-06 22:17:00,27.3887,72.275,0.16 +2017-01-06 22:32:00,28.2875,71.685,0.16 +2017-01-06 22:47:00,27.1362,71.0875,0.16 +2017-01-06 23:02:00,26.2975,70.62,0.16 +2017-01-06 23:17:00,28.58,70.1475,0.16 +2017-01-06 23:32:00,28.8825,69.785,0.15 +2017-01-06 23:47:00,29.275,69.3925,0.14 +2017-01-07 00:02:00,27.94,69.195,0.16 +2017-01-07 00:17:00,27.645,68.885,0.2 +2017-01-07 00:32:00,27.34,68.58,0.19 +2017-01-07 00:47:00,26.3975,68.165,0.18 +2017-01-07 01:02:00,29.0762,67.715,0.21 +2017-01-07 01:17:00,27.9875,67.2575,0.24 +2017-01-07 01:32:00,28.8812,66.78,0.24 +2017-01-07 01:47:00,28.04,66.295,0.22 +2017-01-07 02:02:00,28.1387,65.8075,0.21 +2017-01-07 02:17:00,31.5275,65.305,0.22 +2017-01-07 02:32:00,28.49,64.865,0.24 +2017-01-07 02:47:00,29.7588,64.5425,0.23 +2017-01-07 03:02:00,29.3162,64.3675,0.25 +2017-01-07 03:17:00,27.1325,64.2525,0.26 +2017-01-07 03:32:00,28.68,64.17,0.27 +2017-01-07 03:47:00,28.1912,64.09,0.31 +2017-01-07 04:02:00,26.1113,64.06,0.38 +2017-01-07 04:17:00,28.1437,64.03,0.37 +2017-01-07 04:32:00,29.1237,64.0,0.32 +2017-01-07 04:47:00,28.4412,63.97,0.26 +2017-01-07 05:02:00,28.3925,63.955,0.2 +2017-01-07 05:17:00,27.9375,63.92,0.14 +2017-01-07 05:32:00,29.9012,63.915,0.17 +2017-01-07 05:47:00,28.14,63.8925,0.34 +2017-01-07 06:02:00,29.3175,63.855,0.39 +2017-01-07 06:17:00,29.5125,63.86,0.34 +2017-01-07 06:32:00,29.5587,63.84,0.44 +2017-01-07 06:47:00,30.2412,63.85,0.4 +2017-01-07 07:02:00,28.7825,63.8375,0.4 +2017-01-07 07:17:00,31.1725,63.8425,0.36 +2017-01-07 07:32:00,29.41,63.8225,0.39 +2017-01-07 07:47:00,29.4112,63.825,0.44 +2017-01-07 08:02:00,28.39,63.8175,0.48 +2017-01-07 08:17:00,27.6925,63.8075,0.49 +2017-01-07 08:32:00,29.5062,63.8,0.54 +2017-01-07 08:47:00,29.9987,63.795,0.51 +2017-01-07 09:02:00,29.9025,63.7975,0.56 +2017-01-07 09:17:00,29.2237,63.7925,0.59 +2017-01-07 09:32:00,28.98,63.795,0.6 +2017-01-07 09:47:00,29.0762,63.795,0.64 +2017-01-07 10:02:00,28.5338,63.795,0.68 +2017-01-07 10:17:00,28.0387,63.7825,0.64 +2017-01-07 10:32:00,29.605,63.785,0.65 +2017-01-07 10:47:00,29.8512,63.78,0.66 +2017-01-07 11:02:00,27.5387,63.775,0.6 +2017-01-07 11:17:00,28.0387,63.7675,0.51 +2017-01-07 11:32:00,29.13,63.7675,0.72 +2017-01-07 11:47:00,29.4662,63.765,0.94 +2017-01-07 12:02:00,29.515,63.7675,0.93 +2017-01-07 12:17:00,30.6413,63.75,0.89 +2017-01-07 12:32:00,30.39,63.7825,0.87 +2017-01-07 12:47:00,30.2925,63.86,0.89 +2017-01-07 13:02:00,30.1925,64.2525,0.89 +2017-01-07 13:17:00,29.6113,65.365,0.84 +2017-01-07 13:32:00,30.49,66.0975,0.77 +2017-01-07 13:47:00,29.0312,66.6925,0.74 +2017-01-07 14:02:00,29.0338,67.28,0.74 +2017-01-07 14:17:00,30.195,67.855,0.75 +2017-01-07 14:32:00,29.2762,68.405,0.78 +2017-01-07 14:47:00,29.08,68.8475,0.76 +2017-01-07 15:02:00,29.3225,69.265,0.7 +2017-01-07 15:17:00,29.1275,69.745,0.67 +2017-01-07 15:32:00,29.2762,70.205,0.67 +2017-01-07 15:47:00,29.715,70.8275,0.67 +2017-01-07 16:02:00,29.23,71.405,0.63 +2017-01-07 16:17:00,28.935,72.0325,0.6 +2017-01-07 16:32:00,28.5387,72.6725,0.59 +2017-01-07 16:47:00,29.6113,73.21,0.57 +2017-01-07 17:02:00,29.4187,73.7225,0.57 +2017-01-07 17:17:00,28.5837,74.26,0.56 +2017-01-07 17:32:00,31.1775,74.5825,0.55 +2017-01-07 17:47:00,27.6963,74.9925,0.54 +2017-01-07 18:02:00,29.71,75.28,0.54 +2017-01-07 18:17:00,29.9625,75.445,0.51 +2017-01-07 18:32:00,31.23,75.6625,0.47 +2017-01-07 18:47:00,29.9075,75.8025,0.44 +2017-01-07 19:02:00,28.3438,75.8675,0.4 +2017-01-07 19:17:00,28.835,75.88,0.4 +2017-01-07 19:32:00,26.9437,75.6775,0.39 +2017-01-07 19:47:00,29.9538,75.405,0.37 +2017-01-07 20:02:00,29.315,75.1525,0.38 +2017-01-07 20:17:00,28.7275,75.0025,0.4 +2017-01-07 20:32:00,29.8562,74.9575,0.43 +2017-01-07 20:47:00,30.7862,75.04,0.45 +2017-01-07 21:02:00,29.4112,75.075,0.46 +2017-01-07 21:17:00,27.2375,75.145,0.48 +2017-01-07 21:32:00,28.2887,75.185,0.49 +2017-01-07 21:47:00,29.8512,75.265,0.51 +2017-01-07 22:02:00,26.795,75.24,0.52 +2017-01-07 22:17:00,27.6413,75.1425,0.5 +2017-01-07 22:32:00,26.2913,74.9775,0.5 +2017-01-07 22:47:00,29.0275,74.8275,0.5 +2017-01-07 23:02:00,28.2887,74.6725,0.52 +2017-01-07 23:17:00,29.6087,74.4275,0.54 +2017-01-07 23:32:00,29.4575,74.3325,0.52 +2017-01-07 23:47:00,28.1387,74.235,0.51 +2017-01-08 00:02:00,28.3887,74.09,0.53 +2017-01-08 00:17:00,27.7363,73.96,0.53 +2017-01-08 00:32:00,27.8862,73.7275,0.54 +2017-01-08 00:47:00,28.1912,73.6225,0.55 +2017-01-08 01:02:00,29.5112,73.74,0.56 +2017-01-08 01:17:00,25.715,73.8775,0.56 +2017-01-08 01:32:00,27.1813,74.15,0.57 +2017-01-08 01:47:00,27.1338,74.415,0.56 +2017-01-08 02:02:00,27.1325,74.61,0.56 +2017-01-08 02:17:00,29.03,74.94,0.59 +2017-01-08 02:32:00,28.8812,75.24,0.59 +2017-01-08 02:47:00,29.1237,75.6125,0.57 +2017-01-08 03:02:00,28.585,75.93,0.55 +2017-01-08 03:17:00,29.0762,76.2475,0.51 +2017-01-08 03:32:00,28.24,76.7,0.5 +2017-01-08 03:47:00,28.1425,77.01,0.53 +2017-01-08 04:02:00,27.8862,77.345,0.54 +2017-01-08 04:17:00,27.0825,77.71,0.52 +2017-01-08 04:32:00,28.2875,77.9975,0.52 +2017-01-08 04:47:00,28.78,78.235,0.54 +2017-01-08 05:02:00,28.5812,78.385,0.54 +2017-01-08 05:17:00,29.3688,78.465,0.55 +2017-01-08 05:32:00,28.39,78.625,0.55 +2017-01-08 05:47:00,28.0362,78.8675,0.54 +2017-01-08 06:02:00,28.485,79.185,0.55 +2017-01-08 06:17:00,27.6437,79.56,0.56 +2017-01-08 06:32:00,29.2262,79.8125,0.53 +2017-01-08 06:47:00,27.1875,80.0825,0.5 +2017-01-08 07:02:00,29.6612,80.265,0.47 +2017-01-08 07:17:00,27.29,80.4925,0.45 +2017-01-08 07:32:00,29.1275,80.7025,0.45 +2017-01-08 07:47:00,28.1425,81.02,0.46 +2017-01-08 08:02:00,28.24,81.245,0.46 +2017-01-08 08:17:00,26.8475,81.445,0.47 +2017-01-08 08:32:00,25.6675,81.5725,0.5 +2017-01-08 08:47:00,28.1912,81.805,0.51 +2017-01-08 09:02:00,30.2425,82.0125,0.53 +2017-01-08 09:17:00,29.8087,82.335,0.53 +2017-01-08 09:32:00,28.09,82.73,0.54 +2017-01-08 09:47:00,27.135,83.19,0.53 +2017-01-08 10:02:00,29.2225,83.6125,0.54 +2017-01-08 10:17:00,28.6338,84.015,0.55 +2017-01-08 10:32:00,28.7812,84.4475,0.55 +2017-01-08 10:47:00,27.0875,84.8375,0.53 +2017-01-08 11:02:00,28.7312,85.2675,0.51 +2017-01-08 11:17:00,30.05,85.6725,0.5 +2017-01-08 11:32:00,28.8275,86.075,0.51 +2017-01-08 11:47:00,29.5612,86.425,0.53 +2017-01-08 12:02:00,29.56,86.765,0.52 +2017-01-08 12:17:00,28.1875,87.12,0.52 +2017-01-08 12:32:00,29.3662,87.435,0.52 +2017-01-08 12:47:00,28.8838,87.7525,0.52 +2017-01-08 13:02:00,29.5575,87.965,0.51 +2017-01-08 13:17:00,30.195,88.055,0.51 +2017-01-08 13:32:00,30.195,88.1375,0.49 +2017-01-08 13:47:00,27.9875,88.3325,0.48 +2017-01-08 14:02:00,27.3887,88.6225,0.48 +2017-01-08 14:17:00,28.6813,89.04,0.47 +2017-01-08 14:32:00,28.3387,89.4125,0.43 +2017-01-08 14:47:00,28.0912,89.8175,0.42 +2017-01-08 15:02:00,26.5,90.135,0.42 +2017-01-08 15:17:00,27.64,90.585,0.42 +2017-01-08 15:32:00,26.9887,90.8875,0.42 +2017-01-08 15:47:00,29.1263,91.245,0.41 +2017-01-08 16:02:00,30.7887,91.545,0.41 +2017-01-08 16:17:00,29.0287,91.7925,0.41 +2017-01-08 16:32:00,29.5125,92.0375,0.4 +2017-01-08 16:47:00,28.3387,92.25,0.39 +2017-01-08 17:02:00,29.32,92.51,0.39 +2017-01-08 17:17:00,30.095,92.6725,0.39 +2017-01-08 17:32:00,28.3937,92.8475,0.39 +2017-01-08 17:47:00,28.04,93.0925,0.38 +2017-01-08 18:02:00,27.2887,93.305,0.39 +2017-01-08 18:17:00,27.4412,93.315,0.4 +2017-01-08 18:32:00,27.785,93.3,0.41 +2017-01-08 18:47:00,30.635,93.285,0.42 +2017-01-08 19:02:00,28.585,93.415,0.42 +2017-01-08 19:17:00,28.585,93.5175,0.41 +2017-01-08 19:32:00,29.6612,93.58,0.41 +2017-01-08 19:47:00,28.9337,93.7425,0.41 +2017-01-08 20:02:00,30.0,93.8475,0.41 +2017-01-08 20:17:00,29.805,93.89,0.42 +2017-01-08 20:32:00,29.3613,93.8925,0.41 +2017-01-08 20:47:00,28.3375,93.93,0.4 +2017-01-08 21:02:00,27.8862,93.9275,0.4 +2017-01-08 21:17:00,26.8463,93.955,0.41 +2017-01-08 21:32:00,27.4375,93.9525,0.42 +2017-01-08 21:47:00,28.0875,93.9025,0.43 +2017-01-08 22:02:00,27.4887,93.79,0.42 +2017-01-08 22:17:00,27.2325,93.7725,0.41 +2017-01-08 22:32:00,27.0413,93.6675,0.41 +2017-01-08 22:47:00,28.535,93.5075,0.41 +2017-01-08 23:02:00,28.9337,93.2575,0.42 +2017-01-08 23:17:00,26.9863,92.9175,0.41 +2017-01-08 23:32:00,29.9037,92.655,0.42 +2017-01-08 23:47:00,28.78,92.4675,0.43 +2017-01-09 00:02:00,29.025,92.34,0.44 +2017-01-09 00:17:00,28.4412,92.3375,0.44 +2017-01-09 00:32:00,27.34,92.2975,0.43 +2017-01-09 00:47:00,27.485,92.31,0.43 +2017-01-09 01:02:00,28.88,92.2925,0.43 +2017-01-09 01:17:00,27.0863,92.345,0.44 +2017-01-09 01:32:00,27.1375,92.2975,0.44 +2017-01-09 01:47:00,28.29,92.32,0.44 +2017-01-09 02:02:00,27.5387,92.3925,0.44 +2017-01-09 02:17:00,29.51,92.36,0.44 +2017-01-09 02:32:00,31.2262,92.475,0.44 +2017-01-09 02:47:00,27.1375,92.5725,0.44 +2017-01-09 03:02:00,26.11,92.62,0.44 +2017-01-09 03:17:00,27.9887,92.675,0.42 +2017-01-09 03:32:00,29.4125,92.7375,0.42 +2017-01-09 03:47:00,28.095,92.7325,0.43 +2017-01-09 04:02:00,28.1912,92.6075,0.43 +2017-01-09 04:17:00,28.24,92.505,0.43 +2017-01-09 04:32:00,30.7363,92.6,0.42 +2017-01-09 04:47:00,28.9775,92.64,0.42 +2017-01-09 05:02:00,28.63,92.81,0.42 +2017-01-09 05:17:00,27.9912,92.9425,0.43 +2017-01-09 05:32:00,27.2363,93.09,0.43 +2017-01-09 05:47:00,27.9863,93.2425,0.41 +2017-01-09 06:02:00,27.5938,93.3675,0.41 +2017-01-09 06:17:00,27.4925,93.44,0.41 +2017-01-09 06:32:00,28.2887,93.5325,0.4 +2017-01-09 06:47:00,26.7975,93.6925,0.38 +2017-01-09 07:02:00,28.39,93.705,0.38 +2017-01-09 07:17:00,28.98,93.6625,0.37 +2017-01-09 07:32:00,28.3875,93.6275,0.37 +2017-01-09 07:47:00,28.19,93.53,0.36 +2017-01-09 08:02:00,29.4112,93.3775,0.36 +2017-01-09 08:17:00,25.4713,93.345,0.37 +2017-01-09 08:32:00,29.365,93.37,0.38 +2017-01-09 08:47:00,28.09,93.46,0.39 +2017-01-09 09:02:00,29.8525,93.47,0.41 +2017-01-09 09:17:00,28.3887,93.615,0.42 +2017-01-09 09:32:00,28.6338,93.7225,0.42 +2017-01-09 09:47:00,29.2225,93.7475,0.41 +2017-01-09 10:02:00,27.7862,93.8375,0.43 +2017-01-09 10:17:00,29.5125,93.79,0.44 +2017-01-09 10:32:00,29.805,93.775,0.44 +2017-01-09 10:47:00,29.315,93.7625,0.43 +2017-01-09 11:02:00,28.7825,93.705,0.44 +2017-01-09 11:17:00,29.03,93.69,0.46 +2017-01-09 11:32:00,29.855,93.6575,0.47 +2017-01-09 11:47:00,27.085,93.5625,0.49 +2017-01-09 12:02:00,27.0387,93.4525,0.49 +2017-01-09 12:17:00,29.37,93.2675,0.48 +2017-01-09 12:32:00,27.39,92.99,0.48 +2017-01-09 12:47:00,29.3637,92.745,0.47 +2017-01-09 13:02:00,26.1562,92.5675,0.48 +2017-01-09 13:17:00,26.6,92.45,0.48 +2017-01-09 13:32:00,27.7875,92.4,0.47 +2017-01-09 13:47:00,27.6937,92.3425,0.47 +2017-01-09 14:02:00,26.2513,92.4075,0.48 +2017-01-09 14:17:00,28.3375,92.5225,0.5 +2017-01-09 14:32:00,27.2387,92.59,0.48 +2017-01-09 14:47:00,28.09,92.8525,0.47 +2017-01-09 15:02:00,25.2325,93.165,0.46 +2017-01-09 15:17:00,28.49,93.3375,0.45 +2017-01-09 15:32:00,27.9863,93.615,0.44 +2017-01-09 15:47:00,26.0137,93.83,0.44 +2017-01-09 16:02:00,27.5938,93.98,0.44 +2017-01-09 16:17:00,27.9887,94.15,0.45 +2017-01-09 16:32:00,28.2925,94.2875,0.45 +2017-01-09 16:47:00,28.145,94.3275,0.45 +2017-01-09 17:02:00,28.835,94.3275,0.46 +2017-01-09 17:17:00,27.3875,94.14,0.45 +2017-01-09 17:32:00,29.1775,93.9825,0.44 +2017-01-09 17:47:00,30.34,93.7625,0.45 +2017-01-09 18:02:00,28.3412,93.705,0.46 +2017-01-09 18:17:00,26.4475,93.625,0.47 +2017-01-09 18:32:00,26.65,93.4675,0.48 +2017-01-09 18:47:00,27.5912,93.55,0.48 +2017-01-09 19:02:00,27.0362,93.465,0.48 +2017-01-09 19:17:00,28.4412,93.3875,0.49 +2017-01-09 19:32:00,29.2725,93.2875,0.5 +2017-01-09 19:47:00,27.89,93.2,0.51 +2017-01-09 20:02:00,28.6312,93.19,0.52 +2017-01-09 20:17:00,28.1437,93.0675,0.5 +2017-01-09 20:32:00,29.4637,92.9775,0.51 +2017-01-09 20:47:00,27.9375,92.9475,0.52 +2017-01-09 21:02:00,28.6775,92.85,0.52 +2017-01-09 21:17:00,26.5475,92.7475,0.53 +2017-01-09 21:32:00,28.5413,92.6475,0.54 +2017-01-09 21:47:00,28.0362,92.5475,0.55 +2017-01-09 22:02:00,26.5963,92.375,0.56 +2017-01-09 22:17:00,28.5387,92.125,0.57 +2017-01-09 22:32:00,27.9887,91.9825,0.58 +2017-01-09 22:47:00,28.6837,91.8325,0.57 +2017-01-09 23:02:00,27.3913,91.7075,0.57 +2017-01-09 23:17:00,26.9887,91.645,0.58 +2017-01-09 23:32:00,27.3375,91.645,0.58 +2017-01-09 23:47:00,27.9388,91.6675,0.58 +2017-01-10 00:02:00,27.5375,91.6475,0.58 +2017-01-10 00:17:00,26.8463,91.5625,0.59 +2017-01-10 00:32:00,27.1312,91.6275,0.6 +2017-01-10 00:47:00,28.2425,91.565,0.58 +2017-01-10 01:02:00,28.24,91.505,0.56 +2017-01-10 01:17:00,27.99,91.54,0.55 +2017-01-10 01:32:00,27.5925,91.44,0.56 +2017-01-10 01:47:00,27.5362,91.4575,0.57 +2017-01-10 02:02:00,27.4375,91.4175,0.56 +2017-01-10 02:17:00,27.9863,91.3125,0.55 +2017-01-10 02:32:00,27.6888,91.1225,0.54 +2017-01-10 02:47:00,28.5887,90.93,0.54 +2017-01-10 03:02:00,26.7462,90.785,0.52 +2017-01-10 03:17:00,29.71,90.675,0.51 +2017-01-10 03:32:00,27.3412,90.695,0.5 +2017-01-10 03:47:00,28.04,90.6825,0.49 +2017-01-10 04:02:00,28.6338,90.65,0.5 +2017-01-10 04:17:00,29.2262,90.6425,0.52 +2017-01-10 04:32:00,28.2412,90.735,0.51 +2017-01-10 04:47:00,27.4425,90.735,0.49 +2017-01-10 05:02:00,28.6813,90.895,0.48 +2017-01-10 05:17:00,25.82,90.8975,0.48 +2017-01-10 05:32:00,26.65,90.925,0.49 +2017-01-10 05:47:00,25.8675,90.885,0.48 +2017-01-10 06:02:00,28.88,90.8425,0.47 +2017-01-10 06:17:00,26.94,90.775,0.47 +2017-01-10 06:32:00,28.4887,90.6875,0.49 +2017-01-10 06:47:00,27.94,90.695,0.48 +2017-01-10 07:02:00,28.3887,90.69,0.46 +2017-01-10 07:17:00,29.1712,90.785,0.45 +2017-01-10 07:32:00,27.3913,90.69,0.44 +2017-01-10 07:47:00,28.7825,90.52,0.43 +2017-01-10 08:02:00,28.3387,90.39,0.45 +2017-01-10 08:17:00,25.8187,90.27,-0.27 +2017-01-10 08:32:00,52.8162,90.35,0.16 +2017-01-10 08:47:00,23.37,90.5175,0.46 +2017-01-10 09:01:54,24.4412,90.6075,0.46 +2017-01-10 09:17:00,27.9675,90.7075,0.47 +2017-01-10 09:32:00,24.7137,90.6475,0.47 +2017-01-10 09:47:00,24.9125,90.645,0.48 +2017-01-10 10:02:00,25.2575,90.6375,0.49 +2017-01-10 10:17:00,26.28,90.57,0.5 +2017-01-10 10:32:00,25.7462,90.5475,0.52 +2017-01-10 10:47:00,25.0625,90.48,0.53 +2017-01-10 11:02:00,24.9625,90.4925,0.53 +2017-01-10 11:17:00,24.9613,90.5375,0.54 +2017-01-10 11:32:00,24.9625,90.4725,0.57 +2017-01-10 11:47:00,24.965,90.7125,0.59 +2017-01-10 12:02:00,24.9637,90.9875,0.6 +2017-01-10 12:17:00,24.9613,91.115,0.59 +2017-01-10 12:32:00,24.9637,91.105,0.59 +2017-01-10 12:47:00,24.9625,91.0,0.6 +2017-01-10 13:02:00,24.965,91.015,0.62 +2017-01-10 13:17:00,24.9613,91.045,0.65 +2017-01-10 13:32:00,24.9613,91.005,0.66 +2017-01-10 13:47:00,24.965,91.045,0.67 +2017-01-10 14:02:00,24.9675,91.115,0.68 +2017-01-10 14:17:00,24.9625,91.0975,0.68 +2017-01-10 14:32:00,24.9613,91.18,0.7 +2017-01-10 14:47:00,24.9637,91.1025,0.71 +2017-01-10 15:02:00,24.9637,91.1225,0.69 +2017-01-10 15:17:00,24.9637,91.07,0.66 +2017-01-10 15:32:00,24.965,90.935,0.64 +2017-01-10 15:47:00,24.9625,90.695,0.63 +2017-01-10 16:02:00,24.9637,90.58,0.61 +2017-01-10 16:17:00,24.9613,90.5625,0.58 +2017-01-10 16:32:00,24.9662,90.4075,0.59 +2017-01-10 16:47:00,24.9675,90.38,0.61 +2017-01-10 17:02:00,24.9637,90.38,0.61 +2017-01-10 17:17:00,24.9637,90.3175,0.62 +2017-01-10 17:32:00,24.9675,90.295,0.64 +2017-01-10 17:47:00,24.9675,90.2725,0.65 +2017-01-10 18:02:00,24.965,90.205,0.66 +2017-01-10 18:17:00,24.9637,90.2025,0.66 +2017-01-10 18:32:00,24.9625,90.22,0.67 +2017-01-10 18:47:00,24.9625,90.175,0.68 +2017-01-10 19:02:00,24.965,90.1575,0.69 +2017-01-10 19:17:00,24.9625,90.145,0.71 +2017-01-10 19:32:00,24.96,90.08,0.73 +2017-01-10 19:47:00,24.9637,90.0625,0.74 +2017-01-10 20:02:00,24.965,90.0225,0.75 +2017-01-10 20:17:00,24.9625,89.9725,0.77 +2017-01-10 20:32:00,24.9662,89.77,0.8 +2017-01-10 20:47:00,24.9637,89.5525,0.83 +2017-01-10 21:02:00,24.9613,89.4025,0.85 +2017-01-10 21:17:00,24.9625,89.28,0.88 +2017-01-10 21:32:00,24.965,89.245,0.92 +2017-01-10 21:47:00,24.9625,89.19,0.95 +2017-01-10 22:02:00,24.9613,89.165,0.98 +2017-01-10 22:17:00,24.96,89.1425,1.0 +2017-01-10 22:32:00,24.9613,89.1175,0.99 +2017-01-10 22:47:00,24.9613,89.16,1.0 +2017-01-10 23:02:00,24.9637,89.1525,1.01 +2017-01-10 23:17:00,24.9625,89.1375,1.02 +2017-01-10 23:32:00,24.9613,89.16,1.02 +2017-01-10 23:47:00,24.965,89.12,1.02 +2017-01-11 00:02:00,24.9613,89.105,1.04 +2017-01-11 00:17:00,24.9637,89.095,1.04 +2017-01-11 00:32:00,24.9613,89.075,1.03 +2017-01-11 00:47:00,24.9625,89.0225,1.03 +2017-01-11 01:02:00,24.965,88.9475,1.03 +2017-01-11 01:17:00,24.9625,88.905,1.03 +2017-01-11 01:32:00,24.9587,88.885,1.04 +2017-01-11 01:47:00,24.9637,88.75,1.05 +2017-01-11 02:02:00,24.9625,88.535,1.05 +2017-01-11 02:17:00,24.9613,88.3425,1.07 +2017-01-11 02:32:00,24.9625,88.2725,1.08 +2017-01-11 02:47:00,24.9613,88.245,1.08 +2017-01-11 03:02:00,24.9637,88.2025,1.1 +2017-01-11 03:17:00,24.9637,88.27,1.1 +2017-01-11 03:32:00,24.9613,88.335,1.12 +2017-01-11 03:47:00,24.9637,88.3625,1.13 +2017-01-11 04:02:00,24.9637,88.365,1.15 +2017-01-11 04:17:00,24.9613,88.2875,1.16 +2017-01-11 04:32:00,24.9637,88.285,1.15 +2017-01-11 04:47:00,24.9625,88.3425,1.14 +2017-01-11 05:02:00,24.9613,88.3475,1.15 +2017-01-11 05:17:00,24.9613,88.3075,1.17 +2017-01-11 05:32:00,24.9613,88.435,1.17 +2017-01-11 05:47:00,24.96,88.3475,1.17 +2017-01-11 06:02:00,24.9637,88.2075,1.21 +2017-01-11 06:17:00,24.9637,88.0475,1.21 +2017-01-11 06:32:00,24.9662,87.925,1.17 +2017-01-11 06:47:00,24.9613,87.795,1.14 +2017-01-11 07:02:00,24.965,87.57,1.12 +2017-01-11 07:17:00,24.965,87.4325,1.1 +2017-01-11 07:32:00,24.965,87.22,1.09 +2017-01-11 07:47:00,24.9662,87.3675,1.08 +2017-01-11 08:02:00,24.9662,87.2875,1.09 +2017-01-11 08:17:00,24.9688,87.2575,1.11 +2017-01-11 08:32:00,24.9675,87.3375,1.12 +2017-01-11 08:47:00,24.965,87.345,1.13 +2017-01-11 09:02:00,24.9625,87.3725,1.14 +2017-01-11 09:17:00,24.9637,87.43,1.17 +2017-01-11 09:32:00,24.9637,87.6075,1.2 +2017-01-11 09:47:00,24.9637,87.6725,1.22 +2017-01-11 10:02:00,24.9675,87.8925,1.25 +2017-01-11 10:17:00,24.9675,87.955,1.28 +2017-01-11 10:32:00,24.965,88.055,1.32 +2017-01-11 10:47:00,24.9613,88.1175,1.34 +2017-01-11 11:02:00,24.9637,88.18,1.37 +2017-01-11 11:17:00,24.9662,88.16,1.39 +2017-01-11 11:32:00,24.9637,88.0,1.41 +2017-01-11 11:47:00,24.9625,87.8975,1.43 +2017-01-11 12:02:00,24.965,87.645,1.41 +2017-01-11 12:17:00,24.9637,87.5925,1.4 +2017-01-11 12:32:00,24.9625,87.43,1.42 +2017-01-11 12:47:00,24.9587,87.3075,1.42 +2017-01-11 13:02:00,24.9637,87.3075,1.42 +2017-01-11 13:17:00,24.965,87.35,1.41 +2017-01-11 13:32:00,24.9625,87.4025,1.41 +2017-01-11 13:47:00,24.9662,87.4725,1.41 +2017-01-11 14:02:00,24.96,87.505,1.43 +2017-01-11 14:17:00,24.9625,87.58,1.46 +2017-01-11 14:32:00,24.965,87.36,1.5 +2017-01-11 14:47:00,24.96,87.0925,1.5 +2017-01-11 15:02:00,24.965,86.9475,1.51 +2017-01-11 15:17:00,24.9637,86.7225,1.52 +2017-01-11 15:32:00,24.9637,86.4275,1.52 +2017-01-11 15:47:00,24.9662,86.2375,1.51 +2017-01-11 16:02:00,24.965,85.8925,1.51 +2017-01-11 16:17:00,24.9625,85.4825,1.51 +2017-01-11 16:32:00,24.9637,85.1475,1.52 +2017-01-11 16:47:00,24.9637,84.8025,1.52 +2017-01-11 17:02:00,24.9613,84.5575,1.52 +2017-01-11 17:17:00,24.9662,84.4225,1.5 +2017-01-11 17:32:00,24.9625,84.38,1.51 +2017-01-11 17:47:00,24.965,84.2725,1.5 +2017-01-11 18:02:00,24.965,84.255,1.49 +2017-01-11 18:17:00,24.9625,84.2775,1.51 +2017-01-11 18:32:00,24.9613,84.215,1.52 +2017-01-11 18:47:00,24.9625,84.29,1.55 +2017-01-11 19:02:00,24.965,84.29,1.56 +2017-01-11 19:17:00,24.9637,84.3075,1.56 +2017-01-11 19:32:00,24.9625,84.3425,1.57 +2017-01-11 19:47:00,24.9637,84.375,1.58 +2017-01-11 20:02:00,24.9625,84.5625,1.57 +2017-01-11 20:17:00,24.9637,84.5475,1.56 +2017-01-11 20:32:00,24.9625,84.66,1.56 +2017-01-11 20:47:00,24.9625,84.7225,1.56 +2017-01-11 21:02:00,24.9625,84.635,1.57 +2017-01-11 21:17:00,24.965,84.53,1.57 +2017-01-11 21:32:00,24.965,84.5525,1.56 +2017-01-11 21:47:00,24.9637,84.6025,1.56 +2017-01-11 22:02:00,24.9613,84.685,1.58 +2017-01-11 22:17:00,24.9625,84.805,1.61 +2017-01-11 22:32:00,24.9613,84.89,1.61 +2017-01-11 22:47:00,24.9613,84.94,1.6 +2017-01-11 23:02:00,24.9637,85.055,1.61 +2017-01-11 23:17:00,24.9613,85.055,1.64 +2017-01-11 23:32:00,24.965,85.225,1.66 +2017-01-11 23:47:00,24.9625,85.2675,1.68 +2017-01-12 00:02:00,24.9613,85.395,1.68 +2017-01-12 00:17:00,24.9625,85.44,1.69 +2017-01-12 00:32:00,24.9625,85.5625,1.7 +2017-01-12 00:47:00,24.96,85.6125,1.7 +2017-01-12 01:02:00,24.9637,85.6725,1.68 +2017-01-12 01:17:00,24.9613,85.8,1.66 +2017-01-12 01:32:00,24.9613,85.815,1.65 +2017-01-12 01:47:00,24.9613,85.785,1.65 +2017-01-12 02:02:00,24.9625,85.8075,1.66 +2017-01-12 02:17:00,24.9625,85.6325,1.67 +2017-01-12 02:32:00,24.9637,85.3675,1.68 +2017-01-12 02:47:00,24.9662,85.3975,1.7 +2017-01-12 03:02:00,24.9625,85.4925,1.72 +2017-01-12 03:17:00,24.9625,85.5725,1.71 +2017-01-12 03:32:00,24.9587,85.65,1.72 +2017-01-12 03:47:00,24.9675,85.5975,1.69 +2017-01-12 04:02:00,24.9637,85.7975,1.69 +2017-01-12 04:17:00,24.965,85.8325,1.7 +2017-01-12 04:32:00,24.9625,85.83,1.71 +2017-01-12 04:47:00,24.9625,85.805,1.72 +2017-01-12 05:02:00,24.96,85.8075,1.71 +2017-01-12 05:17:00,24.9662,85.86,1.71 +2017-01-12 05:32:00,24.965,85.855,1.72 +2017-01-12 05:47:00,24.9675,85.8875,1.71 +2017-01-12 06:02:00,24.965,85.9175,1.7 +2017-01-12 06:17:00,24.965,85.86,1.71 +2017-01-12 06:32:00,24.9625,86.02,1.7 +2017-01-12 06:47:00,24.9613,85.8275,1.7 +2017-01-12 07:02:00,24.9637,85.7075,1.69 +2017-01-12 07:17:00,24.965,85.5,1.71 +2017-01-12 07:32:00,24.96,85.58,1.7 +2017-01-12 07:47:00,24.96,85.615,1.69 +2017-01-12 08:02:00,24.9637,85.7275,1.69 +2017-01-12 08:17:00,24.9637,85.79,1.7 +2017-01-12 08:32:00,24.9625,85.88,1.73 +2017-01-12 08:47:00,24.9637,85.8575,1.74 +2017-01-12 09:02:00,24.965,85.6475,1.74 +2017-01-12 09:17:00,24.9662,85.5375,1.75 +2017-01-12 09:32:00,24.9625,85.5625,1.77 +2017-01-12 09:47:00,24.9637,85.67,1.79 +2017-01-12 10:02:00,24.9625,85.68,1.8 +2017-01-12 10:17:00,24.9637,85.7525,1.82 +2017-01-12 10:32:00,24.9688,85.7725,1.84 +2017-01-12 10:47:00,24.9637,85.8675,1.85 +2017-01-12 11:02:00,24.965,85.97,1.87 +2017-01-12 11:17:00,24.9662,85.965,1.91 +2017-01-12 11:32:00,24.9637,86.035,1.94 +2017-01-12 11:47:00,24.9625,86.07,1.97 +2017-01-12 12:02:00,24.9613,86.04,1.97 +2017-01-12 12:17:00,24.96,86.0625,1.97 +2017-01-12 12:32:00,24.9637,86.025,1.98 +2017-01-12 12:47:00,24.9637,86.0725,1.98 +2017-01-12 13:02:00,24.9662,86.11,1.98 +2017-01-12 13:17:00,24.9637,86.2475,2.0 +2017-01-12 13:32:00,24.965,86.2775,2.01 +2017-01-12 13:47:00,24.9625,86.1825,2.03 +2017-01-12 14:02:00,24.9625,86.075,2.03 +2017-01-12 14:17:00,24.9637,85.945,2.01 +2017-01-12 14:32:00,24.965,85.81,2.02 +2017-01-12 14:47:00,24.965,85.755,2.04 +2017-01-12 15:02:00,24.965,85.745,2.06 +2017-01-12 15:17:00,24.9637,85.7775,2.06 +2017-01-12 15:32:00,24.96,85.885,2.06 +2017-01-12 15:47:00,24.96,85.99,2.06 +2017-01-12 16:02:00,24.9637,86.1425,2.05 +2017-01-12 16:17:00,24.9637,86.2625,2.05 +2017-01-12 16:32:00,24.9637,86.3475,2.06 +2017-01-12 16:47:00,24.9637,86.3975,2.06 +2017-01-12 17:02:00,24.9613,86.595,2.08 +2017-01-12 17:17:00,24.9637,86.73,2.06 +2017-01-12 17:32:00,24.9613,86.9425,2.05 +2017-01-12 17:47:00,24.9613,87.13,2.05 +2017-01-12 18:02:00,24.9613,87.2425,2.08 +2017-01-12 18:17:00,24.9587,87.3925,2.09 +2017-01-12 18:32:00,24.9637,87.53,2.1 +2017-01-12 18:47:00,24.9637,87.5575,2.11 +2017-01-12 19:02:00,24.9613,87.48,2.11 +2017-01-12 19:17:00,24.9625,87.4875,2.12 +2017-01-12 19:32:00,24.9637,87.545,2.12 +2017-01-12 19:47:00,24.965,87.6225,2.13 +2017-01-12 20:02:00,24.9613,87.75,2.15 +2017-01-12 20:17:00,24.9613,87.7875,2.18 +2017-01-12 20:32:00,24.9625,87.935,2.19 +2017-01-12 20:47:00,24.9613,87.9475,2.2 +2017-01-12 21:02:00,24.9637,88.0225,2.22 +2017-01-12 21:17:00,24.965,88.0025,2.25 +2017-01-12 21:32:00,24.9613,87.9975,2.25 +2017-01-12 21:47:00,24.96,88.045,2.26 +2017-01-12 22:02:00,24.9625,88.035,2.27 +2017-01-12 22:17:00,24.9637,88.08,2.28 +2017-01-12 22:32:00,24.9637,88.1225,2.29 +2017-01-12 22:47:00,24.9613,88.1625,2.3 +2017-01-12 23:02:00,24.96,88.245,2.33 +2017-01-12 23:17:00,24.9662,88.275,2.33 +2017-01-12 23:32:00,24.9613,88.25,2.34 +2017-01-12 23:47:00,24.9637,88.275,2.32 +2017-01-13 00:02:00,24.9625,88.365,2.34 +2017-01-13 00:17:00,24.9613,88.54,2.34 +2017-01-13 00:32:00,24.9637,88.69,2.33 +2017-01-13 00:47:00,24.9637,88.82,2.34 +2017-01-13 01:02:00,24.9625,88.9925,2.34 +2017-01-13 01:17:00,24.9637,89.09,2.33 +2017-01-13 01:32:00,24.9625,89.2175,2.34 +2017-01-13 01:47:00,24.9625,89.3925,2.34 +2017-01-13 02:02:00,24.9613,89.595,2.34 +2017-01-13 02:17:00,24.9613,89.665,2.36 +2017-01-13 02:32:00,24.9662,89.74,2.37 +2017-01-13 02:47:00,24.96,89.94,2.37 +2017-01-13 03:02:00,24.9625,89.93,2.35 +2017-01-13 03:17:00,24.9662,90.06,2.34 +2017-01-13 03:32:00,24.965,90.075,2.33 +2017-01-13 03:47:00,24.9613,90.1075,2.33 +2017-01-13 04:02:00,24.96,90.175,2.33 +2017-01-13 04:17:00,24.9637,89.9175,2.31 +2017-01-13 04:32:00,24.9587,89.845,2.31 +2017-01-13 04:47:00,24.9637,89.65,2.32 +2017-01-13 05:02:00,24.965,89.5325,2.33 +2017-01-13 05:17:00,24.9625,89.5075,2.35 +2017-01-13 05:32:00,24.965,89.5725,2.35 +2017-01-13 05:47:00,24.9637,89.5325,2.35 +2017-01-13 06:02:00,24.9662,89.635,2.35 +2017-01-13 06:17:00,24.9625,89.86,2.35 +2017-01-13 06:32:00,24.9613,90.02,2.35 +2017-01-13 06:47:00,24.9637,90.0525,2.33 +2017-01-13 07:02:00,24.9613,90.0375,2.31 +2017-01-13 07:17:00,24.9613,89.96,2.3 +2017-01-13 07:32:00,24.9613,89.825,2.29 +2017-01-13 07:47:00,24.965,89.7175,2.3 +2017-01-13 08:02:00,24.9625,89.8425,2.3 +2017-01-13 08:17:00,24.9662,89.7925,2.27 +2017-01-13 08:32:00,24.9662,89.9225,2.27 +2017-01-13 08:47:00,24.9637,89.95,2.27 +2017-01-13 09:02:00,24.9637,90.0575,2.28 +2017-01-13 09:17:00,24.965,90.0825,2.29 +2017-01-13 09:32:00,24.9662,90.17,2.29 +2017-01-13 09:47:00,24.9625,90.0225,2.29 +2017-01-13 10:02:00,24.9625,90.235,2.28 +2017-01-13 10:17:00,25.1488,90.4475,2.28 +2017-01-13 10:32:00,23.3862,90.55,2.27 +2017-01-13 10:47:00,24.4688,90.7575,2.31 +2017-01-13 11:02:00,26.515,90.6675,2.34 +2017-01-13 11:17:00,25.5287,90.8125,2.36 +2017-01-13 11:32:00,25.3363,90.9325,2.38 +2017-01-13 11:47:00,24.5963,90.83,2.38 +2017-01-13 12:02:00,24.7438,90.865,2.38 +2017-01-13 12:17:00,25.9262,90.7375,2.39 +2017-01-13 12:32:00,25.3887,90.9225,2.37 +2017-01-13 12:47:00,25.9863,91.0475,2.39 +2017-01-13 13:02:00,25.335,91.49,2.41 +2017-01-13 13:17:00,24.835,92.0275,2.42 +2017-01-13 13:32:00,26.65,92.5975,2.44 +2017-01-13 13:47:00,26.4512,93.185,2.45 +2017-01-13 14:02:00,24.5912,93.485,2.45 +2017-01-13 14:17:00,24.34,93.9075,2.43 +2017-01-13 14:32:00,25.14,94.0925,2.41 +2017-01-13 14:47:00,25.425,94.1575,2.43 +2017-01-13 15:02:00,24.89,94.2875,2.42 +2017-01-13 15:17:00,24.2887,94.4025,2.41 +2017-01-13 15:32:00,24.1888,94.39,2.4 +2017-01-13 15:47:00,26.1162,94.2475,2.41 +2017-01-13 16:02:00,26.3037,94.2075,2.41 +2017-01-13 16:17:00,23.6012,94.255,2.4 +2017-01-13 16:32:00,24.5425,94.095,2.38 +2017-01-13 16:47:00,23.1125,93.8275,2.4 +2017-01-13 17:02:00,25.235,93.565,2.42 +2017-01-13 17:17:00,24.8375,93.315,2.42 +2017-01-13 17:32:00,25.7725,93.1475,2.44 +2017-01-13 17:47:00,24.0375,93.0025,2.45 +2017-01-13 18:02:00,24.0362,92.89,2.43 +2017-01-13 18:17:00,25.8213,92.85,2.41 +2017-01-13 18:32:00,25.3763,92.85,2.4 +2017-01-13 18:47:00,25.475,92.81,2.39 +2017-01-13 19:02:00,23.455,92.8925,2.36 +2017-01-13 19:17:00,23.4562,92.82,2.34 +2017-01-13 19:32:00,26.5037,92.8625,2.34 +2017-01-13 19:47:00,25.425,92.7775,2.34 +2017-01-13 20:02:00,23.355,92.795,2.31 +2017-01-13 20:17:00,24.3375,92.78,2.29 +2017-01-13 20:32:00,24.7787,92.8025,2.27 +2017-01-13 20:47:00,24.505,92.7425,2.27 +2017-01-13 21:02:00,25.09,92.79,2.26 +2017-01-13 21:17:00,24.7363,92.755,2.26 +2017-01-13 21:32:00,23.2588,92.7275,2.27 +2017-01-13 21:47:00,23.0687,92.6675,2.25 +2017-01-13 22:02:00,24.0362,92.6775,2.22 +2017-01-13 22:17:00,22.7787,92.65,2.2 +2017-01-13 22:32:00,24.735,92.4975,2.18 +2017-01-13 22:47:00,22.6825,92.4275,2.18 +2017-01-13 23:02:00,25.1825,92.3525,2.18 +2017-01-13 23:17:00,24.1875,92.4075,2.17 +2017-01-13 23:32:00,23.0212,92.5425,2.16 +2017-01-13 23:47:00,25.185,92.715,2.16 +2017-01-14 00:02:00,24.2913,92.675,2.17 +2017-01-14 00:17:00,24.4925,92.79,2.19 +2017-01-14 00:32:00,24.3925,92.9075,2.11 +2017-01-14 00:47:00,26.5525,93.1825,1.96 +2017-01-14 01:02:00,25.8737,93.4525,1.9 +2017-01-14 01:17:00,25.04,93.65,1.92 +2017-01-14 01:32:00,25.5687,93.92,1.94 +2017-01-14 01:47:00,24.6875,94.1575,1.93 +2017-01-14 02:02:00,26.1137,94.4,1.93 +2017-01-14 02:17:00,23.555,94.6625,1.94 +2017-01-14 02:32:00,22.7812,94.8,1.96 +2017-01-14 02:47:00,24.2387,95.0425,1.98 +2017-01-14 03:02:00,24.29,95.1775,1.97 +2017-01-14 03:17:00,24.7862,95.4,1.97 +2017-01-14 03:32:00,24.3425,95.505,1.98 +2017-01-14 03:47:00,25.4713,95.7775,1.98 +2017-01-14 04:02:00,24.7387,95.975,1.97 +2017-01-14 04:17:00,24.9412,96.1625,1.95 +2017-01-14 04:32:00,25.1888,96.2525,1.94 +2017-01-14 04:47:00,26.8937,96.235,1.94 +2017-01-14 05:02:00,24.4938,96.3125,1.94 +2017-01-14 05:17:00,23.75,96.39,1.93 +2017-01-14 05:32:00,24.24,96.72,1.94 +2017-01-14 05:47:00,23.3587,96.8875,1.93 +2017-01-14 06:02:00,26.45,97.0475,1.93 +2017-01-14 06:17:00,25.1375,97.115,1.92 +2017-01-14 06:32:00,25.09,97.3225,1.9 +2017-01-14 06:47:00,23.6075,97.5,1.87 +2017-01-14 07:02:00,26.11,97.6125,1.86 +2017-01-14 07:17:00,24.6825,97.775,1.85 +2017-01-14 07:32:00,24.635,97.8675,1.85 +2017-01-14 07:47:00,24.0375,97.975,1.85 +2017-01-14 08:02:00,26.0675,98.1575,1.83 +2017-01-14 08:17:00,22.7363,98.135,1.81 +2017-01-14 08:32:00,24.64,98.0675,1.79 +2017-01-14 08:47:00,22.6837,98.055,1.79 +2017-01-14 09:02:00,24.2875,98.005,1.78 +2017-01-14 09:17:00,26.2562,98.045,1.77 +2017-01-14 09:32:00,23.4575,98.1475,1.77 +2017-01-14 09:47:00,24.3913,98.3375,1.78 +2017-01-14 10:02:00,24.7887,98.455,1.79 +2017-01-14 10:17:00,23.505,98.5275,1.83 +2017-01-14 10:32:00,26.5,98.7375,1.87 +2017-01-14 10:47:00,24.9388,98.765,1.88 +2017-01-14 11:02:00,27.8975,98.96,1.89 +2017-01-14 11:17:00,25.1362,98.9225,1.91 +2017-01-14 11:32:00,26.115,99.125,1.94 +2017-01-14 11:47:00,25.4275,99.265,1.95 +2017-01-14 12:02:00,24.99,99.325,1.97 +2017-01-14 12:17:00,24.6862,99.37,2.0 +2017-01-14 12:32:00,26.4487,99.47,2.01 +2017-01-14 12:47:00,24.735,99.4775,2.02 +2017-01-14 13:02:00,25.475,99.495,2.03 +2017-01-14 13:17:00,24.5413,99.4425,2.03 +2017-01-14 13:32:00,22.29,99.4075,2.05 +2017-01-14 13:47:00,24.14,99.3175,2.06 +2017-01-14 14:02:00,24.635,99.335,2.07 +2017-01-14 14:17:00,24.2887,99.2875,2.08 +2017-01-14 14:32:00,24.7875,99.3025,2.08 +2017-01-14 14:47:00,25.5725,99.4,2.11 +2017-01-14 15:02:00,25.185,99.4125,2.11 +2017-01-14 15:17:00,26.02,99.4625,2.12 +2017-01-14 15:32:00,24.5863,99.535,2.12 +2017-01-14 15:47:00,24.8375,99.6425,2.13 +2017-01-14 16:02:00,25.5737,99.6425,2.14 +2017-01-14 16:17:00,26.75,99.635,2.16 +2017-01-14 16:32:00,23.705,99.67,2.18 +2017-01-14 16:47:00,24.34,99.7,2.18 +2017-01-14 17:02:00,24.2913,99.7875,2.21 +2017-01-14 17:17:00,25.2363,99.83,2.21 +2017-01-14 17:32:00,24.44,99.8275,2.22 +2017-01-14 17:47:00,25.14,99.78,2.24 +2017-01-14 18:02:00,23.4538,99.7,2.23 +2017-01-14 18:17:00,23.7025,99.5825,2.24 +2017-01-14 18:32:00,26.1562,99.365,2.22 +2017-01-14 18:47:00,25.6687,99.2425,2.22 +2017-01-14 19:02:00,25.085,99.3275,2.24 +2017-01-14 19:17:00,24.5863,99.3375,2.24 +2017-01-14 19:32:00,25.38,99.425,2.26 +2017-01-14 19:47:00,26.1113,99.3575,2.25 +2017-01-14 20:02:00,22.925,99.4175,2.25 +2017-01-14 20:17:00,24.4412,99.4025,2.25 +2017-01-14 20:32:00,24.8387,99.405,2.24 +2017-01-14 20:47:00,25.8688,99.53,2.25 +2017-01-14 21:02:00,24.6862,99.5275,2.23 +2017-01-14 21:17:00,24.2887,99.585,2.24 +2017-01-14 21:32:00,25.09,99.5175,2.23 +2017-01-14 21:47:00,23.4538,99.52,2.21 +2017-01-14 22:02:00,24.6862,99.5225,2.19 +2017-01-14 22:17:00,25.7738,99.39,2.16 +2017-01-14 22:32:00,22.825,99.4925,2.15 +2017-01-14 22:47:00,24.1362,99.1875,2.15 +2017-01-14 23:02:00,22.8775,99.035,2.16 +2017-01-14 23:17:00,25.92,98.9925,2.15 +2017-01-14 23:32:00,24.6875,98.9875,2.15 +2017-01-14 23:47:00,23.5575,98.925,2.16 +2017-01-15 00:02:00,26.5075,98.94,2.15 +2017-01-15 00:17:00,26.0212,98.8125,2.15 +2017-01-15 00:32:00,25.0362,98.8025,2.13 +2017-01-15 00:47:00,25.1825,98.8175,2.13 +2017-01-15 01:02:00,23.9875,98.905,2.13 +2017-01-15 01:17:00,23.3562,98.82,2.11 +2017-01-15 01:32:00,24.6875,98.8925,2.1 +2017-01-15 01:47:00,24.1888,98.905,2.1 +2017-01-15 02:02:00,25.6225,98.9525,2.12 +2017-01-15 02:17:00,23.7012,98.95,2.12 +2017-01-15 02:32:00,25.5713,98.8375,2.08 +2017-01-15 02:47:00,24.19,98.885,2.08 +2017-01-15 03:02:00,24.7825,98.8575,2.05 +2017-01-15 03:17:00,24.4887,98.7475,2.03 +2017-01-15 03:32:00,24.2875,98.59,2.04 +2017-01-15 03:47:00,23.0238,98.425,2.02 +2017-01-15 04:02:00,24.6362,98.385,2.02 +2017-01-15 04:17:00,24.085,98.2025,2.0 +2017-01-15 04:32:00,22.585,98.24,2.0 +2017-01-15 04:47:00,25.8175,98.2675,1.99 +2017-01-15 05:02:00,23.0137,98.3325,1.99 +2017-01-15 05:17:00,24.24,98.3775,1.98 +2017-01-15 05:32:00,24.6387,98.3125,1.96 +2017-01-15 05:47:00,23.505,98.4425,1.95 +2017-01-15 06:02:00,24.4925,98.315,1.94 +2017-01-15 06:17:00,25.2887,98.395,1.94 +2017-01-15 06:32:00,25.085,98.3425,1.93 +2017-01-15 06:47:00,25.625,98.3525,1.91 +2017-01-15 07:02:00,23.7012,98.39,1.9 +2017-01-15 07:17:00,24.39,98.35,1.89 +2017-01-15 07:32:00,26.5025,98.265,1.89 +2017-01-15 07:47:00,23.7513,98.1075,1.9 +2017-01-15 08:02:00,24.89,97.9,1.89 +2017-01-15 08:17:00,26.395,97.805,1.89 +2017-01-15 08:32:00,25.6188,97.69,1.91 +2017-01-15 08:47:00,24.5462,97.675,1.92 +2017-01-15 09:02:00,24.4412,97.5925,1.93 +2017-01-15 09:17:00,24.54,97.695,1.95 +2017-01-15 09:32:00,24.6862,97.765,1.96 +2017-01-15 09:47:00,24.7875,97.7725,1.96 +2017-01-15 10:02:00,25.185,97.755,1.98 +2017-01-15 10:17:00,24.5875,97.7825,1.99 +2017-01-15 10:32:00,24.19,97.76,1.98 +2017-01-15 10:47:00,26.0137,97.7775,1.97 +2017-01-15 11:02:00,25.77,97.81,1.99 +2017-01-15 11:17:00,25.7712,97.805,2.0 +2017-01-15 11:32:00,25.235,97.76,2.02 +2017-01-15 11:47:00,24.1338,97.8575,1.99 +2017-01-15 12:02:00,23.6488,97.8225,1.98 +2017-01-15 12:17:00,25.2887,97.68,1.97 +2017-01-15 12:32:00,24.6362,97.615,1.96 +2017-01-15 12:47:00,25.965,97.5825,1.98 +2017-01-15 13:02:00,24.3425,97.505,1.98 +2017-01-15 13:17:00,23.9875,97.33,1.98 +2017-01-15 13:32:00,25.2838,97.155,2.0 +2017-01-15 13:47:00,23.9887,96.965,2.0 +2017-01-15 14:02:00,26.9412,96.9075,2.0 +2017-01-15 14:17:00,24.085,96.955,1.98 +2017-01-15 14:32:00,22.68,96.91,1.98 +2017-01-15 14:47:00,24.635,96.9525,1.98 +2017-01-15 15:02:00,23.7012,96.9975,1.99 +2017-01-15 15:17:00,23.6512,97.03,1.97 +2017-01-15 15:32:00,25.09,96.9375,1.96 +2017-01-15 15:47:00,25.3325,97.0275,1.94 +2017-01-15 16:02:00,24.835,96.9675,1.91 +2017-01-15 16:17:00,24.29,96.975,1.9 +2017-01-15 16:32:00,25.0375,97.04,1.92 +2017-01-15 16:47:00,24.8375,97.0575,1.93 +2017-01-15 17:02:00,25.0362,97.0425,1.96 +2017-01-15 17:17:00,26.25,96.95,1.94 +2017-01-15 17:32:00,25.5212,96.865,1.94 +2017-01-15 17:47:00,25.2363,96.6825,1.94 +2017-01-15 18:02:00,25.3775,96.585,1.93 +2017-01-15 18:17:00,24.495,96.5575,1.95 +2017-01-15 18:32:00,23.9875,96.635,1.93 +2017-01-15 18:47:00,23.505,96.6475,1.94 +2017-01-15 19:02:00,24.0375,96.715,1.96 +2017-01-15 19:17:00,24.1888,96.76,1.95 +2017-01-15 19:32:00,24.0863,96.76,1.98 +2017-01-15 19:47:00,25.7213,96.7675,1.98 +2017-01-15 20:02:00,25.9688,96.815,1.99 +2017-01-15 20:17:00,25.6188,96.74,1.98 +2017-01-15 20:32:00,26.5013,96.7075,2.0 +2017-01-15 20:47:00,26.35,96.6575,2.02 +2017-01-15 21:02:00,23.795,96.74,2.02 +2017-01-15 21:17:00,25.2363,96.6475,2.03 +2017-01-15 21:32:00,27.1375,96.72,2.01 +2017-01-15 21:47:00,23.8925,96.6025,2.01 +2017-01-15 22:02:00,26.8538,96.535,2.02 +2017-01-15 22:17:00,24.5875,96.36,2.0 +2017-01-15 22:32:00,24.7387,96.1625,2.0 +2017-01-15 22:47:00,25.4762,95.95,2.0 +2017-01-15 23:02:00,22.9725,95.8875,1.98 +2017-01-15 23:17:00,26.1588,95.9325,1.99 +2017-01-15 23:32:00,24.1437,95.8075,1.99 +2017-01-15 23:47:00,26.3037,95.87,2.0 +2017-01-16 00:02:00,23.7962,95.8675,1.98 +2017-01-16 00:17:00,25.4262,95.88,1.98 +2017-01-16 00:32:00,25.3312,95.915,1.99 +2017-01-16 00:47:00,24.19,95.905,1.99 +2017-01-16 01:02:00,25.2862,95.9875,2.0 +2017-01-16 01:17:00,24.9925,95.9525,1.98 +2017-01-16 01:32:00,25.2387,95.895,1.96 +2017-01-16 01:47:00,25.9187,95.935,1.95 +2017-01-16 02:02:00,25.3312,95.9225,1.93 +2017-01-16 02:17:00,25.7712,95.915,1.93 +2017-01-16 02:32:00,24.4412,95.8475,1.91 +2017-01-16 02:47:00,26.1588,95.845,1.87 +2017-01-16 03:02:00,24.94,95.7875,1.85 +2017-01-16 03:17:00,23.8463,95.6225,1.84 +2017-01-16 03:32:00,25.0863,95.4175,1.84 +2017-01-16 03:47:00,26.65,95.2975,1.82 +2017-01-16 04:02:00,24.29,95.2675,1.78 +2017-01-16 04:17:00,23.5062,95.2125,1.77 +2017-01-16 04:32:00,25.0875,95.2125,1.76 +2017-01-16 04:47:00,24.44,95.2275,1.75 +2017-01-16 05:02:00,25.1362,95.1875,1.72 +2017-01-16 05:17:00,24.2887,95.3175,1.7 +2017-01-16 05:32:00,25.09,95.32,1.68 +2017-01-16 05:47:00,25.7213,95.335,1.67 +2017-01-16 06:02:00,23.7962,95.355,1.66 +2017-01-16 06:17:00,25.0375,95.36,1.65 +2017-01-16 06:32:00,26.7487,95.3375,1.63 +2017-01-16 06:47:00,24.8375,95.1975,1.61 +2017-01-16 07:02:00,26.0675,95.14,1.61 +2017-01-16 07:17:00,24.3913,95.035,1.61 +2017-01-16 07:32:00,24.3887,94.9525,1.6 +2017-01-16 07:47:00,25.1837,94.88,1.58 +2017-01-16 08:02:00,23.1137,94.92,1.58 +2017-01-16 08:17:00,24.7887,94.8675,1.58 +2017-01-16 08:32:00,23.935,94.95,1.58 +2017-01-16 08:47:00,25.0887,94.9225,1.58 +2017-01-16 09:02:00,26.2525,94.995,1.59 +2017-01-16 09:17:00,26.3988,95.105,1.6 +2017-01-16 09:32:00,25.2875,95.0825,1.61 +2017-01-16 09:47:00,23.9375,95.0725,1.61 +2017-01-16 10:02:00,26.1137,95.08,1.62 +2017-01-16 10:17:00,26.0713,95.245,1.61 +2017-01-16 10:32:00,26.7012,95.1425,1.6 +2017-01-16 10:47:00,25.035,95.26,1.6 +2017-01-16 11:02:00,24.035,95.29,1.61 +2017-01-16 11:17:00,24.7337,95.395,1.62 +2017-01-16 11:32:00,26.5025,95.4375,1.61 +2017-01-16 11:47:00,24.1925,95.3575,1.61 +2017-01-16 12:02:00,25.4275,95.2325,1.61 +2017-01-16 12:17:00,26.85,94.98,1.61 +2017-01-16 12:32:00,23.4062,94.9925,1.61 +2017-01-16 12:47:00,24.9375,94.87,1.6 +2017-01-16 13:02:00,25.5713,94.8475,1.58 +2017-01-16 13:17:00,24.5863,94.88,1.56 +2017-01-16 13:32:00,26.11,94.8975,1.55 +2017-01-16 13:47:00,24.8375,94.89,1.54 +2017-01-16 14:02:00,24.6362,94.91,1.52 +2017-01-16 14:17:00,24.1875,94.8925,1.49 +2017-01-16 14:32:00,25.135,94.97,1.49 +2017-01-16 14:47:00,25.965,94.94,1.5 +2017-01-16 15:02:00,25.62,94.88,1.49 +2017-01-16 15:17:00,25.525,94.8925,1.46 +2017-01-16 15:32:00,25.82,94.87,1.44 +2017-01-16 15:47:00,26.85,94.8075,1.44 +2017-01-16 16:02:00,26.3,94.685,1.43 +2017-01-16 16:17:00,25.77,94.8225,1.44 +2017-01-16 16:32:00,25.5713,94.7225,1.44 +2017-01-16 16:47:00,26.2525,94.5225,1.43 +2017-01-16 17:02:00,23.6512,94.3475,1.42 +2017-01-16 17:17:00,24.2363,94.2375,1.43 +2017-01-16 17:32:00,25.0863,94.1975,1.43 +2017-01-16 17:47:00,26.6488,94.1875,1.42 +2017-01-16 18:02:00,24.9375,94.1925,1.4 +2017-01-16 18:17:00,25.5675,94.23,1.4 +2017-01-16 18:32:00,25.2825,94.2625,1.4 +2017-01-16 18:47:00,24.7862,94.305,1.4 +2017-01-16 19:02:00,24.6888,94.3625,1.41 +2017-01-16 19:17:00,24.4375,94.305,1.41 +2017-01-16 19:32:00,24.5387,94.3425,1.4 +2017-01-16 19:47:00,24.59,94.3275,1.4 +2017-01-16 20:02:00,23.7025,94.3325,1.42 +2017-01-16 20:17:00,26.4487,94.3775,1.43 +2017-01-16 20:32:00,25.72,94.3325,1.44 +2017-01-16 20:47:00,25.3763,94.33,1.44 +2017-01-16 21:02:00,24.7862,94.2625,1.44 +2017-01-16 21:17:00,24.7363,94.175,1.45 +2017-01-16 21:32:00,25.3363,93.965,1.48 +2017-01-16 21:47:00,24.5887,93.795,1.49 +2017-01-16 22:02:00,27.09,93.715,1.5 +2017-01-16 22:17:00,25.9163,93.67,1.51 +2017-01-16 22:32:00,25.6725,93.62,1.5 +2017-01-16 22:47:00,25.62,93.6225,1.5 +2017-01-16 23:02:00,25.6212,93.6275,1.5 +2017-01-16 23:17:00,25.9187,93.67,1.5 +2017-01-16 23:32:00,25.38,93.6625,1.5 +2017-01-16 23:47:00,25.2325,93.6725,1.5 +2017-01-17 00:02:00,25.085,93.6475,1.51 +2017-01-17 00:17:00,26.8475,93.685,1.52 +2017-01-17 00:32:00,25.4725,93.68,1.52 +2017-01-17 00:47:00,26.0625,93.63,1.5 +2017-01-17 01:02:00,25.4262,93.6275,1.5 +2017-01-17 01:17:00,25.8187,93.6525,1.49 +2017-01-17 01:32:00,24.94,93.6325,1.49 +2017-01-17 01:47:00,26.1588,93.55,1.49 +2017-01-17 02:02:00,25.475,93.4225,1.49 +2017-01-17 02:17:00,25.425,93.1475,1.47 +2017-01-17 02:32:00,24.235,93.1125,1.48 +2017-01-17 02:47:00,25.5713,93.115,1.48 +2017-01-17 03:02:00,23.11,93.1225,1.48 +2017-01-17 03:17:00,24.3862,93.2,1.47 +2017-01-17 03:32:00,26.1537,93.1875,1.46 +2017-01-17 03:47:00,24.7337,93.205,1.44 +2017-01-17 04:02:00,25.3775,93.2525,1.42 +2017-01-17 04:17:00,25.4725,93.3175,1.4 +2017-01-17 04:32:00,25.185,93.275,1.39 +2017-01-17 04:47:00,24.785,93.3175,1.37 +2017-01-17 05:02:00,25.9613,93.3875,1.35 +2017-01-17 05:17:00,25.7188,93.4075,1.33 +2017-01-17 05:32:00,25.9137,93.4375,1.33 +2017-01-17 05:47:00,26.5488,93.46,1.33 +2017-01-17 06:02:00,25.6225,93.35,1.3 +2017-01-17 06:17:00,24.0837,93.3175,1.29 +2017-01-17 06:32:00,25.72,93.1575,1.27 +2017-01-17 06:47:00,26.6475,93.09,1.26 +2017-01-17 07:02:00,26.8975,93.0425,1.26 +2017-01-17 07:17:00,23.985,93.0275,1.24 +2017-01-17 07:32:00,25.1813,93.11,1.24 +2017-01-17 07:47:00,25.8175,93.12,1.24 +2017-01-17 08:02:00,26.445,93.2375,1.25 +2017-01-17 08:17:00,25.38,93.32,1.26 +2017-01-17 08:32:00,26.3975,93.425,1.27 +2017-01-17 08:47:00,24.585,93.4675,1.27 +2017-01-17 09:02:00,26.2525,93.57,1.29 +2017-01-17 09:17:00,25.035,93.52,1.3 +2017-01-17 09:32:00,23.5512,93.59,1.32 +2017-01-17 09:47:00,23.3562,93.6625,1.31 +2017-01-17 10:02:00,26.2012,93.6425,1.31 +2017-01-17 10:17:00,24.985,93.7225,1.33 +2017-01-17 10:32:00,26.3975,93.6325,1.35 +2017-01-17 10:47:00,23.4538,93.67,1.39 +2017-01-17 11:02:00,24.7825,93.73,1.39 +2017-01-17 11:17:00,25.9637,93.7425,1.4 +2017-01-17 11:32:00,25.5187,93.67,1.41 +2017-01-17 11:47:00,24.1888,93.695,1.42 +2017-01-17 12:02:00,26.3037,93.61,1.41 +2017-01-17 12:17:00,26.7962,93.3975,1.39 +2017-01-17 12:32:00,25.7725,93.245,1.38 +2017-01-17 12:47:00,26.4025,93.08,1.38 +2017-01-17 13:02:00,26.9912,93.0625,1.38 +2017-01-17 13:17:00,24.8862,92.9775,1.38 +2017-01-17 13:32:00,26.8,93.0375,1.37 +2017-01-17 13:47:00,26.015,93.0625,1.36 +2017-01-17 14:02:00,26.2038,93.12,1.36 +2017-01-17 14:17:00,25.87,93.175,1.36 +2017-01-17 14:32:00,25.525,93.1275,1.34 +2017-01-17 14:47:00,24.2363,93.235,1.32 +2017-01-17 15:02:00,25.3337,93.26,1.32 +2017-01-17 15:17:00,25.6712,93.2475,1.31 +2017-01-17 15:32:00,24.085,93.2225,1.31 +2017-01-17 15:47:00,25.6212,93.29,1.3 +2017-01-17 16:02:00,24.8363,93.3175,1.28 +2017-01-17 16:17:00,24.4437,93.3225,1.27 +2017-01-17 16:32:00,26.35,93.355,1.26 +2017-01-17 16:47:00,26.5525,93.285,1.26 +2017-01-17 17:02:00,26.94,93.285,1.26 +2017-01-17 17:17:00,24.0863,93.1975,1.25 +2017-01-17 17:32:00,24.0837,93.0825,1.24 +2017-01-17 17:47:00,26.3025,92.9025,1.25 +2017-01-17 18:02:00,25.8688,92.7275,1.25 +2017-01-17 18:17:00,26.3487,92.6175,1.26 +2017-01-17 18:32:00,25.4287,92.56,1.28 +2017-01-17 18:47:00,25.425,92.595,1.29 +2017-01-17 19:02:00,25.7712,92.6275,1.29 +2017-01-17 19:17:00,26.7475,92.64,1.29 +2017-01-17 19:32:00,25.0362,92.65,1.3 +2017-01-17 19:47:00,24.4412,92.6275,1.3 +2017-01-17 20:02:00,24.0863,92.59,1.3 +2017-01-17 20:17:00,25.3312,92.61,1.29 +2017-01-17 20:32:00,25.2838,92.5525,1.29 +2017-01-17 20:47:00,25.475,92.52,1.29 +2017-01-17 21:02:00,24.9887,92.5375,1.29 +2017-01-17 21:17:00,25.1387,92.505,1.29 +2017-01-17 21:32:00,23.1588,92.4375,1.29 +2017-01-17 21:47:00,24.9887,92.385,1.3 +2017-01-17 22:02:00,25.57,92.3375,1.31 +2017-01-17 22:17:00,26.8463,92.3375,1.31 +2017-01-17 22:32:00,25.2825,92.12,1.29 +2017-01-17 22:47:00,25.3325,91.935,1.29 +2017-01-17 23:02:00,26.7,91.635,1.28 +2017-01-17 23:17:00,26.205,91.515,1.27 +2017-01-17 23:32:00,25.9163,91.4725,1.28 +2017-01-17 23:47:00,23.2575,91.46,1.26 +2017-01-18 00:02:00,26.0675,91.44,1.26 +2017-01-18 00:17:00,26.6,91.4175,1.25 +2017-01-18 00:32:00,26.205,91.405,1.25 +2017-01-18 00:47:00,26.0175,91.39,1.24 +2017-01-18 01:02:00,26.6025,91.3475,1.22 +2017-01-18 01:17:00,24.6387,91.355,1.2 +2017-01-18 01:32:00,26.8975,91.3525,1.18 +2017-01-18 01:47:00,25.4737,91.3725,1.18 +2017-01-18 02:02:00,24.59,91.31,1.17 +2017-01-18 02:17:00,25.8175,91.3,1.14 +2017-01-18 02:32:00,23.3562,91.315,1.13 +2017-01-18 02:47:00,26.16,91.24,1.14 +2017-01-18 03:02:00,25.5725,91.1875,1.12 +2017-01-18 03:17:00,26.745,91.0975,1.09 +2017-01-18 03:32:00,25.1362,90.91,1.05 +2017-01-18 03:47:00,24.6862,90.715,1.02 +2017-01-18 04:02:00,26.5,90.6075,1.0 +2017-01-18 04:17:00,26.945,90.605,0.98 +2017-01-18 04:32:00,27.0387,90.5475,0.97 +2017-01-18 04:47:00,25.2363,90.5475,0.94 +2017-01-18 05:02:00,27.4925,90.5475,0.91 +2017-01-18 05:17:00,24.735,90.58,0.9 +2017-01-18 05:32:00,25.5737,90.61,0.87 +2017-01-18 05:47:00,24.8337,90.565,0.84 +2017-01-18 06:02:00,26.2988,90.6025,0.81 +2017-01-18 06:17:00,25.5725,90.6175,0.78 +2017-01-18 06:32:00,24.8337,90.5975,0.76 +2017-01-18 06:47:00,27.04,90.47,0.76 +2017-01-18 07:02:00,25.5713,90.31,0.76 +2017-01-18 07:17:00,26.4463,90.1525,0.74 +2017-01-18 07:32:00,25.2825,89.9725,0.71 +2017-01-18 07:47:00,26.8937,89.935,0.71 +2017-01-18 08:02:00,27.09,89.925,0.72 +2017-01-18 08:17:00,26.65,89.965,0.73 +2017-01-18 08:32:00,25.4775,89.995,0.73 +2017-01-18 08:47:00,25.3337,90.06,0.74 +2017-01-18 09:02:00,26.8487,90.0525,0.77 +2017-01-18 09:17:00,26.4463,90.08,0.8 +2017-01-18 09:32:00,26.9425,90.1325,0.83 +2017-01-18 09:47:00,25.575,90.2,0.85 +2017-01-18 10:02:00,25.5262,90.1675,0.87 +2017-01-18 10:17:00,27.14,90.2875,0.91 +2017-01-18 10:32:00,27.0887,90.3075,0.93 +2017-01-18 10:47:00,25.3775,90.325,0.96 +2017-01-18 11:02:00,25.77,90.4025,0.98 +2017-01-18 11:17:00,28.3925,90.4125,0.98 +2017-01-18 11:32:00,26.5488,90.3975,0.97 +2017-01-18 11:47:00,24.8363,90.44,0.99 +2017-01-18 12:02:00,26.0662,90.28,1.0 +2017-01-18 12:17:00,24.7288,90.1125,1.02 +2017-01-18 12:32:00,27.0863,90.0175,1.02 +2017-01-18 12:47:00,27.645,89.9775,1.01 +2017-01-18 13:02:00,27.6925,89.9625,1.01 +2017-01-18 13:17:00,24.6813,90.005,1.02 +2017-01-18 13:32:00,27.34,90.06,1.02 +2017-01-18 13:47:00,26.6462,90.0725,1.02 +2017-01-18 14:02:00,25.7225,90.09,1.0 +2017-01-18 14:17:00,25.965,90.1225,0.96 +2017-01-18 14:32:00,26.0638,90.1725,0.95 +2017-01-18 14:47:00,25.1325,90.165,0.94 +2017-01-18 15:02:00,26.01,90.18,0.91 +2017-01-18 15:17:00,24.735,90.1775,0.88 +2017-01-18 15:32:00,26.35,90.155,0.85 +2017-01-18 15:47:00,26.6975,90.195,0.82 +2017-01-18 16:02:00,25.13,90.19,0.81 +2017-01-18 16:17:00,26.9425,90.1475,0.82 +2017-01-18 16:32:00,25.57,90.015,0.81 +2017-01-18 16:47:00,25.72,89.87,0.8 +2017-01-18 17:02:00,26.1125,89.655,0.79 +2017-01-18 17:17:00,26.0175,89.59,0.78 +2017-01-18 17:32:00,23.7925,89.5375,0.78 +2017-01-18 17:47:00,26.11,89.53,0.76 +2017-01-18 18:02:00,23.9837,89.5425,0.74 +2017-01-18 18:17:00,26.695,89.6075,0.73 +2017-01-18 18:32:00,26.4987,89.56,0.74 +2017-01-18 18:47:00,25.7712,89.55,0.74 +2017-01-18 19:02:00,24.4938,89.5825,0.75 +2017-01-18 19:17:00,25.3312,89.615,0.73 +2017-01-18 19:32:00,26.3025,89.5925,0.74 +2017-01-18 19:47:00,27.0875,89.5775,0.74 +2017-01-18 20:02:00,24.935,89.4725,0.74 +2017-01-18 20:17:00,25.33,89.495,0.73 +2017-01-18 20:32:00,26.3988,89.465,0.73 +2017-01-18 20:47:00,26.3512,89.4725,0.74 +2017-01-18 21:02:00,26.2038,89.4375,0.76 +2017-01-18 21:17:00,26.7975,89.2225,0.77 +2017-01-18 21:32:00,25.5713,89.0625,0.79 +2017-01-18 21:47:00,26.2513,88.905,0.79 +2017-01-18 22:02:00,25.9675,88.8475,0.79 +2017-01-18 22:17:00,24.0812,88.87,0.79 +2017-01-18 22:32:00,25.6687,88.765,0.8 +2017-01-18 22:47:00,24.135,88.755,0.82 +2017-01-18 23:02:00,25.9625,88.8225,0.83 +2017-01-18 23:17:00,25.5212,88.8325,0.81 +2017-01-18 23:32:00,27.1925,88.7625,0.82 +2017-01-18 23:47:00,26.5975,88.7575,0.82 +2017-01-19 00:02:00,26.3025,88.75,0.83 +2017-01-19 00:17:00,24.335,88.7275,0.81 +2017-01-19 00:32:00,27.1375,88.65,0.82 +2017-01-19 00:47:00,26.3037,88.6825,0.85 +2017-01-19 01:02:00,26.8975,88.5875,0.85 +2017-01-19 01:17:00,24.9863,88.455,0.84 +2017-01-19 01:32:00,25.6212,88.325,0.82 +2017-01-19 01:47:00,26.8975,88.135,0.81 +2017-01-19 02:02:00,26.8487,88.035,0.81 +2017-01-19 02:17:00,27.0362,88.0175,0.79 +2017-01-19 02:32:00,25.1362,87.97,0.78 +2017-01-19 02:47:00,25.2363,87.9625,0.77 +2017-01-19 03:02:00,25.6225,87.9425,0.75 +2017-01-19 03:17:00,25.67,88.0425,0.74 +2017-01-19 03:32:00,25.2337,88.0775,0.71 +2017-01-19 03:47:00,24.5387,88.0075,0.68 +2017-01-19 04:02:00,27.29,88.015,0.67 +2017-01-19 04:17:00,24.3875,87.9625,0.66 +2017-01-19 04:32:00,25.7188,87.9325,0.63 +2017-01-19 04:47:00,24.5875,87.87,0.61 +2017-01-19 05:02:00,24.7312,87.91,0.57 +2017-01-19 05:17:00,26.5975,87.8775,0.53 +2017-01-19 05:32:00,26.4987,87.8725,0.52 +2017-01-19 05:47:00,27.84,87.8,0.5 +2017-01-19 06:02:00,25.7175,87.7225,0.49 +2017-01-19 06:17:00,24.8862,87.525,0.46 +2017-01-19 06:32:00,25.3763,87.3575,0.43 +2017-01-19 06:47:00,27.6937,87.1675,0.41 +2017-01-19 07:02:00,24.54,87.005,0.38 +2017-01-19 07:17:00,27.4388,86.8475,0.37 +2017-01-19 07:32:00,25.865,86.6875,0.37 +2017-01-19 07:47:00,24.6362,86.665,0.35 +2017-01-19 08:02:00,27.1375,86.7175,0.35 +2017-01-19 08:17:00,23.9362,86.6375,0.35 +2017-01-19 08:32:00,27.04,86.615,0.36 +2017-01-19 08:47:00,27.5912,86.5675,0.37 +2017-01-19 09:02:00,25.8688,86.54,0.38 +2017-01-19 09:17:00,26.4012,86.5175,0.38 +2017-01-19 09:32:00,26.8487,86.5375,0.39 +2017-01-19 09:47:00,27.1375,86.4975,0.41 +2017-01-19 10:02:00,25.6712,86.53,0.43 +2017-01-19 10:17:00,25.0387,86.4825,0.46 +2017-01-19 10:32:00,26.8475,86.485,0.49 +2017-01-19 10:47:00,26.3512,86.5025,0.52 +2017-01-19 11:02:00,26.6,86.425,0.53 +2017-01-19 11:17:00,24.6875,86.305,0.53 +2017-01-19 11:32:00,27.7438,86.15,0.54 +2017-01-19 11:47:00,25.82,85.92,0.52 +2017-01-19 12:02:00,25.9675,85.82,0.53 +2017-01-19 12:17:00,25.67,85.6175,0.52 +2017-01-19 12:32:00,24.6413,85.575,0.53 +2017-01-19 12:47:00,26.6537,85.59,0.53 +2017-01-19 13:02:00,25.87,85.55,0.51 +2017-01-19 13:17:00,27.495,85.5425,0.51 +2017-01-19 13:32:00,28.7387,85.4375,0.53 +2017-01-19 13:47:00,23.5088,85.445,0.52 +2017-01-19 14:02:00,26.02,85.4125,0.53 +2017-01-19 14:17:00,25.5262,85.33,0.52 +2017-01-19 14:32:00,26.5525,85.3975,0.52 +2017-01-19 14:47:00,25.1875,85.42,0.53 +2017-01-19 15:02:00,26.0638,85.425,0.55 +2017-01-19 15:17:00,26.7525,85.4125,0.57 +2017-01-19 15:32:00,26.3538,85.495,0.58 +2017-01-19 15:47:00,26.55,85.475,0.58 +2017-01-19 16:02:00,25.6237,85.375,0.56 +2017-01-19 16:17:00,25.2875,85.1875,0.55 +2017-01-19 16:32:00,26.305,84.965,0.55 +2017-01-19 16:47:00,25.3363,84.87,0.54 +2017-01-19 17:02:00,25.6738,84.71,0.54 +2017-01-19 17:17:00,26.4525,84.715,0.56 +2017-01-19 17:32:00,25.43,84.67,0.54 +2017-01-19 17:47:00,25.24,84.6,0.55 +2017-01-19 18:02:00,26.4525,84.59,0.57 +2017-01-19 18:17:00,24.79,84.5875,0.59 +2017-01-19 18:32:00,25.725,84.575,0.57 +2017-01-19 18:47:00,24.6387,84.5525,0.54 +2017-01-19 19:02:00,24.9962,84.5525,0.54 +2017-01-19 19:17:00,24.5925,84.5275,0.55 +2017-01-19 19:32:00,25.5275,84.535,0.56 +2017-01-19 19:47:00,26.1188,84.49,0.55 +2017-01-19 20:02:00,26.0687,84.5325,0.57 +2017-01-19 20:17:00,26.7025,84.505,0.61 +2017-01-19 20:32:00,25.19,84.4575,0.66 +2017-01-19 20:47:00,25.24,84.5,0.67 +2017-01-19 21:02:00,25.4325,84.47,0.67 +2017-01-19 21:17:00,25.045,84.4,0.7 +2017-01-19 21:32:00,27.3475,84.2625,0.72 +2017-01-19 21:47:00,24.4512,84.105,0.72 +2017-01-19 22:02:00,26.4037,83.945,0.73 +2017-01-19 22:17:00,23.2663,83.9275,0.73 +2017-01-19 22:32:00,26.5575,83.885,0.72 +2017-01-19 22:47:00,24.5488,83.94,0.74 +2017-01-19 23:02:00,26.075,83.9475,0.74 +2017-01-19 23:17:00,26.9487,84.0225,0.75 +2017-01-19 23:32:00,26.355,84.1125,0.75 +2017-01-19 23:47:00,24.745,84.195,0.75 +2017-01-20 00:02:00,27.095,84.2425,0.74 +2017-01-20 00:17:00,26.165,84.22,0.75 +2017-01-20 00:32:00,25.6787,84.305,0.75 +2017-01-20 00:47:00,26.8075,84.3575,0.74 +2017-01-20 01:02:00,25.485,84.35,0.72 +2017-01-20 01:17:00,25.6775,84.415,0.72 +2017-01-20 01:32:00,27.2438,84.445,0.74 +2017-01-20 01:47:00,23.6588,84.4375,0.75 +2017-01-20 02:02:00,27.3025,84.4875,0.74 +2017-01-20 02:17:00,27.0462,84.37,0.73 +2017-01-20 02:32:00,27.2975,84.27,0.73 +2017-01-20 02:47:00,26.6075,84.0875,0.74 +2017-01-20 03:02:00,25.095,83.9925,0.74 +2017-01-20 03:17:00,24.2988,84.045,0.75 +2017-01-20 03:32:00,27.4012,84.0525,0.76 +2017-01-20 03:47:00,26.9987,84.165,0.75 +2017-01-20 04:02:00,25.6813,84.2925,0.75 +2017-01-20 04:17:00,24.2487,84.3275,0.76 +2017-01-20 04:32:00,26.1212,84.37,0.78 +2017-01-20 04:47:00,27.45,84.51,0.76 +2017-01-20 05:02:00,27.845,84.5925,0.76 +2017-01-20 05:17:00,26.1675,84.685,0.76 +2017-01-20 05:32:00,26.4575,84.79,0.76 +2017-01-20 05:47:00,24.9987,84.9275,0.76 +2017-01-20 06:02:00,24.7988,84.91,0.77 +2017-01-20 06:17:00,26.5088,84.8775,0.78 +2017-01-20 06:32:00,24.695,84.8475,0.78 +2017-01-20 06:47:00,26.8063,84.835,0.77 +2017-01-20 07:02:00,23.7087,84.7675,0.78 +2017-01-20 07:17:00,26.66,84.6675,0.77 +2017-01-20 07:32:00,25.3438,84.695,0.75 +2017-01-20 07:47:00,25.3887,84.7925,0.73 +2017-01-20 08:02:00,25.7812,84.9275,0.73 +2017-01-20 08:17:00,25.3862,84.945,0.75 +2017-01-20 08:32:00,26.2625,85.0775,0.77 +2017-01-20 08:47:00,25.8812,85.1275,0.78 +2017-01-20 09:02:00,27.605,85.2075,0.79 +2017-01-20 09:17:00,26.2612,85.26,0.8 +2017-01-20 09:32:00,26.5125,85.3375,0.81 +2017-01-20 09:47:00,25.1975,85.4075,0.82 +2017-01-20 10:02:00,23.95,85.4425,0.83 +2017-01-20 10:17:00,25.7337,85.4825,0.85 +2017-01-20 10:32:00,27.1462,85.4775,0.85 +2017-01-20 10:47:00,25.7812,85.52,0.87 +2017-01-20 11:02:00,26.66,85.5075,0.9 +2017-01-20 11:17:00,27.3525,85.575,0.91 +2017-01-20 11:32:00,26.36,85.5375,0.93 +2017-01-20 11:47:00,25.4825,85.4275,0.96 +2017-01-20 12:02:00,27.5,85.2825,0.98 +2017-01-20 12:17:00,25.34,85.225,1.0 +2017-01-20 12:32:00,25.6312,85.21,1.04 +2017-01-20 12:47:00,25.195,85.18,1.07 +2017-01-20 13:02:00,25.3887,85.3125,1.07 +2017-01-20 13:17:00,25.7812,85.34,1.07 +2017-01-20 13:32:00,23.515,85.41,1.08 +2017-01-20 13:47:00,25.7312,85.4375,1.07 +2017-01-20 14:02:00,25.4337,85.52,1.06 +2017-01-20 14:17:00,25.1963,85.6125,1.07 +2017-01-20 14:32:00,24.5512,85.69,1.07 +2017-01-20 14:47:00,25.7312,85.77,1.07 +2017-01-20 15:02:00,25.5312,85.8475,1.1 +2017-01-20 15:17:00,25.68,85.8875,1.08 +2017-01-20 15:32:00,23.1725,85.835,1.08 +2017-01-20 15:47:00,25.6762,85.71,1.11 +2017-01-20 16:02:00,25.6325,85.51,1.11 +2017-01-20 16:17:00,26.4575,85.1775,1.1 +2017-01-20 16:32:00,25.1488,84.73,1.08 +2017-01-20 16:47:00,26.2637,84.255,1.08 +2017-01-20 17:02:00,27.655,83.8475,1.08 +2017-01-20 17:17:00,27.3025,83.5225,1.08 +2017-01-20 17:32:00,27.0987,83.235,1.09 +2017-01-20 17:47:00,25.63,83.0,1.09 +2017-01-20 18:02:00,26.1675,82.775,1.08 +2017-01-20 18:17:00,25.1937,82.62,1.09 +2017-01-20 18:32:00,27.1,82.495,1.12 +2017-01-20 18:47:00,23.805,82.405,1.12 +2017-01-20 19:02:00,26.1687,82.33,1.11 +2017-01-20 19:17:00,24.1987,82.3125,1.1 +2017-01-20 19:32:00,26.3637,82.355,1.11 +2017-01-20 19:47:00,24.6975,82.425,1.12 +2017-01-20 20:02:00,25.5837,82.51,1.14 +2017-01-20 20:17:00,26.0762,82.56,1.14 +2017-01-20 20:32:00,24.9012,82.72,1.14 +2017-01-20 20:47:00,26.265,82.8775,1.14 +2017-01-20 21:02:00,25.0,82.915,1.13 +2017-01-20 21:17:00,27.3025,82.9775,1.15 +2017-01-20 21:32:00,26.5125,82.9825,1.17 +2017-01-20 21:47:00,24.6475,83.14,1.17 +2017-01-20 22:02:00,27.1488,83.2775,1.18 +2017-01-20 22:17:00,25.435,83.48,1.2 +2017-01-20 22:32:00,26.2175,83.7225,1.22 +2017-01-20 22:47:00,25.3875,83.9475,1.22 +2017-01-20 23:02:00,23.4688,84.2375,1.21 +2017-01-20 23:17:00,26.46,84.4125,1.22 +2017-01-20 23:32:00,24.6,84.6675,1.22 +2017-01-20 23:47:00,23.5175,84.9375,1.22 +2017-01-21 00:02:00,26.86,85.0875,1.2 +2017-01-21 00:17:00,26.0325,85.2925,1.19 +2017-01-21 00:32:00,24.2,85.47,1.18 +2017-01-21 00:47:00,26.3162,85.6475,1.15 +2017-01-21 01:02:00,27.5037,85.8425,1.12 +2017-01-21 01:17:00,26.5112,85.98,1.09 +2017-01-21 01:32:00,25.8325,86.1325,1.06 +2017-01-21 01:47:00,25.63,86.175,1.04 +2017-01-21 02:02:00,26.7087,86.1125,1.02 +2017-01-21 02:17:00,27.5062,86.09,1.02 +2017-01-21 02:32:00,26.3138,86.0325,1.01 +2017-01-21 02:47:00,25.2975,86.0375,0.99 +2017-01-21 03:02:00,25.4912,86.1525,0.98 +2017-01-21 03:17:00,26.9062,86.2525,0.97 +2017-01-21 03:32:00,26.1237,86.36,0.97 +2017-01-21 03:47:00,26.4125,86.51,0.95 +2017-01-21 04:02:00,25.295,86.5625,0.93 +2017-01-21 04:17:00,26.4587,86.69,0.92 +2017-01-21 04:32:00,26.6562,86.8125,0.92 +2017-01-21 04:47:00,25.7312,86.905,0.9 +2017-01-21 05:02:00,26.2162,86.995,0.89 +2017-01-21 05:17:00,26.81,87.0675,0.86 +2017-01-21 05:32:00,26.1212,87.135,0.83 +2017-01-21 05:47:00,26.17,87.2175,0.81 +2017-01-21 06:02:00,25.395,87.27,0.79 +2017-01-21 06:17:00,24.4062,87.2925,0.76 +2017-01-21 06:32:00,27.5525,87.2425,0.71 +2017-01-21 06:47:00,27.5013,87.195,0.66 +2017-01-21 07:02:00,27.1462,87.175,0.63 +2017-01-21 07:17:00,26.2175,87.0875,0.61 +2017-01-21 07:32:00,25.0925,87.0175,0.59 +2017-01-21 07:47:00,25.34,86.975,0.56 +2017-01-21 08:02:00,26.0212,87.0425,0.54 +2017-01-21 08:17:00,28.3,87.155,0.52 +2017-01-21 08:32:00,26.8037,87.225,0.51 +2017-01-21 08:47:00,25.9713,87.335,0.5 +2017-01-21 09:02:00,26.995,87.435,0.49 +2017-01-21 09:17:00,26.0737,87.4975,0.55 +2017-01-21 09:32:00,26.6562,87.6075,0.57 +2017-01-21 09:47:00,28.045,87.665,0.59 +2017-01-21 10:02:00,24.0887,87.7025,0.61 +2017-01-21 10:17:00,26.2562,87.745,0.63 +2017-01-21 10:32:00,25.3337,87.81,0.65 +2017-01-21 10:47:00,25.5262,87.915,0.64 +2017-01-21 11:02:00,25.8737,87.9625,0.66 +2017-01-21 11:17:00,25.5762,88.0425,0.7 +2017-01-21 11:32:00,26.7525,88.09,0.75 +2017-01-21 11:47:00,26.3025,88.1925,0.76 +2017-01-21 12:02:00,24.49,88.22,0.77 +2017-01-21 12:17:00,25.3775,88.3225,0.79 +2017-01-21 12:32:00,26.0675,88.235,0.81 +2017-01-21 12:47:00,26.5,88.165,0.83 +2017-01-21 13:02:00,25.0437,88.0425,0.85 +2017-01-21 13:17:00,24.7375,87.96,0.87 +2017-01-21 13:32:00,25.5238,87.9975,0.88 +2017-01-21 13:47:00,26.3538,88.0575,0.9 +2017-01-21 14:02:00,26.8,88.11,0.92 +2017-01-21 14:17:00,27.3937,88.1625,0.94 +2017-01-21 14:32:00,25.285,88.29,0.94 +2017-01-21 14:47:00,25.2387,88.365,0.94 +2017-01-21 15:02:00,26.75,88.45,0.96 +2017-01-21 15:17:00,25.04,88.52,0.97 +2017-01-21 15:32:00,25.8662,88.62,0.98 +2017-01-21 15:47:00,26.4025,88.69,0.97 +2017-01-21 16:02:00,24.84,88.7125,0.96 +2017-01-21 16:17:00,27.3925,88.7825,0.96 +2017-01-21 16:32:00,26.6975,88.835,0.96 +2017-01-21 16:47:00,25.575,88.885,0.96 +2017-01-21 17:02:00,26.1575,88.83,0.96 +2017-01-21 17:17:00,24.6875,88.75,0.96 +2017-01-21 17:32:00,27.0425,88.585,0.97 +2017-01-21 17:47:00,25.7225,88.585,0.98 +2017-01-21 18:02:00,24.9412,88.5375,0.99 +2017-01-21 18:17:00,27.5462,88.5825,0.98 +2017-01-21 18:32:00,25.1875,88.7,0.97 +2017-01-21 18:47:00,26.5037,88.7125,0.98 +2017-01-21 19:02:00,27.9388,88.78,0.99 +2017-01-21 19:17:00,27.3412,88.8925,1.0 +2017-01-21 19:32:00,26.205,88.9925,0.99 +2017-01-21 19:47:00,25.3787,89.0,1.0 +2017-01-21 20:02:00,26.3512,89.0925,1.03 +2017-01-21 20:17:00,24.5863,89.095,1.04 +2017-01-21 20:32:00,25.92,89.1425,1.07 +2017-01-21 20:47:00,26.255,89.2025,1.08 +2017-01-21 21:02:00,25.3337,89.275,1.07 +2017-01-21 21:17:00,26.2075,89.25,1.09 +2017-01-21 21:32:00,26.9912,89.245,1.09 +2017-01-21 21:47:00,26.3025,89.1825,1.08 +2017-01-21 22:02:00,26.4,89.0525,1.06 +2017-01-21 22:17:00,27.3875,88.8725,1.05 +2017-01-21 22:32:00,26.3,88.725,1.03 +2017-01-21 22:47:00,26.3525,88.65,1.02 +2017-01-21 23:02:00,27.185,88.645,1.01 +2017-01-21 23:17:00,27.0875,88.68,0.99 +2017-01-21 23:32:00,26.7988,88.73,0.99 +2017-01-21 23:47:00,25.965,88.76,0.99 +2017-01-22 00:02:00,27.085,88.7625,0.99 +2017-01-22 00:17:00,26.9912,88.775,0.98 +2017-01-22 00:32:00,26.3525,88.745,0.98 +2017-01-22 00:47:00,26.2487,88.7275,1.0 +2017-01-22 01:02:00,24.5425,88.735,0.99 +2017-01-22 01:17:00,25.1362,88.72,1.0 +2017-01-22 01:32:00,24.8875,88.675,1.01 +2017-01-22 01:47:00,24.3875,88.6875,1.02 +2017-01-22 02:02:00,26.2513,88.665,1.02 +2017-01-22 02:17:00,25.815,88.6475,1.03 +2017-01-22 02:32:00,24.1875,88.59,1.03 +2017-01-22 02:47:00,25.8225,88.45,1.03 +2017-01-22 03:02:00,26.4,88.29,1.03 +2017-01-22 03:17:00,26.5013,88.035,1.03 +2017-01-22 03:32:00,26.2988,87.9,1.01 +2017-01-22 03:47:00,25.4262,87.82,1.0 +2017-01-22 04:02:00,24.5875,87.725,1.0 +2017-01-22 04:17:00,24.0837,87.6525,0.98 +2017-01-22 04:32:00,26.5512,87.5675,0.98 +2017-01-22 04:47:00,24.69,87.52,0.94 +2017-01-22 05:02:00,24.7862,87.55,0.91 +2017-01-22 05:17:00,26.7988,87.415,0.9 +2017-01-22 05:32:00,26.0662,87.3775,0.89 +2017-01-22 05:47:00,24.99,87.325,0.88 +2017-01-22 06:02:00,24.8862,87.1225,0.85 +2017-01-22 06:17:00,25.6225,86.9275,0.81 +2017-01-22 06:32:00,26.0675,86.7325,0.77 +2017-01-22 06:47:00,26.1588,86.46,0.74 +2017-01-22 07:02:00,26.3988,86.215,0.73 +2017-01-22 07:17:00,26.1137,86.09,0.71 +2017-01-22 07:32:00,23.0638,85.9225,0.69 +2017-01-22 07:47:00,26.9412,85.85,0.66 +2017-01-22 08:02:00,26.6012,85.81,0.66 +2017-01-22 08:17:00,25.9212,85.84,0.66 +2017-01-22 08:32:00,25.2375,85.8975,0.66 +2017-01-22 08:47:00,27.5413,85.9125,0.66 +2017-01-22 09:02:00,25.7213,85.805,0.64 +2017-01-22 09:17:00,26.3012,85.7975,0.64 +2017-01-22 09:32:00,24.6362,85.7225,0.66 +2017-01-22 09:47:00,26.0638,85.67,0.68 +2017-01-22 10:02:00,25.4737,85.6475,0.69 +2017-01-22 10:17:00,26.2487,85.56,0.71 +2017-01-22 10:32:00,26.9887,85.505,0.72 +2017-01-22 10:47:00,25.4737,85.3725,0.76 +2017-01-22 11:02:00,27.2887,85.1825,0.76 +2017-01-22 11:17:00,26.015,84.9325,0.77 +2017-01-22 11:32:00,26.015,84.7025,0.78 +2017-01-22 11:47:00,24.44,84.63,0.8 +2017-01-22 12:02:00,26.1575,84.5825,0.84 +2017-01-22 12:17:00,26.0125,84.5575,0.87 +2017-01-22 12:32:00,26.6963,84.5425,0.88 +2017-01-22 12:47:00,25.3763,84.595,0.89 +2017-01-22 13:02:00,25.085,84.605,0.9 +2017-01-22 13:17:00,25.5187,84.6125,0.92 +2017-01-22 13:32:00,26.4975,84.595,0.92 +2017-01-22 13:47:00,26.3988,84.66,0.92 +2017-01-22 14:02:00,26.5925,84.61,0.91 +2017-01-22 14:17:00,25.185,84.6175,0.9 +2017-01-22 14:32:00,24.1338,84.595,0.9 +2017-01-22 14:47:00,25.7687,84.605,0.9 +2017-01-22 15:02:00,26.395,84.5425,0.91 +2017-01-22 15:17:00,25.2337,84.56,0.9 +2017-01-22 15:32:00,24.34,84.5525,0.9 +2017-01-22 15:47:00,25.5212,84.455,0.89 +2017-01-22 16:02:00,25.2825,84.29,0.87 +2017-01-22 16:17:00,27.3887,84.09,0.86 +2017-01-22 16:32:00,26.695,83.975,0.84 +2017-01-22 16:47:00,23.7975,83.9275,0.85 +2017-01-22 17:02:00,25.2337,83.9875,0.85 +2017-01-22 17:17:00,24.9375,83.9725,0.85 +2017-01-22 17:32:00,25.1862,84.0175,0.86 +2017-01-22 17:47:00,24.6362,84.08,0.85 +2017-01-22 18:02:00,26.2025,84.0925,0.86 +2017-01-22 18:17:00,25.9637,84.195,0.86 +2017-01-22 18:32:00,26.3487,84.235,0.83 +2017-01-22 18:47:00,25.62,84.2675,0.81 +2017-01-22 19:02:00,24.5387,84.2875,0.81 +2017-01-22 19:17:00,25.865,84.375,0.8 +2017-01-22 19:32:00,27.235,84.37,0.81 +2017-01-22 19:47:00,23.7012,84.4075,0.82 +2017-01-22 20:02:00,24.885,84.4325,0.81 +2017-01-22 20:17:00,27.44,84.4125,0.8 +2017-01-22 20:32:00,25.18,84.4225,0.79 +2017-01-22 20:47:00,25.3763,84.2825,0.8 +2017-01-22 21:02:00,26.2513,84.125,0.82 +2017-01-22 21:17:00,24.2812,84.0125,0.83 +2017-01-22 21:32:00,26.5925,84.02,0.81 +2017-01-22 21:47:00,26.2962,84.07,0.81 +2017-01-22 22:02:00,27.34,84.0925,0.83 +2017-01-22 22:17:00,27.735,84.115,0.81 +2017-01-22 22:32:00,23.645,84.1525,0.8 +2017-01-22 22:47:00,26.2162,84.225,0.8 +2017-01-22 23:02:00,26.9463,84.3425,0.77 +2017-01-22 23:17:00,26.3,84.365,0.76 +2017-01-22 23:32:00,26.6488,84.425,0.78 +2017-01-22 23:47:00,25.92,84.4,0.8 +2017-01-23 00:02:00,25.8637,84.4375,0.79 +2017-01-23 00:17:00,27.04,84.4325,0.76 +2017-01-23 00:32:00,26.8988,84.49,0.73 +2017-01-23 00:47:00,25.47,84.5675,0.74 +2017-01-23 01:02:00,26.0612,84.525,0.72 +2017-01-23 01:17:00,26.2487,84.41,0.71 +2017-01-23 01:32:00,23.8887,84.315,0.7 +2017-01-23 01:47:00,25.6675,84.185,0.71 +2017-01-23 02:02:00,25.2325,84.1525,0.71 +2017-01-23 02:17:00,26.0137,84.1775,0.71 +2017-01-23 02:32:00,24.685,84.245,0.68 +2017-01-23 02:47:00,25.77,84.3375,0.67 +2017-01-23 03:02:00,28.145,84.3925,0.67 +2017-01-23 03:17:00,25.035,84.455,0.68 +2017-01-23 03:32:00,25.865,84.5325,0.67 +2017-01-23 03:47:00,24.6862,84.61,0.66 +2017-01-23 04:02:00,25.1837,84.645,0.65 +2017-01-23 04:17:00,25.3775,84.68,0.65 +2017-01-23 04:32:00,25.7188,84.7425,0.64 +2017-01-23 04:47:00,25.5225,84.7775,0.63 +2017-01-23 05:02:00,27.0387,84.8025,0.62 +2017-01-23 05:17:00,25.72,84.8075,0.59 +2017-01-23 05:32:00,25.87,84.845,0.59 +2017-01-23 05:47:00,25.2363,84.8,0.59 +2017-01-23 06:02:00,24.9875,84.7075,0.58 +2017-01-23 06:17:00,27.4412,84.455,0.55 +2017-01-23 06:32:00,26.6975,84.285,0.52 +2017-01-23 06:47:00,24.24,84.13,0.55 +2017-01-23 07:02:00,26.5938,84.0825,0.54 +2017-01-23 07:17:00,26.0612,84.0075,0.5 +2017-01-23 07:32:00,24.1387,84.025,0.48 +2017-01-23 07:47:00,27.3887,84.1625,0.45 +2017-01-23 08:02:00,25.57,84.195,0.45 +2017-01-23 08:17:00,26.0638,84.16,0.46 +2017-01-23 08:32:00,25.72,84.0475,0.48 +2017-01-23 08:47:00,25.8162,83.9525,0.45 +2017-01-23 09:02:00,24.4863,83.8425,0.42 +2017-01-23 09:17:00,26.2025,83.7525,0.41 +2017-01-23 09:32:00,25.915,83.6725,0.43 +2017-01-23 09:47:00,26.2038,83.685,0.44 +2017-01-23 10:02:00,25.62,83.65,0.44 +2017-01-23 10:17:00,25.3737,83.6425,0.41 +2017-01-23 10:32:00,28.83,83.6225,0.42 +2017-01-23 10:47:00,26.0112,83.61,0.45 +2017-01-23 11:02:00,27.2862,83.59,0.45 +2017-01-23 11:17:00,27.1312,83.5425,0.45 +2017-01-23 11:32:00,25.4675,83.54,0.46 +2017-01-23 11:47:00,27.3862,83.5275,0.46 +2017-01-23 12:02:00,24.8838,83.52,0.47 +2017-01-23 12:17:00,25.72,83.5025,0.48 +2017-01-23 12:32:00,24.7337,83.43,0.48 +2017-01-23 12:47:00,26.8425,83.365,0.47 +2017-01-23 13:02:00,27.2925,83.1575,0.46 +2017-01-23 13:17:00,25.375,83.005,0.47 +2017-01-23 13:32:00,26.395,82.88,0.49 +2017-01-23 13:47:00,25.765,82.8825,0.49 +2017-01-23 14:02:00,27.0338,82.91,0.49 +2017-01-23 14:17:00,25.5187,82.9325,0.48 +2017-01-23 14:32:00,25.2787,82.9325,0.51 +2017-01-23 14:47:00,25.0837,82.975,0.53 +2017-01-23 15:02:00,25.7675,83.0225,0.52 +2017-01-23 15:17:00,25.525,83.0075,0.49 +2017-01-23 15:32:00,24.44,83.05,0.5 +2017-01-23 15:47:00,25.2337,83.0625,0.52 +2017-01-23 16:02:00,26.1562,83.0825,0.5 +2017-01-23 16:17:00,26.9425,83.125,0.49 +2017-01-23 16:32:00,27.9887,83.1075,0.48 +2017-01-23 16:47:00,26.0125,83.1475,0.49 +2017-01-23 17:02:00,24.0375,83.1525,0.5 +2017-01-23 17:17:00,24.835,83.0775,0.49 +2017-01-23 17:32:00,27.185,82.945,0.49 +2017-01-23 17:47:00,25.7675,82.72,0.5 +2017-01-23 18:02:00,26.1562,82.555,0.5 +2017-01-23 18:17:00,25.865,82.5075,0.51 +2017-01-23 18:32:00,26.8463,82.435,0.52 +2017-01-23 18:47:00,26.445,82.435,0.5 +2017-01-23 19:02:00,26.795,82.47,0.5 +2017-01-23 19:17:00,24.935,82.465,0.5 +2017-01-23 19:32:00,27.0875,82.455,0.51 +2017-01-23 19:47:00,26.6987,82.5025,0.52 +2017-01-23 20:02:00,27.3387,82.5125,0.52 +2017-01-23 20:17:00,27.3387,82.555,0.52 +2017-01-23 20:32:00,24.6325,82.5,0.53 +2017-01-23 20:47:00,25.815,82.53,0.53 +2017-01-23 21:02:00,28.145,82.5575,0.52 +2017-01-23 21:17:00,25.6212,82.575,0.52 +2017-01-23 21:32:00,26.1125,82.5775,0.53 +2017-01-23 21:47:00,25.2862,82.5525,0.55 +2017-01-23 22:02:00,25.2862,82.39,0.56 +2017-01-23 22:17:00,25.865,82.18,0.55 +2017-01-23 22:32:00,24.635,81.9625,0.55 +2017-01-23 22:47:00,24.635,81.87,0.56 +2017-01-23 23:02:00,25.0825,81.7725,0.57 +2017-01-23 23:17:00,24.885,81.77,0.58 +2017-01-23 23:32:00,27.0375,81.765,0.6 +2017-01-23 23:47:00,25.2825,81.75,0.59 +2017-01-24 00:02:00,24.5863,81.765,0.58 +2017-01-24 00:17:00,25.5225,81.74,0.59 +2017-01-24 00:32:00,26.5462,81.735,0.62 +2017-01-24 00:47:00,26.9912,81.7225,0.6 +2017-01-24 01:02:00,24.0362,81.6775,0.57 +2017-01-24 01:17:00,23.845,81.68,0.58 +2017-01-24 01:32:00,27.5975,81.63,0.61 +2017-01-24 01:47:00,26.1575,81.5775,0.63 +2017-01-24 02:02:00,25.8162,81.54,0.63 +2017-01-24 02:17:00,26.6,81.3625,0.63 +2017-01-24 02:32:00,27.2363,81.1725,0.6 +2017-01-24 02:47:00,27.2363,80.9775,0.59 +2017-01-24 03:02:00,25.3312,80.895,0.6 +2017-01-24 03:17:00,24.2887,80.84,0.63 +2017-01-24 03:32:00,25.6712,80.8175,0.65 +2017-01-24 03:47:00,26.2038,80.815,0.64 +2017-01-24 04:02:00,25.8688,80.8475,0.65 +2017-01-24 04:17:00,25.3775,80.885,0.66 +2017-01-24 04:32:00,25.9637,80.91,0.67 +2017-01-24 04:47:00,26.6462,80.9225,0.67 +2017-01-24 05:02:00,26.3487,80.95,0.68 +2017-01-24 05:17:00,26.5963,80.9775,0.66 +2017-01-24 05:32:00,26.6475,81.0,0.67 +2017-01-24 05:47:00,25.135,80.99,0.65 +2017-01-24 06:02:00,26.4975,80.9175,0.64 +2017-01-24 06:17:00,24.54,80.795,0.64 +2017-01-24 06:32:00,24.835,80.67,0.63 +2017-01-24 06:47:00,25.7725,80.54,0.62 +2017-01-24 07:02:00,24.7337,80.44,0.62 +2017-01-24 07:17:00,25.185,80.3125,0.61 +2017-01-24 07:32:00,25.7712,80.2325,0.6 +2017-01-24 07:47:00,27.7887,80.2025,0.6 +2017-01-24 08:02:00,25.4775,80.28,0.6 +2017-01-24 08:17:00,25.5687,80.31,0.6 +2017-01-24 08:32:00,26.4962,80.3925,0.59 +2017-01-24 08:47:00,25.9637,80.42,0.59 +2017-01-24 09:02:00,24.7838,80.445,0.61 +2017-01-24 09:17:00,26.35,80.4325,0.62 +2017-01-24 09:32:00,27.7862,80.4825,0.63 +2017-01-24 09:47:00,25.285,80.495,0.62 +2017-01-24 10:02:00,28.5325,80.515,0.63 +2017-01-24 10:17:00,25.77,80.5175,0.65 +2017-01-24 10:32:00,26.2012,80.525,0.66 +2017-01-24 10:47:00,25.6188,80.53,0.68 +2017-01-24 11:02:00,26.6975,80.4025,0.68 +2017-01-24 11:17:00,26.7475,80.285,0.69 +2017-01-24 11:32:00,26.895,80.145,0.71 +2017-01-24 11:47:00,25.7175,80.04,0.73 +2017-01-24 12:02:00,25.375,80.06,0.76 +2017-01-24 12:17:00,24.8875,80.0125,0.76 +2017-01-24 12:32:00,26.4463,80.0675,0.79 +2017-01-24 12:47:00,27.3887,80.1,0.8 +2017-01-24 13:02:00,26.445,80.185,0.82 +2017-01-24 13:17:00,26.5512,80.28,0.83 +2017-01-24 13:32:00,23.5025,80.29,0.84 +2017-01-24 13:47:00,27.0863,80.35,0.84 +2017-01-24 14:02:00,25.8175,80.4125,0.83 +2017-01-24 14:17:00,25.67,80.46,0.83 +2017-01-24 14:32:00,24.3887,80.4825,0.86 +2017-01-24 14:47:00,26.6975,80.53,0.88 +2017-01-24 15:02:00,26.2487,80.585,0.91 +2017-01-24 15:17:00,26.2487,80.61,0.89 +2017-01-24 15:32:00,26.0612,80.525,0.89 +2017-01-24 15:47:00,26.4475,80.4175,0.92 +2017-01-24 16:02:00,25.135,80.245,0.93 +2017-01-24 16:17:00,26.945,80.205,0.93 +2017-01-24 16:32:00,26.4987,80.1575,0.93 +2017-01-24 16:47:00,26.4062,80.2,0.92 +2017-01-24 17:02:00,26.7487,80.22,0.91 +2017-01-24 17:17:00,24.9887,80.255,0.91 +2017-01-24 17:32:00,25.82,80.3425,0.93 +2017-01-24 17:47:00,25.425,80.4375,0.93 +2017-01-24 18:02:00,26.7975,80.525,0.93 +2017-01-24 18:17:00,26.11,80.5525,0.95 +2017-01-24 18:32:00,27.2887,80.625,0.96 +2017-01-24 18:47:00,26.0612,80.68,0.97 +2017-01-24 19:02:00,25.9137,80.745,0.98 +2017-01-24 19:17:00,26.11,80.785,0.98 +2017-01-24 19:32:00,25.7725,80.8425,0.99 +2017-01-24 19:47:00,25.9637,80.8325,1.01 +2017-01-24 20:02:00,26.8937,80.7375,1.03 +2017-01-24 20:17:00,26.0662,80.59,1.05 +2017-01-24 20:32:00,25.4287,80.515,1.06 +2017-01-24 20:47:00,24.49,80.4925,1.05 +2017-01-24 21:02:00,25.5225,80.5025,1.07 +2017-01-24 21:17:00,26.0137,80.5975,1.08 +2017-01-24 21:32:00,26.4975,80.68,1.09 +2017-01-24 21:47:00,26.35,80.79,1.09 +2017-01-24 22:02:00,26.2038,80.88,1.12 +2017-01-24 22:17:00,27.4412,80.98,1.14 +2017-01-24 22:32:00,25.57,81.065,1.15 +2017-01-24 22:47:00,26.065,81.1575,1.17 +2017-01-24 23:02:00,24.5375,81.2325,1.19 +2017-01-24 23:17:00,24.4425,81.32,1.19 +2017-01-24 23:32:00,25.8688,81.41,1.2 +2017-01-24 23:47:00,25.8187,81.4675,1.22 +2017-01-25 00:02:00,25.6212,81.57,1.23 +2017-01-25 00:17:00,26.4475,81.64,1.2 +2017-01-25 00:32:00,26.8975,81.715,1.19 +2017-01-25 00:47:00,25.3787,81.675,1.21 +2017-01-25 01:02:00,26.9875,81.5875,1.24 +2017-01-25 01:17:00,25.9637,81.5075,1.25 +2017-01-25 01:32:00,26.4975,81.4925,1.24 +2017-01-25 01:47:00,27.3913,81.5625,1.24 +2017-01-25 02:02:00,26.1537,81.73,1.25 +2017-01-25 02:17:00,25.3325,81.8525,1.25 +2017-01-25 02:32:00,25.815,82.06,1.26 +2017-01-25 02:47:00,25.67,82.21,1.26 +2017-01-25 03:02:00,26.7962,82.3975,1.25 +2017-01-25 03:17:00,25.8662,82.55,1.25 +2017-01-25 03:32:00,26.3012,82.7,1.26 +2017-01-25 03:47:00,26.0163,82.855,1.28 +2017-01-25 04:02:00,27.1387,83.0375,1.27 +2017-01-25 04:17:00,26.65,83.1925,1.27 +2017-01-25 04:32:00,23.5,83.2825,1.26 +2017-01-25 04:47:00,24.7325,83.4375,1.25 +2017-01-25 05:02:00,26.8487,83.6125,1.26 +2017-01-25 05:17:00,25.6712,83.66,1.25 +2017-01-25 05:32:00,26.6975,83.6325,1.24 +2017-01-25 05:47:00,26.1575,83.56,1.23 +2017-01-25 06:02:00,26.695,83.5325,1.24 +2017-01-25 06:17:00,26.6475,83.585,1.24 +2017-01-25 06:32:00,25.23,83.6725,1.23 +2017-01-25 06:47:00,26.11,83.7325,1.21 +2017-01-25 07:02:00,25.1825,83.8825,1.21 +2017-01-25 07:17:00,25.72,84.0675,1.19 +2017-01-25 07:32:00,26.6963,84.2475,1.19 +2017-01-25 07:47:00,25.6687,84.3275,1.19 +2017-01-25 08:02:00,25.9675,84.395,1.2 +2017-01-25 08:17:00,26.5525,84.36,1.22 +2017-01-25 08:32:00,27.0863,84.3225,1.23 +2017-01-25 08:47:00,28.2913,84.3325,1.24 +2017-01-25 09:02:00,27.4887,84.4075,1.26 +2017-01-25 09:17:00,26.0625,84.5,1.27 +2017-01-25 09:32:00,25.7712,84.61,1.31 +2017-01-25 09:47:00,27.6937,84.755,1.35 +2017-01-25 10:02:00,27.3425,84.8725,1.35 +2017-01-25 10:17:00,27.185,84.9475,1.36 +2017-01-25 10:32:00,27.5938,85.015,1.4 +2017-01-25 10:47:00,27.8387,85.1175,1.42 +2017-01-25 11:02:00,25.67,85.215,1.45 +2017-01-25 11:17:00,27.5925,85.2675,1.45 +2017-01-25 11:32:00,25.3775,85.4,1.46 +2017-01-25 11:47:00,26.55,85.4175,1.48 +2017-01-25 12:02:00,25.8162,85.4825,1.52 +2017-01-25 12:17:00,25.9137,85.475,1.54 +2017-01-25 12:32:00,26.0137,85.39,1.54 +2017-01-25 12:47:00,25.57,85.255,1.57 +2017-01-25 13:02:00,24.9362,85.13,1.58 +2017-01-25 13:17:00,28.3925,85.145,1.58 +2017-01-25 13:32:00,25.0875,85.145,1.56 +2017-01-25 13:47:00,26.6488,85.1875,1.55 +2017-01-25 14:02:00,25.5713,85.2775,1.53 +2017-01-25 14:17:00,25.67,85.3025,1.51 +2017-01-25 14:32:00,27.7887,85.37,1.52 +2017-01-25 14:47:00,28.9812,85.45,1.52 +2017-01-25 15:02:00,26.6975,85.5175,1.53 +2017-01-25 15:17:00,25.375,85.5775,1.51 +2017-01-25 15:32:00,24.1375,85.615,1.51 +2017-01-25 15:47:00,25.5725,85.6725,1.5 +2017-01-25 16:02:00,26.0638,85.7225,1.5 +2017-01-25 16:17:00,26.8962,85.7225,1.49 +2017-01-25 16:32:00,25.0863,85.7525,1.47 +2017-01-25 16:47:00,25.6675,85.6625,1.47 +2017-01-25 17:02:00,26.1137,85.5,1.49 +2017-01-25 17:17:00,26.35,85.32,1.51 +2017-01-25 17:32:00,25.0387,85.235,1.51 +2017-01-25 17:47:00,26.645,85.2375,1.51 +2017-01-25 18:02:00,26.0625,85.25,1.51 +2017-01-25 18:17:00,25.9625,85.2975,1.52 +2017-01-25 18:32:00,25.6175,85.3725,1.52 +2017-01-25 18:47:00,25.085,85.425,1.54 +2017-01-25 19:02:00,25.3763,85.5225,1.54 +2017-01-25 19:17:00,25.6212,85.6375,1.56 +2017-01-25 19:32:00,26.01,85.7025,1.57 +2017-01-25 19:47:00,25.9662,85.7675,1.59 +2017-01-25 20:02:00,26.3475,85.865,1.6 +2017-01-25 20:17:00,26.9425,85.8675,1.6 +2017-01-25 20:32:00,28.0887,85.925,1.62 +2017-01-25 20:47:00,26.2988,86.0,1.63 +2017-01-25 21:02:00,24.9412,86.075,1.64 +2017-01-25 21:17:00,24.6375,86.0175,1.64 +2017-01-25 21:32:00,27.2887,85.945,1.65 +2017-01-25 21:47:00,26.2513,85.82,1.66 +2017-01-25 22:02:00,28.3412,85.7375,1.67 +2017-01-25 22:17:00,26.2,85.7325,1.68 +2017-01-25 22:32:00,26.205,85.79,1.7 +2017-01-25 22:47:00,26.7,85.8575,1.7 +2017-01-25 23:02:00,28.1437,85.99,1.72 +2017-01-25 23:17:00,26.3487,86.0825,1.73 +2017-01-25 23:32:00,27.0387,86.1875,1.72 +2017-01-25 23:47:00,25.77,86.2475,1.72 +2017-01-26 00:02:00,28.0938,86.3575,1.71 +2017-01-26 00:17:00,27.4388,86.4275,1.71 +2017-01-26 00:32:00,26.015,86.485,1.73 +2017-01-26 00:47:00,26.5,86.545,1.73 +2017-01-26 01:02:00,26.6475,86.675,1.73 +2017-01-26 01:17:00,25.3312,86.7075,1.73 +2017-01-26 01:32:00,26.3487,86.8175,1.73 +2017-01-26 01:47:00,26.16,86.8075,1.75 +2017-01-26 02:02:00,26.2012,86.685,1.75 +2017-01-26 02:17:00,26.3975,86.555,1.74 +2017-01-26 02:32:00,25.815,86.43,1.74 +2017-01-26 02:47:00,24.7825,86.395,1.75 +2017-01-26 03:02:00,25.7188,86.455,1.75 +2017-01-26 03:17:00,28.19,86.5075,1.74 +2017-01-26 03:32:00,26.6987,86.5875,1.73 +2017-01-26 03:47:00,26.8475,86.6325,1.73 +2017-01-26 04:02:00,26.895,86.7,1.73 +2017-01-26 04:17:00,26.4,86.7425,1.73 +2017-01-26 04:32:00,26.2962,86.79,1.73 +2017-01-26 04:47:00,25.7213,86.765,1.7 +2017-01-26 05:02:00,26.3487,86.8425,1.68 +2017-01-26 05:17:00,27.6475,86.905,1.67 +2017-01-26 05:32:00,25.915,86.9475,1.66 +2017-01-26 05:47:00,26.1562,86.95,1.66 +2017-01-26 06:02:00,25.235,86.9825,1.63 +2017-01-26 06:17:00,23.0612,86.9625,1.61 +2017-01-26 06:32:00,27.04,86.835,1.6 +2017-01-26 06:47:00,26.2513,86.7775,1.57 +2017-01-26 07:02:00,26.25,86.6375,1.55 +2017-01-26 07:17:00,26.9887,86.52,1.52 +2017-01-26 07:32:00,25.6663,86.44,1.48 +2017-01-26 07:47:00,24.9362,86.3775,1.46 +2017-01-26 08:02:00,26.65,86.385,1.45 +2017-01-26 08:17:00,26.1537,86.41,1.46 +2017-01-26 08:32:00,24.3375,86.53,1.46 +2017-01-26 08:47:00,25.475,86.72,1.45 +2017-01-26 09:02:00,27.3425,86.7475,1.44 +2017-01-26 09:17:00,27.6925,86.8125,1.44 +2017-01-26 09:32:00,27.0362,86.8675,1.44 +2017-01-26 09:47:00,27.4388,86.9625,1.45 +2017-01-26 10:02:00,25.2337,86.945,1.47 +2017-01-26 10:17:00,24.785,87.0425,1.48 +2017-01-26 10:32:00,26.3538,87.05,1.49 +2017-01-26 10:47:00,25.0863,86.965,1.51 +2017-01-26 11:02:00,27.3913,86.86,1.54 +2017-01-26 11:17:00,26.3463,86.7125,1.54 +2017-01-26 11:32:00,25.6188,86.55,1.53 +2017-01-26 11:47:00,24.8375,86.4775,1.52 +2017-01-26 12:02:00,26.3962,86.5375,1.55 +2017-01-26 12:17:00,25.3337,86.565,1.61 +2017-01-26 12:32:00,26.4975,86.6025,1.64 +2017-01-26 12:47:00,26.5975,86.71,1.66 +2017-01-26 13:02:00,25.82,86.8025,1.7 +2017-01-26 13:17:00,25.6687,86.8775,1.71 +2017-01-26 13:32:00,25.235,86.935,1.73 +2017-01-26 13:47:00,23.9388,86.8125,1.73 +2017-01-26 14:02:00,26.5,86.8875,1.74 +2017-01-26 14:17:00,24.9887,86.855,1.75 +2017-01-26 14:32:00,26.6488,86.88,1.76 +2017-01-26 14:47:00,26.2038,86.9725,1.76 +2017-01-26 15:02:00,24.4925,87.075,1.76 +2017-01-26 15:17:00,25.5238,87.1425,1.76 +2017-01-26 15:32:00,25.1362,87.2075,1.76 +2017-01-26 15:47:00,25.7712,87.32,1.74 +2017-01-26 16:02:00,26.1125,87.38,1.74 +2017-01-26 16:17:00,24.0863,87.4525,1.72 +2017-01-26 16:32:00,26.945,87.5375,1.71 +2017-01-26 16:47:00,25.135,87.5775,1.7 +2017-01-26 17:02:00,27.0362,87.63,1.7 +2017-01-26 17:17:00,26.065,87.685,1.7 +2017-01-26 17:32:00,26.7475,87.5875,1.66 +2017-01-26 17:47:00,25.7225,87.4525,1.64 +2017-01-26 18:02:00,25.38,87.305,1.64 +2017-01-26 18:17:00,25.8175,87.185,1.65 +2017-01-26 18:32:00,26.2025,87.1925,1.65 +2017-01-26 18:47:00,25.1837,87.245,1.67 +2017-01-26 19:02:00,23.455,87.2925,1.66 +2017-01-26 19:17:00,25.375,87.4,1.65 +2017-01-26 19:32:00,24.99,87.47,1.66 +2017-01-26 19:47:00,24.3925,87.495,1.68 +2017-01-26 20:02:00,25.67,87.54,1.68 +2017-01-26 20:17:00,25.3288,87.625,1.68 +2017-01-26 20:32:00,26.065,87.7025,1.69 +2017-01-26 20:47:00,26.1113,87.7475,1.69 +2017-01-26 21:02:00,25.135,87.8225,1.72 +2017-01-26 21:17:00,27.235,87.7875,1.72 +2017-01-26 21:32:00,25.5187,87.7075,1.71 +2017-01-26 21:47:00,24.5887,87.6025,1.71 +2017-01-26 22:02:00,26.7487,87.53,1.71 +2017-01-26 22:17:00,27.1875,87.4725,1.72 +2017-01-26 22:32:00,24.3887,87.485,1.72 +2017-01-26 22:47:00,24.7363,87.5575,1.69 +2017-01-26 23:02:00,25.085,87.6325,1.66 +2017-01-26 23:17:00,24.9388,87.72,1.65 +2017-01-26 23:32:00,24.2913,87.7925,1.64 +2017-01-26 23:47:00,24.4412,87.865,1.61 +2017-01-27 00:02:00,24.3363,87.9075,1.58 +2017-01-27 00:17:00,25.235,87.9775,1.56 +2017-01-27 00:32:00,24.7887,87.9925,1.55 +2017-01-27 00:47:00,25.3763,87.9875,1.52 +2017-01-27 01:02:00,26.5512,87.9075,1.5 +2017-01-27 01:17:00,25.185,87.8,1.47 +2017-01-27 01:32:00,27.0425,87.61,1.44 +2017-01-27 01:47:00,27.6925,87.5725,1.42 +2017-01-27 02:02:00,27.2887,87.5325,1.4 +2017-01-27 02:17:00,26.2537,87.545,1.4 +2017-01-27 02:32:00,24.8337,87.5475,1.37 +2017-01-27 02:47:00,25.8162,87.605,1.34 +2017-01-27 03:02:00,25.7188,87.625,1.33 +2017-01-27 03:17:00,24.9887,87.6375,1.32 +2017-01-27 03:32:00,24.835,87.6925,1.3 +2017-01-27 03:47:00,25.87,87.6575,1.26 +2017-01-27 04:02:00,24.7325,87.6875,1.22 +2017-01-27 04:17:00,26.3,87.7,1.21 +2017-01-27 04:32:00,26.3012,87.6725,1.2 +2017-01-27 04:47:00,26.45,87.6875,1.18 +2017-01-27 05:02:00,26.06,87.625,1.14 +2017-01-27 05:17:00,24.6362,87.5025,1.1 +2017-01-27 05:32:00,27.135,87.3525,1.07 +2017-01-27 05:47:00,25.8637,87.155,1.04 +2017-01-27 06:02:00,25.7175,87.02,1.02 +2017-01-27 06:17:00,25.9637,86.8925,0.96 +2017-01-27 06:32:00,26.9887,86.8225,0.93 +2017-01-27 06:47:00,28.2412,86.755,0.89 +2017-01-27 07:02:00,26.6975,86.64,0.87 +2017-01-27 07:17:00,26.7475,86.49,0.85 +2017-01-27 07:32:00,26.4987,86.485,0.79 +2017-01-27 07:47:00,26.9925,86.4925,0.75 +2017-01-27 08:02:00,26.0625,86.5075,0.73 +2017-01-27 08:17:00,28.44,86.6,0.71 +2017-01-27 08:32:00,26.6963,86.69,0.71 +2017-01-27 08:47:00,26.6,86.8025,0.7 +2017-01-27 09:02:00,25.2838,86.885,0.69 +2017-01-27 09:17:00,25.0837,86.9675,0.7 +2017-01-27 09:32:00,27.285,87.0325,0.71 +2017-01-27 09:47:00,28.195,87.05,0.74 +2017-01-27 10:02:00,27.1338,87.095,0.73 +2017-01-27 10:17:00,26.0175,87.125,0.76 +2017-01-27 10:32:00,25.9187,87.1325,0.79 +2017-01-27 10:47:00,26.75,87.0775,0.81 +2017-01-27 11:02:00,26.0687,87.2375,0.83 +2017-01-27 11:17:00,24.94,87.43,0.84 +2017-01-27 11:32:00,24.3887,87.47,0.84 +2017-01-27 11:47:00,27.29,87.4675,0.85 +2017-01-27 12:02:00,25.7738,87.3675,0.87 +2017-01-27 12:17:00,26.7975,87.3425,0.91 +2017-01-27 12:32:00,25.085,87.24,0.92 +2017-01-27 12:47:00,25.72,87.1025,0.93 +2017-01-27 13:02:00,25.7712,87.0325,0.95 +2017-01-27 13:17:00,26.155,86.9175,0.95 +2017-01-27 13:32:00,25.33,86.84,0.96 +2017-01-27 13:47:00,26.8438,86.805,0.94 +2017-01-27 14:02:00,23.8862,86.8225,0.93 +2017-01-27 14:17:00,26.155,86.8775,0.93 +2017-01-27 14:32:00,27.3862,87.0825,0.93 +2017-01-27 14:47:00,26.845,87.3325,0.94 +2017-01-27 15:02:00,26.495,87.68,0.94 +2017-01-27 15:17:00,26.4962,88.1175,0.9 +2017-01-27 15:32:00,27.8875,88.5425,0.88 +2017-01-27 15:47:00,24.935,88.68,0.87 +2017-01-27 16:02:00,26.9437,88.73,0.86 +2017-01-27 16:17:00,26.2475,88.635,0.83 +2017-01-27 16:32:00,27.5925,88.51,0.82 +2017-01-27 16:47:00,27.6875,88.2725,0.81 +2017-01-27 17:02:00,26.7962,87.975,0.8 +2017-01-27 17:17:00,24.4863,87.66,0.82 +2017-01-27 17:32:00,28.09,87.3325,0.79 +2017-01-27 17:47:00,26.0612,87.0175,0.8 +2017-01-27 18:02:00,25.2838,86.635,0.81 +2017-01-27 18:17:00,27.2325,86.2825,0.82 +2017-01-27 18:32:00,25.1825,85.9725,0.84 +2017-01-27 18:47:00,27.135,85.6225,0.84 +2017-01-27 19:02:00,27.4375,85.3925,0.85 +2017-01-27 19:17:00,26.6488,85.25,0.85 +2017-01-27 19:32:00,24.8825,85.25,0.85 +2017-01-27 19:47:00,26.4,85.1225,0.86 +2017-01-27 20:02:00,25.9613,84.9475,0.88 +2017-01-27 20:17:00,25.5687,84.755,0.89 +2017-01-27 20:32:00,24.735,84.55,0.92 +2017-01-27 20:47:00,26.4463,84.3625,0.93 +2017-01-27 21:02:00,25.9137,84.1675,0.95 +2017-01-27 21:17:00,25.2825,84.0025,0.96 +2017-01-27 21:32:00,26.25,83.845,0.97 +2017-01-27 21:47:00,26.3463,83.6975,0.99 +2017-01-27 22:02:00,25.1325,83.585,0.98 +2017-01-27 22:17:00,25.1813,83.505,0.98 +2017-01-27 22:32:00,25.5175,83.39,0.99 +2017-01-27 22:47:00,26.9863,83.42,0.98 +2017-01-27 23:02:00,28.585,83.58,0.98 +2017-01-27 23:17:00,25.1338,83.705,0.97 +2017-01-27 23:32:00,27.2325,83.74,0.93 +2017-01-27 23:47:00,25.4688,83.705,0.92 +2017-01-28 00:02:00,24.6325,83.6775,0.9 +2017-01-28 00:17:00,25.7188,83.5475,0.88 +2017-01-28 00:32:00,26.4437,83.4725,0.87 +2017-01-28 00:47:00,25.8187,83.3675,0.87 +2017-01-28 01:02:00,27.2375,83.265,0.86 +2017-01-28 01:17:00,26.7475,83.195,0.85 +2017-01-28 01:32:00,28.1437,83.12,0.86 +2017-01-28 01:47:00,26.345,83.03,0.85 +2017-01-28 02:02:00,25.0863,82.9425,0.83 +2017-01-28 02:17:00,25.965,82.8675,0.81 +2017-01-28 02:32:00,27.09,82.775,0.78 +2017-01-28 02:47:00,26.4487,82.87,0.78 +2017-01-28 03:02:00,25.2363,83.0125,0.77 +2017-01-28 03:17:00,26.3975,83.125,0.76 +2017-01-28 03:32:00,27.345,83.07,0.75 +2017-01-28 03:47:00,26.85,83.04,0.74 +2017-01-28 04:02:00,27.19,82.98,0.72 +2017-01-28 04:17:00,25.5687,82.9025,0.7 +2017-01-28 04:32:00,25.67,82.8025,0.69 +2017-01-28 04:47:00,26.3487,82.71,0.68 +2017-01-28 05:02:00,26.6963,82.595,0.64 +2017-01-28 05:17:00,26.2038,82.47,0.62 +2017-01-28 05:32:00,26.8962,82.305,0.6 +2017-01-28 05:47:00,27.4887,82.18,0.57 +2017-01-28 06:02:00,28.8312,82.005,0.54 +2017-01-28 06:17:00,28.3937,81.9625,0.51 +2017-01-28 06:32:00,26.8975,81.99,0.48 +2017-01-28 06:47:00,24.2363,81.9125,0.44 +2017-01-28 07:02:00,26.7962,81.695,0.39 +2017-01-28 07:17:00,27.235,81.4025,0.35 +2017-01-28 07:32:00,26.3512,81.0225,0.3 +2017-01-28 07:47:00,24.6338,80.555,0.26 +2017-01-28 08:02:00,26.6488,80.0225,0.24 +2017-01-28 08:17:00,27.645,79.46,0.25 +2017-01-28 08:32:00,28.635,78.92,0.26 +2017-01-28 08:47:00,27.6413,78.46,0.27 +2017-01-28 09:02:00,25.3325,78.075,0.27 +2017-01-28 09:17:00,26.1087,77.7875,0.32 +2017-01-28 09:32:00,26.6963,77.61,0.33 +2017-01-28 09:47:00,26.5987,77.5075,0.35 +2017-01-28 10:02:00,24.3887,77.465,0.38 +2017-01-28 10:17:00,25.5212,77.4925,0.39 +2017-01-28 10:32:00,26.0125,77.6325,0.42 +2017-01-28 10:47:00,27.5938,77.8325,0.43 +2017-01-28 11:02:00,26.3012,78.12,0.46 +2017-01-28 11:17:00,25.3775,78.5075,0.47 +2017-01-28 11:32:00,25.035,79.0475,0.48 +2017-01-28 11:47:00,25.4275,79.6675,0.5 +2017-01-28 12:02:00,27.8375,80.3,0.5 +2017-01-28 12:17:00,26.2537,80.805,0.51 +2017-01-28 12:32:00,26.5512,81.2175,0.5 +2017-01-28 12:47:00,26.7487,81.565,0.51 +2017-01-28 13:02:00,27.3925,81.8825,0.51 +2017-01-28 13:17:00,26.2513,82.0775,0.51 +2017-01-28 13:32:00,27.4938,82.32,0.5 +2017-01-28 13:47:00,26.1125,82.5125,0.5 +2017-01-28 14:02:00,27.7438,82.71,0.49 +2017-01-28 14:17:00,25.8688,83.06,0.49 +2017-01-28 14:32:00,26.6937,83.4425,0.49 +2017-01-28 14:47:00,26.6488,83.7475,0.48 +2017-01-28 15:02:00,27.0887,83.9475,0.45 +2017-01-28 15:17:00,25.9163,84.0775,0.43 +2017-01-28 15:32:00,26.795,84.1925,0.43 +2017-01-28 15:47:00,26.7487,84.265,0.42 +2017-01-28 16:02:00,25.3787,84.3175,0.42 +2017-01-28 16:17:00,26.7475,84.3775,0.41 +2017-01-28 16:32:00,27.8363,84.43,0.39 +2017-01-28 16:47:00,26.0638,84.445,0.39 +2017-01-28 17:02:00,25.3737,84.45,0.39 +2017-01-28 17:17:00,25.87,84.4225,0.39 +2017-01-28 17:32:00,25.3288,84.345,0.39 +2017-01-28 17:47:00,25.7663,84.2525,0.37 +2017-01-28 18:02:00,26.3525,84.1975,0.37 +2017-01-28 18:17:00,26.445,84.2675,0.34 +2017-01-28 18:32:00,25.085,84.34,0.35 +2017-01-28 18:47:00,25.72,84.28,0.35 +2017-01-28 19:02:00,25.5762,84.145,0.34 +2017-01-28 19:17:00,26.6462,83.97,0.34 +2017-01-28 19:32:00,26.205,83.7375,0.32 +2017-01-28 19:47:00,25.8175,83.5375,0.32 +2017-01-28 20:02:00,26.8962,83.3275,0.34 +2017-01-28 20:17:00,26.5963,83.1125,0.35 +2017-01-28 20:32:00,26.55,82.895,0.37 +2017-01-28 20:47:00,25.0863,82.68,0.36 +2017-01-28 21:02:00,26.7988,82.5275,0.36 +2017-01-28 21:17:00,27.6925,82.3575,0.34 +2017-01-28 21:32:00,26.7475,82.3425,0.35 +2017-01-28 21:47:00,26.7462,82.4225,0.36 +2017-01-28 22:02:00,26.2525,82.4025,0.35 +2017-01-28 22:17:00,25.3312,82.275,0.35 +2017-01-28 22:32:00,27.04,82.09,0.36 +2017-01-28 22:47:00,26.9012,81.895,0.37 +2017-01-28 23:02:00,25.7725,81.68,0.37 +2017-01-28 23:17:00,28.0875,81.4575,0.38 +2017-01-28 23:32:00,24.68,81.1425,0.38 +2017-01-28 23:47:00,26.2025,80.8825,0.39 +2017-01-29 00:02:00,23.8875,80.67,0.4 +2017-01-29 00:17:00,27.6963,80.465,0.41 +2017-01-29 00:32:00,26.5013,80.31,0.42 +2017-01-29 00:47:00,23.84,80.1825,0.4 +2017-01-29 01:02:00,28.0938,80.0975,0.42 +2017-01-29 01:17:00,28.1425,80.165,0.42 +2017-01-29 01:32:00,24.2862,80.2325,0.42 +2017-01-29 01:47:00,24.7838,80.205,0.4 +2017-01-29 02:02:00,28.2875,80.0875,0.39 +2017-01-29 02:17:00,26.8975,79.915,0.38 +2017-01-29 02:32:00,26.395,79.745,0.39 +2017-01-29 02:47:00,25.3763,79.5325,0.39 +2017-01-29 03:02:00,24.5425,79.27,0.41 +2017-01-29 03:17:00,26.7988,79.125,0.42 +2017-01-29 03:32:00,25.7162,78.9175,0.41 +2017-01-29 03:47:00,26.5488,78.6875,0.43 +2017-01-29 04:02:00,27.8862,78.4375,0.45 +2017-01-29 04:17:00,27.2363,78.1825,0.47 +2017-01-29 04:32:00,25.515,77.93,0.45 +2017-01-29 04:47:00,26.4987,77.895,0.43 +2017-01-29 05:02:00,25.2787,77.965,0.45 +2017-01-29 05:17:00,25.915,78.015,0.45 +2017-01-29 05:32:00,25.965,77.9825,0.44 +2017-01-29 05:47:00,24.6312,77.82,0.43 +2017-01-29 06:02:00,25.9137,77.595,0.42 +2017-01-29 06:17:00,26.7962,77.375,0.42 +2017-01-29 06:32:00,25.4713,77.0775,0.42 +2017-01-29 06:47:00,25.9625,76.8275,0.41 +2017-01-29 07:02:00,24.5375,76.645,0.42 +2017-01-29 07:17:00,28.4412,76.4675,0.43 +2017-01-29 07:32:00,26.1987,76.265,0.45 +2017-01-29 07:47:00,27.0413,76.09,0.47 +2017-01-29 08:02:00,25.7175,75.9675,0.49 +2017-01-29 08:17:00,27.9362,75.9,0.51 +2017-01-29 08:32:00,26.8937,75.855,0.52 +2017-01-29 08:47:00,25.375,75.905,0.56 +2017-01-29 09:02:00,26.9425,76.0625,0.6 +2017-01-29 09:17:00,27.1338,76.35,0.63 +2017-01-29 09:32:00,26.9388,76.705,0.64 +2017-01-29 09:47:00,26.445,77.12,0.66 +2017-01-29 10:02:00,25.1837,77.6,0.69 +2017-01-29 10:17:00,26.4938,78.2125,0.72 +2017-01-29 10:32:00,27.085,78.9425,0.72 +2017-01-29 10:47:00,26.445,79.855,0.75 +2017-01-29 11:02:00,27.8862,80.8325,0.76 +2017-01-29 11:17:00,26.7438,81.8075,0.77 +2017-01-29 11:32:00,25.4212,82.6825,0.77 +2017-01-29 11:47:00,27.2337,83.5175,0.78 +2017-01-29 12:02:00,26.9388,84.2875,0.79 +2017-01-29 12:17:00,26.2487,85.0175,0.78 +2017-01-29 12:32:00,24.2363,85.5075,0.78 +2017-01-29 12:47:00,26.7962,85.755,0.78 +2017-01-29 13:02:00,26.3012,85.845,0.78 +2017-01-29 13:17:00,27.1862,85.875,0.77 +2017-01-29 13:32:00,24.5338,85.8875,0.76 +2017-01-29 13:47:00,27.0387,85.9,0.78 +2017-01-29 14:02:00,25.47,85.9,0.79 +2017-01-29 14:17:00,25.77,85.95,0.79 +2017-01-29 14:32:00,27.0863,86.0325,0.78 +2017-01-29 14:47:00,25.77,86.14,0.77 +2017-01-29 15:02:00,26.3,86.2525,0.76 +2017-01-29 15:17:00,26.445,86.4925,0.75 +2017-01-29 15:32:00,26.0638,86.815,0.74 +2017-01-29 15:47:00,24.8862,87.0325,0.72 +2017-01-29 16:02:00,26.3975,87.085,0.71 +2017-01-29 16:17:00,27.4887,87.095,0.69 +2017-01-29 16:32:00,26.3463,87.0875,0.68 +2017-01-29 16:47:00,23.4975,86.9875,0.67 +2017-01-29 17:02:00,26.1075,87.025,0.66 +2017-01-29 17:17:00,23.9337,87.025,0.65 +2017-01-29 17:32:00,25.8175,87.005,0.62 +2017-01-29 17:47:00,26.6937,86.95,0.61 +2017-01-29 18:02:00,27.7375,86.89,0.61 +2017-01-29 18:17:00,25.4225,86.8525,0.6 +2017-01-29 18:32:00,26.155,86.82,0.6 +2017-01-29 18:47:00,26.5963,86.8925,0.6 +2017-01-29 19:02:00,26.55,87.09,0.58 +2017-01-29 19:17:00,25.7175,87.3225,0.56 +2017-01-29 19:32:00,26.6488,87.4325,0.55 +2017-01-29 19:47:00,26.5462,87.495,0.53 +2017-01-29 20:02:00,27.1387,87.5225,0.51 +2017-01-29 20:17:00,26.8988,87.57,0.49 +2017-01-29 20:32:00,26.5963,87.5825,0.5 +2017-01-29 20:47:00,26.55,87.655,0.49 +2017-01-29 21:02:00,24.7862,87.695,0.5 +2017-01-29 21:17:00,25.52,87.7475,0.49 +2017-01-29 21:32:00,26.9375,87.795,0.49 +2017-01-29 21:47:00,26.0112,87.825,0.51 +2017-01-29 22:02:00,25.915,87.855,0.52 +2017-01-29 22:17:00,26.4962,87.8925,0.51 +2017-01-29 22:32:00,25.2825,88.065,0.53 +2017-01-29 22:47:00,25.0837,88.275,0.54 +2017-01-29 23:02:00,25.8162,88.3525,0.55 +2017-01-29 23:17:00,27.4375,88.3525,0.57 +2017-01-29 23:32:00,24.73,88.295,0.59 +2017-01-29 23:47:00,26.8438,88.23,0.6 +2017-01-30 00:02:00,28.1437,88.1275,0.6 +2017-01-30 00:17:00,26.3988,88.0325,0.61 +2017-01-30 00:32:00,25.815,87.9075,0.62 +2017-01-30 00:47:00,26.4425,87.7975,0.63 +2017-01-30 01:02:00,26.4938,87.65,0.63 +2017-01-30 01:17:00,26.4975,87.5625,0.63 +2017-01-30 01:32:00,27.785,87.44,0.64 +2017-01-30 01:47:00,27.6425,87.36,0.65 +2017-01-30 02:02:00,27.7862,87.37,0.63 +2017-01-30 02:17:00,27.1362,87.4825,0.63 +2017-01-30 02:32:00,27.1825,87.5375,0.62 +2017-01-30 02:47:00,24.7337,87.5025,0.6 +2017-01-30 03:02:00,28.5325,87.4075,0.6 +2017-01-30 03:17:00,27.595,87.295,0.61 +2017-01-30 03:32:00,26.2012,87.1375,0.61 +2017-01-30 03:47:00,27.0863,86.98,0.59 +2017-01-30 04:02:00,27.6425,86.8425,0.59 +2017-01-30 04:17:00,25.3787,86.69,0.59 +2017-01-30 04:32:00,26.2,86.55,0.61 +2017-01-30 04:47:00,25.865,86.4425,0.61 +2017-01-30 05:02:00,23.5025,86.3825,0.58 +2017-01-30 05:17:00,27.29,86.31,0.58 +2017-01-30 05:32:00,27.5925,86.205,0.59 +2017-01-30 05:47:00,26.7475,86.225,0.6 +2017-01-30 06:02:00,27.6888,86.2,0.59 +2017-01-30 06:17:00,27.34,86.1575,0.57 +2017-01-30 06:32:00,27.185,86.125,0.56 +2017-01-30 06:47:00,27.6937,86.1275,0.56 +2017-01-30 07:02:00,25.8662,86.0625,0.58 +2017-01-30 07:17:00,25.135,86.025,0.58 +2017-01-30 07:32:00,27.94,86.0225,0.55 +2017-01-30 07:47:00,26.7937,86.02,0.54 +2017-01-30 08:02:00,26.2487,85.995,0.56 +2017-01-30 08:17:00,27.39,85.95,0.57 +2017-01-30 08:32:00,26.595,85.9025,0.57 +2017-01-30 08:47:00,27.885,85.7725,0.59 +2017-01-30 09:02:00,26.6975,85.7225,0.61 +2017-01-30 09:17:00,27.4912,85.66,0.64 +2017-01-30 09:32:00,28.8838,85.6825,0.68 +2017-01-30 09:47:00,28.7325,85.6575,0.73 +2017-01-30 10:02:00,28.145,85.6525,0.76 +2017-01-30 10:17:00,28.1413,85.595,0.78 +2017-01-30 10:32:00,26.0612,85.5475,0.77 +2017-01-30 10:47:00,25.615,85.6775,0.76 +2017-01-30 11:02:00,27.1875,86.105,0.78 +2017-01-30 11:17:00,27.1362,86.65,0.85 +2017-01-30 11:32:00,27.5912,87.0375,0.9 +2017-01-30 11:47:00,26.445,87.1975,0.93 +2017-01-30 12:02:00,27.09,87.215,0.97 +2017-01-30 12:17:00,28.0912,87.1025,1.0 +2017-01-30 12:32:00,25.77,86.915,0.99 +2017-01-30 12:47:00,27.4425,86.6875,0.97 +2017-01-30 13:02:00,28.0387,86.54,0.98 +2017-01-30 13:17:00,27.3913,86.55,1.03 +2017-01-30 13:32:00,26.445,86.585,1.08 +2017-01-30 13:47:00,26.6475,86.5425,1.09 +2017-01-30 14:02:00,27.085,86.5325,1.1 +2017-01-30 14:17:00,26.745,86.56,1.1 +2017-01-30 14:32:00,26.4475,86.635,1.13 +2017-01-30 14:47:00,25.9125,86.8,1.15 +2017-01-30 15:02:00,26.5475,86.9775,1.16 +2017-01-30 15:17:00,27.1813,87.06,1.18 +2017-01-30 15:32:00,24.2887,87.105,1.19 +2017-01-30 15:47:00,26.015,87.0775,1.22 +2017-01-30 16:02:00,27.5387,87.02,1.25 +2017-01-30 16:17:00,27.035,87.0025,1.25 +2017-01-30 16:32:00,28.39,86.95,1.27 +2017-01-30 16:47:00,24.8838,86.915,1.27 +2017-01-30 17:02:00,24.835,86.815,1.28 +2017-01-30 17:17:00,27.6475,86.7175,1.28 +2017-01-30 17:32:00,29.1287,86.655,1.3 +2017-01-30 17:47:00,25.57,86.59,1.31 +2017-01-30 18:02:00,26.3937,86.53,1.29 +2017-01-30 18:17:00,26.1062,86.6325,1.29 +2017-01-30 18:32:00,27.4375,86.7875,1.31 +2017-01-30 18:47:00,25.7162,86.8725,1.31 +2017-01-30 19:02:00,25.6675,86.915,1.3 +2017-01-30 19:17:00,26.9925,86.88,1.31 +2017-01-30 19:32:00,26.25,86.8825,1.3 +2017-01-30 19:47:00,25.8662,86.875,1.31 +2017-01-30 20:02:00,26.94,86.8725,1.34 +2017-01-30 20:17:00,26.2025,86.895,1.36 +2017-01-30 20:32:00,26.8962,86.905,1.36 +2017-01-30 20:47:00,26.7462,86.9725,1.38 +2017-01-30 21:02:00,24.7825,87.165,1.4 +2017-01-30 21:17:00,26.5425,87.36,1.44 +2017-01-30 21:32:00,27.6425,87.5,1.44 +2017-01-30 21:47:00,27.085,87.715,1.42 +2017-01-30 22:02:00,26.3937,87.9075,1.42 +2017-01-30 22:17:00,27.5912,88.0125,1.4 +2017-01-30 22:32:00,26.745,88.035,1.36 +2017-01-30 22:47:00,26.2487,88.0975,1.36 +2017-01-30 23:02:00,27.69,88.1375,1.36 +2017-01-30 23:17:00,26.6488,88.1775,1.38 +2017-01-30 23:32:00,26.745,88.2275,1.4 +2017-01-30 23:47:00,27.6925,88.25,1.42 +2017-01-31 00:02:00,26.6475,88.305,1.42 +2017-01-31 00:17:00,25.0338,88.35,1.42 +2017-01-31 00:32:00,26.645,88.4025,1.43 +2017-01-31 00:47:00,26.795,88.55,1.43 +2017-01-31 01:02:00,27.5938,88.785,1.43 +2017-01-31 01:17:00,26.8962,89.045,1.46 +2017-01-31 01:32:00,25.7675,89.1875,1.46 +2017-01-31 01:47:00,27.2363,89.2825,1.47 +2017-01-31 02:02:00,26.3475,89.3125,1.48 +2017-01-31 02:17:00,26.2062,89.335,1.49 +2017-01-31 02:32:00,26.5963,89.315,1.47 +2017-01-31 02:47:00,25.7663,89.3575,1.45 +2017-01-31 03:02:00,25.085,89.4025,1.45 +2017-01-31 03:17:00,27.2375,89.425,1.45 +2017-01-31 03:32:00,25.085,89.4025,1.46 +2017-01-31 03:47:00,25.665,89.4175,1.48 +2017-01-31 04:02:00,25.7162,89.42,1.48 +2017-01-31 04:17:00,25.8175,89.4525,1.47 +2017-01-31 04:32:00,25.6675,89.615,1.47 +2017-01-31 04:47:00,27.0387,89.855,1.48 +2017-01-31 05:02:00,26.6987,89.985,1.49 +2017-01-31 05:17:00,27.7412,90.0225,1.48 +2017-01-31 05:32:00,27.4938,90.035,1.48 +2017-01-31 05:47:00,25.4725,89.9925,1.47 +2017-01-31 06:02:00,24.5863,89.9725,1.48 +2017-01-31 06:17:00,27.1825,89.93,1.48 +2017-01-31 06:32:00,25.5687,89.9,1.47 +2017-01-31 06:47:00,25.96,89.8525,1.46 +2017-01-31 07:02:00,24.0775,89.8925,1.45 +2017-01-31 07:17:00,25.9625,89.9425,1.44 +2017-01-31 07:32:00,26.6937,89.98,1.44 +2017-01-31 07:47:00,27.44,90.01,1.45 +2017-01-31 08:02:00,25.82,90.01,1.46 +2017-01-31 08:17:00,26.11,90.0075,1.45 +2017-01-31 08:32:00,26.8913,89.9625,1.45 +2017-01-31 08:47:00,26.9388,89.935,1.46 +2017-01-31 09:02:00,24.3387,89.9,1.47 +2017-01-31 09:17:00,27.5387,89.86,1.47 +2017-01-31 09:32:00,27.4412,89.8175,1.47 +2017-01-31 09:47:00,28.4912,89.815,1.48 +2017-01-31 10:02:00,25.2325,89.8875,1.52 +2017-01-31 10:17:00,27.4412,89.99,1.56 +2017-01-31 10:32:00,26.2025,90.015,1.59 +2017-01-31 10:47:00,28.5837,90.025,1.6 +2017-01-31 11:02:00,25.3275,90.0025,1.61 +2017-01-31 11:17:00,27.0837,90.0925,1.62 +2017-01-31 11:32:00,25.4262,90.2775,1.64 +2017-01-31 11:47:00,27.6488,90.415,1.65 +2017-01-31 12:02:00,26.155,90.495,1.63 +2017-01-31 12:17:00,27.4362,90.6,1.62 +2017-01-31 12:32:00,27.64,90.79,1.64 +2017-01-31 12:47:00,26.6462,91.03,1.64 +2017-01-31 13:02:00,26.2438,91.33,1.67 +2017-01-31 13:17:00,26.8913,91.6625,1.66 +2017-01-31 13:32:00,26.4437,91.9125,1.66 +2017-01-31 13:47:00,27.5387,92.1325,1.67 +2017-01-31 14:02:00,27.6925,92.335,1.67 +2017-01-31 14:17:00,25.615,92.475,1.68 +2017-01-31 14:32:00,26.5512,92.5475,1.68 +2017-01-31 14:47:00,27.3425,92.695,1.68 +2017-01-31 15:02:00,25.6637,92.9,1.69 +2017-01-31 15:17:00,25.77,93.0325,1.68 +2017-01-31 15:32:00,27.035,93.0725,1.7 +2017-01-31 15:47:00,26.0137,93.0175,1.7 +2017-01-31 16:02:00,25.4713,92.9425,1.7 +2017-01-31 16:17:00,26.1087,92.7975,1.71 +2017-01-31 16:32:00,26.3,92.6625,1.73 +2017-01-31 16:47:00,26.5488,92.535,1.75 +2017-01-31 17:02:00,26.0137,92.4025,1.75 +2017-01-31 17:17:00,27.6425,92.2975,1.76 +2017-01-31 17:32:00,25.62,92.21,1.78 +2017-01-31 17:47:00,26.1087,92.1475,1.79 +2017-01-31 18:02:00,27.6425,92.085,1.8 +2017-01-31 18:17:00,26.7475,92.1825,1.82 +2017-01-31 18:32:00,25.7687,92.3125,1.84 +2017-01-31 18:47:00,26.7962,92.3275,1.86 +2017-01-31 19:02:00,27.085,92.2625,1.87 +2017-01-31 19:17:00,26.9863,92.2025,1.88 +2017-01-31 19:32:00,24.94,92.14,1.9 +2017-01-31 19:47:00,26.3475,92.0375,1.93 +2017-01-31 20:02:00,26.65,91.9475,1.95 +2017-01-31 20:17:00,26.8937,91.835,1.98 +2017-01-31 20:32:00,26.8962,91.7475,1.98 +2017-01-31 20:47:00,28.4388,91.68,1.96 +2017-01-31 21:02:00,27.9362,91.635,1.96 +2017-01-31 21:17:00,27.94,91.57,1.96 +2017-01-31 21:32:00,27.6937,91.535,1.98 +2017-01-31 21:47:00,27.2337,91.6475,1.99 +2017-01-31 22:02:00,24.685,91.875,2.01 +2017-01-31 22:17:00,27.5875,91.9225,2.01 +2017-01-31 22:32:00,28.0912,91.925,2.02 +2017-01-31 22:47:00,26.8925,91.8975,2.03 +2017-01-31 23:02:00,28.5837,91.8575,2.05 +2017-01-31 23:17:00,27.6425,91.8125,2.05 +2017-01-31 23:32:00,26.5,91.7675,2.05 +2017-01-31 23:47:00,27.3925,91.7025,2.06 +2017-02-01 00:02:00,27.8875,91.675,2.06 +2017-02-01 00:17:00,26.4437,91.655,2.07 +2017-02-01 00:32:00,24.0387,91.605,2.08 +2017-02-01 00:47:00,26.745,91.5875,2.09 +2017-02-01 01:02:00,26.7988,91.63,2.1 +2017-02-01 01:17:00,27.445,91.7675,2.1 +2017-02-01 01:32:00,25.6162,91.9525,2.1 +2017-02-01 01:47:00,27.34,92.0225,2.1 +2017-02-01 02:02:00,26.99,92.035,2.1 +2017-02-01 02:17:00,27.8375,91.975,2.11 +2017-02-01 02:32:00,26.6475,91.925,2.12 +2017-02-01 02:47:00,25.9137,91.87,2.12 +2017-02-01 03:02:00,26.85,91.825,2.12 +2017-02-01 03:17:00,26.75,91.7775,2.12 +2017-02-01 03:32:00,26.695,91.75,2.14 +2017-02-01 03:47:00,26.11,91.74,2.12 +2017-02-01 04:02:00,27.8363,91.715,2.13 +2017-02-01 04:17:00,27.5925,91.7175,2.15 +2017-02-01 04:32:00,25.9212,91.675,2.17 +2017-02-01 04:47:00,27.3425,91.715,2.17 +2017-02-01 05:02:00,24.2375,91.845,2.16 +2017-02-01 05:17:00,28.9325,92.03,2.15 +2017-02-01 05:32:00,25.8187,92.09,2.15 +2017-02-01 05:47:00,27.0338,92.08,2.15 +2017-02-01 06:02:00,26.6987,92.0375,2.16 +2017-02-01 06:17:00,29.8562,91.9825,2.18 +2017-02-01 06:32:00,26.3475,91.955,2.18 +2017-02-01 06:47:00,25.3775,91.8675,2.18 +2017-02-01 07:02:00,27.2862,91.8375,2.2 +2017-02-01 07:17:00,25.375,91.7975,2.21 +2017-02-01 07:32:00,27.0425,91.8275,2.2 +2017-02-01 07:47:00,25.6687,91.865,2.2 +2017-02-01 08:02:00,26.6488,91.945,2.21 +2017-02-01 08:17:00,26.0175,92.115,2.22 +2017-02-01 08:32:00,28.49,92.2475,2.3 +2017-02-01 08:47:00,26.5963,92.3625,2.45 +2017-02-01 09:02:00,26.6975,92.47,2.54 +2017-02-01 09:17:00,26.6975,92.5075,2.58 +2017-02-01 09:32:00,26.25,92.495,2.59 +2017-02-01 09:47:00,27.1375,92.4825,2.61 +2017-02-01 10:02:00,24.2875,92.4425,2.61 +2017-02-01 10:17:00,24.635,92.3925,2.63 +2017-02-01 10:32:00,26.1113,92.34,2.66 +2017-02-01 10:47:00,27.2363,92.2875,2.69 +2017-02-01 11:02:00,27.04,92.24,2.72 +2017-02-01 11:17:00,26.9887,92.2175,2.72 +2017-02-01 11:32:00,26.495,92.165,2.72 +2017-02-01 11:47:00,27.085,92.095,2.72 +2017-02-01 12:02:00,25.5238,92.03,2.74 +2017-02-01 12:17:00,25.8162,92.0575,2.74 +2017-02-01 12:32:00,26.2012,92.145,2.67 +2017-02-01 12:47:00,28.3412,92.17,2.63 +2017-02-01 13:02:00,25.5187,92.1475,2.58 +2017-02-01 13:17:00,27.185,92.0625,2.55 +2017-02-01 13:32:00,27.185,92.0175,2.56 +2017-02-01 13:47:00,26.4962,91.95,2.55 +2017-02-01 14:02:00,26.0163,91.8475,2.52 +2017-02-01 14:17:00,25.2812,91.795,2.51 +2017-02-01 14:32:00,26.8463,91.72,2.49 +2017-02-01 14:47:00,27.3875,91.685,2.49 +2017-02-01 15:02:00,28.2425,91.655,2.49 +2017-02-01 15:17:00,26.5025,91.6,2.49 +2017-02-01 15:32:00,28.0912,91.6025,2.48 +2017-02-01 15:47:00,27.49,91.585,2.46 +2017-02-01 16:02:00,27.5925,91.685,2.44 +2017-02-01 16:17:00,25.8175,91.8775,2.44 +2017-02-01 16:32:00,27.1362,92.02,2.44 +2017-02-01 16:47:00,26.25,92.0825,2.45 +2017-02-01 17:02:00,27.8875,92.0775,2.45 +2017-02-01 17:17:00,26.2513,92.0425,2.46 +2017-02-01 17:32:00,26.8962,92.0275,2.48 +2017-02-01 17:47:00,26.0662,91.9875,2.47 +2017-02-01 18:02:00,26.25,91.97,2.48 +2017-02-01 18:17:00,24.6375,91.97,2.48 +2017-02-01 18:32:00,27.4388,91.9375,2.48 +2017-02-01 18:47:00,26.0175,91.92,2.47 +2017-02-01 19:02:00,28.19,91.905,2.48 +2017-02-01 19:17:00,24.5875,91.88,2.49 +2017-02-01 19:32:00,26.11,91.94,2.51 +2017-02-01 19:47:00,27.4925,92.1325,2.5 +2017-02-01 20:02:00,26.2038,92.305,2.51 +2017-02-01 20:17:00,25.33,92.36,2.51 +2017-02-01 20:32:00,25.77,92.335,2.5 +2017-02-01 20:47:00,25.5687,92.275,2.51 +2017-02-01 21:02:00,25.1837,92.24,2.49 +2017-02-01 21:17:00,25.9613,92.17,2.49 +2017-02-01 21:32:00,26.4,92.115,2.47 +2017-02-01 21:47:00,25.8125,92.0525,2.46 +2017-02-01 22:02:00,25.5163,91.99,2.44 +2017-02-01 22:17:00,26.7962,91.9375,2.42 +2017-02-01 22:32:00,26.4437,91.925,2.4 +2017-02-01 22:47:00,25.6663,91.86,2.38 +2017-02-01 23:02:00,26.3962,91.91,2.37 +2017-02-01 23:17:00,27.69,92.03,2.36 +2017-02-01 23:32:00,27.0362,92.1325,2.35 +2017-02-01 23:47:00,25.2337,92.16,2.33 +2017-02-02 00:02:00,26.2,92.14,2.32 +2017-02-02 00:17:00,27.6912,92.095,2.31 +2017-02-02 00:32:00,26.5975,92.015,2.3 +2017-02-02 00:47:00,24.585,91.9425,2.29 +2017-02-02 01:02:00,28.585,91.875,2.28 +2017-02-02 01:17:00,25.8162,91.825,2.28 +2017-02-02 01:32:00,27.0863,91.745,2.26 +2017-02-02 01:47:00,28.3438,91.67,2.24 +2017-02-02 02:02:00,26.8975,91.6075,2.22 +2017-02-02 02:17:00,26.4938,91.585,2.21 +2017-02-02 02:32:00,24.7337,91.6675,2.2 +2017-02-02 02:47:00,24.54,91.795,2.2 +2017-02-02 03:02:00,26.5,91.8175,2.22 +2017-02-02 03:17:00,26.4475,91.7825,2.21 +2017-02-02 03:32:00,27.1387,91.695,2.2 +2017-02-02 03:47:00,25.9637,91.64,2.2 +2017-02-02 04:02:00,24.8363,91.525,2.2 +2017-02-02 04:17:00,28.3913,91.4575,2.2 +2017-02-02 04:32:00,25.915,91.3725,2.18 +2017-02-02 04:47:00,26.8975,91.2925,2.16 +2017-02-02 05:02:00,26.5,91.2525,2.16 +2017-02-02 05:17:00,27.0875,91.16,2.15 +2017-02-02 05:32:00,26.4487,91.1,2.14 +2017-02-02 05:47:00,26.8925,91.1075,2.14 +2017-02-02 06:02:00,27.8375,91.13,2.13 +2017-02-02 06:17:00,26.7012,91.1825,2.11 +2017-02-02 06:32:00,26.4987,91.1875,2.1 +2017-02-02 06:47:00,23.4538,91.1725,2.09 +2017-02-02 07:02:00,27.89,91.1725,2.1 +2017-02-02 07:17:00,27.74,91.185,2.08 +2017-02-02 07:32:00,27.7375,91.1575,2.07 +2017-02-02 07:47:00,27.9887,91.1425,2.07 +2017-02-02 08:02:00,25.72,91.045,2.08 +2017-02-02 08:17:00,25.8162,90.94,2.1 +2017-02-02 08:32:00,26.8937,90.8275,2.11 +2017-02-02 08:47:00,26.25,90.7175,2.1 +2017-02-02 09:02:00,26.9912,90.625,2.11 +2017-02-02 09:17:00,27.8925,90.5425,2.14 +2017-02-02 09:32:00,25.6188,90.46,2.17 +2017-02-02 09:47:00,25.77,90.43,2.24 +2017-02-02 10:02:00,27.3412,90.4875,2.25 +2017-02-02 10:17:00,28.2438,90.535,2.22 +2017-02-02 10:32:00,26.85,90.5225,2.23 +2017-02-02 10:47:00,27.3438,90.4375,2.27 +2017-02-02 11:02:00,25.9637,90.305,2.3 +2017-02-02 11:17:00,29.2262,90.2125,2.32 +2017-02-02 11:32:00,27.0362,90.0575,2.34 +2017-02-02 11:47:00,27.0387,89.915,2.36 +2017-02-02 12:02:00,27.5963,89.82,2.4 +2017-02-02 12:17:00,26.2537,89.6725,2.43 +2017-02-02 12:32:00,28.195,89.5225,2.47 +2017-02-02 12:47:00,26.595,89.43,2.48 +2017-02-02 13:02:00,24.5375,89.36,2.48 +2017-02-02 13:17:00,27.6912,89.3225,2.51 +2017-02-02 13:32:00,24.9375,89.2575,2.56 +2017-02-02 13:47:00,26.8487,89.1925,2.59 +2017-02-02 14:02:00,27.6925,89.1825,2.58 +2017-02-02 14:17:00,23.5037,89.1325,2.58 +2017-02-02 14:32:00,25.425,89.2175,2.57 +2017-02-02 14:47:00,26.5987,89.3875,2.57 +2017-02-02 15:02:00,26.11,89.4775,2.57 +2017-02-02 15:17:00,26.1087,89.5125,2.57 +2017-02-02 15:32:00,27.89,89.455,2.57 +2017-02-02 15:47:00,26.75,89.37,2.57 +2017-02-02 16:02:00,26.945,89.31,2.57 +2017-02-02 16:17:00,25.3337,89.24,2.58 +2017-02-02 16:32:00,25.6725,89.17,2.59 +2017-02-02 16:47:00,26.2537,89.0875,2.6 +2017-02-02 17:02:00,26.7937,88.9775,2.61 +2017-02-02 17:17:00,26.9425,88.9225,2.6 +2017-02-02 17:32:00,28.49,88.8475,2.61 +2017-02-02 17:47:00,27.0875,88.7625,2.61 +2017-02-02 18:02:00,26.99,88.7325,2.63 +2017-02-02 18:17:00,26.3975,88.83,2.64 +2017-02-02 18:32:00,27.2363,88.945,2.64 +2017-02-02 18:47:00,27.1362,88.9925,2.65 +2017-02-02 19:02:00,25.9637,89.0025,2.67 +2017-02-02 19:17:00,27.4875,88.96,2.68 +2017-02-02 19:32:00,28.98,88.95,2.69 +2017-02-02 19:47:00,26.0125,88.8775,2.69 +2017-02-02 20:02:00,24.6338,88.8025,2.7 +2017-02-02 20:17:00,26.5525,88.7675,2.73 +2017-02-02 20:32:00,26.94,88.6975,2.73 +2017-02-02 20:47:00,25.8675,88.6475,2.73 +2017-02-02 21:02:00,26.595,88.61,2.74 +2017-02-02 21:17:00,27.1362,88.5825,2.74 +2017-02-02 21:32:00,24.24,88.575,2.75 +2017-02-02 21:47:00,28.3937,88.705,2.77 +2017-02-02 22:02:00,27.0362,88.9,2.77 +2017-02-02 22:17:00,26.745,88.9925,2.78 +2017-02-02 22:32:00,27.5425,89.0075,2.8 +2017-02-02 22:47:00,25.035,88.9875,2.8 +2017-02-02 23:02:00,28.4437,88.985,2.78 +2017-02-02 23:17:00,26.2025,88.9,2.78 +2017-02-02 23:32:00,26.6512,88.85,2.8 +2017-02-02 23:47:00,26.2038,88.7525,2.81 +2017-02-03 00:02:00,26.8487,88.6875,2.79 +2017-02-03 00:17:00,28.445,88.6325,2.77 +2017-02-03 00:32:00,26.795,88.5775,2.76 +2017-02-03 00:47:00,27.3937,88.5425,2.76 +2017-02-03 01:02:00,26.4975,88.54,2.76 +2017-02-03 01:17:00,25.77,88.6725,2.77 +2017-02-03 01:32:00,24.9388,88.8725,2.77 +2017-02-03 01:47:00,26.9912,88.94,2.76 +2017-02-03 02:02:00,29.6087,88.9175,2.75 +2017-02-03 02:17:00,25.7663,88.8625,2.74 +2017-02-03 02:32:00,26.4,88.835,2.72 +2017-02-03 02:47:00,26.9412,88.7925,2.68 +2017-02-03 03:02:00,26.7462,88.81,2.66 +2017-02-03 03:17:00,25.52,88.7825,2.67 +2017-02-03 03:32:00,25.2363,88.7475,2.66 +2017-02-03 03:47:00,26.8988,88.6975,2.65 +2017-02-03 04:02:00,26.0638,88.67,2.64 +2017-02-03 04:17:00,27.4925,88.6225,2.63 +2017-02-03 04:32:00,27.9912,88.6075,2.63 +2017-02-03 04:47:00,26.0662,88.72,2.61 +2017-02-03 05:02:00,27.0863,88.8875,2.61 +2017-02-03 05:17:00,24.99,88.995,2.62 +2017-02-03 05:32:00,24.9375,89.03,2.6 +2017-02-03 05:47:00,24.5863,88.9775,2.6 +2017-02-03 06:02:00,27.5413,88.9225,2.6 +2017-02-03 06:17:00,27.3438,88.89,2.58 +2017-02-03 06:32:00,26.7012,88.8575,2.56 +2017-02-03 06:47:00,25.82,88.9,2.56 +2017-02-03 07:02:00,27.1375,89.01,2.56 +2017-02-03 07:17:00,27.7375,89.105,2.59 +2017-02-03 07:32:00,28.0912,89.19,2.65 +2017-02-03 07:47:00,26.2525,89.28,2.74 +2017-02-03 08:02:00,27.9412,89.335,2.79 +2017-02-03 08:17:00,25.5212,89.395,2.83 +2017-02-03 08:32:00,26.3487,89.4325,2.86 +2017-02-03 08:47:00,25.7725,89.4425,2.89 +2017-02-03 09:02:00,27.2363,89.4475,2.95 +2017-02-03 09:17:00,28.3425,89.3975,3.0 +2017-02-03 09:32:00,25.3312,89.3525,3.03 +2017-02-03 09:47:00,26.9412,89.305,3.06 +2017-02-03 10:02:00,26.9887,89.2625,3.07 +2017-02-03 10:17:00,27.7412,89.175,3.09 +2017-02-03 10:32:00,26.9925,89.11,3.13 +2017-02-03 10:47:00,26.7975,89.02,3.15 +2017-02-03 11:02:00,28.0413,88.98,3.17 +2017-02-03 11:17:00,28.3412,88.995,3.17 +2017-02-03 11:32:00,26.99,89.0625,3.2 +2017-02-03 11:47:00,26.2062,89.235,3.23 +2017-02-03 12:02:00,26.4012,89.3375,3.24 +2017-02-03 12:17:00,25.375,89.36,3.25 +2017-02-03 12:32:00,27.5413,89.3625,3.24 +2017-02-03 12:47:00,26.5987,89.27,3.26 +2017-02-03 13:02:00,28.3412,89.1675,3.27 +2017-02-03 13:17:00,27.0362,89.0575,3.24 +2017-02-03 13:32:00,26.75,88.9475,3.18 +2017-02-03 13:47:00,26.4962,88.8525,3.13 +2017-02-03 14:02:00,24.9912,88.755,3.12 +2017-02-03 14:17:00,26.745,88.6925,3.1 +2017-02-03 14:32:00,26.5475,88.6425,3.09 +2017-02-03 14:47:00,27.74,88.6125,3.11 +2017-02-03 15:02:00,27.1362,88.6475,3.09 +2017-02-03 15:17:00,27.1437,88.8475,3.07 +2017-02-03 15:32:00,27.4925,89.04,3.08 +2017-02-03 15:47:00,25.085,89.1575,3.08 +2017-02-03 16:02:00,28.3412,89.1875,3.09 +2017-02-03 16:17:00,26.8975,89.17,3.09 +2017-02-03 16:32:00,25.4238,89.1625,3.08 +2017-02-03 16:47:00,27.2875,89.17,3.09 +2017-02-03 17:02:00,28.0387,89.16,3.1 +2017-02-03 17:17:00,25.9187,89.13,3.09 +2017-02-03 17:32:00,27.2925,89.1025,3.08 +2017-02-03 17:47:00,28.735,89.0625,3.08 +2017-02-03 18:02:00,25.5187,89.0325,3.07 +2017-02-03 18:17:00,27.1837,89.0,3.06 +2017-02-03 18:32:00,27.5938,88.965,3.07 +2017-02-03 18:47:00,26.6975,89.0925,3.09 +2017-02-03 19:02:00,27.8387,89.245,3.09 +2017-02-03 19:17:00,26.6963,89.3675,3.09 +2017-02-03 19:32:00,26.4425,89.41,3.09 +2017-02-03 19:47:00,26.3012,89.3775,3.09 +2017-02-03 20:02:00,26.8962,89.315,3.09 +2017-02-03 20:17:00,25.0362,89.2925,3.1 +2017-02-03 20:32:00,26.155,89.2675,3.1 +2017-02-03 20:47:00,27.5925,89.2175,3.11 +2017-02-03 21:02:00,26.6,89.185,3.12 +2017-02-03 21:17:00,28.6312,89.13,3.13 +2017-02-03 21:32:00,27.0825,89.1,3.16 +2017-02-03 21:47:00,26.5,89.04,3.17 +2017-02-03 22:02:00,26.2038,88.9925,3.18 +2017-02-03 22:17:00,29.1275,88.9325,3.19 +2017-02-03 22:32:00,25.2363,88.9125,3.2 +2017-02-03 22:47:00,26.7462,89.085,3.22 +2017-02-03 23:02:00,28.195,89.265,3.25 +2017-02-03 23:17:00,28.44,89.3625,3.27 +2017-02-03 23:32:00,27.6912,89.4025,3.29 +2017-02-03 23:47:00,27.19,89.43,3.29 +2017-02-04 00:02:00,27.8375,89.4275,3.29 +2017-02-04 00:17:00,27.3925,89.3925,3.3 +2017-02-04 00:32:00,26.9912,89.345,3.29 +2017-02-04 00:47:00,27.695,89.3325,3.29 +2017-02-04 01:02:00,27.7363,89.2825,3.27 +2017-02-04 01:17:00,27.3438,89.2725,3.26 +2017-02-04 01:32:00,25.9163,89.23,3.26 +2017-02-04 01:47:00,25.1813,89.175,3.25 +2017-02-04 02:02:00,28.04,89.15,3.23 +2017-02-04 02:17:00,25.47,89.1725,3.21 +2017-02-04 02:30:59,25.5687,89.335,3.19 +2017-02-04 02:47:00,25.33,89.5325,3.17 +2017-02-04 03:02:00,24.9388,89.59,3.16 +2017-02-04 03:17:00,26.4475,89.5925,3.16 +2017-02-04 03:32:00,27.7438,89.5625,3.14 +2017-02-04 03:47:00,27.645,89.4925,3.13 +2017-02-04 04:02:00,28.3925,89.44,3.11 +2017-02-04 04:17:00,26.895,89.3975,3.11 +2017-02-04 04:32:00,26.1562,89.33,3.11 +2017-02-04 04:47:00,27.2937,89.3125,3.07 +2017-02-04 05:02:00,25.1825,89.2925,3.05 +2017-02-04 05:17:00,26.9875,89.3,3.04 +2017-02-04 05:32:00,28.585,89.2775,3.03 +2017-02-04 05:47:00,27.5437,89.2775,3.04 +2017-02-04 06:02:00,25.1837,89.285,3.02 +2017-02-04 06:17:00,27.9887,89.36,2.99 +2017-02-04 06:32:00,25.3312,89.405,2.96 +2017-02-04 06:47:00,28.1425,89.3875,2.94 +2017-02-04 07:02:00,27.2887,89.44,2.95 +2017-02-04 07:17:00,26.11,89.46,2.94 +2017-02-04 07:32:00,27.59,89.4725,2.93 +2017-02-04 07:47:00,28.3425,89.555,2.93 +2017-02-04 08:02:00,26.2988,89.6675,2.94 +2017-02-04 08:17:00,26.105,89.74,2.94 +2017-02-04 08:32:00,28.68,89.7975,2.95 +2017-02-04 08:47:00,27.235,89.8125,2.96 +2017-02-04 09:02:00,26.2975,89.7725,2.97 +2017-02-04 09:17:00,28.585,89.73,3.01 +2017-02-04 09:32:00,28.44,89.645,3.04 +2017-02-04 09:47:00,25.8175,89.59,3.07 +2017-02-04 10:02:00,27.2363,89.5625,3.08 +2017-02-04 10:17:00,27.4938,89.5425,3.1 +2017-02-04 10:32:00,27.69,89.5125,3.12 +2017-02-04 10:47:00,27.1325,89.505,3.15 +2017-02-04 11:02:00,26.9437,89.5375,3.17 +2017-02-04 11:17:00,27.1362,89.7525,3.19 +2017-02-04 11:32:00,28.4425,89.9975,3.22 +2017-02-04 11:47:00,26.7462,90.085,3.25 +2017-02-04 12:02:00,25.6663,90.1225,3.28 +2017-02-04 12:17:00,27.5963,90.1225,3.28 +2017-02-04 12:32:00,28.8862,90.115,3.29 +2017-02-04 12:47:00,28.19,90.1275,3.31 +2017-02-04 13:02:00,28.19,90.16,3.32 +2017-02-04 13:17:00,27.9388,90.17,3.34 +2017-02-04 13:32:00,27.035,90.2275,3.36 +2017-02-04 13:47:00,27.74,90.2275,3.37 +2017-02-04 14:02:00,26.3512,90.25,3.37 +2017-02-04 14:17:00,25.2363,90.29,3.38 +2017-02-04 14:32:00,26.8975,90.425,3.38 +2017-02-04 14:47:00,28.2475,90.66,3.38 +2017-02-04 15:02:00,26.0662,90.8925,3.36 +2017-02-04 15:17:00,26.65,91.0175,3.34 +2017-02-04 15:32:00,27.2913,91.105,3.34 +2017-02-04 15:47:00,28.2937,91.1475,3.34 +2017-02-04 16:02:00,27.6462,91.1875,3.34 +2017-02-04 16:17:00,26.7988,91.1925,3.32 +2017-02-04 16:32:00,25.0887,91.2075,3.32 +2017-02-04 16:47:00,24.4425,91.23,3.33 +2017-02-04 17:02:00,25.9137,91.24,3.34 +2017-02-04 17:17:00,25.4262,91.2775,3.35 +2017-02-04 17:32:00,28.7337,91.325,3.36 +2017-02-04 17:47:00,26.4962,91.335,3.37 +2017-02-04 18:02:00,27.6975,91.3875,3.39 +2017-02-04 18:17:00,26.2525,91.4175,3.42 +2017-02-04 18:32:00,29.1275,91.605,3.45 +2017-02-04 18:47:00,26.8475,91.8275,3.47 +2017-02-04 19:02:00,25.5713,91.995,3.48 +2017-02-04 19:17:00,25.77,92.06,3.52 +2017-02-04 19:32:00,27.595,92.11,3.57 +2017-02-04 19:47:00,27.8387,92.1175,3.62 +2017-02-04 20:02:00,25.9163,92.11,3.69 +2017-02-04 20:17:00,29.4137,92.0925,3.74 +2017-02-04 20:32:00,27.4375,92.0575,3.77 +2017-02-04 20:47:00,26.99,92.105,3.8 +2017-02-04 21:02:00,26.7475,92.1025,3.82 +2017-02-04 21:17:00,26.3937,92.0825,3.85 +2017-02-04 21:32:00,26.8937,92.1325,3.86 +2017-02-04 21:47:00,27.7887,92.135,3.86 +2017-02-04 22:02:00,25.5713,92.1325,3.86 +2017-02-04 22:17:00,26.1562,92.2325,3.85 +2017-02-04 22:32:00,27.6437,92.4275,3.85 +2017-02-04 22:47:00,27.59,92.5975,3.83 +2017-02-04 23:02:00,28.09,92.685,3.81 +2017-02-04 23:17:00,25.1837,92.715,3.82 +2017-02-04 23:32:00,26.8463,92.7275,3.82 +2017-02-04 23:47:00,27.5437,92.6925,3.82 +2017-02-05 00:02:00,26.1575,92.6725,3.8 +2017-02-05 00:17:00,26.745,92.65,3.77 +2017-02-05 00:32:00,26.2962,92.615,3.77 +2017-02-05 00:47:00,26.795,92.575,3.77 +2017-02-05 01:02:00,27.2363,92.5575,3.78 +2017-02-05 01:17:00,27.0837,92.56,3.77 +2017-02-05 01:32:00,26.2962,92.55,3.76 +2017-02-05 01:47:00,28.1875,92.625,3.76 +2017-02-05 02:02:00,26.545,92.8125,3.76 +2017-02-05 02:17:00,28.9775,92.98,3.76 +2017-02-05 02:32:00,27.49,93.065,3.74 +2017-02-05 02:47:00,27.5912,93.0625,3.71 +2017-02-05 03:02:00,27.9887,93.0625,3.68 +2017-02-05 03:17:00,27.59,93.0475,3.67 +2017-02-05 03:32:00,28.2913,92.99,3.65 +2017-02-05 03:47:00,26.9375,92.955,3.62 +2017-02-05 04:02:00,25.8637,92.91,3.58 +2017-02-05 04:17:00,26.2038,92.865,3.54 +2017-02-05 04:32:00,27.485,92.815,3.52 +2017-02-05 04:47:00,26.1537,92.8,3.5 +2017-02-05 05:02:00,27.8337,92.81,3.48 +2017-02-05 05:17:00,27.5375,92.8225,3.45 +2017-02-05 05:32:00,26.8463,92.9325,3.43 +2017-02-05 05:47:00,25.8662,93.16,3.42 +2017-02-05 06:02:00,26.5975,93.3925,3.41 +2017-02-05 06:17:00,27.1362,93.4775,3.4 +2017-02-05 06:32:00,28.9325,93.5625,3.37 +2017-02-05 06:47:00,27.0362,93.62,3.34 +2017-02-05 07:02:00,26.8913,93.6975,3.34 +2017-02-05 07:17:00,26.8487,93.7925,3.34 +2017-02-05 07:32:00,27.99,93.9175,3.35 +2017-02-05 07:47:00,27.6462,94.085,3.34 +2017-02-05 08:02:00,28.1925,94.2725,3.33 +2017-02-05 08:17:00,27.9912,94.4125,3.3 +2017-02-05 08:32:00,27.645,94.6075,3.31 +2017-02-05 08:47:00,27.8375,94.7675,3.33 +2017-02-05 09:02:00,25.3763,94.925,3.35 +2017-02-05 09:17:00,24.6813,95.08,3.37 +2017-02-05 09:32:00,26.5512,95.22,3.41 +2017-02-05 09:47:00,27.1875,95.3325,3.43 +2017-02-05 10:02:00,25.615,95.405,3.45 +2017-02-05 10:17:00,27.34,95.455,3.49 +2017-02-05 10:32:00,28.98,95.5125,3.51 +2017-02-05 10:47:00,27.5925,95.57,3.54 +2017-02-05 11:02:00,27.7913,95.62,3.57 +2017-02-05 11:17:00,27.2363,95.6675,3.63 +2017-02-05 11:32:00,25.965,95.6925,3.65 +2017-02-05 11:47:00,29.08,95.675,3.67 +2017-02-05 12:02:00,27.1825,95.68,3.7 +2017-02-05 12:17:00,26.7975,95.6725,3.72 +2017-02-05 12:32:00,26.8937,95.7575,3.74 +2017-02-05 12:47:00,27.2887,95.9425,3.73 +2017-02-05 13:02:00,25.8662,96.045,3.73 +2017-02-05 13:17:00,28.3875,96.055,3.73 +2017-02-05 13:32:00,27.39,96.0175,3.74 +2017-02-05 13:47:00,25.47,95.955,3.76 +2017-02-05 14:02:00,27.54,95.8725,3.75 +2017-02-05 14:17:00,25.865,95.8075,3.74 +2017-02-05 14:32:00,27.1362,95.7225,3.75 +2017-02-05 14:47:00,25.42,95.67,3.76 +2017-02-05 15:02:00,27.8363,95.585,3.76 +2017-02-05 15:17:00,27.5925,95.54,3.75 +2017-02-05 15:32:00,27.1825,95.5075,3.73 +2017-02-05 15:47:00,26.7475,95.42,3.75 +2017-02-05 16:02:00,27.5375,95.42,3.76 +2017-02-05 16:17:00,26.5963,95.5375,3.74 +2017-02-05 16:32:00,26.2525,95.7025,3.73 +2017-02-05 16:47:00,27.885,95.75,3.74 +2017-02-05 17:02:00,26.6963,95.745,3.75 +2017-02-05 17:17:00,26.7975,95.6975,3.75 +2017-02-05 17:32:00,27.1375,95.645,3.75 +2017-02-05 17:47:00,26.6963,95.57,3.74 +2017-02-05 18:02:00,26.8463,95.49,3.75 +2017-02-05 18:17:00,27.0362,95.4275,3.76 +2017-02-05 18:32:00,25.6663,95.3525,3.77 +2017-02-05 18:47:00,25.3763,95.29,3.79 +2017-02-05 19:02:00,27.4925,95.275,3.79 +2017-02-05 19:17:00,27.6425,95.2475,3.81 +2017-02-05 19:32:00,26.4463,95.3475,3.84 +2017-02-05 19:47:00,27.3438,95.55,3.86 +2017-02-05 20:02:00,25.285,95.645,3.88 +2017-02-05 20:17:00,26.8512,95.6675,3.88 +2017-02-05 20:32:00,26.8475,95.6075,3.88 +2017-02-05 20:47:00,27.4925,95.5875,3.9 +2017-02-05 21:02:00,26.2012,95.5375,3.91 +2017-02-05 21:17:00,26.3925,95.5025,3.93 +2017-02-05 21:32:00,25.815,95.4525,3.95 +2017-02-05 21:47:00,26.1125,95.4075,3.94 +2017-02-05 22:02:00,25.7213,95.37,3.93 +2017-02-05 22:17:00,28.1425,95.32,3.94 +2017-02-05 22:32:00,26.0612,95.31,3.95 +2017-02-05 22:47:00,28.1413,95.27,3.95 +2017-02-05 23:02:00,27.7862,95.2575,3.95 +2017-02-05 23:17:00,27.7862,95.365,3.96 +2017-02-05 23:32:00,27.735,95.5725,3.98 +2017-02-05 23:47:00,27.0887,95.73,3.99 +2017-02-06 00:02:00,28.04,95.76,3.98 +2017-02-06 00:17:00,25.0338,95.755,3.99 +2017-02-06 00:32:00,26.11,95.7175,3.98 +2017-02-06 00:47:00,27.335,95.6575,3.97 +2017-02-06 01:02:00,27.8913,95.6225,3.98 +2017-02-06 01:17:00,25.3763,95.565,3.98 +2017-02-06 01:32:00,26.3975,95.525,3.97 +2017-02-06 01:47:00,27.8875,95.51,3.97 +2017-02-06 02:02:00,27.89,95.4775,3.96 +2017-02-06 02:17:00,27.7387,95.435,3.97 +2017-02-06 02:32:00,26.9388,95.43,3.97 +2017-02-06 02:47:00,27.6413,95.4525,3.97 +2017-02-06 03:02:00,27.9875,95.5325,3.97 +2017-02-06 03:17:00,27.835,95.7475,3.98 +2017-02-06 03:32:00,25.9137,95.915,3.98 +2017-02-06 03:47:00,25.6162,95.97,3.98 +2017-02-06 04:02:00,26.9887,95.965,3.97 +2017-02-06 04:17:00,27.7887,95.925,3.95 +2017-02-06 04:32:00,26.205,95.8925,3.94 +2017-02-06 04:47:00,28.7325,95.8775,3.93 +2017-02-06 05:02:00,28.9788,95.8475,3.93 +2017-02-06 05:17:00,28.44,95.8275,3.92 +2017-02-06 05:32:00,26.1537,95.8225,3.93 +2017-02-06 05:47:00,26.9388,95.8275,3.93 +2017-02-06 06:02:00,27.2325,95.8175,3.94 +2017-02-06 06:17:00,26.695,95.81,3.94 +2017-02-06 06:32:00,27.035,95.8175,3.93 +2017-02-06 06:47:00,26.795,95.88,3.91 +2017-02-06 07:02:00,26.6488,95.9425,3.91 +2017-02-06 07:17:00,25.8175,95.9875,3.91 +2017-02-06 07:32:00,27.69,96.0725,3.91 +2017-02-06 07:47:00,25.6675,96.145,3.91 +2017-02-06 08:02:00,25.965,96.2,3.9 +2017-02-06 08:17:00,27.54,96.2725,3.89 +2017-02-06 08:32:00,28.0875,96.32,3.89 +2017-02-06 08:47:00,28.14,96.3475,3.89 +2017-02-06 09:02:00,28.535,96.3475,3.89 +2017-02-06 09:17:00,27.085,96.335,3.9 +2017-02-06 09:32:00,27.7038,96.3275,3.9 +2017-02-06 09:47:00,26.7513,96.27,3.54 +2017-02-06 10:02:00,27.7462,96.2775,3.89 +2017-02-06 10:15:34,26.0737,96.2575,3.88 +2017-02-06 10:32:00,26.3763,96.265,3.89 +2017-02-06 10:47:00,23.7137,96.415,3.89 +2017-02-06 11:02:00,25.47,96.645,3.87 +2017-02-06 11:17:00,25.085,96.815,3.89 +2017-02-06 11:32:00,25.5175,96.8625,3.91 +2017-02-06 11:47:00,25.9637,96.8525,3.93 +2017-02-06 12:02:00,25.4212,96.805,3.92 +2017-02-06 12:17:00,24.035,96.8275,3.92 +2017-02-06 12:32:00,26.4962,96.865,3.91 +2017-02-06 12:47:00,25.9137,97.0125,3.9 +2017-02-06 13:02:00,25.3288,97.185,3.9 +2017-02-06 13:17:00,25.9662,97.4425,3.9 +2017-02-06 13:32:00,25.4262,97.7625,3.87 +2017-02-06 13:47:00,25.1325,98.0675,3.86 +2017-02-06 14:02:00,23.7025,98.36,3.85 +2017-02-06 14:17:00,24.3387,98.74,3.86 +2017-02-06 14:32:00,26.2462,99.1275,3.84 +2017-02-06 14:47:00,23.9362,99.4425,3.81 +2017-02-06 15:02:00,24.8337,99.555,3.8 +2017-02-06 15:17:00,24.6813,99.6,3.79 +2017-02-06 15:32:00,26.545,99.555,3.78 +2017-02-06 15:47:00,25.2787,99.515,3.76 +2017-02-06 16:02:00,23.5975,99.3875,3.76 +2017-02-06 16:17:00,23.4025,99.2825,3.74 +2017-02-06 16:32:00,25.665,99.165,3.73 +2017-02-06 16:47:00,24.3363,99.1,3.72 +2017-02-06 17:02:00,22.9238,99.0075,3.71 +2017-02-06 17:17:00,25.7712,98.955,3.71 +2017-02-06 17:32:00,22.5338,98.8775,3.71 +2017-02-06 17:47:00,26.7475,98.77,3.69 +2017-02-06 18:02:00,24.7375,98.73,3.67 +2017-02-06 18:17:00,25.3337,98.8125,3.64 +2017-02-06 18:32:00,25.8688,98.95,3.63 +2017-02-06 18:47:00,23.2575,98.9625,3.62 +2017-02-06 19:02:00,25.5212,98.935,3.63 +2017-02-06 19:17:00,24.5863,98.8575,3.63 +2017-02-06 19:32:00,26.0638,98.745,3.62 +2017-02-06 19:47:00,25.8225,98.625,3.61 +2017-02-06 20:02:00,26.1575,98.475,3.59 +2017-02-06 20:17:00,24.8862,98.33,3.58 +2017-02-06 20:32:00,23.5987,98.2075,3.58 +2017-02-06 20:47:00,25.7687,98.0375,3.58 +2017-02-06 21:02:00,24.8862,97.8525,3.55 +2017-02-06 21:17:00,27.085,97.6875,3.55 +2017-02-06 21:32:00,25.8175,97.55,3.55 +2017-02-06 21:47:00,25.7225,97.4275,3.54 +2017-02-06 22:02:00,24.0825,97.4025,3.53 +2017-02-06 22:17:00,24.5362,97.425,3.51 +2017-02-06 22:32:00,25.5725,97.3875,3.48 +2017-02-06 22:47:00,24.3375,97.2975,3.46 +2017-02-06 23:02:00,26.2975,97.2,3.45 +2017-02-06 23:17:00,24.8862,97.0675,3.45 +2017-02-06 23:32:00,25.6675,96.905,3.45 +2017-02-06 23:47:00,25.4238,96.7725,3.43 +2017-02-07 00:02:00,24.1338,96.62,3.4 +2017-02-07 00:17:00,24.5362,96.475,3.37 +2017-02-07 00:32:00,25.18,96.34,3.34 +2017-02-07 00:47:00,26.1525,96.245,3.34 +2017-02-07 01:02:00,24.1312,96.1575,3.32 +2017-02-07 01:17:00,25.9587,96.1325,3.31 +2017-02-07 01:32:00,24.49,96.2875,3.3 +2017-02-07 01:47:00,25.1338,96.4225,3.28 +2017-02-07 02:02:00,25.3337,96.4275,3.26 +2017-02-07 02:17:00,27.4412,96.405,3.23 +2017-02-07 02:32:00,23.8412,96.3525,3.2 +2017-02-07 02:47:00,23.4062,96.28,3.17 +2017-02-07 03:02:00,24.9437,96.24,3.17 +2017-02-07 03:17:00,24.6862,96.1925,3.17 +2017-02-07 03:32:00,25.3325,96.1575,3.17 +2017-02-07 03:47:00,25.2363,96.1225,3.15 +2017-02-07 04:02:00,25.1375,96.0625,3.12 +2017-02-07 04:17:00,27.3412,96.0025,3.1 +2017-02-07 04:32:00,24.99,95.9725,3.08 +2017-02-07 04:47:00,25.67,95.96,3.06 +2017-02-07 05:02:00,26.1137,96.015,3.06 +2017-02-07 05:17:00,24.6862,96.23,3.05 +2017-02-07 05:32:00,25.7225,96.3725,3.04 +2017-02-07 05:47:00,26.3538,96.41,3.03 +2017-02-07 06:02:00,24.6862,96.3675,3.02 +2017-02-07 06:17:00,26.4,96.335,3.01 +2017-02-07 06:32:00,25.525,96.2775,2.97 +2017-02-07 06:47:00,23.56,96.23,2.96 +2017-02-07 07:02:00,24.4412,96.185,2.95 +2017-02-07 07:17:00,26.7525,96.1775,2.93 +2017-02-07 07:32:00,25.92,96.205,2.92 +2017-02-07 07:47:00,24.7375,96.21,2.9 +2017-02-07 08:02:00,23.6537,96.26,2.9 +2017-02-07 08:17:00,25.0413,96.27,2.9 +2017-02-07 08:32:00,24.4463,96.28,2.88 +2017-02-07 08:47:00,24.7387,96.2925,2.86 +2017-02-07 09:02:00,25.5762,96.265,2.85 +2017-02-07 09:17:00,27.6462,96.2525,2.84 +2017-02-07 09:32:00,25.1888,96.2225,2.84 +2017-02-07 09:47:00,25.6237,96.165,2.84 +2017-02-07 10:02:00,24.2425,96.1325,2.83 +2017-02-07 10:17:00,27.695,96.0925,2.81 +2017-02-07 10:32:00,25.2425,96.09,2.79 +2017-02-07 10:47:00,27.2375,96.11,2.79 +2017-02-07 11:02:00,25.8225,96.0825,2.81 +2017-02-07 11:17:00,26.1188,96.095,2.83 +2017-02-07 11:32:00,28.345,96.0975,2.82 +2017-02-07 11:47:00,25.2387,96.1825,2.82 +2017-02-07 12:02:00,24.8412,96.375,2.84 +2017-02-07 12:17:00,25.8237,96.5025,2.83 +2017-02-07 12:32:00,25.48,96.545,2.82 +2017-02-07 12:47:00,26.4025,96.5525,2.8 +2017-02-07 13:02:00,26.2062,96.535,2.79 +2017-02-07 13:17:00,25.4788,96.4975,2.78 +2017-02-07 13:32:00,25.475,96.44,2.78 +2017-02-07 13:47:00,25.3787,96.375,2.79 +2017-02-07 14:02:00,27.0413,96.335,2.75 +2017-02-07 14:17:00,26.0675,96.2825,2.74 +2017-02-07 14:32:00,27.8937,96.2475,2.74 +2017-02-07 14:47:00,25.9688,96.195,2.73 +2017-02-07 15:02:00,25.09,96.18,2.73 +2017-02-07 15:17:00,24.8962,96.2275,2.71 +2017-02-07 15:32:00,25.67,96.405,2.7 +2017-02-07 15:47:00,24.9912,96.62,2.71 +2017-02-07 16:02:00,27.5462,96.745,2.71 +2017-02-07 16:17:00,26.3063,96.8075,2.7 +2017-02-07 16:32:00,25.2875,96.815,2.69 +2017-02-07 16:47:00,27.3438,96.8425,2.68 +2017-02-07 17:02:00,25.7225,96.82,2.66 +2017-02-07 17:17:00,26.3025,96.82,2.64 +2017-02-07 17:32:00,25.7225,96.81,2.64 +2017-02-07 17:47:00,26.6525,96.7875,2.64 +2017-02-07 18:02:00,26.9463,96.745,2.63 +2017-02-07 18:17:00,26.7513,96.7375,2.6 +2017-02-07 18:32:00,25.335,96.7175,2.57 +2017-02-07 18:47:00,27.2925,96.7775,2.57 +2017-02-07 19:02:00,25.8725,96.97,2.57 +2017-02-07 19:17:00,24.6888,97.17,2.58 +2017-02-07 19:32:00,25.0887,97.305,2.57 +2017-02-07 19:47:00,27.5475,97.3925,2.55 +2017-02-07 20:02:00,25.8225,97.3975,2.54 +2017-02-07 20:17:00,25.43,97.34,2.53 +2017-02-07 20:32:00,22.98,97.3175,2.53 +2017-02-07 20:47:00,24.79,97.285,2.52 +2017-02-07 21:02:00,23.6612,97.265,2.5 +2017-02-07 21:17:00,27.5462,97.2525,2.49 +2017-02-07 21:32:00,27.0925,97.2225,2.49 +2017-02-07 21:47:00,24.7962,97.2,2.48 +2017-02-07 22:02:00,24.1387,97.1975,2.48 +2017-02-07 22:17:00,25.7775,97.22,2.47 +2017-02-07 22:32:00,26.6038,97.37,2.46 +2017-02-07 22:47:00,25.5762,97.5075,2.43 +2017-02-07 23:02:00,25.0912,97.55,2.41 +2017-02-07 23:17:00,24.8913,97.5375,2.39 +2017-02-07 23:32:00,24.1963,97.505,2.38 +2017-02-07 23:47:00,24.4487,97.445,2.37 +2017-02-08 00:02:00,24.6425,97.3975,2.37 +2017-02-08 00:17:00,26.3063,97.3225,2.35 +2017-02-08 00:32:00,26.1175,97.2675,2.35 +2017-02-08 00:47:00,25.6237,97.2075,2.35 +2017-02-08 01:02:00,24.6462,97.155,2.34 +2017-02-08 01:17:00,26.405,97.1125,2.32 +2017-02-08 01:32:00,26.255,97.06,2.3 +2017-02-08 01:47:00,24.1925,97.0925,2.28 +2017-02-08 02:02:00,28.095,97.2375,2.26 +2017-02-08 02:17:00,24.74,97.3425,2.25 +2017-02-08 02:32:00,26.7012,97.34,2.22 +2017-02-08 02:47:00,27.395,97.36,2.19 +2017-02-08 03:02:00,26.855,97.27,2.17 +2017-02-08 03:17:00,26.9037,97.215,2.15 +2017-02-08 03:32:00,23.5112,97.12,2.14 +2017-02-08 03:47:00,24.5,97.07,2.12 +2017-02-08 04:02:00,26.855,96.98,2.1 +2017-02-08 04:17:00,25.19,96.9,2.08 +2017-02-08 04:32:00,24.84,96.83,2.07 +2017-02-08 04:47:00,26.0687,96.7125,2.05 +2017-02-08 05:02:00,27.6987,96.6525,2.06 +2017-02-08 05:17:00,27.0425,96.715,2.04 +2017-02-08 05:32:00,25.875,96.8075,2.04 +2017-02-08 05:47:00,24.2425,96.8275,2.03 +2017-02-08 06:02:00,26.6562,96.7875,2.02 +2017-02-08 06:17:00,23.8975,96.7625,2.0 +2017-02-08 06:32:00,26.5575,96.78,1.98 +2017-02-08 06:47:00,25.8737,96.8025,1.97 +2017-02-08 07:02:00,25.8737,96.79,1.95 +2017-02-08 07:17:00,23.07,96.7875,1.94 +2017-02-08 07:32:00,25.09,96.7775,1.95 +2017-02-08 07:47:00,25.045,96.7375,1.94 +2017-02-08 08:02:00,26.0262,96.7175,1.92 +2017-02-08 08:17:00,24.8913,96.665,1.92 +2017-02-08 08:32:00,25.7288,96.56,1.92 +2017-02-08 08:47:00,25.92,96.46,1.92 +2017-02-08 09:02:00,27.5525,96.355,1.89 +2017-02-08 09:17:00,25.8275,96.285,1.88 +2017-02-08 09:32:00,25.5275,96.2075,1.89 +2017-02-08 09:47:00,27.0963,96.15,1.89 +2017-02-08 10:02:00,26.8025,96.095,1.88 +2017-02-08 10:17:00,26.455,96.0875,1.87 +2017-02-08 10:32:00,25.58,96.16,1.87 +2017-02-08 10:47:00,25.09,96.305,1.88 +2017-02-08 11:02:00,25.6287,96.385,1.88 +2017-02-08 11:17:00,27.2438,96.375,1.88 +2017-02-08 11:32:00,25.2425,96.355,1.88 +2017-02-08 11:47:00,24.6925,96.2825,1.87 +2017-02-08 12:02:00,25.6263,96.185,1.87 +2017-02-08 12:17:00,24.2925,96.07,1.88 +2017-02-08 12:32:00,25.87,95.9575,1.9 +2017-02-08 12:47:00,27.6512,95.8675,1.9 +2017-02-08 13:02:00,24.0413,95.815,1.89 +2017-02-08 13:17:00,25.6287,95.7225,1.89 +2017-02-08 13:32:00,26.6562,95.675,1.89 +2017-02-08 13:47:00,25.975,95.5825,1.89 +2017-02-08 14:02:00,25.3412,95.4975,1.87 +2017-02-08 14:17:00,22.0137,95.4525,1.84 +2017-02-08 14:32:00,24.7387,95.575,1.83 +2017-02-08 14:47:00,26.3562,95.7175,1.82 +2017-02-08 15:02:00,24.795,95.8025,1.82 +2017-02-08 15:17:00,25.4812,95.79,1.84 +2017-02-08 15:32:00,24.995,95.71,1.84 +2017-02-08 15:47:00,26.2575,95.585,1.84 +2017-02-08 16:02:00,24.4487,95.5025,1.82 +2017-02-08 16:17:00,23.3175,95.38,1.82 +2017-02-08 16:32:00,25.4825,95.2675,1.79 +2017-02-08 16:47:00,23.4662,95.1325,1.76 +2017-02-08 17:02:00,23.8025,95.055,1.74 +2017-02-08 17:17:00,23.945,95.0025,1.72 +2017-02-08 17:32:00,25.2438,94.955,1.73 +2017-02-08 17:47:00,26.2612,94.9475,1.73 +2017-02-08 18:02:00,25.53,95.035,1.73 +2017-02-08 18:17:00,26.3562,95.1425,1.73 +2017-02-08 18:32:00,25.2925,95.1925,1.71 +2017-02-08 18:47:00,27.4025,95.165,1.71 +2017-02-08 19:02:00,25.0963,95.09,1.71 +2017-02-08 19:17:00,26.9987,95.025,1.7 +2017-02-08 19:32:00,26.3075,94.9525,1.7 +2017-02-08 19:47:00,26.1675,94.8575,1.68 +2017-02-08 20:02:00,25.0938,94.7975,1.68 +2017-02-08 20:17:00,26.215,94.7425,1.68 +2017-02-08 20:32:00,26.1637,94.6625,1.66 +2017-02-08 20:47:00,27.55,94.5875,1.65 +2017-02-08 21:02:00,27.4487,94.5325,1.63 +2017-02-08 21:17:00,25.0462,94.5675,1.61 +2017-02-08 21:32:00,26.025,94.725,1.64 +2017-02-08 21:47:00,26.2125,94.8675,1.65 +2017-02-08 22:02:00,25.9762,94.865,1.64 +2017-02-08 22:17:00,27.3988,94.8175,1.61 +2017-02-08 22:32:00,23.9962,94.735,1.57 +2017-02-08 22:47:00,26.7562,94.66,1.56 +2017-02-08 23:02:00,25.0475,94.6075,1.56 +2017-02-08 23:17:00,24.1475,94.555,1.57 +2017-02-08 23:32:00,24.5987,94.475,1.55 +2017-02-08 23:47:00,25.1925,94.435,1.54 +2017-02-09 00:02:00,23.85,94.365,1.54 +2017-02-09 00:17:00,27.0963,94.3375,1.53 +2017-02-09 00:32:00,25.9238,94.28,1.5 +2017-02-09 00:47:00,26.9012,94.3425,1.48 +2017-02-09 01:02:00,26.12,94.5125,1.45 +2017-02-09 01:17:00,26.0238,94.62,1.44 +2017-02-09 01:32:00,27.7438,94.64,1.42 +2017-02-09 01:47:00,24.9987,94.5975,1.39 +2017-02-09 02:02:00,26.655,94.5425,1.38 +2017-02-09 02:17:00,27.75,94.475,1.35 +2017-02-09 02:32:00,26.1188,94.435,1.33 +2017-02-09 02:47:00,25.6275,94.395,1.32 +2017-02-09 03:02:00,24.2962,94.35,1.3 +2017-02-09 03:17:00,24.9475,94.345,1.28 +2017-02-09 03:32:00,26.555,94.2975,1.27 +2017-02-09 03:47:00,25.2937,94.2625,1.26 +2017-02-09 04:02:00,25.3887,94.19,1.25 +2017-02-09 04:17:00,26.0212,94.19,1.22 +2017-02-09 04:32:00,26.0725,94.3375,1.2 +2017-02-09 04:47:00,24.1987,94.465,1.16 +2017-02-09 05:02:00,24.9975,94.5075,1.13 +2017-02-09 05:17:00,25.63,94.4975,1.12 +2017-02-09 05:32:00,25.7775,94.465,1.11 +2017-02-09 05:47:00,25.3412,94.4175,1.11 +2017-02-09 06:02:00,25.6813,94.3475,1.09 +2017-02-09 06:17:00,26.3075,94.26,1.07 +2017-02-09 06:32:00,24.795,94.1575,1.05 +2017-02-09 06:47:00,25.675,94.05,1.02 +2017-02-09 07:02:00,27.9487,93.9575,1.0 +2017-02-09 07:17:00,26.2588,93.88,0.99 +2017-02-09 07:32:00,26.2637,93.815,0.98 +2017-02-09 07:47:00,25.4313,93.7825,0.98 +2017-02-09 08:02:00,26.5575,93.81,0.97 +2017-02-09 08:17:00,25.7288,93.94,0.99 +2017-02-09 08:32:00,25.9262,94.0825,0.98 +2017-02-09 08:47:00,24.995,94.125,0.97 +2017-02-09 09:02:00,28.3025,94.105,0.98 +2017-02-09 09:17:00,24.7937,94.0425,0.98 +2017-02-09 09:32:00,25.58,93.98,0.98 +2017-02-09 09:47:00,26.655,93.9125,0.98 +2017-02-09 10:02:00,28.1537,93.84,0.98 +2017-02-09 10:17:00,25.3875,93.82,0.98 +2017-02-09 10:32:00,25.58,93.82,0.99 +2017-02-09 10:47:00,27.7462,93.8275,1.01 +2017-02-09 11:02:00,25.2412,93.82,1.05 +2017-02-09 11:17:00,24.5013,93.825,1.09 +2017-02-09 11:32:00,26.8562,93.88,1.12 +2017-02-09 11:47:00,27.0475,94.005,1.14 +2017-02-09 12:02:00,26.1175,94.125,1.16 +2017-02-09 12:17:00,27.0488,94.1775,1.16 +2017-02-09 12:32:00,25.2425,94.1375,1.15 +2017-02-09 12:47:00,24.4512,94.1125,1.17 +2017-02-09 13:02:00,26.1663,94.0225,1.17 +2017-02-09 13:17:00,25.2913,93.9325,1.19 +2017-02-09 13:32:00,26.2125,93.835,1.19 +2017-02-09 13:47:00,26.0713,93.7175,1.16 +2017-02-09 14:02:00,25.6287,93.6375,1.15 +2017-02-09 14:17:00,25.6287,93.5525,1.15 +2017-02-09 14:32:00,23.3162,93.4375,1.14 +2017-02-09 14:47:00,27.895,93.3175,1.11 +2017-02-09 15:02:00,26.6087,93.22,1.06 +2017-02-09 15:17:00,26.4062,93.2425,1.04 +2017-02-09 15:32:00,24.6462,93.325,1.02 +2017-02-09 15:47:00,27.6488,93.3625,1.02 +2017-02-09 16:02:00,26.455,93.3475,1.02 +2017-02-09 16:17:00,27.0963,93.2675,1.03 +2017-02-09 16:32:00,27.8962,93.1275,1.04 +2017-02-09 16:47:00,25.4812,92.9375,1.04 +2017-02-09 17:02:00,25.2937,92.775,1.03 +2017-02-09 17:17:00,26.7075,92.635,1.03 +2017-02-09 17:32:00,26.4587,92.49,1.05 +2017-02-09 17:47:00,26.41,92.32,1.06 +2017-02-09 18:02:00,26.165,92.1225,1.06 +2017-02-09 18:17:00,24.8975,91.99,1.05 +2017-02-09 18:32:00,26.705,91.81,1.05 +2017-02-09 18:47:00,27.0963,91.6775,1.05 +2017-02-09 19:02:00,25.435,91.6525,1.06 +2017-02-09 19:17:00,25.7812,91.72,1.07 +2017-02-09 19:32:00,25.2925,91.68,1.05 +2017-02-09 19:47:00,25.535,91.585,1.06 +2017-02-09 20:02:00,25.1975,91.455,1.08 +2017-02-09 20:17:00,26.4112,91.27,1.11 +2017-02-09 20:32:00,24.4987,91.085,1.12 +2017-02-09 20:47:00,26.1225,90.895,1.1 +2017-02-09 21:02:00,25.735,90.7675,1.1 +2017-02-09 21:17:00,26.2637,90.6525,1.11 +2017-02-09 21:32:00,24.795,90.5325,1.12 +2017-02-09 21:47:00,24.6475,90.4425,1.11 +2017-02-09 22:02:00,25.2425,90.3275,1.11 +2017-02-09 22:17:00,26.705,90.2225,1.1 +2017-02-09 22:32:00,25.73,90.09,1.1 +2017-02-09 22:47:00,26.0725,90.12,1.1 +2017-02-09 23:02:00,25.0938,90.275,1.1 +2017-02-09 23:17:00,25.9275,90.3925,1.1 +2017-02-09 23:32:00,24.7962,90.4625,1.07 +2017-02-09 23:47:00,24.1475,90.47,1.06 +2017-02-10 00:02:00,26.95,90.485,1.06 +2017-02-10 00:17:00,25.5788,90.435,1.05 +2017-02-10 00:32:00,25.8775,90.3675,1.03 +2017-02-10 00:47:00,25.1425,90.34,0.99 +2017-02-10 01:02:00,25.0963,90.365,0.96 +2017-02-10 01:17:00,24.9987,90.4125,0.97 +2017-02-10 01:32:00,25.5275,90.42,0.96 +2017-02-10 01:47:00,25.5262,90.4625,0.94 +2017-02-10 02:02:00,26.2612,90.5375,0.91 +2017-02-10 02:17:00,27.6537,90.7425,0.88 +2017-02-10 02:32:00,26.1663,90.935,0.85 +2017-02-10 02:47:00,23.6113,91.0275,0.82 +2017-02-10 03:02:00,25.3387,91.0725,0.81 +2017-02-10 03:17:00,25.6787,91.0625,0.8 +2017-02-10 03:32:00,26.1188,91.0725,0.76 +2017-02-10 03:47:00,25.6312,91.065,0.74 +2017-02-10 04:02:00,25.63,91.015,0.73 +2017-02-10 04:17:00,26.0238,90.9675,0.7 +2017-02-10 04:32:00,25.145,90.92,0.69 +2017-02-10 04:47:00,26.8063,90.8825,0.66 +2017-02-10 05:02:00,26.7575,90.81,0.64 +2017-02-10 05:17:00,27.1437,90.75,0.62 +2017-02-10 05:32:00,26.3087,90.7,0.61 +2017-02-10 05:47:00,26.26,90.7275,0.59 +2017-02-10 06:02:00,27.5987,90.7125,0.58 +2017-02-10 06:17:00,24.5512,90.69,0.57 +2017-02-10 06:32:00,26.655,90.65,0.53 +2017-02-10 06:47:00,26.3562,90.615,0.48 +2017-02-10 07:02:00,26.8575,90.5475,0.44 +2017-02-10 07:17:00,25.1413,90.495,0.41 +2017-02-10 07:32:00,24.9463,90.45,0.39 +2017-02-10 07:47:00,24.0925,90.43,0.38 +2017-02-10 08:02:00,25.9275,90.3725,0.39 +2017-02-10 08:17:00,25.4362,90.2975,0.38 +2017-02-10 08:32:00,26.855,90.205,0.39 +2017-02-10 08:47:00,26.5587,90.1125,0.4 +2017-02-10 09:02:00,26.9962,90.0725,0.41 +2017-02-10 09:17:00,25.7775,90.0375,0.43 +2017-02-10 09:32:00,28.1,90.0125,0.48 +2017-02-10 09:47:00,26.0737,89.9875,0.51 +2017-02-10 10:02:00,26.4062,89.94,0.54 +2017-02-10 10:17:00,25.7262,89.8875,0.57 +2017-02-10 10:32:00,24.7988,89.83,0.6 +2017-02-10 10:47:00,24.1462,89.83,0.62 +2017-02-10 11:02:00,25.9225,89.87,0.65 +2017-02-10 11:17:00,24.5963,89.8975,0.65 +2017-02-10 11:32:00,27.2988,89.89,0.66 +2017-02-10 11:47:00,25.4812,89.83,0.67 +2017-02-10 12:02:00,26.66,89.745,0.69 +2017-02-10 12:17:00,25.295,89.62,0.69 +2017-02-10 12:32:00,27.2462,89.49,0.69 +2017-02-10 12:47:00,24.6963,89.375,0.7 +2017-02-10 13:02:00,25.3463,89.255,0.72 +2017-02-10 13:17:00,23.6637,89.1475,0.74 +2017-02-10 13:32:00,27.3487,89.035,0.75 +2017-02-10 13:47:00,26.7075,88.95,0.74 +2017-02-10 14:02:00,25.0512,88.9325,0.72 +2017-02-10 14:17:00,26.8562,88.9675,0.71 +2017-02-10 14:32:00,26.215,88.9775,0.71 +2017-02-10 14:47:00,27.7038,88.9275,0.71 +2017-02-10 15:02:00,27.0975,88.7825,0.69 +2017-02-10 15:17:00,25.0488,88.5925,0.67 +2017-02-10 15:32:00,25.5325,88.3375,0.66 +2017-02-10 15:47:00,25.3438,87.915,0.67 +2017-02-10 16:02:00,27.6537,87.5125,0.68 +2017-02-10 16:17:00,26.66,87.1475,0.68 +2017-02-10 16:32:00,25.3887,86.7875,0.68 +2017-02-10 16:47:00,24.6937,86.4675,0.69 +2017-02-10 17:02:00,26.8075,86.135,0.7 +2017-02-10 17:17:00,26.76,85.865,0.7 +2017-02-10 17:32:00,25.5825,85.635,0.69 +2017-02-10 17:47:00,26.8562,85.4575,0.69 +2017-02-10 18:02:00,26.1663,85.4425,0.71 +2017-02-10 18:17:00,26.4112,85.5075,0.73 +2017-02-10 18:32:00,25.7312,85.5875,0.75 +2017-02-10 18:47:00,26.0238,85.635,0.75 +2017-02-10 19:02:00,24.4075,85.665,0.73 +2017-02-10 19:17:00,26.3613,85.735,0.73 +2017-02-10 19:32:00,26.075,85.775,0.75 +2017-02-10 19:47:00,27.0475,85.8675,0.77 +2017-02-10 20:02:00,24.7988,85.985,0.79 +2017-02-10 20:17:00,25.4825,86.0975,0.79 +2017-02-10 20:32:00,24.6987,86.2175,0.79 +2017-02-10 20:47:00,25.9788,86.3575,0.8 +2017-02-10 21:02:00,24.4512,86.4925,0.82 +2017-02-10 21:17:00,24.0963,86.6725,0.83 +2017-02-10 21:32:00,27.0,86.965,0.84 +2017-02-10 21:47:00,24.8475,87.3075,0.85 +2017-02-10 22:02:00,26.41,87.625,0.86 +2017-02-10 22:17:00,26.4587,87.8875,0.86 +2017-02-10 22:32:00,26.3613,88.0975,0.87 +2017-02-10 22:47:00,25.2937,88.275,0.86 +2017-02-10 23:02:00,26.1225,88.4225,0.86 +2017-02-10 23:17:00,28.895,88.5625,0.87 +2017-02-10 23:32:00,26.955,88.66,0.89 +2017-02-10 23:47:00,25.2937,88.745,0.89 +2017-02-11 00:02:00,25.8325,88.8275,0.86 +2017-02-11 00:17:00,27.4025,88.885,0.86 +2017-02-11 00:32:00,26.5625,88.965,0.88 +2017-02-11 00:47:00,27.2462,89.02,0.87 +2017-02-11 01:02:00,26.2175,89.185,0.85 +2017-02-11 01:17:00,25.6312,89.3875,0.85 +2017-02-11 01:32:00,25.435,89.565,0.86 +2017-02-11 01:47:00,26.71,89.6925,0.86 +2017-02-11 02:02:00,25.6312,89.74,0.85 +2017-02-11 02:17:00,24.8475,89.7325,0.85 +2017-02-11 02:32:00,25.98,89.705,0.86 +2017-02-11 02:47:00,25.8775,89.66,0.86 +2017-02-11 03:02:00,25.3412,89.6275,0.86 +2017-02-11 03:17:00,24.1525,89.59,0.86 +2017-02-11 03:32:00,23.225,89.5375,0.84 +2017-02-11 03:47:00,24.8988,89.49,0.83 +2017-02-11 04:02:00,25.7838,89.4475,0.82 +2017-02-11 04:17:00,27.3025,89.435,0.81 +2017-02-11 04:32:00,23.8562,89.485,0.81 +2017-02-11 04:47:00,26.8637,89.6275,0.8 +2017-02-11 05:02:00,23.5175,89.705,0.79 +2017-02-11 05:17:00,26.3625,89.735,0.78 +2017-02-11 05:32:00,25.25,89.7325,0.78 +2017-02-11 05:47:00,24.85,89.67,0.8 +2017-02-11 06:02:00,27.0525,89.5875,0.78 +2017-02-11 06:17:00,27.005,89.5225,0.76 +2017-02-11 06:32:00,25.8838,89.46,0.74 +2017-02-11 06:47:00,24.1525,89.3775,0.73 +2017-02-11 07:02:00,26.9125,89.3375,0.74 +2017-02-11 07:17:00,25.585,89.315,0.74 +2017-02-11 07:32:00,26.9062,89.3075,0.74 +2017-02-11 07:47:00,25.1525,89.285,0.72 +2017-02-11 08:02:00,25.0987,89.2775,0.72 +2017-02-11 08:17:00,26.415,89.275,0.74 +2017-02-11 08:32:00,23.9025,89.285,0.75 +2017-02-11 08:47:00,27.0525,89.3075,0.77 +2017-02-11 09:02:00,24.6987,89.3225,0.78 +2017-02-11 09:17:00,25.885,89.355,0.8 +2017-02-11 09:32:00,26.0275,89.375,0.83 +2017-02-11 09:47:00,25.3475,89.4,0.86 +2017-02-11 10:02:00,24.6562,89.405,0.89 +2017-02-11 10:17:00,26.0275,89.3875,0.91 +2017-02-11 10:32:00,23.5638,89.37,0.91 +2017-02-11 10:47:00,24.7475,89.34,0.92 +2017-02-11 11:02:00,25.2462,89.2975,0.94 +2017-02-11 11:17:00,24.7487,89.2625,0.97 +2017-02-11 11:32:00,25.05,89.23,1.0 +2017-02-11 11:47:00,26.03,89.24,0.99 +2017-02-11 12:02:00,27.0037,89.3,1.02 +2017-02-11 12:17:00,25.785,89.3475,1.04 +2017-02-11 12:32:00,25.585,89.3975,1.07 +2017-02-11 12:47:00,25.9287,89.4225,1.08 +2017-02-11 13:02:00,25.3463,89.4325,1.07 +2017-02-11 13:17:00,25.5887,89.42,1.08 +2017-02-11 13:32:00,26.8112,89.415,1.09 +2017-02-11 13:47:00,26.3087,89.3775,1.1 +2017-02-11 14:02:00,24.8487,89.3375,1.09 +2017-02-11 14:17:00,27.4037,89.2875,1.07 +2017-02-11 14:32:00,26.0312,89.26,1.08 +2017-02-11 14:47:00,24.4037,89.2325,1.08 +2017-02-11 15:02:00,24.6537,89.2025,1.07 +2017-02-11 15:17:00,25.5875,89.225,1.08 +2017-02-11 15:32:00,25.9287,89.3,1.07 +2017-02-11 15:47:00,25.1987,89.3825,1.08 +2017-02-11 16:02:00,26.8625,89.4575,1.11 +2017-02-11 16:17:00,25.435,89.505,1.11 +2017-02-11 16:32:00,27.8538,89.5275,1.11 +2017-02-11 16:47:00,27.1537,89.53,1.09 +2017-02-11 17:02:00,26.1263,89.5025,1.09 +2017-02-11 17:17:00,26.9125,89.4925,1.1 +2017-02-11 17:32:00,23.4238,89.45,1.09 +2017-02-11 17:47:00,26.0788,89.425,1.11 +2017-02-11 18:02:00,24.7,89.385,1.12 +2017-02-11 18:17:00,24.6512,89.355,1.13 +2017-02-11 18:32:00,25.3913,89.3275,1.13 +2017-02-11 18:47:00,26.6113,89.3775,1.14 +2017-02-11 19:02:00,24.05,89.4275,1.16 +2017-02-11 19:17:00,25.6825,89.49,1.16 +2017-02-11 19:32:00,24.05,89.5275,1.17 +2017-02-11 19:47:00,24.6512,89.57,1.19 +2017-02-11 20:02:00,23.955,89.6025,1.21 +2017-02-11 20:17:00,26.415,89.6,1.24 +2017-02-11 20:32:00,25.5875,89.615,1.23 +2017-02-11 20:47:00,25.5362,89.6125,1.23 +2017-02-11 21:02:00,24.1525,89.605,1.24 +2017-02-11 21:17:00,24.0525,89.5875,1.24 +2017-02-11 21:32:00,25.5362,89.59,1.25 +2017-02-11 21:47:00,25.9325,89.59,1.25 +2017-02-11 22:02:00,27.6087,89.595,1.25 +2017-02-11 22:17:00,23.5713,89.6325,1.24 +2017-02-11 22:32:00,26.0312,89.725,1.23 +2017-02-11 22:47:00,25.7875,89.8125,1.24 +2017-02-11 23:02:00,26.5175,89.925,1.23 +2017-02-11 23:17:00,27.4575,90.0075,1.23 +2017-02-11 23:32:00,26.8675,90.075,1.23 +2017-02-11 23:47:00,26.1725,90.155,1.22 +2017-02-12 00:02:00,27.1025,90.195,1.23 +2017-02-12 00:17:00,25.0037,90.25,1.23 +2017-02-12 00:32:00,25.2513,90.285,1.22 +2017-02-12 00:47:00,28.1087,90.32,1.21 +2017-02-12 01:02:00,25.9362,90.3625,1.18 +2017-02-12 01:17:00,25.9837,90.415,1.18 +2017-02-12 01:32:00,26.0325,90.4725,1.16 +2017-02-12 01:47:00,24.8025,90.5525,1.14 +2017-02-12 02:02:00,26.9137,90.665,1.14 +2017-02-12 02:17:00,26.0338,90.83,1.13 +2017-02-12 02:32:00,25.0525,91.0075,1.13 +2017-02-12 02:47:00,26.2225,91.185,1.12 +2017-02-12 03:02:00,27.66,91.3275,1.1 +2017-02-12 03:17:00,25.9788,91.4325,1.09 +2017-02-12 03:32:00,27.01,91.545,1.07 +2017-02-12 03:47:00,25.9287,91.6425,1.06 +2017-02-12 04:02:00,26.2687,91.725,1.04 +2017-02-12 04:17:00,26.7612,91.8075,1.03 +2017-02-12 04:32:00,25.3925,91.865,1.01 +2017-02-12 04:47:00,25.5863,91.9225,0.99 +2017-02-12 05:02:00,24.155,91.9975,0.99 +2017-02-12 05:17:00,26.96,92.0475,0.97 +2017-02-12 05:32:00,25.5887,92.12,0.96 +2017-02-12 05:47:00,26.7612,92.215,0.95 +2017-02-12 06:02:00,27.3538,92.3425,0.92 +2017-02-12 06:17:00,28.2012,92.475,0.91 +2017-02-12 06:32:00,26.5638,92.57,0.89 +2017-02-12 06:47:00,25.7875,92.67,0.88 +2017-02-12 07:02:00,26.1725,92.745,0.88 +2017-02-12 07:17:00,25.395,92.78,0.87 +2017-02-12 07:32:00,26.4125,92.805,0.86 +2017-02-12 07:47:00,26.7162,92.8275,0.87 +2017-02-12 08:02:00,25.4437,92.8225,0.87 +2017-02-12 08:17:00,28.3538,92.8225,0.9 +2017-02-12 08:32:00,26.8187,92.815,0.9 +2017-02-12 08:47:00,27.055,92.7975,0.91 +2017-02-12 09:02:00,26.4137,92.775,0.92 +2017-02-12 09:17:00,26.7162,92.7625,0.93 +2017-02-12 09:32:00,26.0275,92.795,0.96 +2017-02-12 09:47:00,26.7625,92.8425,0.97 +2017-02-12 10:02:00,26.66,92.895,0.97 +2017-02-12 10:17:00,27.3525,92.955,0.98 +2017-02-12 10:32:00,27.8512,92.9675,1.0 +2017-02-12 10:47:00,25.345,92.9675,1.01 +2017-02-12 11:02:00,26.1738,92.9575,1.0 +2017-02-12 11:17:00,26.365,92.9175,1.01 +2017-02-12 11:32:00,27.7087,92.8725,1.05 +2017-02-12 11:47:00,25.6375,92.8475,1.08 +2017-02-12 12:02:00,28.1087,92.8025,1.1 +2017-02-12 12:17:00,26.03,92.75,1.09 +2017-02-12 12:32:00,25.785,92.6975,1.11 +2017-02-12 12:47:00,24.1525,92.6425,1.12 +2017-02-12 13:02:00,26.5625,92.665,1.13 +2017-02-12 13:17:00,27.0537,92.6625,1.14 +2017-02-12 13:32:00,26.17,92.685,1.15 +2017-02-12 13:47:00,24.7012,92.7025,1.15 +2017-02-12 14:02:00,27.71,92.6925,1.16 +2017-02-12 14:17:00,26.4137,92.6775,1.14 +2017-02-12 14:32:00,26.6137,92.64,1.15 +2017-02-12 14:47:00,26.4613,92.615,1.16 +2017-02-12 15:02:00,25.5925,92.575,1.15 +2017-02-12 15:17:00,27.1012,92.515,1.16 +2017-02-12 15:32:00,24.56,92.49,1.16 +2017-02-12 15:47:00,26.0762,92.46,1.19 +2017-02-12 16:02:00,26.1275,92.4325,1.19 +2017-02-12 16:17:00,26.1738,92.3975,1.18 +2017-02-12 16:32:00,24.2525,92.41,1.17 +2017-02-12 16:47:00,24.6038,92.4575,1.17 +2017-02-12 17:02:00,26.3162,92.52,1.18 +2017-02-12 17:17:00,24.8087,92.6,1.18 +2017-02-12 17:32:00,25.3913,92.665,1.17 +2017-02-12 17:47:00,25.3012,92.73,1.16 +2017-02-12 18:02:00,26.7137,92.7775,1.17 +2017-02-12 18:17:00,26.665,92.84,1.18 +2017-02-12 18:32:00,24.455,92.855,1.16 +2017-02-12 18:47:00,26.5163,92.9,1.12 +2017-02-12 19:02:00,27.0512,92.9325,1.11 +2017-02-12 19:17:00,26.1312,92.97,1.11 +2017-02-12 19:32:00,26.915,93.005,1.11 +2017-02-12 19:47:00,25.2962,93.0375,1.11 +2017-02-12 20:02:00,23.9075,93.0975,1.09 +2017-02-12 20:17:00,25.1,93.2075,1.08 +2017-02-12 20:32:00,26.4175,93.3375,1.09 +2017-02-12 20:47:00,27.055,93.425,1.07 +2017-02-12 21:02:00,26.8637,93.505,1.07 +2017-02-12 21:17:00,26.52,93.5725,1.05 +2017-02-12 21:32:00,23.91,93.5975,1.04 +2017-02-12 21:47:00,27.955,93.62,1.04 +2017-02-12 22:02:00,25.9812,93.62,1.02 +2017-02-12 22:17:00,28.46,93.605,1.02 +2017-02-12 22:32:00,26.7637,93.5725,1.0 +2017-02-12 22:47:00,25.8862,93.52,0.99 +2017-02-12 23:02:00,28.5025,93.4725,0.96 +2017-02-12 23:17:00,27.955,93.415,0.97 +2017-02-12 23:32:00,24.2075,93.365,0.97 +2017-02-12 23:47:00,23.8162,93.3425,0.96 +2017-02-13 00:02:00,24.6562,93.34,0.96 +2017-02-13 00:17:00,26.4637,93.3325,0.94 +2017-02-13 00:32:00,23.3787,93.3225,0.91 +2017-02-13 00:47:00,25.3975,93.2975,0.89 +2017-02-13 01:02:00,26.7637,93.2525,0.89 +2017-02-13 01:17:00,26.9112,93.18,0.86 +2017-02-13 01:32:00,26.615,93.1225,0.86 +2017-02-13 01:47:00,26.1725,93.0225,0.83 +2017-02-13 02:02:00,26.1287,92.9575,0.81 +2017-02-13 02:17:00,26.665,92.86,0.79 +2017-02-13 02:32:00,27.205,92.7725,0.78 +2017-02-13 02:47:00,26.4662,92.69,0.77 +2017-02-13 03:02:00,26.765,92.6275,0.74 +2017-02-13 03:17:00,25.7412,92.565,0.71 +2017-02-13 03:32:00,24.2075,92.53,0.68 +2017-02-13 03:47:00,25.5875,92.465,0.67 +2017-02-13 04:02:00,24.605,92.41,0.65 +2017-02-13 04:17:00,26.7125,92.33,0.62 +2017-02-13 04:32:00,26.13,92.2375,0.59 +2017-02-13 04:47:00,25.49,92.1325,0.56 +2017-02-13 05:02:00,27.4613,92.0175,0.55 +2017-02-13 05:17:00,25.2537,91.88,0.53 +2017-02-13 05:32:00,26.0825,91.7775,0.5 +2017-02-13 05:47:00,27.1038,91.655,0.48 +2017-02-13 06:02:00,26.5187,91.4975,0.46 +2017-02-13 06:17:00,25.6825,91.355,0.43 +2017-02-13 06:32:00,25.4863,91.245,0.41 +2017-02-13 06:47:00,24.8025,91.15,0.39 +2017-02-13 07:02:00,28.4075,91.0425,0.41 +2017-02-13 07:17:00,26.5163,90.9525,0.39 +2017-02-13 07:32:00,28.1575,90.8625,0.39 +2017-02-13 07:47:00,24.355,90.775,0.38 +2017-02-13 08:02:00,26.0312,90.665,0.38 +2017-02-13 08:17:00,27.0075,90.5875,0.4 +2017-02-13 08:32:00,25.7887,90.4775,0.41 +2017-02-13 08:47:00,28.005,90.365,0.4 +2017-02-13 09:02:00,27.6612,90.2375,0.41 +2017-02-13 09:17:00,27.3063,90.1225,0.42 +2017-02-13 09:32:00,26.2725,90.005,0.43 +2017-02-13 09:47:00,27.0062,89.88,0.47 +2017-02-13 10:02:00,25.6875,89.78,0.49 +2017-02-13 10:17:00,25.8325,89.665,0.52 +2017-02-13 10:32:00,25.3487,89.5425,0.53 +2017-02-13 10:47:00,26.6612,89.4425,0.56 +2017-02-13 11:02:00,25.6837,89.33,0.61 +2017-02-13 11:17:00,26.91,89.235,0.6 +2017-02-13 11:32:00,24.855,89.1575,0.63 +2017-02-13 11:47:00,25.8325,89.0725,0.65 +2017-02-13 12:02:00,26.5662,89.035,0.67 +2017-02-13 12:17:00,24.255,89.0525,0.69 +2017-02-13 12:32:00,26.315,89.0825,0.71 +2017-02-13 12:47:00,25.8887,89.1125,0.74 +2017-02-13 13:02:00,26.4625,89.125,0.75 +2017-02-13 13:17:00,25.8363,89.11,0.78 +2017-02-13 13:32:00,26.4125,89.0475,0.8 +2017-02-13 13:47:00,26.5675,88.9825,0.79 +2017-02-13 14:02:00,27.3587,88.935,0.77 +2017-02-13 14:17:00,23.325,88.905,0.75 +2017-02-13 14:32:00,27.0563,88.89,0.74 +2017-02-13 14:47:00,27.255,88.94,0.75 +2017-02-13 15:02:00,24.555,89.005,0.7 +2017-02-13 15:17:00,26.5687,89.0925,0.65 +2017-02-13 15:32:00,24.2575,89.23,0.62 +2017-02-13 15:47:00,26.1312,89.4,0.62 +2017-02-13 16:02:00,26.32,89.5625,0.65 +2017-02-13 16:17:00,27.3087,89.7225,0.67 +2017-02-13 16:32:00,28.3575,89.825,0.69 +2017-02-13 16:47:00,26.2712,89.905,0.7 +2017-02-13 17:02:00,27.6137,89.9,0.7 +2017-02-13 17:17:00,24.5612,89.8675,0.71 +2017-02-13 17:32:00,24.9088,89.76,0.71 +2017-02-13 17:47:00,25.935,89.6225,0.71 +2017-02-13 18:02:00,26.8675,89.46,0.74 +2017-02-13 18:17:00,26.0812,89.2575,0.76 +2017-02-13 18:32:00,25.0563,89.0425,0.79 +2017-02-13 18:47:00,24.6562,88.7975,0.79 +2017-02-13 19:02:00,25.595,88.585,0.81 +2017-02-13 19:17:00,25.7425,88.3825,0.84 +2017-02-13 19:32:00,25.2513,88.215,0.86 +2017-02-13 19:47:00,26.1325,88.0975,0.89 +2017-02-13 20:02:00,27.31,88.04,0.92 +2017-02-13 20:17:00,24.8538,88.0125,0.96 +2017-02-13 20:32:00,24.0563,87.9625,0.98 +2017-02-13 20:47:00,27.0088,87.915,0.99 +2017-02-13 21:02:00,26.1312,87.865,1.02 +2017-02-13 21:17:00,25.355,87.7975,1.04 +2017-02-13 21:32:00,23.6212,87.725,1.02 +2017-02-13 21:47:00,26.9137,87.6675,1.02 +2017-02-13 22:02:00,28.9037,87.605,1.02 +2017-02-13 22:17:00,25.6888,87.55,1.0 +2017-02-13 22:32:00,25.8887,87.5025,0.99 +2017-02-13 22:47:00,25.4437,87.465,0.98 +2017-02-13 23:02:00,26.9587,87.4475,0.98 +2017-02-13 23:17:00,26.7675,87.4775,0.97 +2017-02-13 23:32:00,26.0863,87.5475,0.94 +2017-02-13 23:47:00,25.8887,87.625,0.91 +2017-02-14 00:02:00,26.13,87.685,0.9 +2017-02-14 00:17:00,25.8375,87.7225,0.89 +2017-02-14 00:32:00,26.5163,87.725,0.87 +2017-02-14 00:47:00,27.1062,87.71,0.86 +2017-02-14 01:02:00,27.6625,87.695,0.84 +2017-02-14 01:17:00,23.4737,87.67,0.83 +2017-02-14 01:32:00,26.865,87.6525,0.81 +2017-02-14 01:47:00,24.2575,87.615,0.79 +2017-02-14 02:02:00,25.835,87.5925,0.77 +2017-02-14 02:17:00,27.0075,87.545,0.74 +2017-02-14 02:32:00,24.3063,87.52,0.72 +2017-02-14 02:47:00,24.91,87.515,0.7 +2017-02-14 03:02:00,25.1025,87.555,0.68 +2017-02-14 03:17:00,25.9325,87.64,0.66 +2017-02-14 03:32:00,25.6888,87.7275,0.63 +2017-02-14 03:47:00,26.5187,87.7875,0.59 +2017-02-14 04:02:00,28.11,87.8475,0.56 +2017-02-14 04:17:00,27.1575,87.8525,0.53 +2017-02-14 04:32:00,25.54,87.865,0.52 +2017-02-14 04:47:00,26.3675,87.825,0.47 +2017-02-14 05:02:00,26.8675,87.785,0.44 +2017-02-14 05:17:00,25.5387,87.7175,0.42 +2017-02-14 05:32:00,25.4887,87.655,0.39 +2017-02-14 05:47:00,25.6375,87.565,0.35 +2017-02-14 06:02:00,26.2712,87.47,0.3 +2017-02-14 06:17:00,25.9825,87.3875,0.25 +2017-02-14 06:32:00,24.555,87.325,0.2 +2017-02-14 06:47:00,24.7487,87.2875,0.18 +2017-02-14 07:02:00,26.415,87.2575,0.16 +2017-02-14 07:17:00,24.9575,87.1975,0.17 +2017-02-14 07:32:00,27.1025,87.125,0.18 +2017-02-14 07:47:00,24.2537,87.015,0.2 +2017-02-14 08:02:00,25.4875,86.9075,0.21 +2017-02-14 08:17:00,27.5075,86.79,0.23 +2017-02-14 08:32:00,25.8825,86.68,0.24 +2017-02-14 08:47:00,25.9825,86.58,0.28 +2017-02-14 09:02:00,26.465,86.515,0.31 +2017-02-14 09:17:00,26.6125,86.48,0.32 +2017-02-14 09:32:00,26.27,86.475,0.36 +2017-02-14 09:47:00,25.7875,86.465,0.46 +2017-02-14 10:02:00,25.3,86.5075,0.56 +2017-02-14 10:17:00,25.6862,86.495,0.61 +2017-02-14 10:32:00,24.055,86.485,0.65 +2017-02-14 10:47:00,25.3,86.475,0.72 +2017-02-14 11:02:00,26.2675,86.435,0.78 +2017-02-14 11:17:00,27.3087,86.4075,0.77 +2017-02-14 11:32:00,27.7525,86.425,0.75 +2017-02-14 11:47:00,25.7387,86.4925,0.78 +2017-02-14 12:02:00,28.9962,86.565,0.8 +2017-02-14 12:17:00,26.4675,86.63,0.79 +2017-02-14 12:32:00,27.3037,86.67,0.79 +2017-02-14 12:47:00,25.9837,86.705,0.82 +2017-02-14 13:02:00,26.0312,86.7275,0.84 +2017-02-14 13:17:00,25.1062,86.7375,0.83 +2017-02-14 13:32:00,25.7375,86.7125,0.76 +2017-02-14 13:47:00,23.9088,86.7025,0.66 +2017-02-14 14:02:00,27.7137,86.7425,0.59 +2017-02-14 14:17:00,26.1275,86.8,0.57 +2017-02-14 14:32:00,24.9538,86.84,0.57 +2017-02-14 14:47:00,26.7175,86.8725,0.57 +2017-02-14 15:02:00,24.6562,86.9,0.56 +2017-02-14 15:17:00,27.5112,86.8725,0.54 +2017-02-14 15:32:00,27.5587,86.8325,0.52 +2017-02-14 15:47:00,25.8913,86.775,0.5 +2017-02-14 16:02:00,26.3675,86.6975,0.52 +2017-02-14 16:17:00,25.6375,86.625,0.52 +2017-02-14 16:32:00,27.66,86.585,0.51 +2017-02-14 16:47:00,25.885,86.565,0.5 +2017-02-14 17:02:00,25.6413,86.5725,0.49 +2017-02-14 17:17:00,26.1287,86.5325,0.49 +2017-02-14 17:32:00,26.315,86.4875,0.48 +2017-02-14 17:47:00,26.7188,86.4225,0.48 +2017-02-14 18:02:00,26.96,86.37,0.48 +2017-02-14 18:17:00,25.9275,86.28,0.5 +2017-02-14 18:32:00,25.9337,86.1875,0.52 +2017-02-14 18:47:00,25.49,86.12,0.53 +2017-02-14 19:02:00,25.8875,86.1,0.54 +2017-02-14 19:17:00,26.5675,86.125,0.55 +2017-02-14 19:32:00,23.615,86.1425,0.57 +2017-02-14 19:47:00,24.4075,86.1875,0.6 +2017-02-14 20:02:00,24.9075,86.215,0.65 +2017-02-14 20:17:00,26.2712,86.2125,0.68 +2017-02-14 20:32:00,26.1738,86.22,0.72 +2017-02-14 20:47:00,26.9637,86.225,0.74 +2017-02-14 21:02:00,25.4912,86.245,0.76 +2017-02-14 21:17:00,25.7387,86.29,0.78 +2017-02-14 21:32:00,27.0587,86.37,0.79 +2017-02-14 21:47:00,27.1525,86.445,0.81 +2017-02-14 22:02:00,27.2038,86.5125,0.82 +2017-02-14 22:17:00,25.3475,86.5825,0.81 +2017-02-14 22:32:00,25.1525,86.6175,0.81 +2017-02-14 22:47:00,26.415,86.6675,0.81 +2017-02-14 23:02:00,26.8625,86.6875,0.8 +2017-02-14 23:17:00,27.2038,86.705,0.8 +2017-02-14 23:32:00,26.03,86.7375,0.79 +2017-02-14 23:47:00,27.5563,86.7925,0.79 +2017-02-15 00:02:00,26.03,86.8575,0.77 +2017-02-15 00:17:00,27.0537,86.9025,0.75 +2017-02-15 00:32:00,27.105,86.9425,0.74 +2017-02-15 00:47:00,25.4425,86.9375,0.73 +2017-02-15 01:02:00,24.605,86.9,0.71 +2017-02-15 01:17:00,28.1588,86.84,0.71 +2017-02-15 01:32:00,27.255,86.78,0.7 +2017-02-15 01:47:00,27.2537,86.72,0.69 +2017-02-15 02:02:00,26.415,86.695,0.67 +2017-02-15 02:17:00,25.6862,86.675,0.65 +2017-02-15 02:32:00,26.37,86.645,0.64 +2017-02-15 02:47:00,25.7887,86.6025,0.63 +2017-02-15 03:02:00,26.4137,86.525,0.61 +2017-02-15 03:17:00,23.5725,86.4475,0.58 +2017-02-15 03:32:00,25.9337,86.335,0.57 +2017-02-15 03:47:00,26.5137,86.23,0.55 +2017-02-15 04:02:00,23.6175,86.11,0.53 +2017-02-15 04:17:00,27.5575,86.025,0.49 +2017-02-15 04:32:00,24.1512,85.9775,0.47 +2017-02-15 04:47:00,25.0525,85.915,0.45 +2017-02-15 05:02:00,23.57,85.8625,0.42 +2017-02-15 05:17:00,24.0537,85.7725,0.38 +2017-02-15 05:32:00,25.785,85.6475,0.33 +2017-02-15 05:47:00,26.8112,85.5225,0.31 +2017-02-15 06:02:00,25.2988,85.345,0.28 +2017-02-15 06:17:00,26.3662,85.1675,0.25 +2017-02-15 06:32:00,24.6512,85.005,0.23 +2017-02-15 06:47:00,28.2562,84.8475,0.2 +2017-02-15 07:02:00,25.4875,84.74,0.18 +2017-02-15 07:17:00,27.5062,84.64,0.16 +2017-02-15 07:32:00,26.2175,84.3925,0.15 +2017-02-15 07:47:00,26.765,84.0025,0.17 +2017-02-15 08:02:00,24.0987,83.6325,0.18 +2017-02-15 08:17:00,25.4863,83.3325,0.2 +2017-02-15 08:32:00,26.615,83.05,0.21 +2017-02-15 08:47:00,24.6512,82.825,0.24 +2017-02-15 09:02:00,26.515,82.68,0.27 +2017-02-15 09:17:00,25.8838,82.64,0.31 +2017-02-15 09:32:00,27.61,82.75,0.35 +2017-02-15 09:47:00,27.0525,82.955,0.39 +2017-02-15 10:02:00,25.7387,83.18,0.42 +2017-02-15 10:17:00,26.715,83.43,0.45 +2017-02-15 10:32:00,24.6537,83.7,0.49 +2017-02-15 10:47:00,24.1012,83.965,0.53 +2017-02-15 11:02:00,25.0075,84.2275,0.59 +2017-02-15 11:17:00,26.0812,84.4675,0.66 +2017-02-15 11:32:00,24.9062,84.6725,0.69 +2017-02-15 11:47:00,27.8087,84.8475,0.71 +2017-02-15 12:02:00,25.155,85.03,0.72 +2017-02-15 12:17:00,27.9075,85.1825,0.75 +2017-02-15 12:32:00,26.4163,85.3225,0.78 +2017-02-15 12:47:00,27.0088,85.4575,0.8 +2017-02-15 13:02:00,26.865,85.5825,0.83 +2017-02-15 13:17:00,27.1075,85.6875,0.85 +2017-02-15 13:32:00,26.6675,85.775,0.85 +2017-02-15 13:47:00,25.4912,85.8375,0.86 +2017-02-15 14:02:00,25.9337,85.825,0.88 +2017-02-15 14:17:00,25.105,85.73,0.9 +2017-02-15 14:32:00,26.2712,85.5875,0.9 +2017-02-15 14:47:00,28.0587,85.45,0.9 +2017-02-15 15:02:00,26.9163,85.31,0.89 +2017-02-15 15:17:00,26.77,85.215,0.89 +2017-02-15 15:32:00,24.6075,85.1525,0.89 +2017-02-15 15:47:00,24.9088,85.115,0.9 +2017-02-15 16:02:00,24.8587,85.11,0.92 +2017-02-15 16:17:00,25.1575,85.1125,0.96 +2017-02-15 16:32:00,23.8613,85.11,0.98 +2017-02-15 16:47:00,27.6113,85.095,0.99 +2017-02-15 17:02:00,26.5212,85.0925,1.0 +2017-02-15 17:17:00,25.1588,85.0925,0.99 +2017-02-15 17:32:00,27.065,85.11,1.0 +2017-02-15 17:47:00,28.4137,85.0875,1.02 +2017-02-15 18:02:00,26.9637,85.015,1.04 +2017-02-15 18:17:00,25.89,84.94,1.04 +2017-02-15 18:32:00,26.5713,84.855,1.05 +2017-02-15 18:47:00,25.7913,84.8225,1.07 +2017-02-15 19:02:00,27.615,84.8475,1.11 +2017-02-15 19:17:00,28.0112,84.9175,1.14 +2017-02-15 19:32:00,24.7075,85.02,1.18 +2017-02-15 19:47:00,25.4925,85.1325,1.21 +2017-02-15 20:02:00,28.8037,85.2625,1.21 +2017-02-15 20:17:00,25.01,85.41,1.24 +2017-02-15 20:32:00,26.6212,85.5875,1.27 +2017-02-15 20:47:00,25.8412,85.7625,1.32 +2017-02-15 21:02:00,24.3175,85.95,1.35 +2017-02-15 21:17:00,26.4225,86.2,1.37 +2017-02-15 21:32:00,27.3138,86.425,1.41 +2017-02-15 21:47:00,26.4662,86.61,1.44 +2017-02-15 22:02:00,26.87,86.74,1.45 +2017-02-15 22:17:00,26.9187,86.855,1.47 +2017-02-15 22:32:00,24.9625,86.9775,1.48 +2017-02-15 22:47:00,24.26,87.14,1.48 +2017-02-15 23:02:00,26.8662,87.3425,1.47 +2017-02-15 23:17:00,25.9863,87.5125,1.47 +2017-02-15 23:32:00,26.4737,87.74,1.47 +2017-02-15 23:47:00,26.5212,87.9725,1.43 +2017-02-16 00:02:00,25.69,88.185,1.41 +2017-02-16 00:17:00,26.6175,88.395,1.4 +2017-02-16 00:32:00,29.385,88.605,1.4 +2017-02-16 00:47:00,25.3512,88.78,1.39 +2017-02-16 01:02:00,24.005,88.955,1.37 +2017-02-16 01:17:00,28.7513,89.1275,1.37 +2017-02-16 01:32:00,25.2562,89.2725,1.36 +2017-02-16 01:47:00,27.2562,89.35,1.36 +2017-02-16 02:02:00,25.9875,89.3775,1.35 +2017-02-16 02:17:00,26.2225,89.355,1.34 +2017-02-16 02:32:00,27.105,89.3375,1.34 +2017-02-16 02:47:00,25.9362,89.3275,1.33 +2017-02-16 03:02:00,26.87,89.3375,1.29 +2017-02-16 03:17:00,26.2712,89.3675,1.27 +2017-02-16 03:32:00,26.415,89.445,1.25 +2017-02-16 03:47:00,27.105,89.475,1.23 +2017-02-16 04:02:00,26.1775,89.51,1.19 +2017-02-16 04:17:00,25.835,89.535,1.14 +2017-02-16 04:32:00,27.2038,89.545,1.09 +2017-02-16 04:47:00,26.8675,89.54,1.06 +2017-02-16 05:02:00,26.3237,89.5175,1.02 +2017-02-16 05:17:00,25.69,89.5,0.99 +2017-02-16 05:32:00,25.7937,89.4375,0.96 +2017-02-16 05:47:00,27.8587,89.3375,0.91 +2017-02-16 06:02:00,28.1062,89.1975,0.9 +2017-02-16 06:17:00,26.57,89.0825,0.88 +2017-02-16 06:32:00,26.2288,88.965,0.84 +2017-02-16 06:47:00,28.11,88.845,0.8 +2017-02-16 07:02:00,26.7188,88.7275,0.75 +2017-02-16 07:17:00,26.9187,88.6475,0.74 +2017-02-16 07:32:00,25.3988,88.59,0.75 +2017-02-16 07:47:00,25.885,88.5675,0.75 +2017-02-16 08:02:00,25.9362,88.5675,0.74 +2017-02-16 08:17:00,25.395,88.5625,0.75 +2017-02-16 08:32:00,27.5088,88.5525,0.78 +2017-02-16 08:47:00,26.4688,88.5575,0.81 +2017-02-16 09:02:00,24.1575,88.5525,0.85 +2017-02-16 09:17:00,26.9625,88.545,0.89 +2017-02-16 09:32:00,24.4062,88.5125,0.95 +2017-02-16 09:47:00,26.18,88.49,1.01 +2017-02-16 10:02:00,28.265,88.4225,1.06 +2017-02-16 10:17:00,25.7438,88.315,1.12 +2017-02-16 10:32:00,26.5687,88.2,1.17 +2017-02-16 10:47:00,25.1075,88.09,1.23 +2017-02-16 11:02:00,26.42,87.9775,1.3 +2017-02-16 11:17:00,26.2312,87.91,1.39 +2017-02-16 11:32:00,28.1625,87.8475,1.45 +2017-02-16 11:47:00,28.9987,87.8,1.5 +2017-02-16 12:02:00,25.84,87.78,1.51 +2017-02-16 12:17:00,24.7075,87.755,1.54 +2017-02-16 12:32:00,25.5437,87.7425,1.59 +2017-02-16 12:47:00,25.2062,87.7175,1.63 +2017-02-16 13:02:00,26.5713,87.705,1.67 +2017-02-16 13:17:00,25.2588,87.705,1.69 +2017-02-16 13:32:00,27.4675,87.6975,1.72 +2017-02-16 13:47:00,24.37,87.6425,1.77 +2017-02-16 14:02:00,24.955,87.59,1.8 +2017-02-16 14:17:00,25.2038,87.515,1.82 +2017-02-16 14:32:00,25.5425,87.3925,1.83 +2017-02-16 14:47:00,25.7925,87.275,1.83 +2017-02-16 15:02:00,27.465,87.1925,1.82 +2017-02-16 15:17:00,25.8375,87.12,1.81 +2017-02-16 15:32:00,24.9137,87.0825,1.83 +2017-02-16 15:47:00,26.7225,87.0525,1.84 +2017-02-16 16:02:00,23.3825,87.06,1.84 +2017-02-16 16:17:00,24.76,87.06,1.86 +2017-02-16 16:32:00,25.0125,87.075,1.89 +2017-02-16 16:47:00,26.3737,87.08,1.89 +2017-02-16 17:02:00,26.5212,87.085,1.88 +2017-02-16 17:17:00,26.4212,87.1125,1.88 +2017-02-16 17:32:00,26.6237,87.1325,1.91 +2017-02-16 17:47:00,24.6125,87.1525,1.95 +2017-02-16 18:02:00,26.6225,87.18,1.98 +2017-02-16 18:17:00,25.3562,87.18,2.02 +2017-02-16 18:32:00,24.315,87.1775,2.05 +2017-02-16 18:47:00,25.5938,87.17,2.08 +2017-02-16 19:02:00,25.8875,87.155,2.12 +2017-02-16 19:17:00,26.965,87.1425,2.16 +2017-02-16 19:32:00,26.4725,87.1625,2.19 +2017-02-16 19:47:00,27.4088,87.185,2.22 +2017-02-16 20:02:00,25.1612,87.2175,2.26 +2017-02-16 20:17:00,25.8387,87.26,2.3 +2017-02-16 20:32:00,23.5275,87.315,2.34 +2017-02-16 20:47:00,26.2775,87.3775,2.37 +2017-02-16 21:02:00,26.1375,87.45,2.4 +2017-02-16 21:17:00,25.16,87.54,2.43 +2017-02-16 21:32:00,27.465,87.625,2.46 +2017-02-16 21:47:00,26.2762,87.7175,2.47 +2017-02-16 22:02:00,26.185,87.79,2.47 +2017-02-16 22:17:00,25.5963,87.8675,2.44 +2017-02-16 22:32:00,26.8712,87.9075,2.44 +2017-02-16 22:47:00,25.3613,87.9575,2.45 +2017-02-16 23:02:00,26.0375,88.025,2.47 +2017-02-16 23:17:00,26.2775,88.065,2.47 +2017-02-16 23:32:00,27.2637,88.1275,2.45 +2017-02-16 23:47:00,27.26,88.2025,2.44 +2017-02-17 00:02:00,27.7663,88.2825,2.45 +2017-02-17 00:17:00,26.575,88.375,2.47 +2017-02-17 00:32:00,26.9675,88.465,2.49 +2017-02-17 00:47:00,26.7225,88.5525,2.5 +2017-02-17 01:02:00,24.91,88.6525,2.5 +2017-02-17 01:17:00,23.7738,88.735,2.51 +2017-02-17 01:32:00,26.2262,88.825,2.52 +2017-02-17 01:47:00,26.8737,88.9,2.54 +2017-02-17 02:02:00,28.855,88.965,2.56 +2017-02-17 02:17:00,27.16,89.0075,2.55 +2017-02-17 02:32:00,26.5262,89.0725,2.55 +2017-02-17 02:47:00,25.8925,89.1375,2.55 +2017-02-17 03:02:00,25.645,89.2075,2.55 +2017-02-17 03:17:00,23.775,89.2875,2.54 +2017-02-17 03:32:00,27.21,89.36,2.53 +2017-02-17 03:47:00,25.4512,89.44,2.49 +2017-02-17 04:02:00,26.4713,89.535,2.46 +2017-02-17 04:17:00,24.6612,89.635,2.42 +2017-02-17 04:32:00,26.7738,89.73,2.39 +2017-02-17 04:47:00,28.5163,89.8175,2.35 +2017-02-17 05:02:00,25.45,89.9,2.3 +2017-02-17 05:17:00,25.84,90.0,2.27 +2017-02-17 05:32:00,27.1113,90.105,2.27 +2017-02-17 05:47:00,27.3625,90.18,2.26 +2017-02-17 06:02:00,28.365,90.255,2.24 +2017-02-17 06:17:00,26.6738,90.2975,2.21 +2017-02-17 06:32:00,26.3288,90.335,2.21 +2017-02-17 06:47:00,26.7725,90.395,2.19 +2017-02-17 07:02:00,26.2325,90.43,2.19 +2017-02-17 07:17:00,29.1,90.455,2.22 +2017-02-17 07:32:00,25.0662,90.5,2.25 +2017-02-17 07:47:00,25.16,90.5475,2.26 +2017-02-17 08:02:00,26.8237,90.6,2.27 +2017-02-17 08:17:00,23.7738,90.64,2.26 +2017-02-17 08:32:00,26.8725,90.675,2.29 +2017-02-17 08:47:00,25.5462,90.7125,2.31 +2017-02-17 09:02:00,25.895,90.76,2.35 +2017-02-17 09:17:00,27.7663,90.78,2.39 +2017-02-17 09:32:00,25.1588,90.805,2.43 +2017-02-17 09:47:00,25.8937,90.775,2.51 +2017-02-17 10:02:00,24.6137,90.755,2.55 +2017-02-17 10:17:00,26.5762,90.69,2.55 +2017-02-17 10:32:00,23.2412,90.65,2.6 +2017-02-17 10:47:00,26.9212,90.565,2.64 +2017-02-17 11:02:00,24.9625,90.535,2.67 +2017-02-17 11:17:00,24.965,90.5,2.68 +2017-02-17 11:32:00,25.89,90.465,2.7 +2017-02-17 11:47:00,26.33,90.46,2.73 +2017-02-17 12:02:00,26.1837,90.4425,2.76 +2017-02-17 12:17:00,25.8475,90.43,2.77 +2017-02-17 12:32:00,26.1375,90.4125,2.78 +2017-02-17 12:47:00,26.8737,90.405,2.79 +2017-02-17 13:02:00,26.775,90.385,2.8 +2017-02-17 13:17:00,25.2087,90.3625,2.82 +2017-02-17 13:32:00,27.4175,90.33,2.84 +2017-02-17 13:47:00,26.625,90.3,2.87 +2017-02-17 14:02:00,27.2675,90.2275,2.89 +2017-02-17 14:17:00,23.7288,90.175,2.89 +2017-02-17 14:32:00,27.4163,90.11,2.92 +2017-02-17 14:47:00,27.8675,90.03,2.93 +2017-02-17 15:02:00,26.3275,89.9575,2.93 +2017-02-17 15:17:00,24.52,89.88,2.92 +2017-02-17 15:32:00,24.4675,89.8225,2.91 +2017-02-17 15:47:00,25.5462,89.77,2.92 +2017-02-17 16:02:00,24.4662,89.705,2.94 +2017-02-17 16:17:00,25.0638,89.685,2.95 +2017-02-17 16:32:00,24.9163,89.6775,2.94 +2017-02-17 16:47:00,28.065,89.7,2.95 +2017-02-17 17:02:00,26.09,89.7275,2.97 +2017-02-17 17:17:00,27.7612,89.775,3.0 +2017-02-17 17:32:00,26.4725,89.84,3.03 +2017-02-17 17:47:00,27.1075,89.8975,3.05 +2017-02-17 18:02:00,26.9662,89.9825,3.06 +2017-02-17 18:17:00,26.0925,90.0725,3.08 +2017-02-17 18:32:00,26.2812,90.1575,3.09 +2017-02-17 18:47:00,27.7625,90.2425,3.12 +2017-02-17 19:02:00,25.6488,90.31,3.13 +2017-02-17 19:17:00,26.475,90.38,3.14 +2017-02-17 19:32:00,25.3125,90.455,3.16 +2017-02-17 19:47:00,25.6987,90.535,3.18 +2017-02-17 20:02:00,26.1825,90.6,3.21 +2017-02-17 20:17:00,24.7137,90.6425,3.23 +2017-02-17 20:32:00,26.5262,90.6525,3.25 +2017-02-17 20:47:00,24.9137,90.655,3.28 +2017-02-17 21:02:00,27.7663,90.6425,3.32 +2017-02-17 21:17:00,26.5262,90.6,3.35 +2017-02-17 21:32:00,27.015,90.565,3.38 +2017-02-17 21:47:00,26.1837,90.5075,3.42 +2017-02-17 22:02:00,24.8613,90.45,3.44 +2017-02-17 22:17:00,25.5987,90.415,3.48 +2017-02-17 22:32:00,25.7513,90.38,3.51 +2017-02-17 22:47:00,25.795,90.38,3.52 +2017-02-17 23:02:00,27.0612,90.3725,3.54 +2017-02-17 23:17:00,26.4225,90.4,3.56 +2017-02-17 23:32:00,25.0625,90.42,3.59 +2017-02-17 23:47:00,27.215,90.4525,3.62 +2017-02-18 00:02:00,26.0387,90.4575,3.65 +2017-02-18 00:17:00,25.6937,90.475,3.68 +2017-02-18 00:32:00,24.2175,90.5,3.69 +2017-02-18 00:47:00,26.9662,90.5325,3.72 +2017-02-18 01:02:00,25.845,90.56,3.73 +2017-02-18 01:17:00,25.9437,90.61,3.75 +2017-02-18 01:32:00,27.4625,90.6725,3.75 +2017-02-18 01:47:00,27.065,90.75,3.73 +2017-02-18 02:02:00,26.0425,90.8375,3.72 +2017-02-18 02:17:00,26.0413,90.8975,3.71 +2017-02-18 02:32:00,23.9163,90.9775,3.69 +2017-02-18 02:47:00,25.94,91.0475,3.68 +2017-02-18 03:02:00,25.3063,91.1075,3.65 +2017-02-18 03:17:00,26.7213,91.1725,3.63 +2017-02-18 03:32:00,28.7575,91.2125,3.61 +2017-02-18 03:47:00,25.4512,91.2325,3.6 +2017-02-18 04:02:00,26.5238,91.2975,3.6 +2017-02-18 04:17:00,25.9437,91.3575,3.57 +2017-02-18 04:32:00,27.2625,91.4125,3.54 +2017-02-18 04:47:00,26.1387,91.5,3.52 +2017-02-18 05:02:00,27.4175,91.5525,3.5 +2017-02-18 05:17:00,25.4012,91.62,3.5 +2017-02-18 05:32:00,26.8725,91.66,3.48 +2017-02-18 05:47:00,26.425,91.6975,3.47 +2017-02-18 06:02:00,24.8112,91.735,3.46 +2017-02-18 06:17:00,24.5175,91.7475,3.46 +2017-02-18 06:32:00,25.4,91.7775,3.45 +2017-02-18 06:47:00,23.9625,91.78,3.44 +2017-02-18 07:02:00,26.0413,91.7925,3.43 +2017-02-18 07:17:00,28.1137,91.84,3.43 +2017-02-18 07:32:00,26.2312,91.8675,3.43 +2017-02-18 07:47:00,25.9437,91.9,3.44 +2017-02-18 08:02:00,26.6237,91.9225,3.45 +2017-02-18 08:17:00,25.5537,91.945,3.45 +2017-02-18 08:32:00,26.8725,91.9425,3.45 +2017-02-18 08:47:00,26.0925,91.965,3.46 +2017-02-18 09:02:00,26.5275,91.9425,3.47 +2017-02-18 09:17:00,26.965,91.9275,3.5 +2017-02-18 09:32:00,25.2125,91.8875,3.51 +2017-02-18 09:47:00,28.2175,91.845,3.52 +2017-02-18 10:02:00,26.7262,91.8225,3.53 +2017-02-18 10:17:00,24.4187,91.795,3.53 +2017-02-18 10:32:00,26.4725,91.7775,3.52 +2017-02-18 10:47:00,27.4675,91.7625,3.53 +2017-02-18 11:02:00,26.4737,91.7525,3.53 +2017-02-18 11:17:00,26.875,91.7325,3.53 +2017-02-18 11:32:00,25.7438,91.7075,3.53 +2017-02-18 11:47:00,27.57,91.6775,3.55 +2017-02-18 12:02:00,26.2325,91.6225,3.58 +2017-02-18 12:17:00,25.845,91.6,3.61 +2017-02-18 12:32:00,26.475,91.565,3.63 +2017-02-18 12:47:00,26.23,91.5375,3.64 +2017-02-18 13:02:00,26.5737,91.5175,3.66 +2017-02-18 13:17:00,27.3138,91.5175,3.69 +2017-02-18 13:32:00,26.23,91.51,3.71 +2017-02-18 13:47:00,25.6937,91.5225,3.71 +2017-02-18 14:02:00,25.8937,91.55,3.71 +2017-02-18 14:17:00,25.845,91.55,3.71 +2017-02-18 14:32:00,25.85,91.525,3.73 +2017-02-18 14:47:00,27.4187,91.4975,3.73 +2017-02-18 15:02:00,25.2625,91.465,3.73 +2017-02-18 15:17:00,26.965,91.42,3.73 +2017-02-18 15:32:00,26.0425,91.395,3.72 +2017-02-18 15:47:00,25.75,91.3675,3.72 +2017-02-18 16:02:00,24.4175,91.33,3.73 +2017-02-18 16:17:00,25.5987,91.355,3.72 +2017-02-18 16:32:00,25.45,91.38,3.72 +2017-02-18 16:47:00,23.8662,91.4175,3.72 +2017-02-18 17:02:00,25.695,91.4425,3.72 +2017-02-18 17:17:00,26.2337,91.455,3.74 +2017-02-18 17:32:00,26.7262,91.4625,3.75 +2017-02-18 17:47:00,27.3662,91.4575,3.78 +2017-02-18 18:02:00,26.7738,91.4325,3.8 +2017-02-18 18:17:00,26.2312,91.42,3.81 +2017-02-18 18:32:00,24.1612,91.3875,3.81 +2017-02-18 18:47:00,24.9125,91.3725,3.82 +2017-02-18 19:02:00,25.7487,91.3525,3.82 +2017-02-18 19:17:00,27.5187,91.365,3.84 +2017-02-18 19:32:00,26.5275,91.4075,3.84 +2017-02-18 19:47:00,27.2162,91.455,3.83 +2017-02-18 20:02:00,24.4175,91.4925,3.85 +2017-02-18 20:17:00,26.4275,91.495,3.87 +2017-02-18 20:32:00,25.6475,91.495,3.88 +2017-02-18 20:47:00,25.21,91.4875,3.88 +2017-02-18 21:02:00,25.1625,91.475,3.88 +2017-02-18 21:17:00,26.18,91.4475,3.88 +2017-02-18 21:32:00,26.775,91.4325,3.87 +2017-02-18 21:47:00,28.7588,91.4075,3.86 +2017-02-18 22:02:00,26.3275,91.385,3.86 +2017-02-18 22:17:00,26.775,91.39,3.84 +2017-02-18 22:32:00,26.4775,91.415,3.83 +2017-02-18 22:47:00,25.0175,91.4475,3.81 +2017-02-18 23:02:00,24.0587,91.4875,3.79 +2017-02-18 23:17:00,26.7738,91.5125,3.78 +2017-02-18 23:32:00,28.3112,91.535,3.78 +2017-02-18 23:47:00,25.4463,91.54,3.76 +2017-02-19 00:02:00,25.9463,91.56,3.76 +2017-02-19 00:17:00,27.2162,91.54,3.77 +2017-02-19 00:32:00,25.2113,91.5525,3.78 +2017-02-19 00:47:00,25.5975,91.535,3.78 +2017-02-19 01:02:00,27.315,91.52,3.78 +2017-02-19 01:17:00,25.4975,91.535,3.77 +2017-02-19 01:32:00,24.81,91.55,3.75 +2017-02-19 01:47:00,27.0638,91.575,3.72 +2017-02-19 02:02:00,26.3787,91.595,3.7 +2017-02-19 02:17:00,28.015,91.59,3.68 +2017-02-19 02:32:00,26.725,91.5825,3.67 +2017-02-19 02:47:00,25.9925,91.58,3.65 +2017-02-19 03:02:00,25.9875,91.5675,3.65 +2017-02-19 03:17:00,25.3587,91.55,3.64 +2017-02-19 03:32:00,26.1837,91.535,3.62 +2017-02-19 03:47:00,25.3087,91.5025,3.61 +2017-02-19 04:02:00,27.9637,91.4775,3.61 +2017-02-19 04:17:00,25.7937,91.47,3.58 +2017-02-19 04:32:00,25.2087,91.485,3.57 +2017-02-19 04:47:00,25.5963,91.5225,3.55 +2017-02-19 05:02:00,27.765,91.545,3.53 +2017-02-19 05:17:00,24.9125,91.5575,3.52 +2017-02-19 05:32:00,24.8637,91.565,3.48 +2017-02-19 05:47:00,25.545,91.565,3.45 +2017-02-19 06:02:00,25.0163,91.56,3.44 +2017-02-19 06:17:00,25.26,91.545,3.43 +2017-02-19 06:32:00,26.7738,91.5375,3.4 +2017-02-19 06:47:00,25.6437,91.515,3.4 +2017-02-19 07:02:00,26.325,91.495,3.4 +2017-02-19 07:17:00,25.9875,91.48,3.39 +2017-02-19 07:32:00,24.8125,91.51,3.39 +2017-02-19 07:47:00,27.0625,91.5425,3.42 +2017-02-19 08:02:00,26.2775,91.5925,3.44 +2017-02-19 08:17:00,24.4125,91.62,3.47 +2017-02-19 08:32:00,24.5675,91.6575,3.48 +2017-02-19 08:47:00,27.4163,91.675,3.49 +2017-02-19 09:02:00,24.8625,91.665,3.5 +2017-02-19 09:17:00,27.8625,91.6625,3.52 +2017-02-19 09:32:00,27.3162,91.66,3.52 +2017-02-19 09:47:00,25.7475,91.6675,3.57 +2017-02-19 10:02:00,27.0137,91.6875,3.59 +2017-02-19 10:17:00,24.2162,91.7375,3.62 +2017-02-19 10:32:00,26.7738,91.7575,3.66 +2017-02-19 10:47:00,25.6963,91.7975,3.68 +2017-02-19 11:02:00,25.9425,91.8325,3.72 +2017-02-19 11:17:00,27.0137,91.8675,3.76 +2017-02-19 11:32:00,26.965,91.885,3.78 +2017-02-19 11:47:00,25.6437,91.91,3.81 +2017-02-19 12:02:00,28.465,91.9025,3.81 +2017-02-19 12:17:00,25.8375,91.9275,3.85 +2017-02-19 12:32:00,25.2062,91.925,3.87 +2017-02-19 12:47:00,25.835,91.92,3.87 +2017-02-19 13:02:00,26.4187,91.93,3.87 +2017-02-19 13:17:00,25.2025,91.975,3.87 +2017-02-19 13:32:00,26.7663,92.03,3.87 +2017-02-19 13:47:00,27.3562,92.0775,3.87 +2017-02-19 14:02:00,25.5413,92.105,3.86 +2017-02-19 14:17:00,25.3525,92.1525,3.86 +2017-02-19 14:32:00,26.8625,92.18,3.87 +2017-02-19 14:47:00,26.6137,92.2075,3.88 +2017-02-19 15:02:00,28.3587,92.2425,3.89 +2017-02-19 15:17:00,24.3012,92.2775,3.91 +2017-02-19 15:32:00,26.2637,92.305,3.94 +2017-02-19 15:47:00,25.8875,92.35,3.97 +2017-02-19 16:02:00,26.2712,92.41,3.99 +2017-02-19 16:17:00,28.5088,92.45,3.98 +2017-02-19 16:32:00,27.7525,92.51,3.98 +2017-02-19 16:47:00,28.8975,92.565,3.99 +2017-02-19 17:02:00,27.755,92.62,4.01 +2017-02-19 17:17:00,27.9512,92.645,4.04 +2017-02-19 17:32:00,26.6137,92.665,4.06 +2017-02-19 17:47:00,24.455,92.695,4.08 +2017-02-19 18:02:00,26.515,92.71,4.12 +2017-02-19 18:17:00,27.0537,92.735,4.14 +2017-02-19 18:32:00,26.7637,92.7375,4.18 +2017-02-19 18:47:00,28.5525,92.7525,4.21 +2017-02-19 19:02:00,26.7637,92.7725,4.23 +2017-02-19 19:17:00,26.4112,92.795,4.25 +2017-02-19 19:32:00,26.0338,92.8275,4.28 +2017-02-19 19:47:00,25.6837,92.85,4.31 +2017-02-19 20:02:00,25.39,92.8825,4.34 +2017-02-19 20:17:00,25.735,92.89,4.37 +2017-02-19 20:32:00,26.0788,92.8975,4.39 +2017-02-19 20:47:00,24.6488,92.91,4.41 +2017-02-19 21:02:00,25.0512,92.895,4.43 +2017-02-19 21:17:00,26.76,92.8775,4.43 +2017-02-19 21:32:00,25.2988,92.8675,4.44 +2017-02-19 21:47:00,24.7462,92.8525,4.45 +2017-02-19 22:02:00,26.6625,92.8625,4.45 +2017-02-19 22:17:00,25.4337,92.875,4.47 +2017-02-19 22:32:00,27.8538,92.89,4.47 +2017-02-19 22:47:00,26.2663,92.905,4.46 +2017-02-19 23:02:00,26.5125,92.9125,4.45 +2017-02-19 23:17:00,26.8087,92.9125,4.45 +2017-02-19 23:32:00,24.7,92.92,4.45 +2017-02-19 23:47:00,27.8512,92.9,4.46 +2017-02-20 00:02:00,25.3913,92.89,4.46 +2017-02-20 00:17:00,25.6825,92.86,4.45 +2017-02-20 00:32:00,25.095,92.8325,4.45 +2017-02-20 00:47:00,26.125,92.8025,4.45 +2017-02-20 01:02:00,26.4088,92.805,4.45 +2017-02-20 01:17:00,23.1738,92.8125,4.44 +2017-02-20 01:32:00,25.7812,92.84,4.43 +2017-02-20 01:47:00,27.7525,92.865,4.42 +2017-02-20 02:02:00,24.4512,92.8925,4.41 +2017-02-20 02:17:00,27.5512,92.8925,4.41 +2017-02-20 02:32:00,26.6625,92.9,4.39 +2017-02-20 02:47:00,26.61,92.9075,4.37 +2017-02-20 03:02:00,26.36,92.895,4.35 +2017-02-20 03:17:00,25.93,92.8725,4.34 +2017-02-20 03:32:00,27.095,92.865,4.33 +2017-02-20 03:47:00,25.7862,92.8475,4.3 +2017-02-20 04:02:00,24.2038,92.845,4.29 +2017-02-20 04:17:00,26.3562,92.885,4.28 +2017-02-20 04:32:00,27.2,92.9075,4.26 +2017-02-20 04:47:00,27.05,92.93,4.25 +2017-02-20 05:02:00,28.1012,92.9525,4.24 +2017-02-20 05:17:00,26.7125,92.9725,4.23 +2017-02-20 05:32:00,27.0,92.97,4.21 +2017-02-20 05:47:00,25.975,92.985,4.2 +2017-02-20 06:02:00,24.7438,93.0025,4.2 +2017-02-20 06:17:00,26.86,93.0,4.2 +2017-02-20 06:32:00,26.7562,92.9975,4.19 +2017-02-20 06:47:00,27.7025,93.035,4.19 +2017-02-20 07:02:00,26.4062,93.0525,4.18 +2017-02-20 07:17:00,26.9062,93.0675,4.2 +2017-02-20 07:32:00,25.7312,93.0875,4.21 +2017-02-20 07:47:00,25.8787,93.1125,4.23 +2017-02-20 08:02:00,23.1225,93.145,4.26 +2017-02-20 08:17:00,26.8562,93.155,4.3 +2017-02-20 08:32:00,26.2125,93.1525,4.35 +2017-02-20 08:47:00,25.5837,93.1625,4.39 +2017-02-20 09:02:00,24.45,93.215,4.42 +2017-02-20 09:17:00,26.025,93.17,4.46 +2017-02-20 09:32:00,26.4562,93.1775,4.5 +2017-02-20 09:47:00,27.3475,93.1725,4.52 +2017-02-20 10:02:00,27.4012,93.2025,4.56 +2017-02-20 10:17:00,26.5575,93.2075,4.58 +2017-02-20 10:32:00,27.0963,93.21,4.61 +2017-02-20 10:47:00,26.955,93.23,4.65 +2017-02-20 11:02:00,25.3887,93.27,4.67 +2017-02-20 11:17:00,26.2625,93.2875,4.7 +2017-02-20 11:32:00,27.5488,93.32,4.72 +2017-02-20 11:47:00,25.1937,93.3325,4.75 +2017-02-20 12:02:00,28.0488,93.3725,4.77 +2017-02-20 12:17:00,24.8962,93.3975,4.79 +2017-02-20 12:32:00,26.5062,93.4425,4.8 +2017-02-20 12:47:00,26.4062,93.4725,4.8 +2017-02-20 13:02:00,26.0762,93.515,4.8 +2017-02-20 13:17:00,26.3562,93.5525,4.8 +2017-02-20 13:32:00,27.8962,93.5975,4.82 +2017-02-20 13:47:00,26.61,93.67,4.82 +2017-02-20 14:02:00,26.5037,93.7175,4.82 +2017-02-20 14:17:00,26.6537,93.7625,4.81 +2017-02-20 14:32:00,26.9975,93.825,4.82 +2017-02-20 14:47:00,24.8962,93.8675,4.84 +2017-02-20 15:02:00,26.6087,93.9675,4.85 +2017-02-20 15:17:00,26.0725,94.1125,4.87 +2017-02-20 15:32:00,26.3112,94.315,4.88 +2017-02-20 15:47:00,26.0725,94.615,4.9 +2017-02-20 16:02:00,28.84,94.9325,4.91 +2017-02-20 16:17:00,25.8787,95.31,4.92 +2017-02-20 16:32:00,28.5462,95.76,4.94 +2017-02-20 16:47:00,25.525,96.155,4.95 +2017-02-20 17:02:00,27.05,96.6625,4.98 +2017-02-20 17:17:00,25.3412,97.0975,5.01 +2017-02-20 17:32:00,26.2125,97.48,5.04 +2017-02-20 17:47:00,27.0963,97.8525,5.06 +2017-02-20 18:02:00,27.5525,98.195,5.08 +2017-02-20 18:17:00,26.61,98.55,5.11 +2017-02-20 18:32:00,27.6975,98.855,5.14 +2017-02-20 18:47:00,25.6275,99.1175,5.17 +2017-02-20 19:02:00,24.4475,99.3075,5.2 +2017-02-20 19:17:00,27.8,99.5075,5.22 +2017-02-20 19:32:00,26.7038,99.6775,5.25 +2017-02-20 19:47:00,27.7062,99.775,5.26 +2017-02-20 20:02:00,26.1212,99.865,5.27 +2017-02-20 20:17:00,26.9975,99.915,5.29 +2017-02-20 20:32:00,27.0938,99.98,5.29 +2017-02-20 20:47:00,26.9975,100.015,5.31 +2017-02-20 21:02:00,27.5525,100.045,5.33 +2017-02-20 21:17:00,26.41,100.037,5.36 +2017-02-20 21:32:00,26.605,100.003,5.37 +2017-02-20 21:47:00,24.145,99.9275,5.39 +2017-02-20 22:02:00,25.9762,99.78,5.41 +2017-02-20 22:17:00,27.2438,99.6125,5.43 +2017-02-20 22:32:00,27.7012,99.4375,5.44 +2017-02-20 22:47:00,26.905,99.27,5.44 +2017-02-20 23:02:00,24.5963,99.135,5.44 +2017-02-20 23:17:00,24.8463,99.02,5.44 +2017-02-20 23:32:00,26.8562,98.895,5.45 +2017-02-20 23:47:00,26.8587,98.76,5.46 +2017-02-21 00:02:00,26.7075,98.57,5.48 +2017-02-21 00:17:00,27.4512,98.335,5.49 +2017-02-21 00:32:00,26.5587,98.095,5.5 +2017-02-21 00:47:00,25.58,97.835,5.51 +2017-02-21 01:02:00,26.5075,97.68,5.51 +2017-02-21 01:17:00,26.5088,97.5475,5.5 +2017-02-21 01:32:00,27.6525,97.4425,5.5 +2017-02-21 01:47:00,25.8763,97.36,5.48 +2017-02-21 02:02:00,25.6787,97.2825,5.48 +2017-02-21 02:17:00,25.2425,97.23,5.46 +2017-02-21 02:32:00,26.3587,97.1325,5.47 +2017-02-21 02:47:00,27.0425,97.1075,5.47 +2017-02-21 03:02:00,26.2113,97.0675,5.46 +2017-02-21 03:17:00,26.9025,97.0175,5.44 +2017-02-21 03:32:00,27.5488,96.98,5.44 +2017-02-21 03:47:00,25.73,96.9425,5.46 +2017-02-21 04:02:00,24.3962,96.895,5.47 +2017-02-21 04:17:00,27.795,96.8575,5.48 +2017-02-21 04:32:00,27.5475,96.81,5.48 +2017-02-21 04:47:00,24.995,96.72,5.5 +2017-02-21 05:02:00,26.3075,96.6075,5.51 +2017-02-21 05:17:00,25.1912,96.4625,5.52 +2017-02-21 05:32:00,26.165,96.34,5.53 +2017-02-21 05:47:00,24.5938,96.2275,5.53 +2017-02-21 06:02:00,27.7475,96.175,5.54 +2017-02-21 06:17:00,25.8275,96.1325,5.55 +2017-02-21 06:32:00,29.2825,96.1425,5.57 +2017-02-21 06:47:00,25.6787,96.145,5.57 +2017-02-21 07:02:00,26.8075,96.1475,5.58 +2017-02-21 07:17:00,26.3575,96.0675,5.6 +2017-02-21 07:32:00,24.5,95.985,5.62 +2017-02-21 07:47:00,25.6775,96.4875,5.64 +2017-02-21 08:02:00,25.58,97.2425,5.66 +2017-02-21 08:17:00,28.1525,98.03,5.68 +2017-02-21 08:32:00,25.5287,98.6725,5.72 +2017-02-21 08:47:00,27.3,99.1925,5.75 +2017-02-21 09:02:00,27.1963,99.565,5.77 +2017-02-21 09:17:00,25.8775,99.7725,5.8 +2017-02-21 09:32:00,25.53,99.89,5.83 +2017-02-21 09:47:00,29.1875,99.925,5.89 +2017-02-21 10:02:00,25.7262,99.7925,5.94 +2017-02-21 10:17:00,27.145,99.5425,5.96 +2017-02-21 10:32:00,28.1975,99.24,5.97 +2017-02-21 10:47:00,27.8475,98.92,6.02 +2017-02-21 11:02:00,24.945,98.68,6.09 +2017-02-21 11:17:00,27.8463,98.405,6.08 +2017-02-21 11:32:00,25.1413,98.15,6.05 +2017-02-21 11:47:00,27.2487,97.9425,6.05 +2017-02-21 12:02:00,27.2988,97.7025,6.06 +2017-02-21 12:17:00,27.4012,97.4475,6.1 +2017-02-21 12:32:00,27.845,97.17,6.14 +2017-02-21 12:47:00,25.9238,96.875,6.14 +2017-02-21 13:02:00,25.625,96.7,6.14 +2017-02-21 13:17:00,26.2588,96.5925,6.17 +2017-02-21 13:32:00,24.945,96.5175,6.17 +2017-02-21 13:47:00,27.0938,96.4425,6.2 +2017-02-21 14:02:00,27.4,96.38,6.2 +2017-02-21 14:17:00,27.4,96.335,6.23 +2017-02-21 14:32:00,26.6038,96.3025,6.23 +2017-02-21 14:47:00,28.74,96.25,6.23 +2017-02-21 15:02:00,28.9425,96.23,6.23 +2017-02-21 15:17:00,27.145,96.1925,6.21 +2017-02-21 15:32:00,26.555,96.1925,6.21 +2017-02-21 15:47:00,27.5,96.1825,6.21 +2017-02-21 16:02:00,24.45,96.1825,6.21 +2017-02-21 16:17:00,25.7787,96.1675,6.21 +2017-02-21 16:32:00,26.2125,96.14,6.21 +2017-02-21 16:47:00,28.2475,96.0475,6.21 +2017-02-21 17:02:00,26.755,95.95,6.23 +2017-02-21 17:17:00,25.5775,95.835,6.24 +2017-02-21 17:32:00,27.45,95.7775,6.25 +2017-02-21 17:47:00,24.9962,95.7825,6.26 +2017-02-21 18:02:00,25.6275,95.84,6.26 +2017-02-21 18:17:00,26.5987,95.8975,6.26 +2017-02-21 18:32:00,25.3887,95.94,6.26 +2017-02-21 18:47:00,28.6425,96.0025,6.27 +2017-02-21 19:02:00,26.4538,96.0925,6.26 +2017-02-21 19:17:00,28.2475,96.1725,6.27 +2017-02-21 19:32:00,25.3387,96.2625,6.28 +2017-02-21 19:47:00,26.5088,96.33,6.29 +2017-02-21 20:02:00,27.9475,96.3875,6.3 +2017-02-21 20:17:00,25.9762,96.48,6.29 +2017-02-21 20:32:00,27.7962,96.5275,6.29 +2017-02-21 20:47:00,26.8075,96.58,6.29 +2017-02-21 21:02:00,27.9437,96.6775,6.29 +2017-02-21 21:17:00,26.5088,96.7225,6.27 +2017-02-21 21:32:00,24.895,96.755,6.27 +2017-02-21 21:47:00,24.7913,96.76,6.26 +2017-02-21 22:02:00,28.3487,96.795,6.24 +2017-02-21 22:17:00,28.3487,96.8625,6.23 +2017-02-21 22:32:00,26.215,96.9925,6.21 +2017-02-21 22:47:00,28.64,97.1125,6.19 +2017-02-21 23:02:00,26.2125,97.29,6.17 +2017-02-21 23:17:00,26.3125,97.4675,6.15 +2017-02-21 23:32:00,28.4975,97.6625,6.14 +2017-02-21 23:47:00,27.2975,97.8825,6.13 +2017-02-22 00:02:00,27.2,98.06,6.1 +2017-02-22 00:17:00,28.59,98.245,6.08 +2017-02-22 00:32:00,26.6537,98.38,6.05 +2017-02-22 00:47:00,27.1475,98.545,6.02 +2017-02-22 01:02:00,26.9025,98.73,5.99 +2017-02-22 01:17:00,26.9025,98.92,5.97 +2017-02-22 01:32:00,28.2475,99.1025,5.95 +2017-02-22 01:47:00,27.395,99.275,5.93 +2017-02-22 02:02:00,27.845,99.4,5.91 +2017-02-22 02:17:00,26.705,99.4725,5.89 +2017-02-22 02:32:00,25.4313,99.5325,5.88 +2017-02-22 02:47:00,26.0725,99.6475,5.86 +2017-02-22 03:02:00,26.9487,99.8225,5.85 +2017-02-22 03:17:00,27.4987,100.015,5.84 +2017-02-22 03:32:00,27.4975,100.217,5.84 +2017-02-22 03:47:00,27.295,100.397,5.83 +2017-02-22 04:02:00,25.1912,100.58,5.81 +2017-02-22 04:17:00,26.07,100.757,5.79 +2017-02-22 04:32:00,26.1188,100.942,5.78 +2017-02-22 04:47:00,25.0925,101.152,5.79 +2017-02-22 05:02:00,27.245,101.342,5.79 +2017-02-22 05:17:00,26.3087,101.522,5.79 +2017-02-22 05:32:00,27.0462,101.74,5.79 +2017-02-22 05:47:00,29.0863,102.57,5.79 +2017-02-22 06:02:00,25.675,104.232,5.81 +2017-02-22 06:17:00,27.0462,105.595,5.83 +2017-02-22 06:32:00,26.2125,106.38,5.85 +2017-02-22 06:47:00,24.4975,106.665,5.87 +2017-02-22 07:02:00,26.8525,106.667,5.89 +2017-02-22 07:17:00,26.505,106.53,5.93 +2017-02-22 07:32:00,27.6525,106.45,5.96 +2017-02-22 07:47:00,26.0262,106.305,5.99 +2017-02-22 08:02:00,26.8037,107.115,6.03 +2017-02-22 08:17:00,28.8387,107.938,6.05 +2017-02-22 08:32:00,27.4975,108.51,6.06 +2017-02-22 08:47:00,27.0938,108.86,6.08 +2017-02-22 09:02:00,26.855,108.887,6.11 +2017-02-22 09:17:00,27.4512,108.815,6.15 +2017-02-22 09:32:00,26.9975,108.628,6.19 +2017-02-22 09:47:00,26.2125,108.332,6.25 +2017-02-22 10:02:00,27.0963,108.005,6.29 +2017-02-22 10:17:00,26.9475,107.827,6.32 +2017-02-22 10:32:00,27.5,107.595,6.33 +2017-02-22 10:47:00,28.0963,107.425,6.34 +2017-02-22 11:02:00,28.5912,107.315,6.36 +2017-02-22 11:17:00,26.9975,107.217,6.39 +2017-02-22 11:32:00,26.5537,107.135,6.42 +2017-02-22 11:47:00,25.6775,107.16,6.46 +2017-02-22 12:02:00,28.3962,107.17,6.51 +2017-02-22 12:17:00,25.0938,107.197,6.55 +2017-02-22 12:32:00,27.7,107.36,6.6 +2017-02-22 12:47:00,26.755,107.525,6.66 +2017-02-22 13:02:00,27.6525,107.845,6.72 +2017-02-22 13:17:00,28.15,108.23,6.76 +2017-02-22 13:32:00,27.4987,108.62,6.8 +2017-02-22 13:47:00,26.8988,109.097,6.83 +2017-02-22 14:02:00,27.2962,109.515,6.86 +2017-02-22 14:17:00,27.655,109.872,6.88 +2017-02-22 14:32:00,25.0925,110.162,6.9 +2017-02-22 14:47:00,23.895,110.447,6.94 +2017-02-22 15:02:00,26.7513,110.717,6.97 +2017-02-22 15:17:00,26.8525,110.94,7.02 +2017-02-22 15:32:00,27.2988,111.23,7.04 +2017-02-22 15:47:00,28.545,111.485,7.07 +2017-02-22 16:02:00,26.655,111.827,7.09 +2017-02-22 16:17:00,25.3862,112.99,7.11 +2017-02-22 16:32:00,29.42,114.158,7.17 +2017-02-22 16:47:00,28.5488,115.022,7.21 +2017-02-22 17:02:00,27.6012,115.367,7.25 +2017-02-22 17:17:00,29.4212,115.557,7.23 +2017-02-22 17:32:00,28.4987,115.685,7.24 +2017-02-22 17:47:00,27.8962,115.692,7.27 +2017-02-22 18:02:00,28.1975,115.637,7.27 +2017-02-22 18:17:00,27.2975,115.745,7.26 +2017-02-22 18:32:00,27.1963,115.722,7.25 +2017-02-22 18:47:00,28.3988,115.515,7.26 +2017-02-22 19:02:00,27.9463,115.158,7.27 +2017-02-22 19:17:00,28.3975,114.712,7.26 +2017-02-22 19:32:00,26.5062,114.26,7.26 +2017-02-22 19:47:00,28.2525,113.935,7.25 +2017-02-22 20:02:00,25.8725,113.745,7.24 +2017-02-22 20:17:00,27.9487,113.667,7.23 +2017-02-22 20:32:00,27.6525,113.602,7.22 +2017-02-22 20:47:00,27.3988,113.567,7.21 +2017-02-22 21:02:00,28.25,113.585,7.19 +2017-02-22 21:17:00,28.9887,113.545,7.16 +2017-02-22 21:32:00,28.74,113.497,7.14 +2017-02-22 21:47:00,26.8562,113.447,7.12 +2017-02-22 22:02:00,28.1025,113.357,7.11 +2017-02-22 22:17:00,25.0875,113.327,7.1 +2017-02-22 22:32:00,27.745,113.255,7.09 +2017-02-22 22:47:00,28.1537,113.17,7.06 +2017-02-22 23:02:00,26.4037,113.2,7.04 +2017-02-22 23:17:00,26.7525,113.122,7.03 +2017-02-22 23:32:00,27.695,113.012,7.02 +2017-02-22 23:47:00,26.3562,112.89,6.99 +2017-02-23 00:02:00,28.7862,112.807,6.97 +2017-02-23 00:17:00,27.6525,112.8,6.97 +2017-02-23 00:32:00,28.8862,112.81,6.96 +2017-02-23 00:47:00,27.845,112.792,6.94 +2017-02-23 01:02:00,24.9425,112.88,6.93 +2017-02-23 01:17:00,27.4463,112.95,6.91 +2017-02-23 01:32:00,29.5175,112.91,6.89 +2017-02-23 01:47:00,25.9675,112.957,6.87 +2017-02-23 02:02:00,26.7525,112.977,6.85 +2017-02-23 02:17:00,28.7875,112.997,6.83 +2017-02-23 02:32:00,27.7937,113.015,6.81 +2017-02-23 02:47:00,29.6637,113.07,6.78 +2017-02-23 03:02:00,28.2975,113.135,6.76 +2017-02-23 03:17:00,28.2937,113.165,6.75 +2017-02-23 03:32:00,27.4437,113.18,6.74 +2017-02-23 03:47:00,27.745,113.11,6.73 +2017-02-23 04:02:00,26.5013,112.985,6.72 +2017-02-23 04:17:00,27.6,112.882,6.72 +2017-02-23 04:32:00,27.9938,112.82,6.73 +2017-02-23 04:47:00,28.15,112.777,6.73 +2017-02-23 05:02:00,25.725,112.84,6.73 +2017-02-23 05:17:00,29.325,112.952,6.73 +2017-02-23 05:32:00,28.045,113.037,6.73 +2017-02-23 05:47:00,26.4538,113.135,6.72 +2017-02-23 06:02:00,28.195,113.197,6.73 +2017-02-23 06:17:00,28.495,113.285,6.72 +2017-02-23 06:32:00,28.8875,114.695,6.72 +2017-02-23 06:47:00,28.7363,115.12,6.7 +2017-02-23 07:02:00,28.0462,115.205,6.7 +2017-02-23 07:17:00,28.195,115.352,6.7 +2017-02-23 07:32:00,29.3737,115.445,6.7 +2017-02-23 07:47:00,27.7925,115.462,6.69 +2017-02-23 08:02:00,28.345,115.408,6.69 +2017-02-23 08:17:00,30.0587,115.427,6.68 +2017-02-23 08:32:00,27.1437,115.555,6.69 +2017-02-23 08:47:00,29.76,115.812,6.7 +2017-02-23 09:02:00,27.995,116.075,6.73 +2017-02-23 09:17:00,28.2975,116.842,6.73 +2017-02-23 09:32:00,28.79,118.635,6.73 +2017-02-23 09:47:00,27.7937,119.92,6.75 +2017-02-23 10:02:00,29.1813,120.645,6.77 +2017-02-23 10:17:00,28.5425,120.975,6.79 +2017-02-23 10:32:00,30.01,121.125,6.8 +2017-02-23 10:47:00,27.595,121.1,6.8 +2017-02-23 11:02:00,29.9625,121.05,6.8 +2017-02-23 11:17:00,28.7887,121.022,6.81 +2017-02-23 11:32:00,28.3988,121.12,6.81 +2017-02-23 11:47:00,28.99,121.335,6.82 +2017-02-23 12:02:00,28.295,121.542,6.84 +2017-02-23 12:17:00,29.37,121.73,6.85 +2017-02-23 12:32:00,26.7025,121.96,6.87 +2017-02-23 12:47:00,29.9088,122.085,6.9 +2017-02-23 13:02:00,30.1488,122.36,6.91 +2017-02-23 13:17:00,29.3213,122.652,6.93 +2017-02-23 13:32:00,30.0088,122.965,6.95 +2017-02-23 13:47:00,27.9962,123.265,6.95 +2017-02-23 14:02:00,28.74,123.612,6.96 +2017-02-23 14:17:00,28.7875,123.945,6.98 +2017-02-23 14:32:00,29.3725,124.39,7.01 +2017-02-23 14:47:00,30.105,124.8,7.02 +2017-02-23 15:02:00,29.4187,125.335,7.03 +2017-02-23 15:17:00,29.8162,125.893,7.03 +2017-02-23 15:32:00,30.4487,126.487,7.03 +2017-02-23 15:47:00,30.7,127.182,7.02 +2017-02-23 16:02:00,28.7387,127.997,7.02 +2017-02-23 16:17:00,29.1338,128.81,7.01 +2017-02-23 16:32:00,29.0825,129.74,7.0 +2017-02-23 16:47:00,29.8625,130.692,6.97 +2017-02-23 17:02:00,29.8637,131.77,6.95 +2017-02-23 17:17:00,29.7162,132.775,6.94 +2017-02-23 17:32:00,29.42,133.772,6.93 +2017-02-23 17:47:00,29.2337,134.562,6.91 +2017-02-23 18:02:00,30.0112,135.268,6.88 +2017-02-23 18:17:00,30.1512,135.83,6.86 +2017-02-23 18:32:00,30.2475,136.347,6.84 +2017-02-23 18:47:00,29.3275,136.72,6.82 +2017-02-23 19:02:00,29.615,137.155,6.8 +2017-02-23 19:17:00,29.665,137.475,6.78 +2017-02-23 19:32:00,30.8463,137.795,6.75 +2017-02-23 19:47:00,29.615,138.025,6.72 +2017-02-23 20:02:00,29.5175,138.287,6.69 +2017-02-23 20:17:00,29.4662,138.58,6.68 +2017-02-23 20:32:00,30.2988,138.783,6.66 +2017-02-23 20:47:00,29.3213,138.957,6.65 +2017-02-23 21:02:00,30.2988,139.195,6.64 +2017-02-23 21:17:00,29.8162,139.375,6.63 +2017-02-23 21:32:00,29.6675,139.565,6.63 +2017-02-23 21:47:00,30.9362,139.72,6.61 +2017-02-23 22:02:00,30.2012,139.897,6.59 +2017-02-23 22:17:00,31.3838,140.06,6.58 +2017-02-23 22:32:00,30.8862,140.19,6.57 +2017-02-23 22:47:00,30.8425,140.307,6.55 +2017-02-23 23:02:00,30.885,140.46,6.55 +2017-02-23 23:17:00,30.5462,140.63,6.54 +2017-02-23 23:32:00,30.8887,140.8,6.53 +2017-02-23 23:47:00,30.4475,140.93,6.52 +2017-02-24 00:02:00,30.6888,141.087,6.51 +2017-02-24 00:17:00,30.6937,141.107,6.51 +2017-02-24 00:32:00,31.4337,141.225,6.5 +2017-02-24 00:47:00,31.93,141.29,6.49 +2017-02-24 01:02:00,31.7275,141.375,6.49 +2017-02-24 01:17:00,32.375,141.44,6.48 +2017-02-24 01:32:00,31.6325,141.497,6.47 +2017-02-24 01:47:00,31.7762,141.643,6.45 +2017-02-24 02:02:00,32.7062,141.677,6.44 +2017-02-24 02:17:00,32.1263,141.867,6.41 +2017-02-24 02:32:00,30.9812,141.897,6.39 +2017-02-24 02:47:00,32.1263,141.95,6.37 +2017-02-24 03:02:00,32.5625,142.005,6.36 +2017-02-24 03:17:00,31.3775,142.035,6.34 +2017-02-24 03:32:00,31.94,142.12,6.3 +2017-02-24 03:47:00,32.39,142.217,6.28 +2017-02-24 04:02:00,32.035,142.177,6.26 +2017-02-24 04:17:00,33.9388,142.315,6.22 +2017-02-24 04:32:00,32.1275,142.37,6.19 +2017-02-24 04:47:00,33.6425,142.415,6.17 +2017-02-24 05:02:00,33.7425,142.455,6.15 +2017-02-24 05:17:00,33.495,142.455,6.12 +2017-02-24 05:32:00,34.5638,142.627,6.09 +2017-02-24 05:47:00,33.8887,142.777,6.06 +2017-02-24 06:02:00,34.6125,143.16,6.03 +2017-02-24 06:17:00,34.225,143.755,6.01 +2017-02-24 06:32:00,33.4012,144.36,6.0 +2017-02-24 06:47:00,33.2988,151.02,5.97 +2017-02-24 07:02:00,34.27,151.11,5.95 +2017-02-24 07:17:00,33.4463,150.91,5.93 +2017-02-24 07:32:00,33.3975,150.622,5.91 +2017-02-24 07:47:00,33.7438,150.477,5.9 +2017-02-24 08:02:00,34.995,150.177,5.89 +2017-02-24 08:17:00,34.3725,149.955,5.88 +2017-02-24 08:32:00,34.7125,149.82,5.87 +2017-02-24 08:47:00,33.84,149.735,5.86 +2017-02-24 09:02:00,34.0262,149.722,5.86 +2017-02-24 09:17:00,34.515,149.87,5.86 +2017-02-24 09:32:00,34.2738,150.012,5.88 +2017-02-24 09:47:00,35.045,150.292,5.88 +2017-02-24 10:02:00,33.4463,150.525,5.87 +2017-02-24 10:17:00,33.8913,150.995,5.87 +2017-02-24 10:32:00,33.9412,151.397,5.87 +2017-02-24 10:47:00,35.2412,151.825,5.89 +2017-02-24 11:02:00,33.1562,152.357,5.91 +2017-02-24 11:17:00,34.1263,153.055,5.92 +2017-02-24 11:32:00,35.2412,153.735,5.93 +2017-02-24 11:47:00,34.2225,154.345,5.96 +2017-02-24 12:02:00,34.8025,155.31,5.96 +2017-02-24 12:17:00,33.35,156.077,5.96 +2017-02-24 12:32:00,33.9875,157.042,5.97 +2017-02-24 12:47:00,34.9012,157.878,5.95 +2017-02-24 13:02:00,35.3412,158.712,5.99 +2017-02-24 13:17:00,35.3925,159.24,5.98 +2017-02-24 13:32:00,34.4688,159.82,5.97 +2017-02-24 13:47:00,34.7588,160.355,5.97 +2017-02-24 14:02:00,34.8025,160.975,5.95 +2017-02-24 14:17:00,35.4412,161.625,5.93 +2017-02-24 14:32:00,36.1787,162.253,5.92 +2017-02-24 14:47:00,34.8975,162.915,5.9 +2017-02-24 15:02:00,35.6338,163.508,5.88 +2017-02-24 15:17:00,35.4475,164.055,5.85 +2017-02-24 15:32:00,36.0362,164.612,5.82 +2017-02-24 15:47:00,35.0037,165.212,5.8 +2017-02-24 16:02:00,36.08,165.642,5.76 +2017-02-24 16:17:00,36.1738,166.07,5.73 +2017-02-24 16:32:00,35.8487,166.562,5.7 +2017-02-24 16:47:00,36.515,167.02,5.67 +2017-02-24 17:02:00,37.0075,167.47,5.64 +2017-02-24 17:17:00,37.0062,168.1,5.63 +2017-02-24 17:32:00,37.9512,171.197,5.62 +2017-02-24 17:47:00,37.0088,172.842,5.58 +2017-02-24 18:02:00,36.3262,173.79,5.55 +2017-02-24 18:17:00,37.4463,174.312,5.51 +2017-02-24 18:32:00,37.1075,174.503,5.47 +2017-02-24 18:47:00,36.4625,174.635,5.44 +2017-02-24 19:02:00,37.2937,174.625,5.4 +2017-02-24 19:17:00,37.7025,174.54,5.36 +2017-02-24 19:32:00,37.2513,174.31,5.34 +2017-02-24 19:47:00,37.9475,174.042,5.31 +2017-02-24 20:02:00,37.2012,173.94,5.29 +2017-02-24 20:17:00,37.4962,173.812,5.27 +2017-02-24 20:32:00,37.3425,173.723,5.26 +2017-02-24 20:47:00,36.8087,173.67,5.24 +2017-02-24 21:02:00,37.65,173.533,5.21 +2017-02-24 21:17:00,36.9538,173.508,5.18 +2017-02-24 21:32:00,34.995,173.362,5.14 +2017-02-24 21:47:00,36.665,173.225,5.1 +2017-02-24 22:02:00,37.4487,173.177,5.07 +2017-02-24 22:17:00,37.0575,173.098,5.04 +2017-02-24 22:32:00,38.3487,173.07,5.0 +2017-02-24 22:47:00,36.2275,172.947,4.97 +2017-02-24 23:02:00,35.3925,172.92,4.95 +2017-02-24 23:17:00,37.945,172.9,4.92 +2017-02-24 23:32:00,37.6462,172.922,4.89 +2017-02-24 23:47:00,37.645,172.922,4.86 +2017-02-25 00:02:00,36.615,172.947,4.83 +2017-02-25 00:17:00,36.2775,173.027,4.8 +2017-02-25 00:32:00,38.3462,173.103,4.76 +2017-02-25 00:47:00,37.1525,173.115,4.73 +2017-02-25 01:02:00,37.2962,173.1,4.7 +2017-02-25 01:17:00,37.1963,173.068,4.67 +2017-02-25 01:32:00,36.61,172.957,4.63 +2017-02-25 01:47:00,36.0775,172.853,4.6 +2017-02-25 02:02:00,35.39,172.785,4.56 +2017-02-25 02:17:00,34.9925,172.732,4.53 +2017-02-25 02:32:00,34.5625,172.745,4.5 +2017-02-25 02:47:00,35.9812,172.765,4.46 +2017-02-25 03:02:00,35.5425,172.758,4.43 +2017-02-25 03:17:00,35.8812,172.767,4.4 +2017-02-25 03:32:00,36.1725,172.762,4.37 +2017-02-25 03:47:00,36.765,172.755,4.34 +2017-02-25 04:02:00,36.81,172.755,4.31 +2017-02-25 04:17:00,35.7325,172.76,4.28 +2017-02-25 04:32:00,36.08,172.758,4.25 +2017-02-25 04:47:00,36.1287,172.772,4.21 +2017-02-25 05:02:00,35.83,172.8,4.18 +2017-02-25 05:17:00,36.325,172.79,4.15 +2017-02-25 05:32:00,36.2775,172.777,4.12 +2017-02-25 05:47:00,35.9325,172.772,4.09 +2017-02-25 06:02:00,36.955,172.76,4.06 +2017-02-25 06:17:00,36.9587,172.732,4.04 +2017-02-25 06:32:00,35.2925,172.695,4.01 +2017-02-25 06:47:00,36.91,172.672,4.0 +2017-02-25 07:02:00,36.515,172.637,3.99 +2017-02-25 07:17:00,36.4637,172.603,3.98 +2017-02-25 07:32:00,36.1287,172.575,3.97 +2017-02-25 07:47:00,35.8812,172.527,3.96 +2017-02-25 08:02:00,35.295,172.295,3.96 +2017-02-25 08:17:00,34.8975,171.26,3.96 +2017-02-25 08:32:00,35.5425,170.783,3.96 +2017-02-25 08:47:00,35.93,170.562,3.96 +2017-02-25 09:02:00,36.9112,170.443,3.96 +2017-02-25 09:17:00,35.6813,170.443,3.97 +2017-02-25 09:32:00,36.9062,170.462,4.0 +2017-02-25 09:47:00,36.03,170.525,4.02 +2017-02-25 10:02:00,36.4637,170.54,4.02 +2017-02-25 10:17:00,36.0788,170.647,4.03 +2017-02-25 10:32:00,36.2775,170.76,4.05 +2017-02-25 10:47:00,36.3225,170.832,4.07 +2017-02-25 11:02:00,35.6825,170.915,4.09 +2017-02-25 11:17:00,36.6612,170.967,4.1 +2017-02-25 11:32:00,35.0887,170.985,4.11 +2017-02-25 11:47:00,36.1787,171.003,4.13 +2017-02-25 12:02:00,35.8275,170.997,4.16 +2017-02-25 12:17:00,36.4575,171.02,4.17 +2017-02-25 12:32:00,34.5625,171.027,4.2 +2017-02-25 12:47:00,35.3913,171.04,4.23 +2017-02-25 13:02:00,35.09,171.022,4.26 +2017-02-25 13:17:00,35.5875,171.06,4.3 +2017-02-25 13:32:00,35.2887,171.02,4.32 +2017-02-25 13:47:00,35.935,171.045,4.33 +2017-02-25 14:02:00,35.3913,171.06,4.35 +2017-02-25 14:17:00,36.9613,171.077,4.38 +2017-02-25 14:32:00,36.0775,171.08,4.4 +2017-02-25 14:47:00,35.6338,171.075,4.41 +2017-02-25 15:02:00,35.49,171.095,4.41 +2017-02-25 15:17:00,35.685,171.095,4.41 +2017-02-25 15:32:00,34.1725,171.1,4.41 +2017-02-25 15:47:00,35.6362,171.117,4.41 +2017-02-25 16:02:00,35.0912,171.11,4.41 +2017-02-25 16:17:00,34.7588,171.1,4.42 +2017-02-25 16:32:00,35.1937,171.105,4.41 +2017-02-25 16:47:00,36.0338,171.1,4.41 +2017-02-25 17:02:00,35.5413,171.055,4.39 +2017-02-25 17:17:00,35.8275,171.095,4.38 +2017-02-25 17:32:00,35.3412,171.122,4.37 +2017-02-25 17:47:00,35.5425,171.13,4.36 +2017-02-25 18:02:00,34.3213,171.128,4.35 +2017-02-25 18:17:00,33.7438,171.092,4.34 +2017-02-25 18:32:00,35.2462,171.13,4.33 +2017-02-25 18:47:00,34.8037,171.137,4.31 +2017-02-25 19:02:00,34.7588,171.117,4.3 +2017-02-25 19:17:00,34.2663,171.103,4.28 +2017-02-25 19:32:00,34.5675,171.1,4.27 +2017-02-25 19:47:00,34.3675,171.082,4.25 +2017-02-25 20:02:00,35.34,171.047,4.23 +2017-02-25 20:17:00,34.7137,171.01,4.21 +2017-02-25 20:32:00,34.2675,170.967,4.2 +2017-02-25 20:47:00,33.7887,170.915,4.19 +2017-02-25 21:02:00,35.1437,170.872,4.18 +2017-02-25 21:17:00,34.27,170.767,4.16 +2017-02-25 21:32:00,33.895,170.753,4.15 +2017-02-25 21:47:00,34.8925,170.647,4.14 +2017-02-25 22:02:00,34.0737,170.542,4.13 +2017-02-25 22:17:00,34.5662,170.415,4.12 +2017-02-25 22:32:00,35.0875,170.353,4.11 +2017-02-25 22:47:00,34.5625,170.277,4.1 +2017-02-25 23:02:00,36.0788,170.165,4.08 +2017-02-25 23:17:00,35.0887,170.095,4.07 +2017-02-25 23:32:00,33.2513,170.035,4.06 +2017-02-25 23:47:00,35.0475,169.973,4.06 +2017-02-26 00:02:00,34.8487,169.927,4.04 +2017-02-26 00:17:00,34.2738,169.872,4.03 +2017-02-26 00:32:00,34.6113,169.84,4.02 +2017-02-26 00:47:00,34.2687,169.777,4.02 +2017-02-26 01:02:00,34.3662,169.66,4.01 +2017-02-26 01:17:00,33.2988,169.582,4.01 +2017-02-26 01:32:00,33.4938,169.348,4.0 +2017-02-26 01:47:00,33.495,168.922,3.99 +2017-02-26 02:02:00,32.465,168.615,3.98 +2017-02-26 02:17:00,33.1113,168.318,3.97 +2017-02-26 02:32:00,34.2213,168.142,3.97 +2017-02-26 02:47:00,33.345,167.967,3.95 +2017-02-26 03:02:00,33.5413,167.8,3.95 +2017-02-26 03:17:00,33.9388,167.622,3.94 +2017-02-26 03:32:00,33.2487,167.517,3.93 +2017-02-26 03:47:00,32.8587,167.345,3.92 +2017-02-26 04:02:00,34.1712,167.188,3.91 +2017-02-26 04:17:00,33.01,167.072,3.9 +2017-02-26 04:32:00,33.7887,166.935,3.9 +2017-02-26 04:47:00,33.69,166.878,3.89 +2017-02-26 05:02:00,32.76,166.795,3.89 +2017-02-26 05:17:00,33.3975,166.715,3.87 +2017-02-26 05:32:00,33.7387,166.628,3.87 +2017-02-26 05:47:00,34.4187,166.53,3.86 +2017-02-26 06:02:00,33.9837,166.455,3.86 +2017-02-26 06:17:00,32.8087,166.302,3.85 +2017-02-26 06:32:00,32.5638,166.228,3.85 +2017-02-26 06:47:00,33.8375,166.158,3.85 +2017-02-26 07:02:00,33.2988,166.122,3.85 +2017-02-26 07:17:00,33.8412,166.1,3.85 +2017-02-26 07:32:00,32.9575,166.075,3.84 +2017-02-26 07:47:00,32.5137,166.03,3.84 +2017-02-26 08:02:00,33.4925,166.005,3.84 +2017-02-26 08:17:00,33.5437,165.603,3.85 +2017-02-26 08:32:00,34.17,164.887,3.87 +2017-02-26 08:47:00,32.4625,164.217,3.87 +2017-02-26 09:02:00,33.0563,163.83,3.89 +2017-02-26 09:17:00,33.4463,163.517,3.9 +2017-02-26 09:32:00,33.5425,163.39,3.91 +2017-02-26 09:47:00,33.935,163.42,3.93 +2017-02-26 10:02:00,33.21,163.487,3.95 +2017-02-26 10:17:00,33.445,163.6,3.96 +2017-02-26 10:32:00,32.18,163.732,3.99 +2017-02-26 10:47:00,33.69,163.84,4.02 +2017-02-26 11:02:00,32.5163,163.943,4.04 +2017-02-26 11:17:00,33.5425,164.008,4.05 +2017-02-26 11:32:00,32.3213,164.033,4.08 +2017-02-26 11:47:00,34.1225,164.02,4.12 +2017-02-26 12:02:00,32.7562,163.995,4.14 +2017-02-26 12:17:00,32.0775,163.855,4.16 +2017-02-26 12:32:00,32.2738,163.72,4.19 +2017-02-26 12:47:00,32.7588,163.545,4.23 +2017-02-26 13:02:00,32.565,163.427,4.28 +2017-02-26 13:17:00,33.0062,163.272,4.32 +2017-02-26 13:32:00,32.3237,163.082,4.38 +2017-02-26 13:47:00,32.6575,162.878,4.44 +2017-02-26 14:02:00,32.125,162.685,4.49 +2017-02-26 14:17:00,32.0225,162.45,4.54 +2017-02-26 14:32:00,32.2738,162.265,4.57 +2017-02-26 14:47:00,32.5112,162.055,4.6 +2017-02-26 15:02:00,32.5137,161.848,4.63 +2017-02-26 15:17:00,32.4662,161.565,4.66 +2017-02-26 15:32:00,31.9737,161.277,4.69 +2017-02-26 15:47:00,32.61,160.962,4.72 +2017-02-26 16:02:00,32.37,160.625,4.74 +2017-02-26 16:17:00,32.2213,160.302,4.78 +2017-02-26 16:32:00,32.3225,159.975,4.8 +2017-02-26 16:47:00,32.2725,159.685,4.84 +2017-02-26 17:02:00,33.1512,159.425,4.88 +2017-02-26 17:17:00,32.705,159.155,4.91 +2017-02-26 17:32:00,32.4662,158.932,4.95 +2017-02-26 17:47:00,33.1562,158.712,4.96 +2017-02-26 18:02:00,32.03,158.46,4.97 +2017-02-26 18:17:00,32.0262,158.197,4.98 +2017-02-26 18:32:00,32.7087,157.917,4.99 +2017-02-26 18:47:00,33.4437,157.603,5.0 +2017-02-26 19:02:00,31.975,157.33,4.99 +2017-02-26 19:17:00,32.7562,157.02,4.99 +2017-02-26 19:32:00,31.6287,156.732,5.0 +2017-02-26 19:47:00,32.6125,156.48,5.0 +2017-02-26 20:02:00,32.175,156.247,5.03 +2017-02-26 20:17:00,31.6325,156.012,5.04 +2017-02-26 20:32:00,31.5325,155.785,5.06 +2017-02-26 20:47:00,32.7612,155.612,5.08 +2017-02-26 21:02:00,32.1762,155.425,5.09 +2017-02-26 21:17:00,31.5338,155.25,5.09 +2017-02-26 21:32:00,32.5125,155.052,5.09 +2017-02-26 21:47:00,31.925,154.825,5.08 +2017-02-26 22:02:00,31.6287,154.612,5.08 +2017-02-26 22:17:00,31.775,154.387,5.07 +2017-02-26 22:32:00,31.8237,154.195,5.07 +2017-02-26 22:47:00,31.9262,153.985,5.06 +2017-02-26 23:02:00,32.615,153.822,5.05 +2017-02-26 23:17:00,31.6775,153.68,5.06 +2017-02-26 23:32:00,31.7738,153.565,5.06 +2017-02-26 23:47:00,31.1287,153.452,5.07 +2017-02-27 00:02:00,32.1275,153.35,5.07 +2017-02-27 00:17:00,31.0762,153.25,5.06 +2017-02-27 00:32:00,32.325,153.085,5.06 +2017-02-27 00:47:00,32.2712,152.947,5.06 +2017-02-27 01:02:00,31.7237,152.785,5.07 +2017-02-27 01:17:00,31.6813,152.652,5.08 +2017-02-27 01:32:00,30.0563,152.497,5.08 +2017-02-27 01:47:00,32.1787,152.38,5.09 +2017-02-27 02:02:00,31.975,152.255,5.09 +2017-02-27 02:17:00,33.4463,152.143,5.11 +2017-02-27 02:32:00,32.805,152.037,5.1 +2017-02-27 02:47:00,31.9225,151.938,5.1 +2017-02-27 03:02:00,33.1512,151.825,5.11 +2017-02-27 03:17:00,31.6275,151.73,5.11 +2017-02-27 03:32:00,31.4837,151.61,5.11 +2017-02-27 03:47:00,32.3225,151.507,5.12 +2017-02-27 04:02:00,32.3237,151.382,5.12 +2017-02-27 04:17:00,31.23,151.262,5.11 +2017-02-27 04:32:00,32.465,151.152,5.1 +2017-02-27 04:47:00,32.0238,151.02,5.1 +2017-02-27 05:02:00,31.82,150.875,5.11 +2017-02-27 05:17:00,31.8787,150.72,5.1 +2017-02-27 05:32:00,32.325,150.515,5.1 +2017-02-27 05:47:00,31.0287,150.357,5.11 +2017-02-27 06:02:00,32.1775,150.205,5.12 +2017-02-27 06:17:00,31.98,150.11,5.13 +2017-02-27 06:32:00,32.2725,150.29,5.14 +2017-02-27 06:47:00,31.5825,147.085,5.16 +2017-02-27 07:02:00,31.5262,143.697,5.19 +2017-02-27 07:17:00,31.38,142.07,5.21 +2017-02-27 07:32:00,31.6338,141.415,5.24 +2017-02-27 07:47:00,30.9762,141.247,5.28 +2017-02-27 08:02:00,31.28,141.38,5.3 +2017-02-27 08:17:00,31.975,141.607,5.31 +2017-02-27 08:32:00,31.6312,141.98,5.32 +2017-02-27 08:47:00,31.8787,142.327,5.35 +2017-02-27 09:02:00,31.5825,142.692,5.37 +2017-02-27 09:17:00,31.68,143.15,5.4 +2017-02-27 09:32:00,30.5987,143.54,5.43 +2017-02-27 09:47:00,31.535,143.847,5.47 +2017-02-27 10:02:00,31.7275,144.015,5.5 +2017-02-27 10:17:00,31.28,144.11,5.54 +2017-02-27 10:32:00,32.8112,144.042,5.56 +2017-02-27 10:47:00,32.2262,143.852,5.59 +2017-02-27 11:02:00,32.1787,143.605,5.63 +2017-02-27 11:17:00,32.6575,143.268,5.68 +2017-02-27 11:32:00,32.4688,142.91,5.72 +2017-02-27 11:46:07,31.33,142.49,5.77 +2017-02-27 12:02:00,32.0312,141.938,5.86 +2017-02-27 12:17:00,31.1787,141.442,5.92 +2017-02-27 12:32:00,31.3325,141.057,5.97 +2017-02-27 12:47:00,31.28,140.71,6.01 +2017-02-27 13:02:00,30.295,140.425,6.05 +2017-02-27 13:17:00,31.43,140.242,6.09 +2017-02-27 13:32:00,30.79,140.082,6.13 +2017-02-27 13:47:00,30.7913,139.97,6.16 +2017-02-27 14:02:00,30.98,139.79,6.2 +2017-02-27 14:17:00,30.7913,139.852,6.23 +2017-02-27 14:32:00,30.84,139.737,6.27 +2017-02-27 14:47:00,32.38,139.697,6.29 +2017-02-27 15:02:00,32.1275,139.64,6.33 +2017-02-27 15:17:00,30.8838,139.625,6.37 +2017-02-27 15:32:00,31.4337,139.607,6.39 +2017-02-27 15:47:00,30.8412,139.58,6.43 +2017-02-27 16:02:00,30.935,139.72,6.47 +2017-02-27 16:17:00,31.2325,139.91,6.52 +2017-02-27 16:32:00,30.2487,140.08,6.57 +2017-02-27 16:47:00,30.9337,140.262,6.6 +2017-02-27 17:02:00,31.5375,140.385,6.63 +2017-02-27 17:17:00,32.0287,140.495,6.66 +2017-02-27 17:32:00,31.1287,140.565,6.67 +2017-02-27 17:47:00,31.7312,140.64,6.65 +2017-02-27 18:02:00,30.6012,140.7,6.64 +2017-02-27 18:17:00,31.635,140.72,6.62 +2017-02-27 18:32:00,31.2337,140.737,6.6 +2017-02-27 18:47:00,31.4887,140.752,6.57 +2017-02-27 19:02:00,31.3375,140.742,6.54 +2017-02-27 19:17:00,30.6462,140.735,6.51 +2017-02-27 19:32:00,31.535,140.74,6.49 +2017-02-27 19:47:00,30.3988,140.74,6.48 +2017-02-27 20:02:00,29.5163,140.757,6.46 +2017-02-27 20:17:00,32.2275,140.77,6.46 +2017-02-27 20:32:00,30.445,140.783,6.46 +2017-02-27 20:47:00,31.2337,140.795,6.46 +2017-02-27 21:02:00,30.3463,140.802,6.46 +2017-02-27 21:17:00,30.4512,140.83,6.46 +2017-02-27 21:32:00,30.745,140.832,6.45 +2017-02-27 21:47:00,29.965,140.847,6.42 +2017-02-27 22:02:00,31.03,140.852,6.4 +2017-02-27 22:17:00,31.6338,140.842,6.38 +2017-02-27 22:32:00,30.6387,140.775,6.37 +2017-02-27 22:47:00,29.8613,140.707,6.36 +2017-02-27 23:02:00,31.8787,140.655,6.34 +2017-02-27 23:17:00,30.5975,140.635,6.33 +2017-02-27 23:32:00,31.5362,140.6,6.32 +2017-02-27 23:47:00,30.395,140.59,6.33 +2017-02-28 00:02:00,31.3363,140.645,6.33 +2017-02-28 00:17:00,31.4863,140.675,6.33 +2017-02-28 00:32:00,30.84,140.727,6.34 +2017-02-28 00:47:00,29.6675,140.77,6.35 +2017-02-28 01:02:00,30.5938,140.805,6.36 +2017-02-28 01:17:00,30.8887,140.775,6.37 +2017-02-28 01:32:00,30.8387,140.768,6.37 +2017-02-28 01:47:00,31.2312,140.68,6.38 +2017-02-28 02:02:00,30.295,140.68,6.39 +2017-02-28 02:17:00,30.3937,140.54,6.39 +2017-02-28 02:32:00,30.6925,140.455,6.38 +2017-02-28 02:47:00,31.2838,140.432,6.39 +2017-02-28 03:02:00,32.1225,140.385,6.38 +2017-02-28 03:17:00,31.7787,140.382,6.38 +2017-02-28 03:32:00,31.1825,140.34,6.37 +2017-02-28 03:47:00,30.5963,140.312,6.38 +2017-02-28 04:02:00,31.3862,140.337,6.36 +2017-02-28 04:17:00,31.98,140.335,6.36 +2017-02-28 04:32:00,30.2462,140.268,6.35 +2017-02-28 04:47:00,30.7462,140.227,6.34 +2017-02-28 05:02:00,30.795,140.188,6.33 +2017-02-28 05:17:00,31.3312,140.158,6.31 +2017-02-28 05:32:00,30.7438,140.147,6.3 +2017-02-28 05:47:00,30.0112,140.065,6.29 +2017-02-28 06:02:00,30.9337,140.06,6.29 +2017-02-28 06:17:00,30.5925,140.04,6.28 +2017-02-28 06:32:00,31.2325,139.985,6.26 +2017-02-28 06:47:00,30.2513,139.87,6.26 +2017-02-28 07:02:00,30.4975,139.775,6.24 +2017-02-28 07:17:00,30.4463,139.717,6.23 +2017-02-28 07:32:00,30.9837,139.58,6.23 +2017-02-28 07:47:00,30.5963,139.542,6.22 +2017-02-28 08:02:00,30.795,139.432,6.21 +2017-02-28 08:17:00,31.08,139.395,6.2 +2017-02-28 08:32:00,30.8862,139.432,6.19 +2017-02-28 08:47:00,30.5975,139.375,6.19 +2017-02-28 09:02:00,29.6125,139.535,6.21 +2017-02-28 09:17:00,29.96,139.43,6.22 +2017-02-28 09:32:00,30.5475,139.377,6.23 +2017-02-28 09:47:00,30.1987,139.25,6.25 +2017-02-28 10:02:00,30.9825,139.092,6.26 +2017-02-28 10:17:00,30.4475,138.992,6.29 +2017-02-28 10:32:00,30.7425,138.925,6.31 +2017-02-28 10:47:00,30.7412,138.85,6.35 +2017-02-28 11:02:00,30.5975,138.832,6.39 +2017-02-28 11:17:00,30.7412,138.765,6.42 +2017-02-28 11:32:00,31.6287,138.685,6.45 +2017-02-28 11:47:00,30.5013,138.777,6.47 +2017-02-28 12:02:00,30.6963,138.727,6.5 +2017-02-28 12:17:00,30.4475,138.637,6.52 +2017-02-28 12:32:00,30.0075,138.602,6.56 +2017-02-28 12:47:00,30.3925,138.602,6.6 +2017-02-28 13:02:00,31.2812,138.665,6.63 +2017-02-28 13:17:00,29.32,138.715,6.66 +2017-02-28 13:32:00,30.1025,138.78,6.68 +2017-02-28 13:47:00,30.2462,138.8,6.7 +2017-02-28 14:02:00,29.0375,138.815,6.74 +2017-02-28 14:17:00,29.96,138.825,6.78 +2017-02-28 14:32:00,30.54,138.822,6.82 +2017-02-28 14:47:00,29.6137,138.832,6.86 +2017-02-28 15:02:00,30.5462,138.85,6.89 +2017-02-28 15:17:00,30.1025,138.845,6.94 +2017-02-28 15:32:00,29.4187,138.86,6.98 +2017-02-28 15:47:00,30.2487,138.887,7.01 +2017-02-28 16:02:00,31.0312,138.88,7.04 +2017-02-28 16:17:00,29.3737,138.895,7.06 +2017-02-28 16:32:00,29.2775,138.927,7.08 +2017-02-28 16:47:00,30.9325,138.945,7.11 +2017-02-28 17:02:00,30.8887,138.982,7.13 +2017-02-28 17:17:00,29.5662,138.975,7.14 +2017-02-28 17:32:00,30.5437,138.992,7.14 +2017-02-28 17:47:00,29.96,139.012,7.16 +2017-02-28 18:02:00,29.8625,139.052,7.16 +2017-02-28 18:17:00,30.6425,139.052,7.14 +2017-02-28 18:32:00,29.1825,139.08,7.11 +2017-02-28 18:47:00,29.9088,139.102,7.08 +2017-02-28 19:02:00,29.9575,139.102,7.05 +2017-02-28 19:17:00,29.7625,139.112,7.02 +2017-02-28 19:32:00,29.8587,139.125,6.99 +2017-02-28 19:47:00,30.3988,139.143,6.96 +2017-02-28 20:02:00,30.8887,139.162,6.93 +2017-02-28 20:17:00,30.155,139.167,6.91 +2017-02-28 20:32:00,29.8625,139.177,6.88 +2017-02-28 20:47:00,29.7188,139.188,6.85 +2017-02-28 21:02:00,30.0112,139.165,6.82 +2017-02-28 21:17:00,29.6175,139.152,6.79 +2017-02-28 21:32:00,30.3438,139.095,6.77 +2017-02-28 21:47:00,31.2325,139.055,6.76 +2017-02-28 22:02:00,30.5975,139.01,6.74 +2017-02-28 22:17:00,29.9637,138.96,6.72 +2017-02-28 22:32:00,30.06,138.9,6.71 +2017-02-28 22:47:00,30.695,138.817,6.7 +2017-02-28 23:02:00,30.6462,138.74,6.69 +2017-02-28 23:17:00,30.01,138.667,6.69 +2017-02-28 23:32:00,31.0812,138.617,6.69 +2017-02-28 23:47:00,30.1987,138.572,6.68 +2017-03-01 00:02:00,29.2787,138.53,6.66 +2017-03-01 00:17:00,30.2487,138.548,6.66 +2017-03-01 00:32:00,30.3975,138.57,6.66 +2017-03-01 00:47:00,30.7925,138.595,6.65 +2017-03-01 01:02:00,30.15,138.632,6.62 +2017-03-01 01:17:00,29.325,138.67,6.59 +2017-03-01 01:32:00,30.4463,138.69,6.57 +2017-03-01 01:47:00,30.0563,138.685,6.55 +2017-03-01 02:02:00,29.7162,138.705,6.52 +2017-03-01 02:17:00,30.6437,138.692,6.48 +2017-03-01 02:32:00,30.8838,138.692,6.45 +2017-03-01 02:47:00,30.2475,138.695,6.43 +2017-03-01 03:02:00,30.6912,138.702,6.41 +2017-03-01 03:17:00,29.8125,138.715,6.39 +2017-03-01 03:32:00,30.4475,138.745,6.37 +2017-03-01 03:47:00,30.9812,138.757,6.36 +2017-03-01 04:02:00,30.6437,138.765,6.33 +2017-03-01 04:17:00,30.55,138.777,6.32 +2017-03-01 04:32:00,30.4962,138.8,6.3 +2017-03-01 04:47:00,30.4987,138.825,6.28 +2017-03-01 05:02:00,29.9088,138.84,6.26 +2017-03-01 05:17:00,29.9075,138.862,6.23 +2017-03-01 05:32:00,30.195,138.887,6.21 +2017-03-01 05:47:00,29.0325,138.917,6.19 +2017-03-01 06:02:00,30.795,138.927,6.18 +2017-03-01 06:17:00,30.1025,138.938,6.15 +2017-03-01 06:32:00,30.0112,138.94,6.12 +2017-03-01 06:47:00,30.1512,138.942,6.11 +2017-03-01 07:02:00,30.445,138.952,6.1 +2017-03-01 07:17:00,30.4475,138.945,6.1 +2017-03-01 07:32:00,30.8375,138.945,6.1 +2017-03-01 07:47:00,30.1025,138.955,6.09 +2017-03-01 08:02:00,31.53,138.95,6.1 +2017-03-01 08:17:00,30.4962,138.962,6.1 +2017-03-01 08:32:00,30.3975,138.975,6.1 +2017-03-01 08:47:00,31.18,138.985,6.11 +2017-03-01 09:02:00,29.5175,139.012,6.11 +2017-03-01 09:17:00,30.1025,139.022,6.1 +2017-03-01 09:32:00,30.8838,139.048,6.1 +2017-03-01 09:47:00,31.1813,139.072,6.11 +2017-03-01 10:02:00,30.3425,139.12,6.12 +2017-03-01 10:17:00,30.3925,139.155,6.16 +2017-03-01 10:32:00,30.3962,139.21,6.2 +2017-03-01 10:47:00,29.7637,139.265,6.23 +2017-03-01 11:02:00,30.8862,139.305,6.25 +2017-03-01 11:17:00,31.385,139.298,6.26 +2017-03-01 11:32:00,30.8412,139.29,6.26 +2017-03-01 11:47:00,30.4437,139.33,6.27 +2017-03-01 12:02:00,30.8363,139.355,6.33 +2017-03-01 12:17:00,31.28,139.33,6.38 +2017-03-01 12:32:00,31.6312,139.342,6.41 +2017-03-01 12:47:00,30.9812,139.352,6.43 +2017-03-01 13:02:00,29.2787,139.317,6.45 +2017-03-01 13:17:00,30.7925,139.283,6.51 +2017-03-01 13:32:00,31.0287,139.19,6.55 +2017-03-01 13:47:00,30.64,139.035,6.56 +2017-03-01 14:02:00,29.3725,138.895,6.58 +2017-03-01 14:17:00,30.79,138.757,6.59 +2017-03-01 14:32:00,30.4463,138.48,6.61 +2017-03-01 14:47:00,30.1,138.34,6.62 +2017-03-01 15:02:00,29.3187,138.212,6.65 +2017-03-01 15:17:00,29.8138,138.12,6.68 +2017-03-01 15:32:00,29.6113,138.035,6.68 +2017-03-01 15:47:00,31.0775,137.975,6.71 +2017-03-01 16:02:00,30.8838,137.923,6.73 +2017-03-01 16:17:00,29.8112,137.917,6.76 +2017-03-01 16:32:00,30.6925,137.877,6.77 +2017-03-01 16:47:00,30.1975,137.84,6.78 +2017-03-01 17:02:00,30.4463,137.795,6.78 +2017-03-01 17:17:00,30.495,137.745,6.77 +2017-03-01 17:32:00,30.98,137.705,6.76 +2017-03-01 17:47:00,30.1537,137.66,6.74 +2017-03-01 18:02:00,29.9137,137.587,6.71 +2017-03-01 18:17:00,31.3325,137.487,6.68 +2017-03-01 18:32:00,30.6912,137.37,6.65 +2017-03-01 18:47:00,31.8763,137.242,6.63 +2017-03-01 19:02:00,30.9362,137.16,6.61 +2017-03-01 19:17:00,29.86,137.095,6.58 +2017-03-01 19:32:00,30.7887,137.05,6.55 +2017-03-01 19:47:00,31.0825,137.015,6.52 +2017-03-01 20:02:00,30.1512,136.992,6.48 +2017-03-01 20:17:00,30.1537,136.987,6.45 +2017-03-01 20:32:00,30.6437,136.972,6.42 +2017-03-01 20:47:00,30.1512,136.965,6.38 +2017-03-01 21:02:00,30.7425,136.965,6.34 +2017-03-01 21:17:00,29.7125,136.98,6.31 +2017-03-01 21:32:00,29.8125,137.0,6.29 +2017-03-01 21:47:00,30.055,137.015,6.27 +2017-03-01 22:02:00,29.7663,136.992,6.26 +2017-03-01 22:17:00,29.8587,136.992,6.25 +2017-03-01 22:32:00,30.3925,136.995,6.23 +2017-03-01 22:47:00,31.4812,137.01,6.22 +2017-03-01 23:02:00,30.5437,137.027,6.19 +2017-03-01 23:17:00,31.075,137.08,6.16 +2017-03-01 23:32:00,30.7438,137.097,6.12 +2017-03-01 23:47:00,30.7887,137.12,6.08 +2017-03-02 00:02:00,30.4437,137.152,6.05 +2017-03-02 00:17:00,31.03,137.19,6.02 +2017-03-02 00:32:00,30.445,137.215,5.99 +2017-03-02 00:47:00,30.0563,137.257,5.97 +2017-03-02 01:02:00,30.495,137.27,5.95 +2017-03-02 01:17:00,30.885,137.305,5.94 +2017-03-02 01:32:00,30.7425,137.345,5.93 +2017-03-02 01:47:00,30.445,137.372,5.92 +2017-03-02 02:02:00,29.7137,137.405,5.92 +2017-03-02 02:17:00,30.2962,137.438,5.91 +2017-03-02 02:32:00,31.1775,137.472,5.9 +2017-03-02 02:47:00,31.4325,137.645,5.9 +2017-03-02 03:02:00,30.01,137.842,5.9 +2017-03-02 03:17:00,31.1287,137.98,5.89 +2017-03-02 03:32:00,31.1263,138.04,5.87 +2017-03-02 03:47:00,30.0575,138.107,5.85 +2017-03-02 04:02:00,30.5963,138.147,5.83 +2017-03-02 04:17:00,30.595,138.173,5.81 +2017-03-02 04:32:00,30.4,138.205,5.78 +2017-03-02 04:47:00,30.5437,138.205,5.77 +2017-03-02 05:02:00,31.1338,138.23,5.74 +2017-03-02 05:17:00,31.1825,138.227,5.72 +2017-03-02 05:32:00,30.8825,138.25,5.7 +2017-03-02 05:47:00,30.595,138.135,5.69 +2017-03-02 06:02:00,31.3337,138.07,5.66 +2017-03-02 06:17:00,30.7937,138.002,5.66 +2017-03-02 06:32:00,29.4688,137.987,5.65 +2017-03-02 06:47:00,30.595,137.947,5.65 +2017-03-02 07:02:00,31.3862,137.957,5.65 +2017-03-02 07:17:00,30.2975,137.967,5.64 +2017-03-02 07:32:00,30.1525,137.947,5.65 +2017-03-02 07:47:00,30.645,137.812,5.64 +2017-03-02 08:02:00,30.345,137.682,5.66 +2017-03-02 08:17:00,30.79,137.548,5.65 +2017-03-02 08:32:00,31.0287,137.425,5.67 +2017-03-02 08:47:00,30.3962,137.28,5.64 +2017-03-02 09:02:00,30.7475,137.143,5.62 +2017-03-02 09:17:00,31.03,137.13,5.63 +2017-03-02 09:32:00,31.285,137.052,5.65 +2017-03-02 09:47:00,31.2312,137.05,5.67 +2017-03-02 10:02:00,31.4337,137.08,5.69 +2017-03-02 10:17:00,30.1038,137.112,5.68 +2017-03-02 10:32:00,31.1287,137.117,5.7 +2017-03-02 10:47:00,31.33,137.182,5.72 +2017-03-02 11:02:00,30.7412,137.192,5.74 +2017-03-02 11:17:00,31.3275,137.13,5.76 +2017-03-02 11:32:00,29.7113,137.162,5.75 +2017-03-02 11:47:00,30.7412,137.188,5.75 +2017-03-02 12:02:00,30.835,137.245,5.79 +2017-03-02 12:17:00,30.545,137.115,5.81 +2017-03-02 12:32:00,30.7937,137.022,5.81 +2017-03-02 12:47:00,30.3463,137.037,5.8 +2017-03-02 13:02:00,30.5912,137.018,5.81 +2017-03-02 13:17:00,30.6912,136.992,5.84 +2017-03-02 13:32:00,30.8375,137.045,5.86 +2017-03-02 13:47:00,31.1275,137.072,5.89 +2017-03-02 14:02:00,31.13,137.12,5.91 +2017-03-02 14:17:00,29.8587,137.09,5.95 +2017-03-02 14:32:00,30.3425,137.19,6.0 +2017-03-02 14:47:00,30.4425,137.227,6.04 +2017-03-02 15:02:00,30.01,137.285,6.07 +2017-03-02 15:17:00,30.7412,137.327,6.08 +2017-03-02 15:32:00,29.8625,137.33,6.08 +2017-03-02 15:47:00,30.5475,137.295,6.08 +2017-03-02 16:02:00,30.445,137.29,6.08 +2017-03-02 16:17:00,31.03,137.283,6.07 +2017-03-02 16:32:00,31.385,137.305,6.07 +2017-03-02 16:47:00,31.3825,137.36,6.07 +2017-03-02 17:02:00,30.7425,137.367,6.06 +2017-03-02 17:17:00,29.7175,137.345,6.05 +2017-03-02 17:32:00,30.695,137.29,6.04 +2017-03-02 17:47:00,30.1975,137.24,6.03 +2017-03-02 18:02:00,30.645,137.25,6.03 +2017-03-02 18:17:00,30.3937,137.245,6.03 +2017-03-02 18:32:00,30.6912,137.262,6.02 +2017-03-02 18:47:00,30.6425,137.275,6.0 +2017-03-02 19:02:00,30.7913,137.28,6.0 +2017-03-02 19:17:00,30.295,137.272,5.99 +2017-03-02 19:32:00,30.7425,137.287,5.98 +2017-03-02 19:47:00,30.9325,137.283,5.96 +2017-03-02 20:02:00,30.9825,137.312,5.95 +2017-03-02 20:17:00,30.6437,137.305,5.93 +2017-03-02 20:32:00,30.5462,137.325,5.92 +2017-03-02 20:47:00,30.7412,137.337,5.89 +2017-03-02 21:02:00,30.3012,137.337,5.87 +2017-03-02 21:17:00,30.5425,137.355,5.85 +2017-03-02 21:32:00,31.6787,137.357,5.83 +2017-03-02 21:47:00,30.7887,137.367,5.8 +2017-03-02 22:02:00,30.495,137.355,5.79 +2017-03-02 22:17:00,29.6113,137.352,5.78 +2017-03-02 22:32:00,30.6413,137.352,5.77 +2017-03-02 22:47:00,30.5938,137.352,5.75 +2017-03-02 23:02:00,31.6825,137.357,5.74 +2017-03-02 23:17:00,30.69,137.38,5.72 +2017-03-02 23:32:00,31.975,137.405,5.7 +2017-03-02 23:47:00,30.5425,137.427,5.68 +2017-03-03 00:02:00,31.33,137.457,5.66 +2017-03-03 00:17:00,30.64,137.497,5.65 +2017-03-03 00:32:00,30.3937,137.53,5.63 +2017-03-03 00:47:00,31.23,137.548,5.61 +2017-03-03 01:02:00,31.285,137.59,5.6 +2017-03-03 01:17:00,30.8825,137.617,5.58 +2017-03-03 01:32:00,30.4463,137.675,5.56 +2017-03-03 01:47:00,31.4812,137.717,5.53 +2017-03-03 02:02:00,30.69,137.752,5.51 +2017-03-03 02:17:00,31.13,137.807,5.49 +2017-03-03 02:32:00,31.2288,137.87,5.47 +2017-03-03 02:47:00,31.0775,137.923,5.45 +2017-03-03 03:02:00,31.125,137.982,5.44 +2017-03-03 03:17:00,32.1237,138.052,5.42 +2017-03-03 03:32:00,30.4437,138.112,5.4 +2017-03-03 03:47:00,30.7937,138.18,5.39 +2017-03-03 04:02:00,30.7838,138.262,5.37 +2017-03-03 04:17:00,31.475,138.315,5.34 +2017-03-03 04:32:00,29.76,138.387,5.32 +2017-03-03 04:47:00,30.3913,138.462,5.3 +2017-03-03 05:02:00,30.7387,138.535,5.27 +2017-03-03 05:17:00,31.0762,138.605,5.25 +2017-03-03 05:32:00,31.08,138.677,5.23 +2017-03-03 05:47:00,31.4863,138.735,5.2 +2017-03-03 06:02:00,30.1038,138.802,5.17 +2017-03-03 06:17:00,30.7425,138.877,5.15 +2017-03-03 06:32:00,30.5425,138.945,5.13 +2017-03-03 06:47:00,30.9788,139.022,5.12 +2017-03-03 07:02:00,30.445,139.095,5.11 +2017-03-03 07:17:00,30.29,139.175,5.1 +2017-03-03 07:32:00,30.8825,139.26,5.1 +2017-03-03 07:47:00,30.9325,139.33,5.1 +2017-03-03 08:02:00,30.2462,139.43,5.11 +2017-03-03 08:17:00,31.0775,139.5,5.11 +2017-03-03 08:32:00,31.3288,139.562,5.11 +2017-03-03 08:47:00,30.4437,139.637,5.12 +2017-03-03 09:02:00,30.8375,139.702,5.13 +2017-03-03 09:17:00,30.4437,139.76,5.15 +2017-03-03 09:32:00,30.4938,139.84,5.17 +2017-03-03 09:47:00,30.3913,139.915,5.18 +2017-03-03 10:02:00,29.715,139.97,5.21 +2017-03-03 10:17:00,31.4325,140.048,5.22 +2017-03-03 10:32:00,31.225,140.143,5.25 +2017-03-03 10:47:00,30.6888,140.207,5.28 +2017-03-03 11:02:00,29.4163,140.285,5.31 +2017-03-03 11:17:00,30.8412,140.357,5.36 +2017-03-03 11:32:00,30.98,140.46,5.4 +2017-03-03 11:47:00,30.79,140.542,5.43 +2017-03-03 12:02:00,30.295,140.605,5.45 +2017-03-03 12:17:00,30.74,140.667,5.5 +2017-03-03 12:32:00,31.7762,140.75,5.53 +2017-03-03 12:47:00,29.81,140.8,5.57 +2017-03-03 13:02:00,30.6425,140.872,5.62 +2017-03-03 13:17:00,30.5925,140.935,5.66 +2017-03-03 13:32:00,30.9812,141.007,5.7 +2017-03-03 13:47:00,30.7887,141.077,5.73 +2017-03-03 14:02:00,30.6413,141.125,5.77 +2017-03-03 14:17:00,30.0512,141.215,5.81 +2017-03-03 14:32:00,31.0275,141.275,5.84 +2017-03-03 14:47:00,31.88,141.332,5.87 +2017-03-03 15:02:00,30.8825,141.387,5.9 +2017-03-03 15:17:00,30.15,141.442,5.93 +2017-03-03 15:32:00,30.79,141.52,5.95 +2017-03-03 15:47:00,30.9812,141.555,5.97 +2017-03-03 16:02:00,30.79,141.622,5.98 +2017-03-03 16:17:00,30.6912,141.662,5.99 +2017-03-03 16:32:00,31.2275,141.717,6.0 +2017-03-03 16:47:00,31.5338,141.76,6.0 +2017-03-03 17:02:00,31.5825,141.795,6.01 +2017-03-03 17:17:00,30.7875,141.827,6.02 +2017-03-03 17:32:00,30.3937,141.84,6.02 +2017-03-03 17:47:00,30.69,141.887,6.02 +2017-03-03 18:02:00,31.03,141.923,6.02 +2017-03-03 18:17:00,31.2275,141.95,6.01 +2017-03-03 18:32:00,31.7275,141.972,5.99 +2017-03-03 18:47:00,30.6413,142.015,5.97 +2017-03-03 19:02:00,29.76,142.04,5.96 +2017-03-03 19:17:00,31.025,142.072,5.94 +2017-03-03 19:32:00,31.4287,142.117,5.92 +2017-03-03 19:47:00,31.2275,142.127,5.9 +2017-03-03 20:02:00,31.1738,142.17,5.89 +2017-03-03 20:17:00,30.6425,142.18,5.87 +2017-03-03 20:32:00,31.38,142.217,5.85 +2017-03-03 20:47:00,32.0788,142.235,5.84 +2017-03-03 21:02:00,30.5462,142.268,5.82 +2017-03-03 21:17:00,31.7312,142.275,5.8 +2017-03-03 21:32:00,30.4938,142.277,5.79 +2017-03-03 21:47:00,32.2725,142.287,5.77 +2017-03-03 22:02:00,30.5413,142.275,5.75 +2017-03-03 22:17:00,30.8838,142.265,5.73 +2017-03-03 22:32:00,32.4662,142.262,5.71 +2017-03-03 22:47:00,32.2275,142.265,5.7 +2017-03-03 23:02:00,32.56,142.27,5.68 +2017-03-03 23:17:00,32.0812,142.262,5.67 +2017-03-03 23:32:00,32.4662,142.225,5.66 +2017-03-03 23:47:00,31.7237,142.195,5.64 +2017-03-04 00:02:00,31.2825,142.087,5.63 +2017-03-04 00:17:00,32.1263,141.987,5.61 +2017-03-04 00:32:00,33.005,141.885,5.6 +2017-03-04 00:47:00,30.9275,141.795,5.59 +2017-03-04 01:02:00,32.08,141.725,5.57 +2017-03-04 01:17:00,31.175,141.673,5.56 +2017-03-04 01:32:00,32.5575,141.645,5.55 +2017-03-04 01:47:00,32.125,141.622,5.54 +2017-03-04 02:02:00,31.475,141.61,5.52 +2017-03-04 02:17:00,31.5312,141.602,5.51 +2017-03-04 02:32:00,31.5325,141.567,5.49 +2017-03-04 02:47:00,31.5812,141.542,5.47 +2017-03-04 03:02:00,31.775,141.52,5.46 +2017-03-04 03:17:00,31.725,141.482,5.44 +2017-03-04 03:32:00,31.2288,141.45,5.43 +2017-03-04 03:47:00,32.5625,141.415,5.41 +2017-03-04 04:02:00,31.7775,141.367,5.4 +2017-03-04 04:17:00,31.5287,141.292,5.38 +2017-03-04 04:32:00,32.1762,141.215,5.37 +2017-03-04 04:47:00,31.48,141.09,5.35 +2017-03-04 05:02:00,32.1263,141.022,5.33 +2017-03-04 05:17:00,31.4788,140.927,5.32 +2017-03-04 05:32:00,32.03,140.865,5.31 +2017-03-04 05:47:00,31.9238,140.807,5.29 +2017-03-04 06:02:00,31.7738,140.76,5.27 +2017-03-04 06:17:00,32.465,140.712,5.25 +2017-03-04 06:32:00,32.1263,140.675,5.24 +2017-03-04 06:47:00,31.8763,140.645,5.23 +2017-03-04 07:02:00,31.4775,140.605,5.23 +2017-03-04 07:17:00,32.0262,140.58,5.22 +2017-03-04 07:32:00,32.0775,140.53,5.23 +2017-03-04 07:47:00,31.7762,140.497,5.23 +2017-03-04 08:02:00,31.4313,140.417,5.24 +2017-03-04 08:17:00,32.3213,140.345,5.24 +2017-03-04 08:32:00,31.725,140.272,5.25 +2017-03-04 08:47:00,31.7762,140.19,5.27 +2017-03-04 09:02:00,31.6312,140.125,5.29 +2017-03-04 09:17:00,31.8737,140.05,5.32 +2017-03-04 09:32:00,31.6738,140.012,5.35 +2017-03-04 09:47:00,32.0762,139.985,5.38 +2017-03-04 10:02:00,31.0287,139.952,5.41 +2017-03-04 10:17:00,31.6312,139.932,5.46 +2017-03-04 10:32:00,32.0788,139.895,5.5 +2017-03-04 10:47:00,31.8262,139.895,5.55 +2017-03-04 11:02:00,33.25,139.893,5.6 +2017-03-04 11:17:00,32.1738,139.897,5.65 +2017-03-04 11:32:00,31.43,139.89,5.7 +2017-03-04 11:47:00,31.2812,139.895,5.76 +2017-03-04 12:02:00,32.175,139.887,5.81 +2017-03-04 12:17:00,31.825,139.877,5.86 +2017-03-04 12:32:00,32.6562,139.877,5.92 +2017-03-04 12:47:00,30.93,139.887,5.98 +2017-03-04 13:02:00,31.7725,139.877,6.04 +2017-03-04 13:17:00,31.48,139.852,6.09 +2017-03-04 13:32:00,32.3725,139.837,6.15 +2017-03-04 13:47:00,32.9075,139.81,6.21 +2017-03-04 14:02:00,31.8237,139.775,6.26 +2017-03-04 14:17:00,31.775,139.74,6.3 +2017-03-04 14:32:00,30.8825,139.715,6.35 +2017-03-04 14:47:00,32.1237,139.697,6.4 +2017-03-04 15:02:00,32.6062,139.69,6.46 +2017-03-04 15:17:00,31.9775,139.7,6.51 +2017-03-04 15:32:00,32.1275,139.7,6.55 +2017-03-04 15:47:00,32.42,139.67,6.59 +2017-03-04 16:02:00,31.8725,139.688,6.62 +2017-03-04 16:17:00,30.9313,139.688,6.65 +2017-03-04 16:32:00,31.825,139.685,6.67 +2017-03-04 16:47:00,30.2425,139.685,6.68 +2017-03-04 17:02:00,31.4812,139.688,6.69 +2017-03-04 17:17:00,32.42,139.665,6.7 +2017-03-04 17:32:00,30.5912,139.643,6.7 +2017-03-04 17:47:00,31.9737,139.612,6.7 +2017-03-04 18:02:00,30.885,139.575,6.69 +2017-03-04 18:17:00,30.7412,139.548,6.68 +2017-03-04 18:32:00,31.7762,139.533,6.67 +2017-03-04 18:47:00,30.8838,139.53,6.65 +2017-03-04 19:02:00,31.4812,139.527,6.64 +2017-03-04 19:17:00,31.03,139.54,6.62 +2017-03-04 19:32:00,31.53,139.533,6.61 +2017-03-04 19:47:00,30.3438,139.542,6.59 +2017-03-04 20:02:00,31.725,139.55,6.57 +2017-03-04 20:17:00,31.925,139.533,6.56 +2017-03-04 20:32:00,32.4212,139.533,6.55 +2017-03-04 20:47:00,31.2312,139.52,6.53 +2017-03-04 21:02:00,31.7738,139.507,6.52 +2017-03-04 21:17:00,31.53,139.45,6.51 +2017-03-04 21:32:00,30.59,139.397,6.5 +2017-03-04 21:47:00,30.2412,139.325,6.48 +2017-03-04 22:02:00,31.2312,139.257,6.47 +2017-03-04 22:17:00,30.985,139.212,6.45 +2017-03-04 22:32:00,31.1287,139.147,6.44 +2017-03-04 22:47:00,30.6437,139.087,6.43 +2017-03-04 23:02:00,32.6562,138.982,6.42 +2017-03-04 23:17:00,31.7762,138.877,6.42 +2017-03-04 23:32:00,31.385,138.768,6.41 +2017-03-04 23:47:00,31.0788,138.635,6.4 +2017-03-05 00:02:00,31.5312,138.512,6.39 +2017-03-05 00:17:00,30.3,138.402,6.38 +2017-03-05 00:32:00,32.76,138.29,6.37 +2017-03-05 00:47:00,31.4287,138.152,6.36 +2017-03-05 01:02:00,31.6862,138.102,6.36 +2017-03-05 01:17:00,31.825,138.04,6.35 +2017-03-05 01:32:00,30.1512,138.025,6.34 +2017-03-05 01:47:00,32.28,137.995,6.33 +2017-03-05 02:02:00,31.6338,138.007,6.33 +2017-03-05 02:17:00,30.74,138.012,6.31 +2017-03-05 02:32:00,31.025,138.0,6.29 +2017-03-05 02:47:00,32.375,138.015,6.28 +2017-03-05 03:02:00,30.8425,138.012,6.27 +2017-03-05 03:17:00,31.4313,138.0,6.26 +2017-03-05 03:32:00,31.1287,137.985,6.25 +2017-03-05 03:47:00,31.33,137.98,6.23 +2017-03-05 04:02:00,31.5825,138.0,6.23 +2017-03-05 04:17:00,30.6425,138.0,6.23 +2017-03-05 04:32:00,31.385,138.015,6.22 +2017-03-05 04:47:00,30.9325,138.027,6.22 +2017-03-05 05:02:00,31.6287,138.045,6.22 +2017-03-05 05:17:00,31.2288,138.05,6.22 +2017-03-05 05:32:00,30.15,138.06,6.21 +2017-03-05 05:47:00,30.1963,138.077,6.2 +2017-03-05 06:02:00,31.0312,138.075,6.2 +2017-03-05 06:17:00,30.6912,138.057,6.2 +2017-03-05 06:32:00,31.4313,138.052,6.21 +2017-03-05 06:47:00,31.5837,138.022,6.21 +2017-03-05 07:02:00,30.6925,138.005,6.22 +2017-03-05 07:17:00,31.5338,137.995,6.24 +2017-03-05 07:32:00,31.1275,137.995,6.25 +2017-03-05 07:47:00,30.595,137.977,6.26 +2017-03-05 08:02:00,30.9337,137.985,6.28 +2017-03-05 08:17:00,30.2975,138.018,6.29 +2017-03-05 08:32:00,30.9837,138.022,6.29 +2017-03-05 08:47:00,30.2462,137.965,6.3 +2017-03-05 09:02:00,31.585,137.96,6.31 +2017-03-05 09:17:00,30.2487,137.927,6.31 +2017-03-05 09:32:00,32.0275,137.885,6.31 +2017-03-05 09:47:00,30.69,137.887,6.33 +2017-03-05 10:02:00,30.6362,137.88,6.37 +2017-03-05 10:17:00,31.03,137.865,6.43 +2017-03-05 10:32:00,30.885,137.877,6.48 +2017-03-05 10:47:00,31.0312,137.872,6.5 +2017-03-05 11:02:00,30.8387,137.905,6.54 +2017-03-05 11:17:00,31.7312,137.927,6.57 +2017-03-05 11:32:00,31.1237,137.915,6.56 +2017-03-05 11:47:00,31.7262,137.945,6.58 +2017-03-05 12:02:00,30.4425,137.96,6.6 +2017-03-05 12:17:00,31.0287,137.975,6.65 +2017-03-05 12:32:00,30.7887,137.95,6.7 +2017-03-05 12:47:00,30.445,137.9,6.72 +2017-03-05 13:02:00,30.7412,137.867,6.74 +2017-03-05 13:17:00,31.3812,137.87,6.76 +2017-03-05 13:32:00,30.4437,137.82,6.77 +2017-03-05 13:47:00,31.08,137.79,6.78 +2017-03-05 14:02:00,30.6425,137.772,6.8 +2017-03-05 14:17:00,30.885,137.747,6.84 +2017-03-05 14:32:00,30.2988,137.742,6.89 +2017-03-05 14:47:00,30.2962,137.725,6.96 +2017-03-05 15:02:00,30.74,137.715,7.02 +2017-03-05 15:17:00,30.1087,137.73,7.07 +2017-03-05 15:32:00,30.4475,137.74,7.12 +2017-03-05 15:47:00,30.395,137.747,7.16 +2017-03-05 16:02:00,30.9287,137.755,7.19 +2017-03-05 16:17:00,29.815,137.755,7.22 +2017-03-05 16:32:00,30.8825,137.768,7.24 +2017-03-05 16:47:00,30.69,137.76,7.26 +2017-03-05 17:02:00,30.74,137.725,7.27 +2017-03-05 17:17:00,30.4463,137.702,7.26 +2017-03-05 17:32:00,29.7637,137.667,7.25 +2017-03-05 17:47:00,30.69,137.635,7.22 +2017-03-05 18:02:00,29.5612,137.625,7.2 +2017-03-05 18:17:00,29.0775,137.617,7.19 +2017-03-05 18:32:00,30.64,137.615,7.19 +2017-03-05 18:47:00,29.7162,137.625,7.19 +2017-03-05 19:02:00,30.445,137.617,7.19 +2017-03-05 19:17:00,30.6912,137.62,7.18 +2017-03-05 19:32:00,30.8862,137.632,7.18 +2017-03-05 19:47:00,30.245,137.627,7.17 +2017-03-05 20:02:00,30.1,137.645,7.16 +2017-03-05 20:17:00,30.1462,137.65,7.13 +2017-03-05 20:32:00,30.1025,137.622,7.1 +2017-03-05 20:47:00,30.2,137.605,7.08 +2017-03-05 21:02:00,30.3937,137.56,7.05 +2017-03-05 21:17:00,30.0563,137.522,7.02 +2017-03-05 21:32:00,29.9088,137.49,6.99 +2017-03-05 21:47:00,30.3962,137.45,6.96 +2017-03-05 22:02:00,30.15,137.423,6.94 +2017-03-05 22:17:00,31.6325,137.41,6.92 +2017-03-05 22:32:00,29.9575,137.39,6.92 +2017-03-05 22:47:00,30.74,137.357,6.91 +2017-03-05 23:02:00,30.4938,137.322,6.92 +2017-03-05 23:17:00,30.005,137.272,6.92 +2017-03-05 23:32:00,29.3737,137.242,6.92 +2017-03-05 23:47:00,29.9088,137.185,6.92 +2017-03-06 00:02:00,30.1012,137.115,6.92 +2017-03-06 00:17:00,30.2012,137.033,6.92 +2017-03-06 00:32:00,30.6413,136.967,6.9 +2017-03-06 00:47:00,31.5812,136.945,6.89 +2017-03-06 01:02:00,30.0088,136.908,6.87 +2017-03-06 01:17:00,30.4975,136.9,6.85 +2017-03-06 01:32:00,30.5975,136.897,6.83 +2017-03-06 01:47:00,30.6875,136.882,6.82 +2017-03-06 02:02:00,29.5662,136.867,6.8 +2017-03-06 02:17:00,30.1025,136.83,6.79 +2017-03-06 02:32:00,29.565,136.77,6.78 +2017-03-06 02:47:00,30.79,136.722,6.76 +2017-03-06 03:02:00,30.5437,136.673,6.75 +2017-03-06 03:17:00,30.8825,136.632,6.74 +2017-03-06 03:32:00,30.1012,136.605,6.73 +2017-03-06 03:47:00,30.2462,136.58,6.72 +2017-03-06 04:02:00,30.055,136.567,6.71 +2017-03-06 04:17:00,30.69,136.55,6.7 +2017-03-06 04:32:00,30.64,136.525,6.69 +2017-03-06 04:47:00,29.9625,136.52,6.68 +2017-03-06 05:02:00,29.9137,136.512,6.68 +2017-03-06 05:17:00,30.2,136.507,6.66 +2017-03-06 05:32:00,30.3925,136.475,6.65 +2017-03-06 05:47:00,30.7438,136.462,6.64 +2017-03-06 06:02:00,30.8862,136.425,6.62 +2017-03-06 06:17:00,29.9587,136.365,6.61 +2017-03-06 06:32:00,30.5437,136.315,6.6 +2017-03-06 06:47:00,29.715,136.357,6.6 +2017-03-06 07:02:00,30.06,136.417,6.6 +2017-03-06 07:17:00,30.1475,136.477,6.61 +2017-03-06 07:32:00,29.61,136.522,6.63 +2017-03-06 07:47:00,30.84,136.518,6.64 +2017-03-06 08:02:00,30.4425,136.527,6.64 +2017-03-06 08:17:00,30.055,136.55,6.64 +2017-03-06 08:32:00,29.9587,136.552,6.65 +2017-03-06 08:47:00,29.465,136.56,6.66 +2017-03-06 09:02:00,30.5425,136.575,6.67 +2017-03-06 09:17:00,30.15,136.562,6.68 +2017-03-06 09:32:00,30.0575,136.58,6.69 +2017-03-06 09:47:00,30.1963,136.552,6.7 +2017-03-06 10:02:00,30.5925,136.54,6.72 +2017-03-06 10:17:00,30.0512,136.525,6.74 +2017-03-06 10:32:00,30.3425,136.477,6.75 +2017-03-06 10:47:00,30.0975,136.435,6.78 +2017-03-06 11:02:00,30.4938,136.38,6.82 +2017-03-06 11:17:00,30.29,136.325,6.84 +2017-03-06 11:32:00,29.91,136.252,6.86 +2017-03-06 11:47:00,29.8625,136.2,6.87 +2017-03-06 12:02:00,31.1287,136.11,6.9 +2017-03-06 12:17:00,29.7562,136.027,6.92 +2017-03-06 12:32:00,30.3913,135.975,6.94 +2017-03-06 12:47:00,31.0837,135.942,6.96 +2017-03-06 13:02:00,29.8587,135.905,6.98 +2017-03-06 13:17:00,29.1287,135.88,6.99 +2017-03-06 13:32:00,29.9088,135.842,7.0 +2017-03-06 13:47:00,29.7113,135.81,7.02 +2017-03-06 14:02:00,29.185,135.785,7.05 +2017-03-06 14:17:00,29.91,135.725,7.06 +2017-03-06 14:32:00,30.5925,135.65,7.08 +2017-03-06 14:47:00,30.64,135.622,7.1 +2017-03-06 15:02:00,29.6137,135.562,7.12 +2017-03-06 15:17:00,30.5413,135.505,7.13 +2017-03-06 15:32:00,30.59,135.435,7.14 +2017-03-06 15:47:00,29.3225,135.345,7.14 +2017-03-06 16:02:00,30.59,135.245,7.14 +2017-03-06 16:17:00,29.9587,135.11,7.15 +2017-03-06 16:32:00,29.6137,134.962,7.15 +2017-03-06 16:47:00,31.175,134.79,7.15 +2017-03-06 17:02:00,29.6637,134.655,7.15 +2017-03-06 17:17:00,30.0525,134.445,7.14 +2017-03-06 17:32:00,30.0062,134.237,7.13 +2017-03-06 17:47:00,29.5612,134.0,7.12 +2017-03-06 18:02:00,30.5925,133.72,7.12 +2017-03-06 18:17:00,30.2425,133.45,7.11 +2017-03-06 18:32:00,29.0788,133.11,7.1 +2017-03-06 18:47:00,28.6875,132.827,7.08 +2017-03-06 19:02:00,29.6588,132.552,7.07 +2017-03-06 19:17:00,29.76,132.32,7.05 +2017-03-06 19:32:00,30.24,132.137,7.03 +2017-03-06 19:47:00,29.7612,131.967,7.01 +2017-03-06 20:02:00,30.0075,131.857,6.99 +2017-03-06 20:17:00,29.6087,131.795,6.97 +2017-03-06 20:32:00,30.64,131.768,6.95 +2017-03-06 20:47:00,28.6362,131.74,6.93 +2017-03-06 21:02:00,30.1038,131.732,6.92 +2017-03-06 21:17:00,29.3187,131.712,6.9 +2017-03-06 21:32:00,29.905,131.685,6.89 +2017-03-06 21:47:00,29.5137,131.673,6.88 +2017-03-06 22:02:00,30.0987,131.655,6.88 +2017-03-06 22:17:00,31.33,131.658,6.87 +2017-03-06 22:32:00,29.905,131.64,6.87 +2017-03-06 22:47:00,30.9287,131.652,6.87 +2017-03-06 23:02:00,30.2925,131.66,6.87 +2017-03-06 23:17:00,30.7913,131.685,6.87 +2017-03-06 23:32:00,29.5112,131.717,6.87 +2017-03-06 23:47:00,30.2438,131.752,6.87 +2017-03-07 00:02:00,30.1475,131.802,6.86 +2017-03-07 00:17:00,30.74,131.847,6.85 +2017-03-07 00:32:00,30.2913,131.885,6.84 +2017-03-07 00:47:00,30.0587,131.923,6.84 +2017-03-07 01:02:00,30.4938,131.965,6.83 +2017-03-07 01:17:00,29.7637,132.012,6.82 +2017-03-07 01:32:00,29.465,132.018,6.81 +2017-03-07 01:47:00,30.3425,132.012,6.8 +2017-03-07 02:02:00,30.195,132.03,6.79 +2017-03-07 02:17:00,31.125,132.02,6.78 +2017-03-07 02:32:00,29.955,132.06,6.76 +2017-03-07 02:47:00,30.0537,132.087,6.76 +2017-03-07 03:02:00,30.39,132.143,6.75 +2017-03-07 03:17:00,29.9587,132.19,6.73 +2017-03-07 03:32:00,31.3288,132.23,6.72 +2017-03-07 03:47:00,29.32,132.25,6.7 +2017-03-07 04:02:00,29.7612,132.28,6.69 +2017-03-07 04:17:00,29.52,132.287,6.68 +2017-03-07 04:32:00,29.6125,132.305,6.66 +2017-03-07 04:47:00,29.7612,132.322,6.65 +2017-03-07 05:02:00,30.3925,132.327,6.64 +2017-03-07 05:17:00,28.635,132.35,6.62 +2017-03-07 05:32:00,30.4437,132.362,6.61 +2017-03-07 05:47:00,29.9062,132.4,6.59 +2017-03-07 06:02:00,31.0775,132.423,6.57 +2017-03-07 06:17:00,29.9075,132.467,6.56 +2017-03-07 06:32:00,29.81,132.487,6.55 +2017-03-07 06:47:00,30.2937,132.518,6.54 +2017-03-07 07:02:00,31.1287,132.55,6.52 +2017-03-07 07:17:00,29.81,132.57,6.51 +2017-03-07 07:32:00,30.2937,132.615,6.49 +2017-03-07 07:47:00,29.9112,132.658,6.48 +2017-03-07 08:02:00,30.445,132.66,6.46 +2017-03-07 08:17:00,30.9388,132.695,6.44 +2017-03-07 08:32:00,30.145,132.705,6.43 +2017-03-07 08:47:00,30.2438,132.717,6.42 +2017-03-07 09:02:00,40.0112,132.712,3.93 +2017-03-07 09:17:00,29.18,132.745,6.39 +2017-03-07 09:27:51,29.1787,132.76,6.37 +2017-03-07 09:32:00,29.1787,132.93,6.37 +2017-03-07 09:47:00,29.745,132.752,6.36 +2017-03-07 10:02:00,28.2325,132.792,6.35 +2017-03-07 10:17:00,29.8487,132.802,6.34 +2017-03-07 10:32:00,29.1225,132.812,6.34 +2017-03-07 10:47:00,30.8775,132.815,6.33 +2017-03-07 11:02:00,28.8225,132.837,6.33 +2017-03-07 11:17:00,26.7363,132.852,6.32 +2017-03-07 11:32:00,28.2363,132.862,6.31 +2017-03-07 11:47:00,28.3325,132.867,6.3 +2017-03-07 12:02:00,29.9,132.87,6.3 +2017-03-07 12:17:00,29.0725,132.867,6.3 +2017-03-07 12:32:00,28.4325,132.862,6.3 +2017-03-07 12:47:00,28.7225,132.847,6.3 +2017-03-07 13:02:00,29.6025,132.847,6.31 +2017-03-07 13:17:00,28.3825,132.845,6.3 +2017-03-07 13:32:00,29.7525,132.855,6.3 +2017-03-07 13:47:00,29.2188,132.87,6.3 +2017-03-07 14:02:00,27.0325,132.877,6.29 +2017-03-07 14:17:00,28.625,132.882,6.3 +2017-03-07 14:32:00,27.485,132.89,6.3 +2017-03-07 14:47:00,27.5812,132.87,6.31 +2017-03-07 15:02:00,27.3262,132.882,6.31 +2017-03-07 15:17:00,29.3637,132.842,6.3 +2017-03-07 15:32:00,29.7475,132.827,6.3 +2017-03-07 15:47:00,27.275,132.82,6.31 +2017-03-07 16:02:00,26.435,132.783,6.31 +2017-03-07 16:17:00,29.9437,132.768,6.31 +2017-03-07 16:32:00,29.3138,132.762,6.31 +2017-03-07 16:47:00,28.8175,132.747,6.29 +2017-03-07 17:02:00,26.9825,132.737,6.29 +2017-03-07 17:17:00,28.7213,132.745,6.28 +2017-03-07 17:32:00,29.4487,132.752,6.27 +2017-03-07 17:47:00,28.4262,132.765,6.27 +2017-03-07 18:02:00,28.18,132.757,6.26 +2017-03-07 18:17:00,29.0212,132.745,6.25 +2017-03-07 18:32:00,28.3262,132.688,6.24 +2017-03-07 18:47:00,30.2325,132.647,6.22 +2017-03-07 19:02:00,26.935,132.59,6.21 +2017-03-07 19:17:00,27.475,132.518,6.2 +2017-03-07 19:32:00,30.9225,132.452,6.19 +2017-03-07 19:47:00,27.0863,132.372,6.17 +2017-03-07 20:02:00,28.1738,132.32,6.16 +2017-03-07 20:17:00,29.5,132.247,6.15 +2017-03-07 20:32:00,29.2162,132.195,6.14 +2017-03-07 20:47:00,26.4362,132.197,6.13 +2017-03-07 21:02:00,29.1712,132.227,6.12 +2017-03-07 21:17:00,29.6488,132.22,6.1 +2017-03-07 21:32:00,29.4562,132.237,6.08 +2017-03-07 21:47:00,27.78,132.225,6.06 +2017-03-07 22:02:00,29.3125,132.215,6.05 +2017-03-07 22:17:00,26.3387,132.212,6.04 +2017-03-07 22:32:00,29.1162,132.215,6.02 +2017-03-07 22:47:00,28.1787,132.2,6.01 +2017-03-07 23:02:00,27.875,132.197,6.0 +2017-03-07 23:17:00,29.8,132.16,5.99 +2017-03-07 23:32:00,27.125,132.122,5.98 +2017-03-07 23:47:00,29.0662,132.1,5.96 +2017-03-08 00:02:00,26.05,132.082,5.95 +2017-03-08 00:17:00,29.065,132.09,5.94 +2017-03-08 00:32:00,28.33,132.095,5.92 +2017-03-08 00:47:00,29.5963,132.135,5.92 +2017-03-08 01:02:00,28.2312,132.185,5.91 +2017-03-08 01:17:00,29.165,132.19,5.9 +2017-03-08 01:32:00,28.6225,132.21,5.9 +2017-03-08 01:47:00,30.775,132.235,5.89 +2017-03-08 02:02:00,27.0788,132.237,5.88 +2017-03-08 02:17:00,30.8737,132.262,5.87 +2017-03-08 02:32:00,27.1263,132.29,5.85 +2017-03-08 02:47:00,26.5863,132.327,5.84 +2017-03-08 03:02:00,28.0238,132.35,5.84 +2017-03-08 03:17:00,28.7712,132.377,5.81 +2017-03-08 03:32:00,27.68,132.412,5.78 +2017-03-08 03:47:00,28.0775,132.435,5.76 +2017-03-08 04:02:00,29.115,132.452,5.74 +2017-03-08 04:17:00,29.5475,132.475,5.73 +2017-03-08 04:32:00,29.2625,132.48,5.73 +2017-03-08 04:47:00,28.4762,132.505,5.72 +2017-03-08 05:02:00,30.6225,132.527,5.71 +2017-03-08 05:17:00,27.9212,132.545,5.7 +2017-03-08 05:32:00,29.4037,132.55,5.69 +2017-03-08 05:47:00,28.8675,132.548,5.67 +2017-03-08 06:02:00,28.3775,132.572,5.65 +2017-03-08 06:17:00,29.0212,132.597,5.64 +2017-03-08 06:32:00,28.9737,132.607,5.63 +2017-03-08 06:47:00,27.475,132.627,5.62 +2017-03-08 07:02:00,29.5013,132.658,5.62 +2017-03-08 07:17:00,30.5238,132.658,5.62 +2017-03-08 07:32:00,29.3562,132.692,5.64 +2017-03-08 07:47:00,30.5225,132.673,5.65 +2017-03-08 08:02:00,27.9238,132.63,5.66 +2017-03-08 08:17:00,27.0775,132.585,5.68 +2017-03-08 08:32:00,27.0762,132.515,5.7 +2017-03-08 08:47:00,26.9825,132.423,5.71 +2017-03-08 09:02:00,28.62,132.342,5.74 +2017-03-08 09:17:00,30.0437,132.255,5.76 +2017-03-08 09:32:00,30.2312,132.205,5.79 +2017-03-08 09:47:00,30.3787,131.938,5.81 +2017-03-08 10:02:00,28.6237,131.122,5.84 +2017-03-08 10:17:00,28.7675,130.475,5.86 +2017-03-08 10:32:00,30.04,130.05,5.87 +2017-03-08 10:47:00,29.2625,129.875,5.88 +2017-03-08 11:02:00,27.5262,129.865,5.91 +2017-03-08 11:17:00,28.77,129.897,5.93 +2017-03-08 11:32:00,28.0262,129.992,5.95 +2017-03-08 11:47:00,27.7838,130.097,5.99 +2017-03-08 12:02:00,29.5987,130.21,6.02 +2017-03-08 12:17:00,27.78,130.272,6.03 +2017-03-08 12:32:00,28.97,130.3,6.05 +2017-03-08 12:47:00,30.4287,130.287,6.08 +2017-03-08 13:02:00,30.0425,130.283,6.11 +2017-03-08 13:17:00,29.2137,130.23,6.13 +2017-03-08 13:32:00,28.2775,130.235,6.16 +2017-03-08 13:47:00,28.125,130.285,6.18 +2017-03-08 14:02:00,28.6687,130.397,6.2 +2017-03-08 14:17:00,29.5987,130.527,6.2 +2017-03-08 14:32:00,27.63,130.602,6.22 +2017-03-08 14:47:00,28.3775,130.625,6.22 +2017-03-08 15:02:00,27.975,130.59,6.23 +2017-03-08 15:17:00,30.675,130.552,6.24 +2017-03-08 15:32:00,28.2325,130.495,6.25 +2017-03-08 15:47:00,27.48,130.438,6.26 +2017-03-08 16:02:00,29.3625,130.34,6.27 +2017-03-08 16:17:00,27.7288,130.275,6.28 +2017-03-08 16:32:00,29.1588,130.188,6.29 +2017-03-08 16:47:00,28.9163,130.075,6.29 +2017-03-08 17:02:00,29.0187,129.992,6.29 +2017-03-08 17:17:00,28.4788,129.942,6.29 +2017-03-08 17:32:00,26.1512,130.018,6.28 +2017-03-08 17:47:00,27.63,130.235,6.28 +2017-03-08 18:02:00,28.7687,130.548,6.28 +2017-03-08 18:17:00,27.6312,130.977,6.27 +2017-03-08 18:32:00,27.325,131.492,6.27 +2017-03-08 18:47:00,26.8838,131.957,6.31 +2017-03-08 19:02:00,28.82,132.35,6.24 +2017-03-08 19:17:00,28.1263,132.497,6.22 +2017-03-08 19:32:00,27.8312,132.552,6.2 +2017-03-08 19:47:00,27.9287,132.592,6.19 +2017-03-08 20:02:00,29.3162,132.592,6.17 +2017-03-08 20:17:00,27.5825,132.615,6.15 +2017-03-08 20:32:00,27.1287,132.61,6.14 +2017-03-08 20:47:00,27.2262,132.607,6.13 +2017-03-08 21:02:00,29.41,132.577,6.11 +2017-03-08 21:17:00,28.08,132.597,6.1 +2017-03-08 21:32:00,27.6813,132.6,6.1 +2017-03-08 21:47:00,28.38,132.63,6.09 +2017-03-08 22:02:00,28.77,132.635,6.09 +2017-03-08 22:17:00,28.675,132.643,6.08 +2017-03-08 22:32:00,30.0437,132.65,6.07 +2017-03-08 22:47:00,27.4775,132.635,6.06 +2017-03-08 23:02:00,28.5762,132.622,6.06 +2017-03-08 23:17:00,28.0262,132.602,6.05 +2017-03-08 23:32:00,29.5013,132.59,6.05 +2017-03-08 23:47:00,26.735,132.59,6.05 +2017-03-09 00:02:00,30.7775,132.582,6.05 +2017-03-09 00:17:00,28.03,132.587,6.06 +2017-03-09 00:32:00,28.48,132.577,6.05 +2017-03-09 00:47:00,27.7838,132.54,6.05 +2017-03-09 01:02:00,30.7275,132.492,6.05 +2017-03-09 01:17:00,28.7213,132.43,6.05 +2017-03-09 01:32:00,29.0713,132.337,6.05 +2017-03-09 01:47:00,30.9262,132.262,6.05 +2017-03-09 02:02:00,26.245,132.165,6.03 +2017-03-09 02:17:00,29.65,132.087,6.03 +2017-03-09 02:32:00,27.1263,131.98,6.01 +2017-03-09 02:47:00,25.8575,131.893,5.99 +2017-03-09 03:02:00,29.0238,131.82,5.98 +2017-03-09 03:17:00,27.1287,131.81,5.98 +2017-03-09 03:32:00,28.0238,131.827,5.97 +2017-03-09 03:47:00,29.7962,131.837,5.96 +2017-03-09 04:02:00,27.8275,131.832,5.96 +2017-03-09 04:17:00,28.6225,131.815,5.95 +2017-03-09 04:32:00,26.9375,131.807,5.94 +2017-03-09 04:47:00,29.4538,131.775,5.94 +2017-03-09 05:02:00,29.315,131.727,5.93 +2017-03-09 05:17:00,29.9437,131.697,5.93 +2017-03-09 05:32:00,28.0737,131.652,5.92 +2017-03-09 05:47:00,27.4287,131.63,5.91 +2017-03-09 06:02:00,28.97,131.572,5.9 +2017-03-09 06:17:00,29.55,131.55,5.89 +2017-03-09 06:32:00,27.0788,131.497,5.89 +2017-03-09 06:47:00,28.77,131.477,5.88 +2017-03-09 07:02:00,28.1787,131.467,5.89 +2017-03-09 07:17:00,28.235,131.487,5.9 +2017-03-09 07:32:00,29.0675,131.482,5.91 +2017-03-09 07:47:00,30.1837,131.487,5.93 +2017-03-09 08:02:00,28.4812,131.485,5.94 +2017-03-09 08:17:00,27.8763,131.49,5.95 +2017-03-09 08:32:00,29.265,131.49,5.96 +2017-03-09 08:47:00,27.9275,131.5,5.98 +2017-03-09 09:02:00,29.0687,131.495,6.0 +2017-03-09 09:17:00,27.9275,131.497,6.0 +2017-03-09 09:32:00,27.5788,131.495,6.03 +2017-03-09 09:47:00,27.0762,131.497,6.06 +2017-03-09 10:02:00,30.3775,131.51,6.09 +2017-03-09 10:17:00,28.9737,131.533,6.14 +2017-03-09 10:32:00,30.8737,131.545,6.17 +2017-03-09 10:47:00,28.075,131.575,6.2 +2017-03-09 11:02:00,29.2663,131.612,6.25 +2017-03-09 11:17:00,27.9275,131.63,6.29 +2017-03-09 11:32:00,28.48,131.665,6.35 +2017-03-09 11:47:00,27.03,131.688,6.39 +2017-03-09 12:02:00,25.9562,131.727,6.43 +2017-03-09 12:17:00,28.7687,131.765,6.45 +2017-03-09 12:32:00,26.8838,131.795,6.48 +2017-03-09 12:47:00,28.2337,131.837,6.52 +2017-03-09 13:02:00,27.1237,131.865,6.56 +2017-03-09 13:17:00,28.1813,131.91,6.63 +2017-03-09 13:32:00,30.3312,131.942,6.67 +2017-03-09 13:47:00,26.2425,131.98,6.7 +2017-03-09 14:02:00,27.7812,132.018,6.75 +2017-03-09 14:17:00,27.5287,132.052,6.78 +2017-03-09 14:32:00,28.3787,132.102,6.82 +2017-03-09 14:47:00,30.4788,132.147,6.85 +2017-03-09 15:02:00,27.4788,132.185,6.88 +2017-03-09 15:17:00,28.8725,132.265,6.91 +2017-03-09 15:32:00,25.7087,132.35,6.95 +2017-03-09 15:47:00,26.9325,132.45,6.98 +2017-03-09 16:02:00,30.0938,132.605,7.05 +2017-03-09 16:17:00,28.7712,132.785,7.06 +2017-03-09 16:32:00,25.2225,132.942,7.09 +2017-03-09 16:47:00,28.1787,133.112,7.08 +2017-03-09 17:02:00,29.5488,133.268,7.08 +2017-03-09 17:17:00,29.265,133.47,7.09 +2017-03-09 17:32:00,31.11,133.712,7.11 +2017-03-09 17:47:00,28.9187,134.045,7.11 +2017-03-09 18:02:00,29.8,136.512,7.1 +2017-03-09 18:17:00,28.4775,137.83,7.1 +2017-03-09 18:32:00,30.0912,138.04,7.07 +2017-03-09 18:47:00,29.0262,138.173,7.04 +2017-03-09 19:02:00,29.02,138.237,7.03 +2017-03-09 19:17:00,28.3787,138.325,7.02 +2017-03-09 19:32:00,26.735,138.497,7.01 +2017-03-09 19:47:00,25.465,138.637,7.01 +2017-03-09 20:02:00,30.925,138.75,7.0 +2017-03-09 20:17:00,29.5025,138.83,6.98 +2017-03-09 20:32:00,28.38,138.825,6.94 +2017-03-09 20:47:00,27.9775,138.945,6.92 +2017-03-09 21:02:00,30.045,138.917,6.9 +2017-03-09 21:17:00,28.6237,138.96,6.89 +2017-03-09 21:32:00,27.8325,138.975,6.89 +2017-03-09 21:47:00,28.485,139.117,6.89 +2017-03-09 22:02:00,30.8775,139.25,6.88 +2017-03-09 22:17:00,27.7787,139.31,6.88 +2017-03-09 22:32:00,27.2275,139.317,6.87 +2017-03-09 22:47:00,28.9713,139.317,6.85 +2017-03-09 23:02:00,29.3613,139.257,6.84 +2017-03-09 23:17:00,27.2738,139.225,6.83 +2017-03-09 23:32:00,28.8213,139.227,6.82 +2017-03-09 23:47:00,29.12,139.175,6.8 +2017-03-10 00:02:00,29.8913,139.158,6.78 +2017-03-10 00:17:00,30.0425,139.135,6.79 +2017-03-10 00:32:00,26.9337,139.145,6.79 +2017-03-10 00:47:00,27.2738,139.173,6.78 +2017-03-10 01:02:00,28.87,139.137,6.78 +2017-03-10 01:17:00,28.5788,139.32,6.76 +2017-03-10 01:32:00,29.8475,139.49,6.75 +2017-03-10 01:47:00,30.5275,139.548,6.74 +2017-03-10 02:02:00,29.0687,139.548,6.72 +2017-03-10 02:17:00,28.8225,139.575,6.7 +2017-03-10 02:32:00,26.3387,139.58,6.68 +2017-03-10 02:47:00,29.1663,139.587,6.67 +2017-03-10 03:02:00,27.3237,139.565,6.66 +2017-03-10 03:17:00,27.8237,139.545,6.65 +2017-03-10 03:32:00,27.9262,139.552,6.64 +2017-03-10 03:47:00,28.4287,139.545,6.62 +2017-03-10 04:02:00,27.8262,139.485,6.6 +2017-03-10 04:17:00,31.1663,139.512,6.57 +2017-03-10 04:32:00,31.0175,139.567,6.57 +2017-03-10 04:47:00,25.8613,139.72,6.55 +2017-03-10 05:02:00,30.7275,139.857,6.54 +2017-03-10 05:17:00,28.67,139.923,6.53 +2017-03-10 05:32:00,30.2825,139.977,6.52 +2017-03-10 05:47:00,29.9938,139.957,6.51 +2017-03-10 06:02:00,29.4037,139.972,6.49 +2017-03-10 06:17:00,29.0225,139.982,6.48 +2017-03-10 06:32:00,30.3275,140.065,6.48 +2017-03-10 06:47:00,29.845,140.122,6.47 +2017-03-10 07:02:00,28.82,140.13,6.48 +2017-03-10 07:17:00,29.0675,140.097,6.48 +2017-03-10 07:32:00,29.1637,140.087,6.48 +2017-03-10 07:47:00,29.0687,140.033,6.49 +2017-03-10 08:02:00,27.8262,140.095,6.48 +2017-03-10 08:17:00,29.8487,140.18,6.49 +2017-03-10 08:32:00,28.53,140.283,6.49 +2017-03-10 08:47:00,29.02,140.455,6.51 +2017-03-10 09:02:00,28.5775,140.7,6.53 +2017-03-10 09:17:00,30.1837,140.822,6.55 +2017-03-10 09:32:00,30.4275,140.97,6.59 +2017-03-10 09:47:00,29.3613,141.09,6.63 +2017-03-10 10:02:00,28.5325,141.21,6.66 +2017-03-10 10:17:00,28.4825,141.312,6.68 +2017-03-10 10:32:00,29.8937,141.482,6.73 +2017-03-10 10:47:00,28.53,141.692,6.79 +2017-03-10 11:02:00,29.2625,141.825,6.84 +2017-03-10 11:17:00,29.3125,141.942,6.89 +2017-03-10 11:32:00,28.7188,142.042,6.93 +2017-03-10 11:47:00,29.115,142.135,6.99 +2017-03-10 12:02:00,30.04,142.342,7.07 +2017-03-10 12:17:00,28.9675,142.905,7.17 +2017-03-10 12:32:00,28.82,143.425,7.21 +2017-03-10 12:47:00,29.8412,143.812,7.26 +2017-03-10 13:02:00,29.8937,144.135,7.31 +2017-03-10 13:17:00,29.17,144.325,7.36 +2017-03-10 13:32:00,28.9187,144.49,7.41 +2017-03-10 13:47:00,29.02,144.582,7.42 +2017-03-10 14:02:00,29.36,144.647,7.45 +2017-03-10 14:17:00,29.4538,144.712,7.46 +2017-03-10 14:32:00,28.7675,144.775,7.45 +2017-03-10 14:47:00,28.8662,144.822,7.44 +2017-03-10 15:02:00,30.09,144.87,7.44 +2017-03-10 15:17:00,28.3812,144.9,7.44 +2017-03-10 15:32:00,29.07,144.947,7.45 +2017-03-10 15:47:00,29.12,144.997,7.45 +2017-03-10 16:02:00,28.72,145.002,7.46 +2017-03-10 16:17:00,28.4262,145.048,7.47 +2017-03-10 16:32:00,29.1175,145.087,7.48 +2017-03-10 16:47:00,28.72,145.12,7.5 +2017-03-10 17:02:00,29.5475,145.15,7.53 +2017-03-10 17:17:00,28.4313,145.197,7.56 +2017-03-10 17:32:00,28.1762,145.227,7.58 +2017-03-10 17:47:00,28.7225,145.26,7.57 +2017-03-10 18:02:00,29.4487,145.3,7.55 +2017-03-10 18:17:00,29.0687,145.31,7.52 +2017-03-10 18:32:00,28.4275,145.332,7.49 +2017-03-10 18:47:00,28.62,145.352,7.46 +2017-03-10 19:02:00,28.9737,145.355,7.44 +2017-03-10 19:17:00,28.7213,145.365,7.42 +2017-03-10 19:32:00,29.07,145.37,7.41 +2017-03-10 19:47:00,29.7462,145.382,7.4 +2017-03-10 20:02:00,29.6475,145.395,7.39 +2017-03-10 20:17:00,28.6738,145.4,7.37 +2017-03-10 20:32:00,29.4037,145.408,7.36 +2017-03-10 20:47:00,29.7962,145.423,7.34 +2017-03-10 21:02:00,29.6925,145.423,7.32 +2017-03-10 21:17:00,28.1787,145.412,7.3 +2017-03-10 21:32:00,28.9187,145.41,7.26 +2017-03-10 21:47:00,30.875,145.4,7.22 +2017-03-10 22:02:00,30.7738,145.365,7.18 +2017-03-10 22:17:00,29.645,145.322,7.14 +2017-03-10 22:32:00,29.5975,145.285,7.1 +2017-03-10 22:47:00,29.9938,145.265,7.07 +2017-03-10 23:02:00,30.3812,145.277,7.04 +2017-03-10 23:17:00,29.6963,145.283,7.01 +2017-03-10 23:32:00,29.6462,145.3,6.99 +2017-03-10 23:47:00,31.2113,145.307,6.98 +2017-03-11 00:02:00,30.3775,145.312,6.95 +2017-03-11 00:17:00,30.9675,145.33,6.94 +2017-03-11 00:32:00,29.5975,145.315,6.92 +2017-03-11 00:47:00,30.5775,145.275,6.9 +2017-03-11 01:02:00,29.7925,145.19,6.88 +2017-03-11 01:17:00,30.625,145.085,6.86 +2017-03-11 01:32:00,29.02,145.007,6.83 +2017-03-11 01:47:00,30.185,144.97,6.81 +2017-03-11 02:02:00,29.4987,144.945,6.79 +2017-03-11 02:17:00,30.5262,144.925,6.77 +2017-03-11 02:32:00,30.2325,144.893,6.75 +2017-03-11 02:47:00,29.6963,144.855,6.72 +2017-03-11 03:02:00,29.5525,144.783,6.69 +2017-03-11 03:17:00,29.9925,144.745,6.67 +2017-03-11 03:32:00,29.2625,144.688,6.63 +2017-03-11 03:47:00,30.045,144.627,6.59 +2017-03-11 04:02:00,30.9725,144.562,6.55 +2017-03-11 04:17:00,29.1675,144.465,6.51 +2017-03-11 04:32:00,30.5287,144.377,6.47 +2017-03-11 04:47:00,29.5987,144.27,6.43 +2017-03-11 05:02:00,29.945,144.202,6.4 +2017-03-11 05:17:00,31.2625,144.16,6.36 +2017-03-11 05:32:00,29.6963,144.105,6.34 +2017-03-11 05:47:00,31.8112,144.042,6.31 +2017-03-11 06:02:00,31.3662,143.97,6.28 +2017-03-11 06:17:00,31.5125,143.862,6.27 +2017-03-11 06:32:00,30.9212,143.745,6.25 +2017-03-11 06:47:00,31.6175,143.643,6.24 +2017-03-11 07:02:00,31.2113,143.55,6.24 +2017-03-11 07:17:00,31.1612,143.467,6.25 +2017-03-11 07:32:00,29.265,143.402,6.24 +2017-03-11 07:47:00,32.36,143.335,6.25 +2017-03-11 08:02:00,30.4775,143.292,6.26 +2017-03-11 08:17:00,31.3138,143.162,6.3 +2017-03-11 08:32:00,30.2325,142.97,6.32 +2017-03-11 08:47:00,30.6813,142.742,6.35 +2017-03-11 09:02:00,30.3288,142.562,6.37 +2017-03-11 09:17:00,29.7988,142.41,6.38 +2017-03-11 09:32:00,31.3138,142.29,6.41 +2017-03-11 09:47:00,30.1837,142.167,6.44 +2017-03-11 10:02:00,30.1437,142.055,6.47 +2017-03-11 10:17:00,30.1413,141.98,6.51 +2017-03-11 10:32:00,31.02,141.917,6.55 +2017-03-11 10:47:00,30.2337,141.893,6.57 +2017-03-11 11:02:00,29.8975,141.882,6.59 +2017-03-11 11:17:00,30.3288,141.908,6.6 +2017-03-11 11:32:00,30.4788,141.923,6.63 +2017-03-11 11:47:00,29.5987,141.92,6.67 +2017-03-11 12:02:00,28.3312,141.923,6.69 +2017-03-11 12:17:00,29.8012,141.93,6.72 +2017-03-11 12:32:00,29.9925,141.905,6.76 +2017-03-11 12:47:00,31.365,141.912,6.8 +2017-03-11 13:02:00,30.2825,141.893,6.86 +2017-03-11 13:17:00,29.5488,141.875,6.9 +2017-03-11 13:32:00,30.3812,141.845,6.92 +2017-03-11 13:47:00,30.4812,141.805,6.96 +2017-03-11 14:02:00,30.3825,141.747,6.98 +2017-03-11 14:17:00,30.185,141.667,6.99 +2017-03-11 14:32:00,31.215,141.59,7.0 +2017-03-11 14:47:00,30.8262,141.505,7.0 +2017-03-11 15:02:00,30.2363,141.425,7.01 +2017-03-11 15:17:00,29.845,141.342,7.02 +2017-03-11 15:32:00,29.5963,141.27,7.03 +2017-03-11 15:47:00,29.3637,141.225,7.03 +2017-03-11 16:02:00,30.7738,141.192,7.03 +2017-03-11 16:17:00,29.0212,141.18,7.05 +2017-03-11 16:32:00,29.6012,141.135,7.06 +2017-03-11 16:47:00,30.875,141.06,7.07 +2017-03-11 17:02:00,30.3812,140.992,7.08 +2017-03-11 17:17:00,29.6987,140.915,7.08 +2017-03-11 17:32:00,29.8,140.812,7.08 +2017-03-11 17:47:00,29.02,140.735,7.07 +2017-03-11 18:02:00,30.7738,140.627,7.06 +2017-03-11 18:17:00,30.5788,140.535,7.04 +2017-03-11 18:32:00,30.3787,140.455,7.03 +2017-03-11 18:47:00,30.5762,140.405,7.01 +2017-03-11 19:02:00,29.0212,140.375,7.0 +2017-03-11 19:17:00,29.7975,140.315,6.98 +2017-03-11 19:32:00,29.02,140.252,6.95 +2017-03-11 19:47:00,29.945,140.165,6.92 +2017-03-11 20:02:00,30.285,140.07,6.88 +2017-03-11 20:17:00,30.0437,139.985,6.85 +2017-03-11 20:32:00,30.1437,139.887,6.81 +2017-03-11 20:47:00,30.97,139.762,6.78 +2017-03-11 21:02:00,29.1162,139.688,6.75 +2017-03-11 21:17:00,29.9925,139.59,6.72 +2017-03-11 21:32:00,29.995,139.518,6.7 +2017-03-11 21:47:00,30.33,139.475,6.67 +2017-03-11 22:02:00,31.7637,139.45,6.65 +2017-03-11 22:17:00,30.4313,139.412,6.62 +2017-03-11 22:32:00,30.575,139.375,6.59 +2017-03-11 22:47:00,30.8237,139.327,6.55 +2017-03-11 23:02:00,29.8,139.24,6.51 +2017-03-11 23:17:00,30.38,139.15,6.47 +2017-03-11 23:32:00,30.7275,139.045,6.44 +2017-03-11 23:47:00,29.7475,138.932,6.41 +2017-03-12 00:02:00,30.8262,138.832,6.37 +2017-03-12 00:17:00,30.3787,138.76,6.34 +2017-03-12 00:32:00,30.38,138.692,6.32 +2017-03-12 00:47:00,30.825,138.647,6.29 +2017-03-12 01:02:00,30.6787,138.617,6.26 +2017-03-12 01:17:00,31.0137,138.595,6.23 +2017-03-12 01:32:00,29.7988,138.572,6.2 +2017-03-12 01:47:00,31.015,138.542,6.17 +2017-03-12 02:02:00,29.5075,138.545,6.15 +2017-03-12 02:17:00,30.1875,138.57,6.11 +2017-03-12 02:32:00,31.3637,138.575,6.08 +2017-03-12 02:47:00,30.3763,138.582,6.05 +2017-03-12 03:02:00,31.1137,138.56,6.03 +2017-03-12 03:17:00,31.2588,138.552,6.0 +2017-03-12 03:32:00,29.7475,138.515,5.97 +2017-03-12 03:47:00,30.6775,138.48,5.94 +2017-03-12 04:02:00,30.68,138.417,5.9 +2017-03-12 04:17:00,30.0925,138.367,5.87 +2017-03-12 04:32:00,30.09,138.315,5.84 +2017-03-12 04:47:00,29.7462,138.292,5.81 +2017-03-12 05:02:00,30.8275,138.28,5.78 +2017-03-12 05:17:00,30.675,138.302,5.75 +2017-03-12 05:32:00,31.3138,138.3,5.72 +2017-03-12 05:47:00,31.3125,138.31,5.69 +2017-03-12 06:02:00,30.8737,138.283,5.66 +2017-03-12 06:17:00,30.4788,138.227,5.63 +2017-03-12 06:32:00,31.4662,138.188,5.61 +2017-03-12 06:47:00,30.2775,138.14,5.6 +2017-03-12 07:02:00,29.2637,138.105,5.59 +2017-03-12 07:17:00,29.9925,138.042,5.58 +2017-03-12 07:32:00,29.99,137.908,5.58 +2017-03-12 07:47:00,31.0625,137.745,5.58 +2017-03-12 08:02:00,30.575,137.565,5.59 +2017-03-12 08:17:00,30.58,137.427,5.58 +2017-03-12 08:32:00,30.2312,137.315,5.59 +2017-03-12 08:47:00,31.1612,137.237,5.6 +2017-03-12 09:02:00,30.68,137.167,5.62 +2017-03-12 09:17:00,30.2825,137.112,5.65 +2017-03-12 09:32:00,30.9238,137.045,5.66 +2017-03-12 09:47:00,30.725,136.99,5.67 +2017-03-12 10:02:00,30.4762,136.987,5.71 +2017-03-12 10:17:00,30.6787,137.027,5.75 +2017-03-12 10:32:00,31.3662,137.082,5.76 +2017-03-12 10:47:00,30.53,137.13,5.77 +2017-03-12 11:02:00,31.7612,137.135,5.8 +2017-03-12 11:17:00,29.4037,137.167,5.84 +2017-03-12 11:32:00,30.2312,137.15,5.88 +2017-03-12 11:47:00,29.6462,137.147,5.92 +2017-03-12 12:02:00,30.9675,137.12,5.96 +2017-03-12 12:17:00,30.7262,137.105,6.01 +2017-03-12 12:32:00,30.775,137.07,6.03 +2017-03-12 12:47:00,30.7213,137.052,6.05 +2017-03-12 13:02:00,30.185,137.07,6.07 +2017-03-12 13:17:00,30.14,137.09,6.09 +2017-03-12 13:32:00,29.6975,137.112,6.12 +2017-03-12 13:47:00,30.7275,137.125,6.15 +2017-03-12 14:02:00,29.895,137.122,6.18 +2017-03-12 14:17:00,31.1612,137.11,6.21 +2017-03-12 14:32:00,31.0137,137.09,6.25 +2017-03-12 14:47:00,29.9925,137.075,6.27 +2017-03-12 15:02:00,30.2812,137.05,6.29 +2017-03-12 15:17:00,30.6787,137.005,6.33 +2017-03-12 15:32:00,30.3812,136.98,6.36 +2017-03-12 15:47:00,31.365,136.952,6.38 +2017-03-12 16:02:00,29.7475,136.962,6.4 +2017-03-12 16:17:00,29.8463,136.965,6.4 +2017-03-12 16:32:00,30.0925,136.972,6.41 +2017-03-12 16:47:00,29.7975,136.975,6.4 +2017-03-12 17:02:00,29.36,136.955,6.39 +2017-03-12 17:17:00,30.7237,136.955,6.38 +2017-03-12 17:32:00,30.1888,136.935,6.36 +2017-03-12 17:47:00,29.595,136.897,6.35 +2017-03-12 18:02:00,30.53,136.882,6.33 +2017-03-12 18:17:00,30.0437,136.832,6.3 +2017-03-12 18:32:00,30.7275,136.795,6.28 +2017-03-12 18:47:00,29.3587,136.79,6.27 +2017-03-12 19:02:00,29.4062,136.795,6.24 +2017-03-12 19:17:00,29.7,136.795,6.22 +2017-03-12 19:32:00,31.31,136.79,6.19 +2017-03-12 19:47:00,30.6237,136.775,6.17 +2017-03-12 20:02:00,29.6437,136.737,6.14 +2017-03-12 20:17:00,29.6963,136.695,6.11 +2017-03-12 20:32:00,30.9675,136.662,6.08 +2017-03-12 20:47:00,30.09,136.605,6.05 +2017-03-12 21:02:00,30.14,136.552,6.02 +2017-03-12 21:17:00,30.4262,136.527,5.99 +2017-03-12 21:32:00,30.1825,136.502,5.96 +2017-03-12 21:47:00,30.0912,136.492,5.93 +2017-03-12 22:02:00,30.525,136.49,5.9 +2017-03-12 22:17:00,30.04,136.472,5.88 +2017-03-12 22:32:00,30.58,136.465,5.87 +2017-03-12 22:47:00,31.5625,136.44,5.85 +2017-03-12 23:02:00,30.0387,136.382,5.84 +2017-03-12 23:17:00,30.3275,136.31,5.82 +2017-03-12 23:32:00,29.8925,136.245,5.79 +2017-03-12 23:47:00,29.3125,136.15,5.76 +2017-03-13 00:02:00,30.6287,136.072,5.73 +2017-03-13 00:17:00,30.4762,136.018,5.69 +2017-03-13 00:32:00,29.7475,135.965,5.65 +2017-03-13 00:47:00,30.8737,135.947,5.62 +2017-03-13 01:02:00,29.695,135.925,5.59 +2017-03-13 01:17:00,30.0413,135.91,5.56 +2017-03-13 01:32:00,30.9238,135.897,5.54 +2017-03-13 01:47:00,30.0425,135.897,5.51 +2017-03-13 02:02:00,29.8487,135.925,5.48 +2017-03-13 02:17:00,30.475,135.945,5.45 +2017-03-13 02:32:00,29.5,135.96,5.42 +2017-03-13 02:47:00,28.9187,135.977,5.39 +2017-03-13 03:02:00,30.53,135.96,5.36 +2017-03-13 03:17:00,29.4987,135.96,5.32 +2017-03-13 03:32:00,30.1875,135.952,5.29 +2017-03-13 03:47:00,29.07,135.925,5.27 +2017-03-13 04:02:00,30.0887,135.88,5.24 +2017-03-13 04:17:00,29.0225,135.83,5.21 +2017-03-13 04:32:00,29.995,135.815,5.18 +2017-03-13 04:47:00,30.0912,135.768,5.15 +2017-03-13 05:02:00,29.9962,135.777,5.13 +2017-03-13 05:17:00,30.3288,135.78,5.11 +2017-03-13 05:32:00,31.0638,135.768,5.08 +2017-03-13 05:47:00,29.7913,135.747,5.05 +2017-03-13 06:02:00,28.82,135.73,5.02 +2017-03-13 06:17:00,30.3288,135.677,5.0 +2017-03-13 06:32:00,30.38,135.64,4.98 +2017-03-13 06:47:00,29.6475,135.597,4.96 +2017-03-13 07:02:00,29.94,135.567,4.95 +2017-03-13 07:17:00,30.4287,135.512,4.95 +2017-03-13 07:32:00,30.0375,135.487,4.94 +2017-03-13 07:47:00,30.375,135.44,4.94 +2017-03-13 08:02:00,30.8725,135.412,4.95 +2017-03-13 08:17:00,30.5788,135.362,4.96 +2017-03-13 08:32:00,29.6488,135.298,4.98 +2017-03-13 08:47:00,30.2337,135.222,4.99 +2017-03-13 09:02:00,30.0925,135.167,4.99 +2017-03-13 09:17:00,29.7962,135.087,5.03 +2017-03-13 09:32:00,30.7225,135.02,5.06 +2017-03-13 09:47:00,30.1837,134.982,5.09 +2017-03-13 10:02:00,29.4987,134.962,5.12 +2017-03-13 10:17:00,30.0425,134.923,5.17 +2017-03-13 10:32:00,29.7975,134.905,5.2 +2017-03-13 10:47:00,29.2625,134.88,5.25 +2017-03-13 11:02:00,30.4737,134.822,5.29 +2017-03-13 11:17:00,29.9425,134.772,5.34 +2017-03-13 11:32:00,30.23,134.73,5.37 +2017-03-13 11:47:00,30.875,134.673,5.41 +2017-03-13 12:02:00,30.0912,134.627,5.45 +2017-03-13 12:17:00,29.405,134.577,5.49 +2017-03-13 12:32:00,30.0925,134.552,5.52 +2017-03-13 12:47:00,30.14,134.512,5.56 +2017-03-13 13:02:00,29.315,134.54,5.6 +2017-03-13 13:17:00,30.4287,134.542,5.65 +2017-03-13 13:32:00,29.2137,134.555,5.7 +2017-03-13 13:47:00,29.5462,134.537,5.75 +2017-03-13 14:02:00,30.2312,134.518,5.79 +2017-03-13 14:17:00,29.55,134.495,5.83 +2017-03-13 14:32:00,29.8475,134.442,5.86 +2017-03-13 14:47:00,30.8225,134.367,5.91 +2017-03-13 15:02:00,29.3112,134.28,5.95 +2017-03-13 15:17:00,30.0875,134.162,5.99 +2017-03-13 15:32:00,30.1862,134.048,6.03 +2017-03-13 15:47:00,30.4275,133.905,6.06 +2017-03-13 16:02:00,29.9938,133.78,6.08 +2017-03-13 16:17:00,29.405,133.64,6.09 +2017-03-13 16:32:00,29.595,133.505,6.1 +2017-03-13 16:47:00,30.6287,133.35,6.11 +2017-03-13 17:02:00,29.9412,133.175,6.11 +2017-03-13 17:17:00,30.0912,132.99,6.1 +2017-03-13 17:32:00,29.265,132.835,6.09 +2017-03-13 17:47:00,28.4788,132.65,6.08 +2017-03-13 18:02:00,29.55,132.492,6.06 +2017-03-13 18:17:00,29.4037,132.337,6.05 +2017-03-13 18:32:00,29.1175,132.188,6.04 +2017-03-13 18:47:00,29.5975,132.072,6.02 +2017-03-13 19:02:00,30.6312,132.02,6.01 +2017-03-13 19:17:00,29.315,131.977,6.01 +2017-03-13 19:32:00,29.94,131.935,6.0 +2017-03-13 19:47:00,29.5025,131.895,5.99 +2017-03-13 20:02:00,29.6512,131.852,5.97 +2017-03-13 20:17:00,28.8725,131.787,5.93 +2017-03-13 20:32:00,30.53,131.705,5.9 +2017-03-13 20:47:00,29.0212,131.643,5.87 +2017-03-13 21:02:00,29.1162,131.597,5.86 +2017-03-13 21:17:00,30.14,131.565,5.84 +2017-03-13 21:32:00,31.16,131.565,5.8 +2017-03-13 21:47:00,29.4975,131.58,5.78 +2017-03-13 22:02:00,29.9938,131.605,5.75 +2017-03-13 22:17:00,29.1188,131.625,5.73 +2017-03-13 22:32:00,30.2325,131.64,5.71 +2017-03-13 22:47:00,29.8425,131.665,5.7 +2017-03-13 23:02:00,29.9925,131.682,5.69 +2017-03-13 23:17:00,29.4512,131.675,5.69 +2017-03-13 23:32:00,29.695,131.65,5.7 +2017-03-13 23:47:00,29.7475,131.627,5.69 +2017-03-14 00:02:00,29.5512,131.587,5.69 +2017-03-14 00:17:00,30.5287,131.562,5.67 +2017-03-14 00:32:00,29.7975,131.52,5.66 +2017-03-14 00:47:00,30.0925,131.495,5.64 +2017-03-14 01:02:00,30.725,131.492,5.63 +2017-03-14 01:17:00,29.9975,131.507,5.62 +2017-03-14 01:32:00,29.8937,131.51,5.6 +2017-03-14 01:47:00,30.28,131.54,5.58 +2017-03-14 02:02:00,29.265,131.567,5.56 +2017-03-14 02:17:00,30.0912,131.615,5.54 +2017-03-14 02:32:00,29.9925,131.655,5.51 +2017-03-14 02:47:00,29.7487,131.677,5.49 +2017-03-14 03:02:00,29.8913,131.697,5.47 +2017-03-14 03:17:00,29.6462,131.695,5.46 +2017-03-14 03:32:00,29.9912,131.707,5.45 +2017-03-14 03:47:00,30.28,131.71,5.44 +2017-03-14 04:02:00,30.2775,131.695,5.42 +2017-03-14 04:17:00,29.8425,131.67,5.42 +2017-03-14 04:32:00,29.1175,131.66,5.42 +2017-03-14 04:47:00,30.3763,131.647,5.42 +2017-03-14 05:02:00,30.0912,131.632,5.41 +2017-03-14 05:17:00,30.3775,131.65,5.41 +2017-03-14 05:32:00,29.7962,131.607,5.4 +2017-03-14 05:47:00,29.0675,131.56,5.39 +2017-03-14 06:02:00,30.0413,131.52,5.38 +2017-03-14 06:17:00,28.6725,131.457,5.38 +2017-03-14 06:32:00,29.5475,131.42,5.37 +2017-03-14 06:47:00,30.1837,131.375,5.39 +2017-03-14 07:02:00,29.0675,131.35,5.39 +2017-03-14 07:17:00,30.2337,131.305,5.41 +2017-03-14 07:32:00,29.9463,131.277,5.43 +2017-03-14 07:47:00,29.2625,131.272,5.44 +2017-03-14 08:02:00,29.6937,131.242,5.45 +2017-03-14 08:17:00,29.2625,131.21,5.5 +2017-03-14 08:32:00,29.6937,131.135,5.55 +2017-03-14 08:47:00,28.92,131.057,5.58 +2017-03-14 09:02:00,28.8187,130.975,5.6 +2017-03-14 09:17:00,29.0212,130.887,5.63 +2017-03-14 09:32:00,29.8425,130.822,5.65 +2017-03-14 09:47:00,30.0963,130.77,5.71 +2017-03-14 10:02:00,29.6937,130.757,5.73 +2017-03-14 10:17:00,30.8725,130.742,5.78 +2017-03-14 10:32:00,28.7237,130.752,5.81 +2017-03-14 10:47:00,29.5488,130.727,5.87 +2017-03-14 11:02:00,31.4175,130.685,5.91 +2017-03-14 11:17:00,30.8725,130.655,5.96 +2017-03-14 11:32:00,29.3125,130.602,5.96 +2017-03-14 11:47:00,28.4275,130.555,6.0 +2017-03-14 12:02:00,28.6212,130.5,6.04 +2017-03-14 12:17:00,29.8937,130.442,6.09 +2017-03-14 12:32:00,30.325,130.372,6.16 +2017-03-14 12:47:00,29.41,130.302,6.22 +2017-03-14 13:02:00,30.725,130.242,6.3 +2017-03-14 13:17:00,29.2162,130.165,6.35 +2017-03-14 13:32:00,28.2787,130.067,6.38 +2017-03-14 13:47:00,31.9088,130.005,6.41 +2017-03-14 14:02:00,28.9187,129.912,6.45 +2017-03-14 14:17:00,29.5,129.775,6.5 +2017-03-14 14:32:00,28.5788,129.673,6.55 +2017-03-14 14:47:00,28.33,129.555,6.61 +2017-03-14 15:02:00,28.4287,129.485,6.66 +2017-03-14 15:17:00,30.0975,129.417,6.67 +2017-03-14 15:32:00,29.1687,129.317,6.69 +2017-03-14 15:47:00,29.5025,129.205,6.72 +2017-03-14 16:02:00,27.8763,129.072,6.73 +2017-03-14 16:17:00,28.6263,128.917,6.75 +2017-03-14 16:32:00,30.625,128.772,6.75 +2017-03-14 16:47:00,27.9725,128.637,6.75 +2017-03-14 17:02:00,28.8175,128.48,6.74 +2017-03-14 17:17:00,30.9662,128.335,6.75 +2017-03-14 17:32:00,29.2162,128.202,6.76 +2017-03-14 17:47:00,27.5762,128.045,6.76 +2017-03-14 18:02:00,29.9475,127.91,6.75 +2017-03-14 18:17:00,30.6775,127.817,6.74 +2017-03-14 18:32:00,29.6975,127.715,6.74 +2017-03-14 18:47:00,30.6762,127.595,6.73 +2017-03-14 19:02:00,26.2862,127.49,6.72 +2017-03-14 19:17:00,29.3613,127.352,6.72 +2017-03-14 19:32:00,28.3288,127.177,6.71 +2017-03-14 19:47:00,28.87,126.99,6.7 +2017-03-14 20:02:00,27.78,126.78,6.7 +2017-03-14 20:17:00,29.4062,126.53,6.7 +2017-03-14 20:32:00,30.7738,126.207,6.69 +2017-03-14 20:47:00,29.0675,125.847,6.67 +2017-03-14 21:02:00,28.5275,125.495,6.66 +2017-03-14 21:17:00,27.2275,125.152,6.65 +2017-03-14 21:32:00,28.0238,124.812,6.65 +2017-03-14 21:47:00,28.6738,124.46,6.64 +2017-03-14 22:02:00,29.8463,124.102,6.63 +2017-03-14 22:17:00,27.7312,123.745,6.63 +2017-03-14 22:32:00,30.675,123.397,6.64 +2017-03-14 22:47:00,27.4775,123.062,6.66 +2017-03-14 23:02:00,27.4762,122.755,6.66 +2017-03-14 23:17:00,27.5287,122.445,6.67 +2017-03-14 23:32:00,28.33,122.167,6.69 +2017-03-14 23:47:00,28.8712,121.935,6.71 +2017-03-15 00:02:00,29.1675,121.717,6.72 +2017-03-15 00:17:00,27.9762,121.53,6.72 +2017-03-15 00:32:00,30.0912,121.36,6.72 +2017-03-15 00:47:00,27.5287,121.21,6.72 +2017-03-15 01:02:00,29.695,121.062,6.73 +2017-03-15 01:17:00,28.9688,120.923,6.73 +2017-03-15 01:32:00,29.3613,120.842,6.73 +2017-03-15 01:47:00,30.92,120.753,6.73 +2017-03-15 02:02:00,29.8962,120.67,6.73 +2017-03-15 02:17:00,27.275,120.59,6.73 +2017-03-15 02:32:00,31.1612,120.542,6.75 +2017-03-15 02:47:00,28.1775,120.497,6.75 +2017-03-15 03:02:00,29.4575,120.432,6.75 +2017-03-15 03:17:00,30.04,120.393,6.75 +2017-03-15 03:32:00,32.16,120.387,6.76 +2017-03-15 03:47:00,29.1175,120.345,6.76 +2017-03-15 04:02:00,28.8187,120.325,6.77 +2017-03-15 04:17:00,27.6813,120.305,6.78 +2017-03-15 04:32:00,28.67,120.257,6.78 +2017-03-15 04:47:00,29.1637,120.22,6.79 +2017-03-15 05:02:00,28.97,120.19,6.8 +2017-03-15 05:17:00,30.425,120.165,6.8 +2017-03-15 05:32:00,28.3763,117.665,6.8 +2017-03-15 05:47:00,29.3125,112.667,6.81 +2017-03-15 06:02:00,30.8737,109.86,6.81 +2017-03-15 06:17:00,28.48,108.652,6.82 +2017-03-15 06:32:00,30.425,108.438,6.83 +2017-03-15 06:47:00,27.8775,108.84,6.83 +2017-03-15 07:02:00,27.9238,109.537,6.83 +2017-03-15 07:17:00,28.8225,110.45,6.84 +2017-03-15 07:32:00,30.625,111.417,6.85 +2017-03-15 07:47:00,28.575,112.405,6.87 +2017-03-15 08:02:00,29.0713,113.287,6.89 +2017-03-15 08:17:00,29.2625,114.112,6.92 +2017-03-15 08:32:00,28.0275,114.862,6.93 +2017-03-15 08:47:00,30.9238,115.505,6.95 +2017-03-15 09:02:00,30.23,116.055,6.98 +2017-03-15 09:17:00,29.695,116.505,7.02 +2017-03-15 09:32:00,27.9212,116.923,7.07 +2017-03-15 09:47:00,31.3125,117.272,7.11 +2017-03-15 10:02:00,29.455,117.548,7.16 +2017-03-15 10:17:00,29.265,117.755,7.21 +2017-03-15 10:32:00,28.9225,117.917,7.27 +2017-03-15 10:47:00,28.48,118.085,7.32 +2017-03-15 11:02:00,29.365,118.202,7.36 +2017-03-15 11:17:00,28.7213,118.355,7.4 +2017-03-15 11:32:00,29.795,118.485,7.46 +2017-03-15 11:47:00,29.165,118.722,7.51 +2017-03-15 12:02:00,28.6712,118.997,7.57 +2017-03-15 12:17:00,27.4275,119.132,7.61 +2017-03-15 12:32:00,30.2337,119.155,7.67 +2017-03-15 12:47:00,28.125,119.26,7.71 +2017-03-15 13:02:00,28.6263,119.302,7.76 +2017-03-15 13:17:00,30.3812,119.305,7.8 +2017-03-15 13:32:00,29.215,119.36,7.84 +2017-03-15 13:47:00,26.6862,119.39,7.86 +2017-03-15 14:02:00,26.2875,119.372,7.89 +2017-03-15 14:17:00,26.585,119.412,7.94 +2017-03-15 14:32:00,26.7825,119.385,7.98 +2017-03-15 14:47:00,26.985,119.43,8.02 +2017-03-15 15:02:00,28.23,119.487,8.06 +2017-03-15 15:17:00,29.3587,119.49,8.1 +2017-03-15 15:32:00,28.8175,119.472,8.14 +2017-03-15 15:47:00,29.0187,119.42,8.18 +2017-03-15 16:02:00,29.8937,119.387,8.21 +2017-03-15 16:17:00,27.68,119.342,8.25 +2017-03-15 16:32:00,28.3787,119.305,8.28 +2017-03-15 16:47:00,30.3312,119.285,8.31 +2017-03-15 17:02:00,28.43,119.268,8.33 +2017-03-15 17:17:00,27.5775,119.262,8.36 +2017-03-15 17:32:00,29.0212,119.227,8.38 +2017-03-15 17:47:00,29.9938,119.192,8.4 +2017-03-15 18:02:00,30.425,119.165,8.42 +2017-03-15 18:17:00,30.58,119.125,8.43 +2017-03-15 18:32:00,29.945,119.11,8.44 +2017-03-15 18:47:00,28.0762,119.072,8.44 +2017-03-15 19:02:00,29.1175,119.08,8.44 +2017-03-15 19:17:00,28.2775,119.052,8.43 +2017-03-15 19:32:00,28.425,119.027,8.42 +2017-03-15 19:47:00,30.43,118.992,8.39 +2017-03-15 20:02:00,28.77,118.955,8.37 +2017-03-15 20:17:00,30.5788,118.935,8.34 +2017-03-15 20:32:00,27.3763,118.908,8.32 +2017-03-15 20:47:00,29.2162,118.908,8.29 +2017-03-15 21:02:00,27.2288,118.927,8.26 +2017-03-15 21:17:00,26.785,118.91,8.23 +2017-03-15 21:32:00,28.5312,118.908,8.2 +2017-03-15 21:47:00,28.87,118.897,8.17 +2017-03-15 22:02:00,30.23,118.89,8.14 +2017-03-15 22:17:00,30.3275,118.893,8.11 +2017-03-15 22:32:00,27.925,118.878,8.08 +2017-03-15 22:47:00,28.6225,118.875,8.06 +2017-03-15 23:02:00,27.7325,118.865,8.03 +2017-03-15 23:17:00,30.2787,118.932,8.01 +2017-03-15 23:32:00,28.8725,119.003,7.98 +2017-03-15 23:47:00,27.035,119.045,7.94 +2017-03-16 00:02:00,27.9762,119.07,7.91 +2017-03-16 00:17:00,30.925,119.057,7.89 +2017-03-16 00:32:00,26.39,119.02,7.86 +2017-03-16 00:47:00,26.5425,118.982,7.84 +2017-03-16 01:02:00,28.6263,118.945,7.82 +2017-03-16 01:17:00,29.9463,118.882,7.79 +2017-03-16 01:32:00,28.7237,118.865,7.77 +2017-03-16 01:47:00,31.1625,118.783,7.75 +2017-03-16 02:02:00,28.3812,118.73,7.74 +2017-03-16 02:17:00,27.1275,118.692,7.72 +2017-03-16 02:32:00,28.3325,118.643,7.71 +2017-03-16 02:47:00,30.4275,118.607,7.7 +2017-03-16 03:02:00,29.7487,118.57,7.7 +2017-03-16 03:17:00,29.1175,118.552,7.68 +2017-03-16 03:32:00,29.5488,118.522,7.66 +2017-03-16 03:47:00,29.7462,118.505,7.65 +2017-03-16 04:02:00,29.8925,118.472,7.62 +2017-03-16 04:17:00,26.835,118.462,7.6 +2017-03-16 04:32:00,29.17,118.405,7.59 +2017-03-16 04:47:00,29.845,118.367,7.57 +2017-03-16 05:02:00,29.2162,118.332,7.54 +2017-03-16 05:17:00,28.3288,118.285,7.52 +2017-03-16 05:32:00,26.9388,118.275,7.49 +2017-03-16 05:47:00,31.2125,118.24,7.47 +2017-03-16 06:02:00,29.9975,118.235,7.44 +2017-03-16 06:17:00,29.9012,118.215,7.42 +2017-03-16 06:32:00,30.4788,118.185,7.4 +2017-03-16 06:47:00,29.4525,118.182,7.39 +2017-03-16 07:02:00,30.3325,118.15,7.39 +2017-03-16 07:17:00,31.9125,118.09,7.39 +2017-03-16 07:32:00,29.4587,118.022,7.4 +2017-03-16 07:47:00,27.7812,117.897,7.42 +2017-03-16 08:02:00,29.8012,117.715,7.45 +2017-03-16 08:17:00,27.8325,117.572,7.49 +2017-03-16 08:32:00,28.9725,117.45,7.51 +2017-03-16 08:47:00,28.5362,117.362,7.54 +2017-03-16 09:02:00,28.8237,117.34,7.57 +2017-03-16 09:17:00,28.025,117.322,7.61 +2017-03-16 09:32:00,27.8825,117.307,7.63 +2017-03-16 09:47:00,30.7787,117.302,7.67 +2017-03-16 10:02:00,26.7412,117.237,7.71 +2017-03-16 10:17:00,25.7588,117.21,7.74 +2017-03-16 10:32:00,28.6263,117.217,7.78 +2017-03-16 10:47:00,28.4762,117.217,7.84 +2017-03-16 11:02:00,28.9713,117.225,7.89 +2017-03-16 11:17:00,29.3613,117.222,7.93 +2017-03-16 11:32:00,29.315,117.225,7.98 +2017-03-16 11:47:00,29.8975,117.22,8.04 +2017-03-16 12:02:00,28.43,117.205,8.1 +2017-03-16 12:17:00,28.6725,117.112,8.15 +2017-03-16 12:32:00,26.74,116.965,8.2 +2017-03-16 12:47:00,28.4287,116.645,8.24 +2017-03-16 13:02:00,27.3787,116.235,8.29 +2017-03-16 13:17:00,27.3237,115.612,8.35 +2017-03-16 13:32:00,29.8925,114.82,8.4 +2017-03-16 13:47:00,28.82,114.005,8.46 +2017-03-16 14:02:00,28.1263,113.065,8.51 +2017-03-16 14:17:00,27.68,112.067,8.55 +2017-03-16 14:32:00,32.31,111.122,8.6 +2017-03-16 14:47:00,32.1137,110.205,8.65 +2017-03-16 15:02:00,26.8375,109.395,8.71 +2017-03-16 15:17:00,29.5,108.605,8.75 +2017-03-16 15:32:00,27.1712,107.917,8.79 +2017-03-16 15:47:00,25.51,107.36,8.84 +2017-03-16 16:02:00,27.975,106.925,8.89 +2017-03-16 16:17:00,29.7988,106.667,8.93 +2017-03-16 16:32:00,29.99,106.43,8.97 +2017-03-16 16:47:00,28.6725,106.272,9.0 +2017-03-16 17:02:00,28.38,106.237,9.03 +2017-03-16 17:17:00,29.405,106.285,9.05 +2017-03-16 17:32:00,28.9175,106.327,9.08 +2017-03-16 17:47:00,27.3737,106.378,9.1 +2017-03-16 18:02:00,27.5762,106.42,9.12 +2017-03-16 18:17:00,28.325,106.482,9.14 +2017-03-16 18:32:00,28.5287,106.527,9.17 +2017-03-16 18:47:00,30.1375,106.612,9.19 +2017-03-16 19:02:00,26.585,106.695,9.2 +2017-03-16 19:17:00,29.55,106.77,9.2 +2017-03-16 19:32:00,27.225,106.882,9.2 +2017-03-16 19:47:00,28.075,106.992,9.2 +2017-03-16 20:02:00,29.0713,107.115,9.2 +2017-03-16 20:17:00,29.0675,107.242,9.18 +2017-03-16 20:32:00,29.9425,107.36,9.15 +2017-03-16 20:47:00,27.73,107.492,9.12 +2017-03-16 21:02:00,29.2663,107.617,9.09 +2017-03-16 21:17:00,28.5312,107.785,9.05 +2017-03-16 21:32:00,29.695,107.927,9.02 +2017-03-16 21:47:00,29.6975,108.072,8.97 +2017-03-16 22:02:00,28.77,108.253,8.94 +2017-03-16 22:17:00,30.9187,108.41,8.9 +2017-03-16 22:32:00,28.3312,108.592,8.86 +2017-03-16 22:47:00,31.6637,108.762,8.8 +2017-03-16 23:02:00,27.4788,108.908,8.76 +2017-03-16 23:17:00,27.6825,109.075,8.72 +2017-03-16 23:32:00,27.925,109.227,8.67 +2017-03-16 23:47:00,28.8688,109.385,8.6 +2017-03-17 00:02:00,29.3175,109.533,8.56 +2017-03-17 00:17:00,28.2325,109.688,8.49 +2017-03-17 00:32:00,28.1263,109.83,8.44 +2017-03-17 00:47:00,29.315,109.985,8.39 +2017-03-17 01:02:00,29.1175,110.135,8.33 +2017-03-17 01:17:00,28.4337,110.262,8.28 +2017-03-17 01:32:00,29.65,110.42,8.23 +2017-03-17 01:47:00,29.2675,110.55,8.18 +2017-03-17 02:02:00,29.3138,110.692,8.12 +2017-03-17 02:17:00,29.4075,110.798,8.07 +2017-03-17 02:32:00,28.2787,110.93,8.04 +2017-03-17 02:47:00,31.3662,111.065,8.01 +2017-03-17 03:02:00,27.1775,111.185,7.99 +2017-03-17 03:17:00,28.3275,111.305,7.96 +2017-03-17 03:32:00,27.0287,111.415,7.93 +2017-03-17 03:47:00,29.315,111.52,7.91 +2017-03-17 04:02:00,29.2188,111.63,7.89 +2017-03-17 04:17:00,30.4287,111.74,7.88 +2017-03-17 04:32:00,29.0212,111.862,7.87 +2017-03-17 04:47:00,27.0287,111.962,7.85 +2017-03-17 05:02:00,29.5,112.072,7.86 +2017-03-17 05:17:00,29.36,112.143,7.85 +2017-03-17 05:32:00,29.9437,112.232,7.84 +2017-03-17 05:47:00,29.4062,112.31,7.83 +2017-03-17 06:02:00,30.9225,112.357,7.82 +2017-03-17 06:17:00,30.7225,112.395,7.82 +2017-03-17 06:32:00,30.2325,112.415,7.82 +2017-03-17 06:47:00,29.2125,112.45,7.81 +2017-03-17 07:02:00,28.6287,112.445,7.81 +2017-03-17 07:17:00,28.2312,112.257,7.81 +2017-03-17 07:32:00,29.6437,111.92,7.81 +2017-03-17 07:47:00,30.2812,111.585,7.81 +2017-03-17 08:02:00,27.73,111.27,7.81 +2017-03-17 08:17:00,30.8737,110.957,7.81 +2017-03-17 08:32:00,29.9912,110.63,7.83 +2017-03-17 08:47:00,29.5037,110.33,7.89 +2017-03-17 09:02:00,28.0287,110.012,7.93 +2017-03-17 09:17:00,29.1175,109.737,7.93 +2017-03-17 09:32:00,30.53,109.53,7.91 +2017-03-17 09:47:00,28.87,109.352,7.91 +2017-03-17 10:02:00,31.9613,109.272,7.89 +2017-03-17 10:17:00,27.9262,109.337,7.87 +2017-03-17 10:32:00,29.6475,109.487,7.85 +2017-03-17 10:47:00,29.6963,109.737,7.84 +2017-03-17 11:02:00,28.5312,110.01,7.84 +2017-03-17 11:17:00,29.8475,110.335,7.85 +2017-03-17 11:32:00,30.0912,110.768,7.89 +2017-03-17 11:47:00,30.635,111.182,7.9 +2017-03-17 12:02:00,28.4788,111.605,7.94 +2017-03-17 12:17:00,30.5788,111.972,8.0 +2017-03-17 12:32:00,29.55,112.332,8.04 +2017-03-17 12:47:00,28.9225,112.612,8.05 +2017-03-17 13:02:00,30.0425,112.872,8.1 +2017-03-17 13:17:00,27.0788,113.097,8.14 +2017-03-17 13:32:00,27.9262,113.262,8.13 +2017-03-17 13:47:00,29.5037,113.423,8.13 +2017-03-17 14:02:00,29.0687,113.557,8.14 +2017-03-17 14:17:00,26.9837,113.695,8.15 +2017-03-17 14:32:00,29.505,113.875,8.16 +2017-03-17 14:47:00,29.2712,114.005,8.18 +2017-03-17 15:02:00,30.38,114.085,8.2 +2017-03-17 15:17:00,28.03,114.165,8.21 +2017-03-17 15:32:00,29.2663,114.232,8.22 +2017-03-17 15:47:00,29.1188,114.302,8.23 +2017-03-17 16:02:00,28.2838,114.397,8.22 +2017-03-17 16:17:00,26.6875,114.492,8.21 +2017-03-17 16:32:00,30.97,114.587,8.21 +2017-03-17 16:47:00,29.1188,114.695,8.21 +2017-03-17 17:02:00,29.215,114.79,8.22 +2017-03-17 17:17:00,28.0262,114.882,8.21 +2017-03-17 17:32:00,27.8275,114.977,8.21 +2017-03-17 17:47:00,26.4375,115.08,8.2 +2017-03-17 18:02:00,28.3775,115.177,8.19 +2017-03-17 18:17:00,30.1888,115.26,8.18 +2017-03-17 18:32:00,31.465,115.325,8.16 +2017-03-17 18:47:00,30.9225,115.378,8.15 +2017-03-17 19:02:00,30.14,115.462,8.13 +2017-03-17 19:17:00,30.14,115.51,8.12 +2017-03-17 19:32:00,28.9713,115.557,8.09 +2017-03-17 19:47:00,30.2825,115.597,8.06 +2017-03-17 20:02:00,29.6,115.628,8.02 +2017-03-17 20:17:00,29.5013,115.658,7.99 +2017-03-17 20:32:00,29.1162,115.655,7.96 +2017-03-17 20:47:00,29.1188,115.567,7.92 +2017-03-17 21:02:00,28.5762,115.45,7.88 +2017-03-17 21:17:00,29.9412,115.257,7.83 +2017-03-17 21:32:00,29.99,115.035,7.81 +2017-03-17 21:47:00,29.6025,114.805,7.79 +2017-03-17 22:02:00,29.1175,114.54,7.78 +2017-03-17 22:17:00,29.6038,114.275,7.77 +2017-03-17 22:32:00,29.5462,114.01,7.74 +2017-03-17 22:47:00,29.3587,113.73,7.71 +2017-03-17 23:02:00,29.6437,113.47,7.7 +2017-03-17 23:17:00,29.695,113.215,7.69 +2017-03-17 23:32:00,28.7712,112.965,7.68 +2017-03-17 23:47:00,28.8712,112.697,7.66 +2017-03-18 00:02:00,29.3112,112.43,7.64 +2017-03-18 00:17:00,28.5287,112.192,7.61 +2017-03-18 00:32:00,29.5975,111.92,7.59 +2017-03-18 00:47:00,29.745,111.685,7.57 +2017-03-18 01:02:00,28.9175,111.477,7.55 +2017-03-18 01:17:00,29.1675,111.28,7.52 +2017-03-18 01:32:00,27.6263,111.137,7.49 +2017-03-18 01:47:00,29.5488,111.075,7.47 +2017-03-18 02:02:00,28.8712,111.087,7.45 +2017-03-18 02:17:00,28.5275,111.117,7.43 +2017-03-18 02:32:00,29.36,111.15,7.4 +2017-03-18 02:47:00,28.9713,111.2,7.37 +2017-03-18 03:02:00,29.3625,111.22,7.33 +2017-03-18 03:17:00,28.6712,111.247,7.31 +2017-03-18 03:32:00,27.225,111.275,7.29 +2017-03-18 03:47:00,30.4262,111.3,7.27 +2017-03-18 04:02:00,31.9575,111.325,7.25 +2017-03-18 04:17:00,28.5762,111.335,7.23 +2017-03-18 04:32:00,29.4525,111.36,7.21 +2017-03-18 04:47:00,29.8412,111.347,7.19 +2017-03-18 05:02:00,30.725,111.355,7.18 +2017-03-18 05:17:00,29.545,111.36,7.17 +2017-03-18 05:32:00,27.6813,111.37,7.16 +2017-03-18 05:47:00,26.685,111.387,7.16 +2017-03-18 06:02:00,29.02,111.408,7.16 +2017-03-18 06:17:00,25.8063,111.375,7.15 +2017-03-18 06:32:00,26.1475,111.37,7.15 +2017-03-18 06:47:00,29.7438,111.362,7.16 +2017-03-18 07:02:00,29.2113,111.32,7.16 +2017-03-18 07:17:00,29.5938,111.342,7.17 +2017-03-18 07:32:00,32.945,111.312,7.18 +2017-03-18 07:47:00,30.7712,111.357,7.19 +2017-03-18 08:02:00,29.6925,111.4,7.22 +2017-03-18 08:17:00,29.0675,111.39,7.25 +2017-03-18 08:32:00,30.3288,111.395,7.27 +2017-03-18 08:47:00,29.9925,111.325,7.3 +2017-03-18 09:02:00,29.265,111.365,7.36 +2017-03-18 09:17:00,28.325,111.325,7.4 +2017-03-18 09:32:00,28.275,111.277,7.44 +2017-03-18 09:47:00,29.4037,111.342,7.46 +2017-03-18 10:02:00,28.7712,111.4,7.46 +2017-03-18 10:17:00,30.5788,111.44,7.52 +2017-03-18 10:32:00,27.5775,111.557,7.58 +2017-03-18 10:47:00,28.1237,111.607,7.62 +2017-03-18 11:02:00,31.6137,111.772,7.68 +2017-03-18 11:17:00,30.8725,111.705,7.71 +2017-03-18 11:32:00,27.7812,111.722,7.73 +2017-03-18 11:47:00,27.075,111.785,7.82 +2017-03-18 12:02:00,28.7687,111.947,7.86 +2017-03-18 12:17:00,27.3225,111.882,7.91 +2017-03-18 12:32:00,29.065,111.902,7.94 +2017-03-18 12:47:00,30.1387,111.957,7.98 +2017-03-18 13:02:00,28.7188,111.962,8.01 +2017-03-18 13:17:00,29.9912,111.972,8.08 +2017-03-18 13:32:00,28.3288,111.99,8.11 +2017-03-18 13:47:00,29.6425,112.065,8.13 +2017-03-18 14:02:00,30.77,111.972,8.14 +2017-03-18 14:17:00,28.025,111.942,8.15 +2017-03-18 14:32:00,29.02,111.905,8.16 +2017-03-18 14:47:00,27.6775,111.875,8.18 +2017-03-18 15:02:00,31.1637,111.852,8.21 +2017-03-18 15:17:00,27.7775,111.798,8.25 +2017-03-18 15:32:00,30.5262,111.75,8.27 +2017-03-18 15:47:00,26.5312,111.725,8.31 +2017-03-18 16:02:00,27.425,111.7,8.35 +2017-03-18 16:17:00,29.8,111.68,8.38 +2017-03-18 16:32:00,27.58,111.645,8.39 +2017-03-18 16:47:00,28.0262,111.622,8.4 +2017-03-18 17:02:00,29.6475,111.61,8.42 +2017-03-18 17:17:00,29.3138,111.605,8.44 +2017-03-18 17:32:00,28.97,111.58,8.46 +2017-03-18 17:47:00,29.99,111.557,8.46 +2017-03-18 18:02:00,27.6275,111.56,8.47 +2017-03-18 18:17:00,29.2137,111.542,8.5 +2017-03-18 18:32:00,29.55,111.548,8.51 +2017-03-18 18:47:00,30.1475,111.555,8.51 +2017-03-18 19:02:00,27.6813,111.57,8.5 +2017-03-18 19:17:00,29.4525,111.607,8.48 +2017-03-18 19:32:00,30.4775,111.617,8.46 +2017-03-18 19:47:00,27.9262,111.617,8.42 +2017-03-18 20:02:00,27.0287,111.625,8.39 +2017-03-18 20:17:00,30.3775,111.607,8.36 +2017-03-18 20:32:00,31.2625,111.61,8.32 +2017-03-18 20:47:00,29.4088,111.597,8.29 +2017-03-18 21:02:00,30.8737,111.595,8.25 +2017-03-18 21:17:00,28.8675,111.59,8.22 +2017-03-18 21:32:00,29.795,111.577,8.18 +2017-03-18 21:47:00,26.98,111.592,8.15 +2017-03-18 22:02:00,28.575,111.58,8.11 +2017-03-18 22:17:00,31.1588,111.552,8.07 +2017-03-18 22:32:00,29.6937,111.522,8.03 +2017-03-18 22:47:00,30.3288,111.495,7.98 +2017-03-18 23:02:00,28.2312,111.465,7.92 +2017-03-18 23:17:00,29.695,111.425,7.89 +2017-03-18 23:32:00,30.7262,111.362,7.85 +2017-03-18 23:47:00,29.36,111.332,7.81 +2017-03-19 00:02:00,27.2712,111.268,7.77 +2017-03-19 00:17:00,29.6937,111.18,7.73 +2017-03-19 00:32:00,28.3288,111.155,7.69 +2017-03-19 00:47:00,29.6425,111.095,7.65 +2017-03-19 01:02:00,30.6775,111.062,7.6 +2017-03-19 01:17:00,28.8187,111.022,7.55 +2017-03-19 01:32:00,29.0163,110.98,7.5 +2017-03-19 01:47:00,26.935,110.962,7.46 +2017-03-19 02:02:00,28.765,110.927,7.42 +2017-03-19 02:17:00,28.33,110.912,7.4 +2017-03-19 02:32:00,29.0187,110.895,7.38 +2017-03-19 02:47:00,26.6375,110.912,7.36 +2017-03-19 03:02:00,27.5262,110.917,7.35 +2017-03-19 03:17:00,28.9163,110.957,7.36 +2017-03-19 03:32:00,29.94,110.995,7.36 +2017-03-19 03:47:00,28.3288,111.037,7.35 +2017-03-19 04:02:00,28.9688,111.105,7.34 +2017-03-19 04:17:00,29.5987,111.135,7.34 +2017-03-19 04:32:00,28.6687,111.173,7.33 +2017-03-19 04:47:00,30.725,111.212,7.32 +2017-03-19 05:02:00,28.6738,111.253,7.3 +2017-03-19 05:17:00,30.6275,111.317,7.29 +2017-03-19 05:32:00,29.3075,111.397,7.26 +2017-03-19 05:47:00,30.5788,112.232,7.24 +2017-03-19 06:02:00,29.7462,112.658,7.24 +2017-03-19 06:17:00,28.8712,112.487,7.2 +2017-03-19 06:32:00,28.0737,112.188,7.18 +2017-03-19 06:47:00,28.82,111.912,7.15 +2017-03-19 07:02:00,27.1237,111.737,7.13 +2017-03-19 07:17:00,29.6,111.6,7.12 +2017-03-19 07:32:00,30.3275,111.577,7.11 +2017-03-19 07:47:00,28.8688,111.565,7.1 +2017-03-19 08:02:00,31.06,111.658,7.08 +2017-03-19 08:17:00,29.2087,111.792,7.07 +2017-03-19 08:32:00,28.72,111.955,7.06 +2017-03-19 08:47:00,32.21,112.16,7.06 +2017-03-19 09:02:00,31.4163,112.34,7.07 +2017-03-19 09:17:00,30.475,112.537,7.07 +2017-03-19 09:32:00,30.0375,112.717,7.06 +2017-03-19 09:47:00,30.3262,112.882,7.06 +2017-03-19 10:02:00,28.8187,113.005,7.06 +2017-03-19 10:17:00,27.0275,113.15,7.05 +2017-03-19 10:32:00,30.6275,113.295,7.07 +2017-03-19 10:47:00,29.7962,113.53,7.08 +2017-03-19 11:02:00,30.2787,113.832,7.08 +2017-03-19 11:17:00,29.0163,114.09,7.11 +2017-03-19 11:32:00,30.0887,114.302,7.13 +2017-03-19 11:47:00,30.0387,114.44,7.15 +2017-03-19 12:02:00,28.6175,114.5,7.17 +2017-03-19 12:17:00,28.7162,114.577,7.18 +2017-03-19 12:32:00,28.3763,114.61,7.21 +2017-03-19 12:47:00,30.4725,114.637,7.25 +2017-03-19 13:02:00,28.0713,114.675,7.28 +2017-03-19 13:17:00,28.0737,114.742,7.31 +2017-03-19 13:32:00,30.4262,114.802,7.35 +2017-03-19 13:47:00,29.545,114.855,7.4 +2017-03-19 14:02:00,30.3787,114.945,7.41 +2017-03-19 14:17:00,29.4512,115.07,7.44 +2017-03-19 14:32:00,31.3613,115.202,7.45 +2017-03-19 14:47:00,29.015,115.352,7.46 +2017-03-19 15:02:00,30.2325,115.518,7.46 +2017-03-19 15:17:00,28.9187,115.662,7.47 +2017-03-19 15:32:00,29.7937,115.832,7.47 +2017-03-19 15:47:00,28.9175,115.97,7.49 +2017-03-19 16:02:00,29.595,116.097,7.53 +2017-03-19 16:17:00,27.9713,116.215,7.54 +2017-03-19 16:32:00,27.63,116.345,7.53 +2017-03-19 16:47:00,29.165,116.442,7.54 +2017-03-19 17:02:00,29.2675,116.552,7.55 +2017-03-19 17:17:00,31.4112,116.632,7.56 +2017-03-19 17:32:00,28.8675,116.727,7.56 +2017-03-19 17:47:00,28.5775,116.757,7.56 +2017-03-19 18:02:00,28.625,116.77,7.56 +2017-03-19 18:17:00,28.2262,116.76,7.56 +2017-03-19 18:32:00,28.6225,116.737,7.57 +2017-03-19 18:47:00,27.6837,116.707,7.58 +2017-03-19 19:02:00,26.3412,116.64,7.61 +2017-03-19 19:17:00,28.53,116.575,7.61 +2017-03-19 19:32:00,28.1813,116.51,7.61 +2017-03-19 19:47:00,29.2125,116.415,7.62 +2017-03-19 20:02:00,27.4287,116.372,7.63 +2017-03-19 20:17:00,29.4037,116.325,7.64 +2017-03-19 20:32:00,28.97,116.21,7.65 +2017-03-19 20:47:00,29.405,116.143,7.65 +2017-03-19 21:02:00,26.385,116.077,7.67 +2017-03-19 21:17:00,29.3138,116.012,7.68 +2017-03-19 21:32:00,28.4275,115.957,7.69 +2017-03-19 21:47:00,28.9675,115.923,7.69 +2017-03-19 22:02:00,28.3312,115.923,7.7 +2017-03-19 22:17:00,26.735,115.897,7.72 +2017-03-19 22:32:00,29.115,115.837,7.73 +2017-03-19 22:47:00,28.92,115.815,7.73 +2017-03-19 23:02:00,27.63,115.812,7.74 +2017-03-19 23:17:00,28.82,115.78,7.74 +2017-03-19 23:32:00,29.65,115.777,7.75 +2017-03-19 23:47:00,27.2262,115.795,7.76 +2017-03-20 00:02:00,29.6462,115.785,7.76 +2017-03-20 00:17:00,26.8325,115.82,7.76 +2017-03-20 00:32:00,28.075,115.812,7.75 +2017-03-20 00:47:00,27.6287,115.855,7.76 +2017-03-20 01:02:00,28.8712,115.89,7.75 +2017-03-20 01:17:00,31.0163,115.925,7.75 +2017-03-20 01:32:00,27.3775,115.96,7.75 +2017-03-20 01:47:00,27.4775,116.02,7.74 +2017-03-20 02:02:00,28.3775,115.938,7.74 +2017-03-20 02:17:00,31.21,116.052,7.73 +2017-03-20 02:32:00,27.8775,116.062,7.73 +2017-03-20 02:47:00,27.5275,116.062,7.72 +2017-03-20 03:02:00,29.3138,116.15,7.71 +2017-03-20 03:17:00,28.5262,116.245,7.7 +2017-03-20 03:32:00,27.2762,116.3,7.7 +2017-03-20 03:47:00,28.3787,116.39,7.7 +2017-03-20 04:02:00,28.6712,116.487,7.69 +2017-03-20 04:17:00,29.3613,116.592,7.69 +2017-03-20 04:32:00,28.6225,116.66,7.69 +2017-03-20 04:47:00,28.7725,116.765,7.7 +2017-03-20 05:02:00,26.6387,116.83,7.7 +2017-03-20 05:17:00,28.3288,116.893,7.71 +2017-03-20 05:32:00,29.5013,116.962,7.71 +2017-03-20 05:47:00,27.8262,117.022,7.72 +2017-03-20 06:02:00,29.12,117.077,7.73 +2017-03-20 06:17:00,28.6237,117.12,7.74 +2017-03-20 06:32:00,29.455,117.165,7.76 +2017-03-20 06:47:00,29.555,117.255,7.76 +2017-03-20 07:02:00,29.9912,117.325,7.78 +2017-03-20 07:17:00,30.0963,117.35,7.8 +2017-03-20 07:32:00,29.65,117.337,7.82 +2017-03-20 07:47:00,26.7363,117.307,7.84 +2017-03-20 08:02:00,28.53,117.265,7.86 +2017-03-20 08:17:00,28.2812,117.247,7.88 +2017-03-20 08:32:00,29.2663,117.188,7.91 +2017-03-20 08:47:00,29.8937,117.175,7.94 +2017-03-20 09:02:00,27.1738,117.227,7.99 +2017-03-20 09:17:00,29.7462,117.235,8.02 +2017-03-20 09:32:00,28.2288,117.3,8.05 +2017-03-20 09:47:00,28.3775,117.295,8.07 +2017-03-20 10:02:00,30.4775,117.385,8.09 +2017-03-20 10:17:00,29.0187,117.397,8.11 +2017-03-20 10:32:00,31.0163,117.492,8.13 +2017-03-20 10:47:00,31.0137,117.47,8.15 +2017-03-20 11:02:00,28.48,117.46,8.18 +2017-03-20 11:17:00,29.4538,117.467,8.2 +2017-03-20 11:32:00,28.5275,117.445,8.24 +2017-03-20 11:47:00,28.8213,117.36,8.28 +2017-03-20 12:02:00,30.2325,117.255,8.33 +2017-03-20 12:17:00,28.7687,117.26,8.37 +2017-03-20 12:32:00,29.5525,117.352,8.4 +2017-03-20 12:47:00,29.9412,117.535,8.45 +2017-03-20 13:02:00,30.4275,117.795,8.51 +2017-03-20 13:17:00,28.4287,117.99,8.55 +2017-03-20 13:32:00,30.7712,118.275,8.59 +2017-03-20 13:47:00,27.7288,118.557,8.63 +2017-03-20 14:02:00,28.9688,118.815,8.68 +2017-03-20 14:17:00,30.5275,119.055,8.7 +2017-03-20 14:32:00,29.1162,119.268,8.73 +2017-03-20 14:47:00,31.11,119.445,8.77 +2017-03-20 15:02:00,27.825,119.61,8.8 +2017-03-20 15:17:00,28.1263,119.755,8.84 +2017-03-20 15:32:00,28.7687,119.8,8.88 +2017-03-20 15:47:00,31.5625,119.768,8.9 +2017-03-20 16:02:00,27.1263,119.682,8.93 +2017-03-20 16:17:00,30.0938,119.585,8.96 +2017-03-20 16:32:00,29.4088,119.472,8.98 +2017-03-20 16:47:00,29.4025,119.4,8.99 +2017-03-20 17:02:00,28.6237,119.325,9.0 +2017-03-20 17:17:00,29.2625,119.268,9.02 +2017-03-20 17:32:00,29.4525,119.217,9.04 +2017-03-20 17:47:00,27.5287,119.122,9.06 +2017-03-20 18:02:00,30.28,119.037,9.08 +2017-03-20 18:17:00,31.0137,118.95,9.09 +2017-03-20 18:32:00,30.6263,118.875,9.1 +2017-03-20 18:47:00,27.6312,118.798,9.11 +2017-03-20 19:02:00,29.845,118.717,9.11 +2017-03-20 19:17:00,30.2312,118.63,9.11 +2017-03-20 19:32:00,30.1362,118.495,9.1 +2017-03-20 19:47:00,29.02,118.32,9.08 +2017-03-20 20:02:00,31.26,118.117,9.07 +2017-03-20 20:17:00,29.6963,117.92,9.05 +2017-03-20 20:32:00,29.9412,117.71,9.03 +2017-03-20 20:47:00,28.9675,117.535,9.02 +2017-03-20 21:02:00,29.94,117.372,9.0 +2017-03-20 21:17:00,29.9912,117.325,8.99 +2017-03-20 21:32:00,29.5475,117.268,8.97 +2017-03-20 21:47:00,30.2312,117.23,8.97 +2017-03-20 22:02:00,28.025,117.192,8.96 +2017-03-20 22:17:00,29.8925,117.128,8.95 +2017-03-20 22:32:00,29.0175,117.075,8.94 +2017-03-20 22:47:00,30.14,117.037,8.93 +2017-03-20 23:02:00,28.325,116.98,8.92 +2017-03-20 23:17:00,29.5963,116.912,8.91 +2017-03-20 23:32:00,29.4025,116.845,8.89 +2017-03-20 23:47:00,29.0638,116.765,8.87 +2017-03-21 00:02:00,27.8262,116.645,8.84 +2017-03-21 00:17:00,29.9912,116.515,8.83 +2017-03-21 00:32:00,29.94,116.365,8.81 +2017-03-21 00:47:00,29.1137,116.237,8.78 +2017-03-21 01:02:00,30.425,116.145,8.77 +2017-03-21 01:17:00,29.3112,116.107,8.76 +2017-03-21 01:32:00,29.4037,116.082,8.75 +2017-03-21 01:47:00,28.9688,116.055,8.74 +2017-03-21 02:02:00,30.5775,116.072,8.73 +2017-03-21 02:17:00,30.09,116.045,8.72 +2017-03-21 02:32:00,29.6425,116.03,8.71 +2017-03-21 02:47:00,29.3125,116.035,8.7 +2017-03-21 03:02:00,29.3562,116.015,8.69 +2017-03-21 03:17:00,30.9675,115.985,8.68 +2017-03-21 03:32:00,29.55,115.908,8.67 +2017-03-21 03:47:00,29.5475,115.83,8.67 +2017-03-21 04:02:00,29.5512,115.73,8.67 +2017-03-21 04:17:00,29.8925,115.617,8.66 +2017-03-21 04:32:00,30.5262,115.507,8.65 +2017-03-21 04:47:00,28.9187,115.435,8.65 +2017-03-21 05:02:00,29.7438,115.362,8.64 +2017-03-21 05:17:00,29.0675,115.352,8.65 +2017-03-21 05:32:00,29.9412,115.365,8.65 +2017-03-21 05:47:00,29.845,115.415,8.66 +2017-03-21 06:02:00,29.0662,115.457,8.66 +2017-03-21 06:17:00,30.09,115.465,8.67 +2017-03-21 06:32:00,30.82,115.425,8.67 +2017-03-21 06:47:00,30.325,115.423,8.68 +2017-03-21 07:02:00,29.8425,115.393,8.68 +2017-03-21 07:17:00,31.4625,115.393,8.69 +2017-03-21 07:32:00,30.0912,115.522,8.71 +2017-03-21 07:47:00,28.72,115.605,8.73 +2017-03-21 08:02:00,29.3138,115.658,8.75 +2017-03-21 08:17:00,29.6437,115.652,8.73 +2017-03-21 08:32:00,29.8438,115.64,8.72 +2017-03-21 08:47:00,29.1637,115.597,8.72 +2017-03-21 09:02:00,29.99,115.567,8.73 +2017-03-21 09:17:00,30.87,115.52,8.73 +2017-03-21 09:32:00,30.4713,115.48,8.73 +2017-03-21 09:47:00,29.3613,115.415,8.74 +2017-03-21 10:02:00,30.2288,115.365,8.74 +2017-03-21 10:17:00,29.545,115.365,8.75 +2017-03-21 10:32:00,30.6312,115.425,8.77 +2017-03-21 10:47:00,29.455,115.503,8.8 +2017-03-21 11:02:00,30.0925,115.535,8.81 +2017-03-21 11:17:00,29.7462,115.55,8.84 +2017-03-21 11:32:00,29.6987,115.557,8.87 +2017-03-21 11:47:00,30.9662,115.552,8.9 +2017-03-21 12:02:00,29.4525,115.515,8.9 +2017-03-21 12:17:00,29.9437,115.467,8.92 +2017-03-21 12:32:00,30.6762,115.842,8.95 +2017-03-21 12:47:00,29.9375,116.197,8.97 +2017-03-21 13:02:00,29.595,116.257,9.02 +2017-03-21 13:17:00,28.7225,116.12,9.06 +2017-03-21 13:32:00,29.405,115.97,9.1 +2017-03-21 13:47:00,29.84,115.795,9.12 +2017-03-21 14:02:00,29.4587,115.615,9.1 +2017-03-21 14:17:00,30.3262,115.477,9.09 +2017-03-21 14:32:00,29.495,115.365,9.09 +2017-03-21 14:47:00,30.1825,115.268,9.1 +2017-03-21 15:02:00,29.0163,115.205,9.11 +2017-03-21 15:17:00,29.0238,115.21,9.12 +2017-03-21 15:32:00,29.1175,115.25,9.13 +2017-03-21 15:47:00,29.6963,115.283,9.15 +2017-03-21 16:02:00,29.215,115.31,9.17 +2017-03-21 16:17:00,30.3275,115.335,9.18 +2017-03-21 16:32:00,29.6925,115.292,9.19 +2017-03-21 16:47:00,30.9175,115.285,9.2 +2017-03-21 17:02:00,30.4275,115.28,9.2 +2017-03-21 17:17:00,29.7937,115.253,9.2 +2017-03-21 17:32:00,29.8487,115.24,9.21 +2017-03-21 17:47:00,29.5975,115.23,9.22 +2017-03-21 18:02:00,30.5312,115.232,9.24 +2017-03-21 18:17:00,28.8725,115.217,9.25 +2017-03-21 18:32:00,29.9437,115.212,9.26 +2017-03-21 18:47:00,31.2575,115.19,9.27 +2017-03-21 19:02:00,29.7438,115.145,9.28 +2017-03-21 19:17:00,29.6413,115.107,9.27 +2017-03-21 19:32:00,29.8438,115.06,9.26 +2017-03-21 19:47:00,29.8425,115.01,9.26 +2017-03-21 20:02:00,29.745,114.965,9.24 +2017-03-21 20:17:00,30.0938,114.915,9.23 +2017-03-21 20:32:00,29.5,114.935,9.22 +2017-03-21 20:47:00,30.4725,115.003,9.22 +2017-03-21 21:02:00,30.1362,115.035,9.21 +2017-03-21 21:17:00,29.36,115.052,9.2 +2017-03-21 21:32:00,30.2812,115.055,9.2 +2017-03-21 21:47:00,29.45,115.022,9.18 +2017-03-21 22:02:00,29.1637,114.967,9.17 +2017-03-21 22:17:00,29.6937,114.902,9.17 +2017-03-21 22:32:00,30.675,114.825,9.15 +2017-03-21 22:47:00,28.4788,114.772,9.13 +2017-03-21 23:02:00,31.1125,114.697,9.11 +2017-03-21 23:17:00,29.3575,114.658,9.09 +2017-03-21 23:32:00,29.4037,114.652,9.07 +2017-03-21 23:47:00,30.3825,114.722,9.04 +2017-03-22 00:02:00,30.135,114.787,9.0 +2017-03-22 00:17:00,30.1375,114.815,8.97 +2017-03-22 00:32:00,29.0638,114.81,8.92 +2017-03-22 00:47:00,29.5987,114.783,8.89 +2017-03-22 01:02:00,29.31,114.737,8.84 +2017-03-22 01:17:00,29.3138,114.695,8.8 +2017-03-22 01:32:00,29.8937,114.647,8.77 +2017-03-22 01:47:00,29.2625,114.597,8.74 +2017-03-22 02:02:00,30.0875,114.535,8.72 +2017-03-22 02:17:00,30.23,114.47,8.7 +2017-03-22 02:32:00,30.4775,114.475,8.68 +2017-03-22 02:47:00,30.0925,114.537,8.66 +2017-03-22 03:02:00,29.795,114.59,8.63 +2017-03-22 03:17:00,29.1637,114.585,8.62 +2017-03-22 03:32:00,29.3575,114.59,8.6 +2017-03-22 03:47:00,30.7775,114.567,8.57 +2017-03-22 04:02:00,29.5975,114.54,8.55 +2017-03-22 04:17:00,29.3625,114.492,8.54 +2017-03-22 04:32:00,29.84,114.41,8.51 +2017-03-22 04:47:00,30.2288,114.32,8.48 +2017-03-22 05:02:00,31.1062,114.235,8.46 +2017-03-22 05:17:00,29.1113,114.158,8.42 +2017-03-22 05:32:00,30.18,114.12,8.4 +2017-03-22 05:47:00,29.99,114.092,8.37 +2017-03-22 06:02:00,30.3725,114.062,8.34 +2017-03-22 06:17:00,30.0375,114.08,8.32 +2017-03-22 06:32:00,29.7937,114.16,8.29 +2017-03-22 06:47:00,30.6725,114.268,8.29 +2017-03-22 07:02:00,30.92,114.335,8.28 +2017-03-22 07:17:00,30.82,114.352,8.28 +2017-03-22 07:32:00,29.9875,114.298,8.29 +2017-03-22 07:47:00,31.1087,114.26,8.28 +2017-03-22 08:02:00,30.1325,114.242,8.28 +2017-03-22 08:17:00,30.965,114.295,8.29 +2017-03-22 08:32:00,30.6212,114.335,8.32 +2017-03-22 08:47:00,30.325,114.393,8.33 +2017-03-22 09:02:00,30.4225,114.402,8.33 +2017-03-22 09:17:00,30.575,114.385,8.34 +2017-03-22 09:32:00,31.255,114.332,8.34 +2017-03-22 09:47:00,30.1338,114.302,8.36 +2017-03-22 10:02:00,31.36,114.27,8.37 +2017-03-22 10:17:00,29.0638,114.255,8.38 +2017-03-22 10:32:00,29.5925,114.22,8.4 +2017-03-22 10:47:00,29.4475,114.14,8.45 +2017-03-22 11:02:00,29.8913,114.035,8.49 +2017-03-22 11:17:00,30.8675,113.915,8.53 +2017-03-22 11:32:00,29.7925,113.798,8.6 +2017-03-22 11:47:00,29.9863,113.665,8.65 +2017-03-22 12:02:00,29.3988,113.555,8.68 +2017-03-22 12:17:00,29.7425,113.423,8.69 +2017-03-22 12:32:00,31.7087,113.345,8.73 +2017-03-22 12:47:00,31.36,113.34,8.8 +2017-03-22 13:02:00,28.9688,113.362,8.84 +2017-03-22 13:17:00,30.5762,113.432,8.87 +2017-03-22 13:32:00,29.9912,113.5,8.89 +2017-03-22 13:47:00,31.21,113.555,8.93 +2017-03-22 14:02:00,29.6862,113.647,8.96 +2017-03-22 14:17:00,29.745,113.712,8.99 +2017-03-22 14:32:00,30.9662,113.79,9.05 +2017-03-22 14:47:00,30.3775,113.837,9.09 +2017-03-22 15:02:00,30.5788,113.905,9.12 +2017-03-22 15:17:00,30.1813,113.962,9.16 +2017-03-22 15:32:00,29.8937,114.0,9.19 +2017-03-22 15:47:00,30.525,114.033,9.22 +2017-03-22 16:02:00,30.0437,113.98,9.25 +2017-03-22 16:17:00,30.9637,113.89,9.28 +2017-03-22 16:32:00,29.3613,113.805,9.32 +2017-03-22 16:47:00,30.4762,113.712,9.35 +2017-03-22 17:02:00,30.625,113.692,9.38 +2017-03-22 17:17:00,30.8275,113.677,9.4 +2017-03-22 17:32:00,29.3087,113.685,9.42 +2017-03-22 17:47:00,31.37,113.69,9.45 +2017-03-22 18:02:00,30.7213,113.682,9.47 +2017-03-22 18:17:00,31.2087,113.67,9.48 +2017-03-22 18:32:00,31.4137,113.665,9.48 +2017-03-22 18:47:00,29.4987,113.612,9.51 +2017-03-22 19:02:00,30.9662,113.533,9.51 +2017-03-22 19:17:00,30.5275,113.38,9.49 +2017-03-22 19:32:00,30.475,113.155,9.48 +2017-03-22 19:47:00,31.0112,112.893,9.45 +2017-03-22 20:02:00,30.43,112.51,9.41 +2017-03-22 20:17:00,30.8225,112.107,9.37 +2017-03-22 20:32:00,29.9887,111.662,9.34 +2017-03-22 20:47:00,30.14,111.197,9.32 +2017-03-22 21:02:00,29.3613,110.737,9.29 +2017-03-22 21:17:00,29.4987,110.268,9.28 +2017-03-22 21:32:00,30.0912,109.825,9.26 +2017-03-22 21:47:00,28.4812,109.402,9.23 +2017-03-22 22:02:00,29.165,108.987,9.2 +2017-03-22 22:17:00,30.3787,108.647,9.16 +2017-03-22 22:32:00,30.0425,108.362,9.12 +2017-03-22 22:47:00,30.2312,108.102,9.07 +2017-03-22 23:02:00,30.6237,107.942,9.04 +2017-03-22 23:17:00,29.7438,107.785,9.01 +2017-03-22 23:32:00,31.1137,107.652,8.98 +2017-03-22 23:47:00,30.4775,107.507,8.94 +2017-03-23 00:02:00,30.0425,107.425,8.92 +2017-03-23 00:17:00,29.165,107.39,8.89 +2017-03-23 00:32:00,29.4062,107.402,8.85 +2017-03-23 00:47:00,30.9662,107.51,8.82 +2017-03-23 01:02:00,29.5475,107.617,8.79 +2017-03-23 01:17:00,29.1175,107.755,8.77 +2017-03-23 01:32:00,30.87,107.915,8.75 +2017-03-23 01:47:00,30.4262,108.07,8.73 +2017-03-23 02:02:00,30.5825,108.225,8.72 +2017-03-23 02:17:00,30.6762,108.375,8.71 +2017-03-23 02:32:00,28.9725,108.53,8.69 +2017-03-23 02:47:00,30.09,108.688,8.68 +2017-03-23 03:02:00,30.04,108.832,8.65 +2017-03-23 03:17:00,28.975,108.982,8.63 +2017-03-23 03:32:00,29.4525,109.117,8.62 +2017-03-23 03:47:00,31.2113,109.262,8.61 +2017-03-23 04:02:00,29.9388,109.365,8.6 +2017-03-23 04:17:00,30.1375,109.412,8.57 +2017-03-23 04:32:00,30.5275,109.423,8.55 +2017-03-23 04:47:00,30.8712,109.465,8.53 +2017-03-23 05:02:00,29.9437,109.56,8.51 +2017-03-23 05:17:00,31.16,109.643,8.5 +2017-03-23 05:32:00,29.6437,109.745,8.49 +2017-03-23 05:47:00,30.525,109.842,8.47 +2017-03-23 06:02:00,29.89,109.912,8.45 +2017-03-23 06:17:00,30.1387,109.94,8.43 +2017-03-23 06:32:00,30.2325,109.995,8.41 +2017-03-23 06:47:00,30.5788,110.022,8.39 +2017-03-23 07:02:00,30.6762,110.06,8.38 +2017-03-23 07:17:00,30.8237,110.092,8.37 +2017-03-23 07:32:00,29.4512,110.137,8.35 +2017-03-23 07:47:00,30.2325,110.175,8.34 +2017-03-23 08:02:00,30.4238,110.197,8.34 +2017-03-23 08:17:00,30.3775,110.242,8.34 +2017-03-23 08:32:00,30.92,110.277,8.34 +2017-03-23 08:47:00,30.4737,110.315,8.34 +2017-03-23 09:02:00,31.0612,110.355,8.33 +2017-03-23 09:17:00,30.0375,110.378,8.33 +2017-03-23 09:32:00,30.5238,110.435,8.35 +2017-03-23 09:47:00,31.2588,110.497,8.36 +2017-03-23 10:02:00,30.825,110.535,8.34 +2017-03-23 10:17:00,30.0387,110.585,8.34 +2017-03-23 10:32:00,30.6212,110.62,8.36 +2017-03-23 10:47:00,29.9912,110.67,8.38 +2017-03-23 11:02:00,31.1625,110.715,8.42 +2017-03-23 11:17:00,30.1362,110.745,8.43 +2017-03-23 11:32:00,29.7438,110.762,8.45 +2017-03-23 11:47:00,31.2075,110.732,8.47 +2017-03-23 12:02:00,29.5462,110.582,8.5 +2017-03-23 12:17:00,29.065,110.34,8.53 +2017-03-23 12:32:00,30.4262,110.003,8.54 +2017-03-23 12:47:00,30.625,109.487,8.55 +2017-03-23 13:02:00,30.725,108.917,8.57 +2017-03-23 13:17:00,30.4262,108.13,8.62 +2017-03-23 13:32:00,30.62,107.562,8.66 +2017-03-23 13:47:00,30.2775,107.292,8.66 +2017-03-23 14:02:00,30.0425,107.415,8.66 +2017-03-23 14:17:00,29.5987,107.852,8.67 +2017-03-23 14:32:00,29.645,108.587,8.67 +2017-03-23 14:47:00,31.665,109.71,8.67 +2017-03-23 15:02:00,32.3063,111.408,8.65 +2017-03-23 15:17:00,30.675,113.3,8.64 +2017-03-23 15:32:00,30.0925,114.965,8.65 +2017-03-23 15:47:00,30.0938,116.462,8.65 +2017-03-23 16:02:00,30.325,117.8,8.66 +2017-03-23 16:17:00,29.9425,118.893,8.68 +2017-03-23 16:32:00,30.5262,119.845,8.71 +2017-03-23 16:47:00,31.8575,120.712,8.71 +2017-03-23 17:02:00,30.2288,121.507,8.71 +2017-03-23 17:17:00,29.6937,122.135,8.7 +2017-03-23 17:32:00,30.82,122.557,8.69 +2017-03-23 17:47:00,30.7225,122.847,8.69 +2017-03-23 18:02:00,30.4762,123.02,8.67 +2017-03-23 18:17:00,30.6263,123.12,8.65 +2017-03-23 18:32:00,30.8213,123.162,8.64 +2017-03-23 18:47:00,30.4275,123.122,8.63 +2017-03-23 19:02:00,30.6237,123.0,8.62 +2017-03-23 19:17:00,29.4562,122.867,8.61 +2017-03-23 19:32:00,29.3587,122.673,8.59 +2017-03-23 19:47:00,31.0612,122.435,8.57 +2017-03-23 20:02:00,31.2087,122.192,8.54 +2017-03-23 20:17:00,30.8225,121.842,8.52 +2017-03-23 20:32:00,31.06,121.39,8.48 +2017-03-23 20:47:00,31.1075,120.965,8.44 +2017-03-23 21:02:00,31.0137,120.565,8.4 +2017-03-23 21:17:00,30.1362,120.235,8.37 +2017-03-23 21:32:00,29.8412,119.932,8.34 +2017-03-23 21:47:00,30.3763,119.615,8.32 +2017-03-23 22:02:00,31.81,119.352,8.29 +2017-03-23 22:17:00,30.725,119.057,8.27 +2017-03-23 22:32:00,31.1125,118.78,8.24 +2017-03-23 22:47:00,30.7712,118.457,8.21 +2017-03-23 23:02:00,30.425,118.205,8.19 +2017-03-23 23:17:00,30.8213,117.925,8.16 +2017-03-23 23:32:00,30.9662,117.647,8.14 +2017-03-23 23:47:00,30.0387,117.345,8.12 +2017-03-24 00:02:00,30.525,117.072,8.11 +2017-03-24 00:17:00,30.5238,116.798,8.08 +2017-03-24 00:32:00,30.2775,116.537,8.05 +2017-03-24 00:47:00,31.4625,116.285,8.03 +2017-03-24 01:02:00,30.9225,116.022,8.0 +2017-03-24 01:17:00,31.56,115.688,7.97 +2017-03-24 01:32:00,31.21,115.31,7.94 +2017-03-24 01:47:00,30.1837,114.965,7.9 +2017-03-24 02:02:00,30.1413,114.702,7.87 +2017-03-24 02:17:00,30.1362,114.477,7.84 +2017-03-24 02:32:00,31.26,114.312,7.81 +2017-03-24 02:47:00,30.8237,114.15,7.78 +2017-03-24 03:02:00,30.82,114.01,7.74 +2017-03-24 03:17:00,31.2588,113.9,7.72 +2017-03-24 03:32:00,30.9225,113.772,7.69 +2017-03-24 03:47:00,30.8213,113.652,7.66 +2017-03-24 04:02:00,30.0413,113.518,7.63 +2017-03-24 04:17:00,30.4262,113.37,7.58 +2017-03-24 04:32:00,30.7237,113.255,7.55 +2017-03-24 04:47:00,30.62,113.15,7.52 +2017-03-24 05:02:00,29.9887,113.03,7.49 +2017-03-24 05:17:00,29.9912,112.942,7.46 +2017-03-24 05:32:00,31.125,112.893,7.43 +2017-03-24 05:47:00,29.9912,112.792,7.39 +2017-03-24 06:02:00,30.7712,112.695,7.39 +2017-03-24 06:17:00,30.8225,112.53,7.4 +2017-03-24 06:32:00,30.9175,112.31,7.39 +2017-03-24 06:47:00,29.2113,112.097,7.35 +2017-03-24 07:02:00,29.4062,111.88,7.32 +2017-03-24 07:17:00,29.9912,111.66,7.32 +2017-03-24 07:32:00,30.77,111.477,7.31 +2017-03-24 07:47:00,30.7213,111.325,7.32 +2017-03-24 08:02:00,30.2775,111.315,7.32 +2017-03-24 08:17:00,31.5625,111.295,7.34 +2017-03-24 08:32:00,30.475,111.347,7.37 +2017-03-24 08:47:00,29.7937,111.312,7.41 +2017-03-24 09:02:00,29.21,111.175,7.44 +2017-03-24 09:17:00,30.7712,110.95,7.47 +2017-03-24 09:32:00,31.5112,110.625,7.5 +2017-03-24 09:47:00,29.8925,110.2,7.53 +2017-03-24 10:02:00,31.365,109.757,7.57 +2017-03-24 10:17:00,31.0612,109.015,7.62 +2017-03-24 10:32:00,31.0625,108.225,7.68 +2017-03-24 10:47:00,31.5125,107.3,7.71 +2017-03-24 11:02:00,30.575,106.202,7.77 +2017-03-24 11:17:00,31.26,104.955,7.81 +2017-03-24 11:32:00,30.62,103.57,7.86 +2017-03-24 11:47:00,31.26,102.105,7.93 +2017-03-24 12:02:00,31.4137,99.42,8.01 +2017-03-24 12:17:00,31.515,95.0575,8.05 +2017-03-24 12:32:00,31.4112,91.3025,8.12 +2017-03-24 12:47:00,31.26,88.0275,8.21 +2017-03-24 13:02:00,29.9912,82.82,8.3 +2017-03-24 13:17:00,29.7412,77.615,8.4 +2017-03-24 13:32:00,31.4088,73.4075,8.51 +2017-03-24 13:47:00,32.3075,70.3575,8.62 +2017-03-24 14:02:00,30.7237,68.89,8.72 +2017-03-24 14:17:00,30.6738,68.1275,8.78 +2017-03-24 14:32:00,30.9675,67.8475,8.82 +2017-03-24 14:47:00,31.6162,68.6225,8.86 +2017-03-24 15:02:00,30.28,72.0025,8.87 +2017-03-24 15:17:00,31.8637,75.3775,8.82 +2017-03-24 15:32:00,31.5163,79.0075,8.73 +2017-03-24 15:47:00,31.0638,82.6975,8.63 +2017-03-24 16:02:00,30.7225,86.12,8.53 +2017-03-24 16:17:00,29.405,89.1425,8.46 +2017-03-24 16:32:00,31.76,91.6725,8.42 +2017-03-24 16:47:00,30.8712,94.195,8.42 +2017-03-24 17:02:00,30.2775,96.1775,8.44 +2017-03-24 17:17:00,31.8562,98.195,8.45 +2017-03-24 17:32:00,32.455,99.8025,8.47 +2017-03-24 17:47:00,31.11,101.15,8.52 +2017-03-24 18:02:00,30.6263,102.347,8.56 +2017-03-24 18:17:00,30.7712,103.372,8.62 +2017-03-24 18:32:00,32.1575,104.235,8.68 +2017-03-24 18:47:00,31.3125,104.89,8.77 +2017-03-24 19:02:00,30.375,105.402,8.89 +2017-03-24 19:17:00,29.6,105.775,9.03 +2017-03-24 19:32:00,30.3775,105.997,9.18 +2017-03-24 19:47:00,30.875,106.17,9.31 +2017-03-24 20:02:00,30.3812,106.345,9.41 +2017-03-24 20:17:00,30.38,106.512,9.49 +2017-03-24 20:32:00,30.185,106.673,9.52 +2017-03-24 20:47:00,31.4613,106.792,9.53 +2017-03-24 21:02:00,30.48,106.9,9.49 +2017-03-24 21:17:00,31.21,106.997,9.47 +2017-03-24 21:32:00,31.7113,107.055,9.45 +2017-03-24 21:47:00,31.5625,107.105,9.42 +2017-03-24 22:02:00,31.015,107.11,9.39 +2017-03-24 22:17:00,30.9187,107.112,9.34 +2017-03-24 22:32:00,31.5112,107.1,9.26 +2017-03-24 22:47:00,31.3138,107.07,9.16 +2017-03-24 23:02:00,31.7162,107.04,9.04 +2017-03-24 23:17:00,29.9412,106.98,8.91 +2017-03-24 23:32:00,29.8425,106.93,8.77 +2017-03-24 23:47:00,31.1588,106.878,8.63 +2017-03-25 00:02:00,30.87,106.732,8.5 +2017-03-25 00:17:00,30.2262,106.527,8.4 +2017-03-25 00:32:00,31.2588,106.342,8.3 +2017-03-25 00:47:00,31.7125,106.205,8.21 +2017-03-25 01:02:00,30.1813,106.175,8.13 +2017-03-25 01:17:00,31.0137,106.167,8.08 +2017-03-25 01:32:00,31.0112,106.195,8.03 +2017-03-25 01:47:00,31.31,106.182,7.98 +2017-03-25 02:02:00,29.7937,106.192,7.93 +2017-03-25 02:17:00,31.5112,106.195,7.88 +2017-03-25 02:32:00,32.1588,106.195,7.84 +2017-03-25 02:47:00,30.8725,106.225,7.79 +2017-03-25 03:02:00,31.4112,106.247,7.76 +2017-03-25 03:17:00,30.1825,106.262,7.72 +2017-03-25 03:32:00,30.6225,106.25,7.68 +2017-03-25 03:47:00,31.0125,106.25,7.64 +2017-03-25 04:02:00,30.4725,106.24,7.61 +2017-03-25 04:17:00,30.475,106.21,7.57 +2017-03-25 04:32:00,30.6263,106.165,7.53 +2017-03-25 04:47:00,30.7213,106.022,7.49 +2017-03-25 05:02:00,31.46,105.85,7.47 +2017-03-25 05:17:00,31.4613,105.685,7.44 +2017-03-25 05:32:00,31.8037,105.625,7.41 +2017-03-25 05:47:00,30.5238,105.615,7.4 +2017-03-25 06:02:00,31.06,105.63,7.38 +2017-03-25 06:17:00,30.72,105.647,7.37 +2017-03-25 06:32:00,30.6237,105.675,7.36 +2017-03-25 06:47:00,30.23,105.702,7.36 +2017-03-25 07:02:00,30.3737,105.74,7.37 +2017-03-25 07:17:00,32.305,105.705,7.38 +2017-03-25 07:32:00,30.4238,105.692,7.4 +2017-03-25 07:47:00,30.7725,105.67,7.4 +2017-03-25 08:02:00,31.0112,105.595,7.42 +2017-03-25 08:17:00,30.2775,105.47,7.45 +2017-03-25 08:32:00,32.1075,105.345,7.47 +2017-03-25 08:47:00,31.3625,105.21,7.5 +2017-03-25 09:02:00,32.105,105.115,7.53 +2017-03-25 09:17:00,30.3288,105.042,7.55 +2017-03-25 09:32:00,31.1575,104.997,7.59 +2017-03-25 09:47:00,30.0375,105.018,7.62 +2017-03-25 10:02:00,30.8225,105.077,7.66 +2017-03-25 10:17:00,30.7687,105.128,7.68 +2017-03-25 10:32:00,29.5925,105.182,7.7 +2017-03-25 10:47:00,30.7213,105.245,7.74 +2017-03-25 11:02:00,31.06,105.275,7.78 +2017-03-25 11:17:00,30.3763,105.212,7.82 +2017-03-25 11:32:00,30.2288,105.09,7.87 +2017-03-25 11:47:00,30.09,104.855,7.93 +2017-03-25 12:02:00,31.7562,104.65,7.97 +2017-03-25 12:17:00,30.6225,104.525,8.01 +2017-03-25 12:32:00,31.8575,104.47,8.06 +2017-03-25 12:47:00,29.4975,104.435,8.1 +2017-03-25 13:02:00,30.5737,104.423,8.13 +2017-03-25 13:17:00,30.92,104.408,8.18 +2017-03-25 13:32:00,31.4137,104.378,8.21 +2017-03-25 13:47:00,30.3288,104.335,8.26 +2017-03-25 14:02:00,30.7225,104.283,8.3 +2017-03-25 14:17:00,30.7188,104.222,8.35 +2017-03-25 14:32:00,30.4238,104.188,8.38 +2017-03-25 14:47:00,30.77,104.188,8.44 +2017-03-25 15:02:00,31.6137,104.14,8.48 +2017-03-25 15:17:00,29.69,104.14,8.54 +2017-03-25 15:32:00,30.135,104.092,8.6 +2017-03-25 15:47:00,29.12,104.102,8.64 +2017-03-25 16:02:00,31.0125,104.08,8.69 +2017-03-25 16:17:00,30.825,104.025,8.75 +2017-03-25 16:32:00,29.795,103.945,8.82 +2017-03-25 16:47:00,29.9887,103.78,8.86 +2017-03-25 17:02:00,30.4725,103.592,8.91 +2017-03-25 17:17:00,29.02,103.452,8.96 +2017-03-25 17:32:00,29.8387,103.395,9.02 +2017-03-25 17:47:00,30.325,103.397,9.09 +2017-03-25 18:02:00,30.4737,103.442,9.15 +2017-03-25 18:17:00,30.8225,103.492,9.21 +2017-03-25 18:32:00,32.055,103.535,9.27 +2017-03-25 18:47:00,30.0887,103.585,9.32 +2017-03-25 19:02:00,30.5812,103.64,9.37 +2017-03-25 19:17:00,30.235,103.682,9.4 +2017-03-25 19:32:00,31.4637,103.685,9.43 +2017-03-25 19:47:00,29.995,103.717,9.47 +2017-03-25 20:02:00,31.3625,103.732,9.48 +2017-03-25 20:17:00,30.775,103.755,9.5 +2017-03-25 20:32:00,30.14,103.757,9.49 +2017-03-25 20:47:00,30.3312,103.772,9.5 +2017-03-25 21:02:00,30.775,103.76,9.49 +2017-03-25 21:17:00,30.235,103.66,9.47 +2017-03-25 21:32:00,30.2312,103.497,9.45 +2017-03-25 21:47:00,31.0175,103.372,9.39 +2017-03-25 22:02:00,30.0437,103.317,9.35 +2017-03-25 22:17:00,30.9262,103.3,9.31 +2017-03-25 22:32:00,30.82,103.347,9.26 +2017-03-25 22:47:00,29.5,103.37,9.2 +2017-03-25 23:02:00,30.7275,103.393,9.15 +2017-03-25 23:17:00,29.5,103.45,9.1 +2017-03-25 23:32:00,30.8288,103.485,9.04 +2017-03-25 23:47:00,30.2812,103.512,8.98 +2017-03-26 00:02:00,29.5013,103.518,8.92 +2017-03-26 00:17:00,29.89,103.527,8.85 +2017-03-26 00:32:00,30.9225,103.535,8.8 +2017-03-26 00:47:00,29.7475,103.542,8.75 +2017-03-26 01:02:00,30.48,103.537,8.7 +2017-03-26 01:17:00,29.795,103.53,8.64 +2017-03-26 01:32:00,31.065,103.535,8.58 +2017-03-26 01:47:00,29.12,103.542,8.53 +2017-03-26 02:02:00,30.7738,103.533,8.49 +2017-03-26 02:17:00,31.0638,103.505,8.44 +2017-03-26 02:32:00,29.99,103.42,8.39 +2017-03-26 02:47:00,32.0088,103.285,8.34 +2017-03-26 03:02:00,31.1137,103.155,8.29 +2017-03-26 03:17:00,30.5762,103.09,8.25 +2017-03-26 03:32:00,31.565,103.112,8.21 +2017-03-26 03:47:00,29.94,103.11,8.17 +2017-03-26 04:02:00,30.3838,103.137,8.13 +2017-03-26 04:17:00,30.38,103.155,8.08 +2017-03-26 04:32:00,31.905,103.173,8.04 +2017-03-26 04:47:00,31.2625,103.2,8.01 +2017-03-26 05:02:00,30.9225,103.212,7.98 +2017-03-26 05:17:00,30.3763,103.242,7.94 +2017-03-26 05:32:00,29.3125,103.242,7.9 +2017-03-26 05:47:00,30.6287,103.253,7.88 +2017-03-26 06:02:00,30.2762,103.255,7.87 +2017-03-26 06:17:00,30.33,103.247,7.86 +2017-03-26 06:32:00,29.8,103.182,7.87 +2017-03-26 06:47:00,30.8237,103.097,7.86 +2017-03-26 07:02:00,31.31,103.01,7.86 +2017-03-26 07:17:00,30.4775,102.912,7.88 +2017-03-26 07:32:00,29.99,102.83,7.9 +2017-03-26 07:47:00,29.455,102.755,7.93 +2017-03-26 08:02:00,30.9675,102.695,7.97 +2017-03-26 08:17:00,30.63,102.705,8.01 +2017-03-26 08:32:00,30.7725,102.787,8.04 +2017-03-26 08:47:00,31.2125,102.942,8.07 +2017-03-26 09:02:00,30.7712,103.067,8.11 +2017-03-26 09:17:00,29.845,103.192,8.14 +2017-03-26 09:32:00,31.06,103.22,8.17 +2017-03-26 09:47:00,30.82,103.17,8.18 +2017-03-26 10:02:00,28.9163,103.092,8.23 +2017-03-26 10:17:00,30.5788,103.048,8.28 +2017-03-26 10:32:00,30.6237,103.037,8.32 +2017-03-26 10:47:00,31.3587,103.035,8.35 +2017-03-26 11:02:00,30.8725,103.075,8.37 +2017-03-26 11:17:00,28.7175,103.102,8.41 +2017-03-26 11:32:00,30.725,103.125,8.45 +2017-03-26 11:47:00,30.4788,103.125,8.5 +2017-03-26 12:02:00,31.4112,103.147,8.54 +2017-03-26 12:17:00,31.1588,103.117,8.58 +2017-03-26 12:32:00,30.5262,103.155,8.62 +2017-03-26 12:47:00,29.1663,103.14,8.66 +2017-03-26 13:02:00,30.5788,103.12,8.7 +2017-03-26 13:17:00,30.8237,103.14,8.74 +2017-03-26 13:32:00,30.425,103.115,8.75 +2017-03-26 13:47:00,31.2612,103.135,8.79 +2017-03-26 14:02:00,30.6263,103.13,8.83 +2017-03-26 14:17:00,30.7237,103.077,8.88 +2017-03-26 14:32:00,30.675,102.965,8.93 +2017-03-26 14:47:00,31.905,102.825,8.97 +2017-03-26 15:02:00,31.7612,102.702,9.01 +2017-03-26 15:17:00,30.4262,102.652,9.06 +2017-03-26 15:32:00,30.2787,102.665,9.11 +2017-03-26 15:47:00,31.5587,102.652,9.16 +2017-03-26 16:02:00,29.4062,102.677,9.21 +2017-03-26 16:17:00,30.775,102.692,9.24 +2017-03-26 16:32:00,31.1637,102.727,9.29 +2017-03-26 16:47:00,31.0175,102.75,9.34 +2017-03-26 17:02:00,31.0125,102.775,9.4 +2017-03-26 17:17:00,30.5762,102.777,9.45 +2017-03-26 17:32:00,31.1625,102.805,9.51 +2017-03-26 17:47:00,29.695,102.815,9.58 +2017-03-26 18:02:00,31.0163,102.842,9.64 +2017-03-26 18:17:00,30.1825,102.86,9.7 +2017-03-26 18:32:00,30.8275,102.887,9.75 +2017-03-26 18:47:00,31.065,102.893,9.8 +2017-03-26 19:02:00,30.92,102.91,9.83 +2017-03-26 19:17:00,30.2325,102.92,9.87 +2017-03-26 19:32:00,30.7775,102.93,9.9 +2017-03-26 19:47:00,29.5525,102.917,9.92 +2017-03-26 20:02:00,30.6787,102.862,9.93 +2017-03-26 20:17:00,31.315,102.79,9.93 +2017-03-26 20:32:00,30.7262,102.717,9.93 +2017-03-26 20:47:00,31.1175,102.65,9.92 +2017-03-26 21:02:00,29.8475,102.59,9.9 +2017-03-26 21:17:00,30.3812,102.548,9.87 +2017-03-26 21:32:00,30.4737,102.53,9.83 +2017-03-26 21:47:00,29.8988,102.505,9.8 +2017-03-26 22:02:00,31.1137,102.477,9.75 +2017-03-26 22:17:00,30.1825,102.46,9.69 +2017-03-26 22:32:00,30.53,102.452,9.62 +2017-03-26 22:47:00,29.745,102.438,9.55 +2017-03-26 23:02:00,31.0625,102.44,9.48 +2017-03-26 23:17:00,31.1113,102.425,9.42 +2017-03-26 23:32:00,31.1575,102.397,9.35 +2017-03-26 23:47:00,30.1375,102.37,9.28 +2017-03-27 00:02:00,31.0175,102.36,9.22 +2017-03-27 00:17:00,30.6225,102.307,9.16 +2017-03-27 00:32:00,30.4788,102.077,9.1 +2017-03-27 00:47:00,30.97,101.855,9.06 +2017-03-27 01:02:00,29.8937,101.71,9.0 +2017-03-27 01:17:00,29.4512,101.622,8.95 +2017-03-27 01:32:00,30.5788,101.597,8.89 +2017-03-27 01:47:00,29.595,101.587,8.83 +2017-03-27 02:02:00,31.365,101.625,8.78 +2017-03-27 02:17:00,30.23,101.63,8.72 +2017-03-27 02:32:00,29.745,101.637,8.67 +2017-03-27 02:47:00,30.3763,101.66,8.62 +2017-03-27 03:02:00,30.23,101.688,8.56 +2017-03-27 03:17:00,30.23,101.697,8.5 +2017-03-27 03:32:00,31.3125,101.722,8.46 +2017-03-27 03:47:00,31.1637,101.747,8.41 +2017-03-27 04:02:00,31.01,101.768,8.38 +2017-03-27 04:17:00,31.4163,101.783,8.32 +2017-03-27 04:32:00,31.3625,101.787,8.26 +2017-03-27 04:47:00,29.6488,101.785,8.21 +2017-03-27 05:02:00,30.625,101.79,8.18 +2017-03-27 05:17:00,30.3312,101.78,8.17 +2017-03-27 05:32:00,30.5275,101.745,8.13 +2017-03-27 05:47:00,30.7237,101.662,8.09 +2017-03-27 06:02:00,30.77,101.6,8.06 +2017-03-27 06:17:00,29.5975,101.567,8.04 +2017-03-27 06:32:00,30.6725,101.555,8.07 +2017-03-27 06:47:00,31.8075,101.533,8.07 +2017-03-27 07:02:00,30.425,101.57,8.09 +2017-03-27 07:17:00,30.7738,101.595,8.1 +2017-03-27 07:32:00,30.28,101.643,8.11 +2017-03-27 07:47:00,30.2337,101.677,8.14 +2017-03-27 08:02:00,29.2162,101.715,8.17 +2017-03-27 08:17:00,30.1837,101.737,8.21 +2017-03-27 08:32:00,30.3775,101.747,8.26 +2017-03-27 08:47:00,30.87,101.725,8.3 +2017-03-27 09:02:00,29.7487,101.74,8.35 +2017-03-27 09:17:00,30.375,101.755,8.4 +2017-03-27 09:32:00,30.8737,101.775,8.48 +2017-03-27 09:47:00,30.3775,101.805,8.54 +2017-03-27 10:02:00,29.9925,101.842,8.6 +2017-03-27 10:17:00,30.1862,101.875,8.64 +2017-03-27 10:32:00,30.2762,101.902,8.59 +2017-03-27 10:47:00,30.1387,101.925,8.6 +2017-03-27 11:02:00,30.6275,101.945,8.61 +2017-03-27 11:17:00,31.3175,101.955,8.64 +2017-03-27 11:32:00,30.6725,101.965,8.7 +2017-03-27 11:47:00,30.92,101.955,8.77 +2017-03-27 12:02:00,31.86,101.91,8.84 +2017-03-27 12:17:00,30.73,101.84,8.89 +2017-03-27 12:32:00,31.6137,101.73,8.93 +2017-03-27 12:47:00,31.4675,101.625,8.97 +2017-03-27 13:02:00,29.6425,101.575,9.03 +2017-03-27 13:17:00,29.3625,101.537,9.08 +2017-03-27 13:32:00,29.2712,101.537,9.08 +2017-03-27 13:47:00,30.3275,101.533,9.08 +2017-03-27 14:02:00,31.3138,101.572,9.13 +2017-03-27 14:17:00,30.0437,101.622,9.24 +2017-03-27 14:32:00,30.1387,101.655,9.34 +2017-03-27 14:47:00,30.7275,101.688,9.4 +2017-03-27 15:02:00,29.7988,101.707,9.47 +2017-03-27 15:17:00,30.2812,101.705,9.52 +2017-03-27 15:32:00,30.3288,101.643,9.55 +2017-03-27 15:47:00,31.4675,101.507,9.55 +2017-03-27 16:02:00,30.0963,101.322,9.56 +2017-03-27 16:17:00,30.5262,101.177,9.61 +2017-03-27 16:32:00,29.7975,101.025,9.67 +2017-03-27 16:47:00,32.0638,100.935,9.74 +2017-03-27 17:02:00,30.7787,100.86,9.8 +2017-03-27 17:17:00,30.0925,100.863,9.84 +2017-03-27 17:32:00,30.5812,100.887,9.88 +2017-03-27 17:47:00,30.235,100.905,9.97 +2017-03-27 18:02:00,30.1888,100.923,10.09 +2017-03-27 18:17:00,30.1862,100.94,10.19 +2017-03-27 18:32:00,31.4688,100.952,10.26 +2017-03-27 18:47:00,30.1462,100.945,10.34 +2017-03-27 19:02:00,29.4075,100.882,10.38 +2017-03-27 19:17:00,30.3825,100.735,10.43 +2017-03-27 19:32:00,29.0175,100.602,10.41 +2017-03-27 19:47:00,29.9425,100.515,10.4 +2017-03-27 20:02:00,30.8737,100.465,10.42 +2017-03-27 20:17:00,29.0675,100.45,10.44 +2017-03-27 20:32:00,29.2687,100.438,10.47 +2017-03-27 20:47:00,30.2337,100.465,10.49 +2017-03-27 21:02:00,29.5037,100.5,10.5 +2017-03-27 21:17:00,28.6762,100.542,10.5 +2017-03-27 21:32:00,30.1413,100.572,10.48 +2017-03-27 21:47:00,28.92,100.615,10.46 +2017-03-27 22:02:00,30.9225,100.655,10.44 +2017-03-27 22:17:00,30.9187,100.667,10.38 +2017-03-27 22:32:00,29.8463,100.655,10.3 +2017-03-27 22:47:00,29.165,100.592,10.22 +2017-03-27 23:02:00,30.4313,100.518,10.14 +2017-03-27 23:17:00,29.99,100.475,10.1 +2017-03-27 23:32:00,29.6975,100.47,10.1 +2017-03-27 23:47:00,30.6787,100.488,10.12 +2017-03-28 00:02:00,30.5312,100.527,10.07 +2017-03-28 00:17:00,29.7462,100.555,9.99 +2017-03-28 00:32:00,30.0413,100.615,9.89 +2017-03-28 00:47:00,31.065,100.68,9.79 +2017-03-28 01:02:00,31.4187,100.722,9.72 +2017-03-28 01:17:00,30.3337,100.79,9.64 +2017-03-28 01:32:00,30.2875,100.802,9.55 +2017-03-28 01:47:00,28.7213,100.817,9.49 +2017-03-28 02:02:00,29.6475,100.768,9.42 +2017-03-28 02:17:00,30.1488,100.71,9.36 +2017-03-28 02:32:00,30.1437,100.65,9.33 +2017-03-28 02:47:00,30.38,100.577,9.29 +2017-03-28 03:02:00,31.3175,100.565,9.24 +2017-03-28 03:17:00,29.6488,100.567,9.2 +2017-03-28 03:32:00,29.8438,100.61,9.17 +2017-03-28 03:47:00,29.6488,100.637,9.13 +2017-03-28 04:02:00,29.6488,100.677,9.08 +2017-03-28 04:17:00,31.7612,100.71,9.02 +2017-03-28 04:32:00,30.6287,100.757,8.97 +2017-03-28 04:47:00,30.045,100.76,8.91 +2017-03-28 05:02:00,31.42,100.753,8.9 +2017-03-28 05:17:00,31.3125,100.707,8.88 +2017-03-28 05:32:00,30.68,100.655,8.84 +2017-03-28 05:47:00,31.0625,100.597,8.81 +2017-03-28 06:02:00,29.9425,100.52,8.8 +2017-03-28 06:17:00,30.28,100.455,8.78 +2017-03-28 06:32:00,30.965,100.423,8.77 +2017-03-28 06:47:00,29.7988,100.385,8.73 +2017-03-28 07:02:00,30.5312,100.387,8.7 +2017-03-28 07:17:00,31.6212,100.39,8.72 +2017-03-28 07:32:00,30.6775,100.412,8.77 +2017-03-28 07:47:00,30.3337,100.425,8.84 +2017-03-28 08:02:00,31.515,100.435,8.89 +2017-03-28 08:17:00,30.4262,100.455,8.94 +2017-03-28 08:32:00,30.5325,100.462,9.01 +2017-03-28 08:47:00,31.165,100.482,9.06 +2017-03-28 09:02:00,30.9262,100.488,9.12 +2017-03-28 09:17:00,30.3812,100.492,9.16 +2017-03-28 09:32:00,30.775,100.492,9.21 +2017-03-28 09:47:00,29.9437,100.492,9.23 +2017-03-28 10:02:00,30.3275,100.5,9.26 +2017-03-28 10:17:00,30.2838,100.488,9.38 +2017-03-28 10:32:00,31.0175,100.452,9.5 +2017-03-28 10:47:00,30.095,100.427,9.54 +2017-03-28 11:02:00,30.9225,100.357,9.54 +2017-03-28 11:17:00,30.525,100.283,9.52 +2017-03-28 11:32:00,30.425,100.195,9.56 +2017-03-28 11:47:00,29.94,100.147,9.59 +2017-03-28 12:02:00,31.2125,100.125,9.6 +2017-03-28 12:17:00,30.8725,100.11,9.63 +2017-03-28 12:32:00,29.9912,100.087,9.61 +2017-03-28 12:47:00,29.8,100.082,9.63 +2017-03-28 13:02:00,30.5312,100.042,9.67 +2017-03-28 13:17:00,29.2663,100.033,9.72 +2017-03-28 13:32:00,30.4775,100.018,9.77 +2017-03-28 13:47:00,29.9475,99.9725,9.82 +2017-03-28 14:02:00,30.3787,99.975,9.88 +2017-03-28 14:17:00,30.4762,99.9625,9.93 +2017-03-28 14:32:00,30.3312,99.9625,9.97 +2017-03-28 14:47:00,30.5788,99.9625,9.99 +2017-03-28 15:02:00,30.3838,99.9475,10.02 +2017-03-28 15:17:00,31.0638,99.96,10.04 +2017-03-28 15:32:00,31.2637,99.9625,10.08 +2017-03-28 15:47:00,28.875,99.975,10.12 +2017-03-28 16:02:00,30.7775,99.9825,10.19 +2017-03-28 16:17:00,30.1413,99.9875,10.24 +2017-03-28 16:32:00,30.0925,100.005,10.29 +2017-03-28 16:47:00,29.2675,100.033,10.35 +2017-03-28 17:02:00,30.825,100.07,10.42 +2017-03-28 17:17:00,29.3162,100.102,10.48 +2017-03-28 17:32:00,30.6338,100.117,10.54 +2017-03-28 17:47:00,29.4075,100.135,10.63 +2017-03-28 18:02:00,30.0413,100.143,10.73 +2017-03-28 18:17:00,30.4775,100.162,10.85 +2017-03-28 18:32:00,30.6275,100.15,10.95 +2017-03-28 18:47:00,30.97,100.158,11.04 +2017-03-28 19:02:00,29.65,100.143,11.11 +2017-03-28 19:17:00,30.88,100.117,11.18 +2017-03-28 19:32:00,30.0938,100.135,11.23 +2017-03-28 19:47:00,29.9,100.097,11.28 +2017-03-28 20:02:00,30.2838,100.082,11.34 +2017-03-28 20:17:00,29.6975,100.06,11.41 +2017-03-28 20:32:00,29.9463,100.042,11.46 +2017-03-28 20:47:00,30.825,100.018,11.46 +2017-03-28 21:02:00,30.0938,99.995,11.49 +2017-03-28 21:17:00,29.8012,99.9775,11.47 +2017-03-28 21:32:00,29.9912,99.9525,11.46 +2017-03-28 21:47:00,29.9962,99.9375,11.48 +2017-03-28 22:02:00,29.9475,99.91,11.44 +2017-03-28 22:17:00,30.3288,99.9,11.39 +2017-03-28 22:32:00,30.24,99.8725,11.33 +2017-03-28 22:47:00,31.6175,99.86,11.29 +2017-03-28 23:02:00,28.3312,99.85,11.25 +2017-03-28 23:17:00,30.1862,99.8325,11.19 +2017-03-28 23:32:00,30.3787,99.815,11.15 +2017-03-28 23:47:00,30.38,99.8075,11.1 +2017-03-29 00:02:00,30.7825,99.81,11.04 +2017-03-29 00:17:00,29.3162,99.79,10.97 +2017-03-29 00:32:00,30.1437,99.7875,10.91 +2017-03-29 00:47:00,30.0437,99.785,10.85 +2017-03-29 01:02:00,29.9938,99.78,10.8 +2017-03-29 01:17:00,29.605,99.7725,10.75 +2017-03-29 01:32:00,30.2312,99.7675,10.7 +2017-03-29 01:47:00,29.1188,99.7625,10.64 +2017-03-29 02:02:00,29.1687,99.745,10.6 +2017-03-29 02:17:00,30.0462,99.7325,10.56 +2017-03-29 02:32:00,29.3662,99.7275,10.52 +2017-03-29 02:47:00,30.7787,99.74,10.49 +2017-03-29 03:02:00,30.3812,99.7075,10.44 +2017-03-29 03:17:00,29.505,99.68,10.41 +2017-03-29 03:32:00,29.7487,99.6825,10.36 +2017-03-29 03:47:00,30.3825,99.6825,10.33 +2017-03-29 04:02:00,30.4788,99.7075,10.29 +2017-03-29 04:17:00,30.6312,99.7525,10.26 +2017-03-29 04:32:00,29.8962,99.7875,10.22 +2017-03-29 04:47:00,29.8463,99.81,10.17 +2017-03-29 05:02:00,31.3637,99.8575,10.14 +2017-03-29 05:17:00,28.9212,100.495,10.1 +2017-03-29 05:32:00,29.65,101.512,10.05 +2017-03-29 05:47:00,29.6475,102.857,9.99 +2017-03-29 06:02:00,30.1875,103.735,9.97 +2017-03-29 06:17:00,29.2675,104.107,9.97 +2017-03-29 06:32:00,30.6762,103.99,9.98 +2017-03-29 06:47:00,30.5287,103.692,9.98 +2017-03-29 07:02:00,29.0212,103.322,10.01 +2017-03-29 07:17:00,30.48,102.942,10.04 +2017-03-29 07:32:00,30.2325,102.557,10.06 +2017-03-29 07:47:00,28.725,102.19,10.07 +2017-03-29 08:02:00,30.8812,101.837,10.09 +2017-03-29 08:17:00,29.5537,101.53,10.08 +2017-03-29 08:32:00,30.6287,101.298,10.08 +2017-03-29 08:47:00,30.58,101.125,10.11 +2017-03-29 09:02:00,30.625,100.972,10.13 +2017-03-29 09:17:00,30.58,100.925,10.12 +2017-03-29 09:32:00,29.2725,100.952,10.15 +2017-03-29 09:47:00,29.1212,100.957,10.23 +2017-03-29 10:02:00,29.5037,101.087,10.29 +2017-03-29 10:17:00,31.4675,101.175,10.27 +2017-03-29 10:32:00,30.1437,101.125,10.26 +2017-03-29 10:47:00,29.4088,100.927,10.33 +2017-03-29 11:02:00,29.3162,100.695,10.31 +2017-03-29 11:17:00,30.6387,100.452,10.25 +2017-03-29 11:32:00,30.8275,100.147,10.22 +2017-03-29 11:47:00,29.9,99.8175,10.2 +2017-03-29 12:02:00,29.4613,99.4,10.19 +2017-03-29 12:17:00,30.1912,99.01,10.17 +2017-03-29 12:32:00,30.385,98.595,10.14 +2017-03-29 12:47:00,30.1862,98.25,10.15 +2017-03-29 13:02:00,29.8,98.0475,10.18 +2017-03-29 13:17:00,30.0975,97.8825,10.21 +2017-03-29 13:32:00,29.2637,97.7675,10.23 +2017-03-29 13:47:00,29.6512,97.6925,10.25 +2017-03-29 14:02:00,29.6987,97.63,10.25 +2017-03-29 14:17:00,29.5062,97.58,10.27 +2017-03-29 14:32:00,31.3675,97.4975,10.3 +2017-03-29 14:47:00,29.2225,97.3725,10.34 +2017-03-29 15:02:00,30.58,97.26,10.36 +2017-03-29 15:17:00,29.8487,97.195,10.38 +2017-03-29 15:32:00,30.4313,97.15,10.41 +2017-03-29 15:47:00,29.7025,97.175,10.46 +2017-03-29 16:02:00,30.53,97.2425,10.51 +2017-03-29 16:17:00,30.68,97.345,10.53 +2017-03-29 16:32:00,30.3825,97.4825,10.56 +2017-03-29 16:47:00,30.3838,97.6325,10.6 +2017-03-29 17:02:00,28.8237,97.7075,10.67 +2017-03-29 17:17:00,31.465,97.7525,10.72 +2017-03-29 17:32:00,30.8763,97.74,10.74 +2017-03-29 17:47:00,30.3875,97.6975,10.77 +2017-03-29 18:02:00,30.3325,97.67,10.79 +2017-03-29 18:17:00,30.7288,97.7,10.82 +2017-03-29 18:32:00,29.7513,97.7725,10.85 +2017-03-29 18:47:00,29.8475,97.8775,10.85 +2017-03-29 19:02:00,29.55,98.0075,10.86 +2017-03-29 19:17:00,29.3187,98.1475,10.87 +2017-03-29 19:32:00,31.1663,98.27,10.89 +2017-03-29 19:47:00,30.58,98.3075,10.94 +2017-03-29 20:02:00,30.9225,98.295,10.94 +2017-03-29 20:17:00,29.1712,98.225,10.95 +2017-03-29 20:32:00,29.3187,98.1525,10.96 +2017-03-29 20:47:00,29.7,98.115,10.98 +2017-03-29 21:02:00,28.5825,98.1275,10.99 +2017-03-29 21:17:00,30.6312,98.1975,10.98 +2017-03-29 21:32:00,30.2862,98.27,10.96 +2017-03-29 21:47:00,29.3138,98.3775,10.94 +2017-03-29 22:02:00,29.2637,98.47,10.94 +2017-03-29 22:17:00,30.2862,98.565,10.96 +2017-03-29 22:32:00,29.365,98.565,10.96 +2017-03-29 22:47:00,30.97,98.535,10.94 +2017-03-29 23:02:00,29.1675,98.465,10.92 +2017-03-29 23:17:00,29.895,98.385,10.91 +2017-03-29 23:32:00,28.3363,98.34,10.89 +2017-03-29 23:47:00,29.505,98.345,10.89 +2017-03-30 00:02:00,29.7537,98.3675,10.87 +2017-03-30 00:17:00,30.385,98.4225,10.83 +2017-03-30 00:32:00,30.6325,98.49,10.81 +2017-03-30 00:47:00,30.1462,98.5625,10.79 +2017-03-30 01:02:00,30.5338,98.6325,10.79 +2017-03-30 01:17:00,30.1912,98.695,10.76 +2017-03-30 01:32:00,31.215,98.68,10.73 +2017-03-30 01:47:00,30.2363,98.605,10.72 +2017-03-30 02:02:00,28.7762,98.5125,10.7 +2017-03-30 02:17:00,29.3688,98.435,10.68 +2017-03-30 02:32:00,30.1912,98.4075,10.66 +2017-03-30 02:47:00,30.1488,98.4025,10.65 +2017-03-30 03:02:00,29.1237,98.4575,10.62 +2017-03-30 03:17:00,30.3325,98.4825,10.61 +2017-03-30 03:32:00,29.6512,98.545,10.6 +2017-03-30 03:47:00,30.2312,98.5875,10.61 +2017-03-30 04:02:00,30.6862,98.63,10.59 +2017-03-30 04:17:00,31.5225,98.6275,10.58 +2017-03-30 04:32:00,30.435,98.5925,10.58 +2017-03-30 04:47:00,31.115,98.4575,10.58 +2017-03-30 05:02:00,30.63,98.3475,10.59 +2017-03-30 05:17:00,29.8475,98.2375,10.57 +2017-03-30 05:32:00,29.2663,98.2075,10.58 +2017-03-30 05:47:00,29.3187,98.2825,10.6 +2017-03-30 06:02:00,29.2663,98.345,10.61 +2017-03-30 06:17:00,30.9262,98.33,10.62 +2017-03-30 06:32:00,29.7975,98.245,10.62 +2017-03-30 06:47:00,29.9962,98.1625,10.56 +2017-03-30 07:02:00,30.1912,98.08,10.54 +2017-03-30 07:17:00,29.5987,97.9775,10.59 +2017-03-30 07:32:00,30.6312,97.89,10.64 +2017-03-30 07:47:00,29.6963,97.815,10.64 +2017-03-30 08:02:00,30.235,97.8725,10.63 +2017-03-30 08:17:00,30.7288,98.035,10.65 +2017-03-30 08:32:00,31.3187,98.2225,10.69 +2017-03-30 08:47:00,29.9975,98.3725,10.74 +2017-03-30 09:02:00,30.145,98.4325,10.79 +2017-03-30 09:17:00,29.505,98.395,10.76 +2017-03-30 09:32:00,29.7,98.31,10.71 +2017-03-30 09:47:00,28.6263,98.1675,10.73 +2017-03-30 10:02:00,30.1425,98.0275,10.8 +2017-03-30 10:17:00,29.1687,97.9175,10.86 +2017-03-30 10:32:00,29.75,97.8575,10.93 +2017-03-30 10:47:00,30.0013,97.88,10.99 +2017-03-30 11:02:00,30.48,97.925,10.99 +2017-03-30 11:17:00,31.265,97.975,11.08 +2017-03-30 11:32:00,30.3825,98.0,11.19 +2017-03-30 11:47:00,30.7762,98.005,11.24 +2017-03-30 12:02:00,30.4313,97.945,11.27 +2017-03-30 12:17:00,29.6062,97.83,11.26 +2017-03-30 12:32:00,30.19,97.6975,11.26 +2017-03-30 12:47:00,29.8975,97.59,11.27 +2017-03-30 13:02:00,28.9737,97.5,11.38 +2017-03-30 13:17:00,29.1225,97.4975,11.46 +2017-03-30 13:32:00,29.7012,97.525,11.52 +2017-03-30 13:47:00,30.4775,97.56,11.6 +2017-03-30 14:02:00,29.9975,97.605,11.69 +2017-03-30 14:17:00,29.8,97.625,11.8 +2017-03-30 14:32:00,29.895,97.685,11.86 +2017-03-30 14:47:00,30.1937,97.645,11.89 +2017-03-30 15:02:00,29.275,97.5825,11.93 +2017-03-30 15:17:00,29.605,97.48,12.0 +2017-03-30 15:32:00,29.75,97.36,12.05 +2017-03-30 15:47:00,30.4287,97.305,12.08 +2017-03-30 16:02:00,30.235,97.2875,12.1 +2017-03-30 16:17:00,30.6813,97.2875,12.13 +2017-03-30 16:32:00,30.2363,97.2575,12.17 +2017-03-30 16:47:00,30.68,97.2275,12.17 +2017-03-30 17:02:00,29.8012,97.25,12.12 +2017-03-30 17:17:00,30.9225,97.2125,12.11 +2017-03-30 17:32:00,30.1875,97.145,12.18 +2017-03-30 17:47:00,29.9463,97.06,12.26 +2017-03-30 18:02:00,30.2838,96.955,12.32 +2017-03-30 18:17:00,31.165,96.8975,12.34 +2017-03-30 18:32:00,30.4788,96.87,12.37 +2017-03-30 18:47:00,30.3337,96.885,12.4 +2017-03-30 19:02:00,31.6188,96.9425,12.43 +2017-03-30 19:17:00,29.8988,96.9975,12.46 +2017-03-30 19:32:00,29.7,97.085,12.5 +2017-03-30 19:47:00,30.0462,97.185,12.53 +2017-03-30 20:02:00,30.97,97.225,12.57 +2017-03-30 20:17:00,29.2188,97.1925,12.63 +2017-03-30 20:32:00,30.1437,97.1025,12.75 +2017-03-30 20:47:00,28.9238,96.99,12.74 +2017-03-30 21:02:00,29.8525,96.89,12.69 +2017-03-30 21:17:00,30.5825,96.8825,12.64 +2017-03-30 21:32:00,29.7513,96.8875,12.58 +2017-03-30 21:47:00,29.605,96.93,12.56 +2017-03-30 22:02:00,29.75,96.9725,12.51 +2017-03-30 22:17:00,28.7225,97.0325,12.48 +2017-03-30 22:32:00,29.4112,97.06,12.45 +2017-03-30 22:47:00,29.8012,97.0775,12.41 +2017-03-30 23:02:00,28.3312,97.0175,12.39 +2017-03-30 23:17:00,31.1188,96.93,12.38 +2017-03-30 23:32:00,30.6762,96.8175,12.36 +2017-03-30 23:47:00,30.0462,96.745,12.34 +2017-03-31 00:02:00,29.9463,96.735,12.3 +2017-03-31 00:17:00,29.455,96.755,12.26 +2017-03-31 00:32:00,29.5537,96.7875,12.17 +2017-03-31 00:47:00,29.9475,96.865,12.1 +2017-03-31 01:02:00,30.8775,96.915,12.05 +2017-03-31 01:17:00,30.7325,96.965,12.0 +2017-03-31 01:32:00,30.8262,96.975,11.97 +2017-03-31 01:47:00,29.5512,96.91,11.95 +2017-03-31 02:02:00,29.7487,96.815,11.91 +2017-03-31 02:17:00,29.8463,96.7,11.89 +2017-03-31 02:32:00,30.6787,96.6275,11.84 +2017-03-31 02:47:00,29.7525,96.6075,11.78 +2017-03-31 03:02:00,30.6775,96.63,11.72 +2017-03-31 03:17:00,29.5037,96.69,11.67 +2017-03-31 03:32:00,29.3625,96.7425,11.61 +2017-03-31 03:47:00,29.65,96.79,11.55 +2017-03-31 04:02:00,30.0512,96.825,11.49 +2017-03-31 04:17:00,30.5812,96.86,11.41 +2017-03-31 04:32:00,28.6813,96.7975,11.36 +2017-03-31 04:47:00,28.7275,96.6875,11.3 +2017-03-31 05:02:00,31.215,96.59,11.24 +2017-03-31 05:17:00,30.925,96.485,11.2 +2017-03-31 05:32:00,31.2125,96.8625,11.18 +2017-03-31 05:47:00,29.22,97.61,11.16 +2017-03-31 06:02:00,29.9,97.58,11.16 +2017-03-31 06:17:00,29.75,97.2575,11.15 +2017-03-31 06:32:00,30.8237,96.89,11.17 +2017-03-31 06:47:00,31.0175,96.56,11.19 +2017-03-31 07:02:00,28.9212,96.33,11.21 +2017-03-31 07:17:00,30.4325,96.1625,11.24 +2017-03-31 07:32:00,28.6738,96.0475,11.28 +2017-03-31 07:47:00,31.7663,95.9475,11.31 +2017-03-31 08:02:00,30.7812,95.9225,11.37 +2017-03-31 08:17:00,30.9713,95.9425,11.45 +2017-03-31 08:32:00,30.5875,95.975,11.52 +2017-03-31 08:47:00,30.1875,96.0175,11.59 +2017-03-31 09:02:00,30.9713,96.065,11.65 +2017-03-31 09:17:00,31.8587,96.145,11.72 +2017-03-31 09:32:00,29.0238,96.2,11.78 +2017-03-31 09:47:00,29.025,96.1925,11.86 +2017-03-31 10:02:00,29.75,96.1575,11.93 +2017-03-31 10:17:00,30.4812,96.0725,11.97 +2017-03-31 10:32:00,30.925,95.97,12.04 +2017-03-31 10:47:00,30.4788,95.9225,12.1 +2017-03-31 11:02:00,30.0975,95.91,12.16 +2017-03-31 11:17:00,30.7312,95.88,12.23 +2017-03-31 11:32:00,30.775,95.855,12.25 +2017-03-31 11:47:00,30.2363,95.86,12.27 +2017-03-31 12:02:00,30.9737,95.91,12.33 +2017-03-31 12:17:00,30.3838,95.99,12.36 +2017-03-31 12:32:00,29.7975,95.9525,12.4 +2017-03-31 12:47:00,31.5675,95.98,12.45 +2017-03-31 13:02:00,30.8763,95.895,12.49 +2017-03-31 13:17:00,29.32,95.835,12.51 +2017-03-31 13:32:00,30.1462,95.7875,12.48 +2017-03-31 13:47:00,30.6338,95.77,12.51 +2017-03-31 14:02:00,30.68,95.8575,12.55 +2017-03-31 14:17:00,31.2675,95.96,12.57 +2017-03-31 14:32:00,30.0475,96.075,12.6 +2017-03-31 14:47:00,31.2188,96.17,12.64 +2017-03-31 15:02:00,29.1212,96.2925,12.71 +2017-03-31 15:17:00,31.3675,96.405,12.76 +2017-03-31 15:32:00,28.5825,96.34,12.8 +2017-03-31 15:47:00,28.9275,96.2525,12.85 +2017-03-31 16:02:00,30.1937,96.1475,12.89 +2017-03-31 16:17:00,29.1712,95.995,12.92 +2017-03-31 16:32:00,29.8012,95.9275,12.95 +2017-03-31 16:47:00,28.825,95.9275,12.98 +2017-03-31 17:02:00,29.365,95.965,13.03 +2017-03-31 17:17:00,29.12,96.025,13.08 +2017-03-31 17:32:00,30.5825,96.085,13.12 +2017-03-31 17:47:00,30.8288,96.1525,13.18 +2017-03-31 18:02:00,30.3337,96.205,13.25 +2017-03-31 18:17:00,30.6338,96.2025,13.31 +2017-03-31 18:32:00,29.3688,96.1425,13.38 +2017-03-31 18:47:00,31.0238,96.0425,13.44 +2017-03-31 19:02:00,29.2188,95.9575,13.5 +2017-03-31 19:17:00,29.6525,95.92,13.56 +2017-03-31 19:32:00,29.9962,95.9325,13.66 +2017-03-31 19:47:00,31.6725,95.97,13.73 +2017-03-31 20:02:00,30.4337,96.035,13.78 +2017-03-31 20:17:00,29.9,96.0625,13.8 +2017-03-31 20:32:00,31.0713,96.0975,13.82 +2017-03-31 20:47:00,29.6062,96.115,13.84 +2017-03-31 21:02:00,29.5062,96.1275,13.84 +2017-03-31 21:17:00,29.5062,96.0925,13.83 +2017-03-31 21:32:00,29.5112,96.0125,13.81 +2017-03-31 21:47:00,27.79,95.9,13.79 +2017-03-31 22:02:00,28.385,95.82,13.78 +2017-03-31 22:17:00,30.635,95.7875,13.75 +2017-03-31 22:32:00,29.3213,95.78,13.73 +2017-03-31 22:47:00,29.4587,95.8225,13.68 +2017-03-31 23:02:00,31.3175,95.85,13.62 +2017-03-31 23:17:00,29.85,95.9275,13.58 +2017-03-31 23:32:00,29.1687,95.945,13.55 +2017-03-31 23:47:00,30.6813,95.9575,13.51 +2017-04-01 00:02:00,29.8525,95.9525,13.42 +2017-04-01 00:17:00,31.3725,95.895,13.3 +2017-04-01 00:32:00,30.6312,95.8325,13.23 +2017-04-01 00:47:00,29.6512,95.7525,13.2 +2017-04-01 01:02:00,30.0938,95.72,13.18 +2017-04-01 01:17:00,29.9987,95.74,13.14 +2017-04-01 01:32:00,30.0488,95.7975,13.06 +2017-04-01 01:47:00,29.8475,95.83,13.0 +2017-04-01 02:02:00,29.6525,95.8875,12.94 +2017-04-01 02:17:00,29.6038,95.9525,12.88 +2017-04-01 02:32:00,31.2675,95.94,12.84 +2017-04-01 02:47:00,29.4125,95.905,12.76 +2017-04-01 03:02:00,29.1725,95.82,12.7 +2017-04-01 03:17:00,30.7312,95.72,12.64 +2017-04-01 03:32:00,30.535,95.5825,12.59 +2017-04-01 03:47:00,29.6537,95.53,12.54 +2017-04-01 04:02:00,29.6012,95.5325,12.5 +2017-04-01 04:17:00,29.9463,95.5675,12.45 +2017-04-01 04:32:00,30.2337,95.6075,12.41 +2017-04-01 04:47:00,30.0475,95.655,12.37 +2017-04-01 05:02:00,30.3363,95.6825,12.35 +2017-04-01 05:17:00,29.6038,95.7125,12.31 +2017-04-01 05:32:00,29.6525,95.66,12.28 +2017-04-01 05:47:00,31.2625,95.5575,12.23 +2017-04-01 06:02:00,30.4825,95.4125,12.19 +2017-04-01 06:17:00,30.83,95.27,12.18 +2017-04-01 06:32:00,31.0187,95.1925,12.16 +2017-04-01 06:47:00,31.3187,95.1325,12.15 +2017-04-01 07:02:00,31.72,95.1525,12.14 +2017-04-01 07:17:00,29.5525,95.1825,12.17 +2017-04-01 07:32:00,30.9725,95.2275,12.21 +2017-04-01 07:47:00,30.3325,95.1925,12.25 +2017-04-01 08:02:00,30.53,95.1825,12.29 +2017-04-01 08:17:00,31.6687,95.1075,12.35 +2017-04-01 08:32:00,31.4163,95.0225,12.41 +2017-04-01 08:47:00,31.37,94.9575,12.46 +2017-04-01 09:02:00,31.57,94.905,12.5 +2017-04-01 09:17:00,31.2162,94.885,12.55 +2017-04-01 09:32:00,30.38,94.9175,12.61 +2017-04-01 09:47:00,31.4662,94.9775,12.67 +2017-04-01 10:02:00,30.5825,95.025,12.73 +2017-04-01 10:17:00,30.5325,95.0875,12.76 +2017-04-01 10:32:00,30.0938,95.1025,12.8 +2017-04-01 10:47:00,31.17,95.1275,12.85 +2017-04-01 11:02:00,29.0788,95.12,12.87 +2017-04-01 11:17:00,30.5837,95.075,12.9 +2017-04-01 11:32:00,30.24,95.0175,12.93 +2017-04-01 11:47:00,31.3688,94.9275,13.01 +2017-04-01 12:02:00,29.6537,94.8225,13.08 +2017-04-01 12:17:00,30.1475,94.785,13.15 +2017-04-01 12:32:00,31.3675,94.765,13.18 +2017-04-01 12:47:00,30.3838,94.79,13.18 +2017-04-01 13:02:00,30.05,94.8675,13.18 +2017-04-01 13:17:00,29.2687,94.94,13.21 +2017-04-01 13:32:00,30.48,95.0175,13.24 +2017-04-01 13:47:00,30.975,95.08,13.27 +2017-04-01 14:02:00,29.7487,95.1025,13.26 +2017-04-01 14:17:00,30.6338,95.085,13.27 +2017-04-01 14:32:00,29.2687,95.025,13.29 +2017-04-01 14:47:00,31.0225,94.9375,13.29 +2017-04-01 15:02:00,29.8487,94.8825,13.3 +2017-04-01 15:17:00,30.5325,94.8675,13.33 +2017-04-01 15:32:00,30.6325,94.8925,13.37 +2017-04-01 15:47:00,30.3337,94.9425,13.41 +2017-04-01 16:02:00,29.8012,94.9975,13.44 +2017-04-01 16:17:00,29.65,95.0625,13.49 +2017-04-01 16:32:00,30.1937,95.0825,13.53 +2017-04-01 16:47:00,30.1925,95.07,13.59 +2017-04-01 17:02:00,31.115,95.025,13.65 +2017-04-01 17:17:00,28.6275,94.955,13.72 +2017-04-01 17:32:00,31.2663,94.8925,13.8 +2017-04-01 17:47:00,29.8512,94.83,13.87 +2017-04-01 18:02:00,30.7787,94.8075,13.95 +2017-04-01 18:17:00,29.85,94.79,14.03 +2017-04-01 18:32:00,29.6025,94.8125,14.1 +2017-04-01 18:47:00,29.9962,94.8325,14.18 +2017-04-01 19:02:00,31.2225,94.95,14.25 +2017-04-01 19:17:00,28.9762,95.03,14.32 +2017-04-01 19:32:00,30.5837,95.03,14.37 +2017-04-01 19:47:00,29.6062,95.045,14.41 +2017-04-01 20:02:00,30.6275,95.0875,14.46 +2017-04-01 20:17:00,28.4837,95.18,14.48 +2017-04-01 20:32:00,33.2462,95.455,14.46 +2017-04-01 20:47:00,31.52,95.7975,14.43 +2017-04-01 21:02:00,31.6188,96.0175,14.46 +2017-04-01 21:17:00,32.51,96.265,14.43 +2017-04-01 21:32:00,32.5075,96.4475,14.53 +2017-04-01 21:47:00,32.5137,96.5875,14.5 +2017-04-01 22:02:00,33.48,96.705,14.46 +2017-04-01 22:17:00,33.29,96.7975,14.45 +2017-04-01 22:32:00,32.845,96.85,14.44 +2017-04-01 22:47:00,30.48,96.9,14.42 +2017-04-01 23:02:00,30.8825,96.9025,14.39 +2017-04-01 23:17:00,31.3737,96.825,14.37 +2017-04-01 23:32:00,29.9463,96.7125,14.34 +2017-04-01 23:47:00,31.2175,96.6075,14.29 +2017-04-02 00:02:00,31.0212,96.505,14.24 +2017-04-02 00:17:00,31.52,96.44,14.2 +2017-04-02 00:32:00,31.0212,96.41,14.18 +2017-04-02 00:47:00,31.32,96.3325,14.16 +2017-04-02 01:02:00,30.9737,96.2725,14.12 +2017-04-02 01:17:00,30.68,96.1475,14.08 +2017-04-02 01:32:00,31.2663,96.0,14.04 +2017-04-02 01:47:00,30.6837,95.8325,14.01 +2017-04-02 02:02:00,31.22,95.6525,13.94 +2017-04-02 02:17:00,31.6212,95.4425,13.85 +2017-04-02 02:32:00,31.12,95.265,13.78 +2017-04-02 02:47:00,29.7562,95.12,13.72 +2017-04-02 03:02:00,30.3387,95.0,13.68 +2017-04-02 03:17:00,30.1488,94.8975,13.62 +2017-04-02 03:32:00,31.8162,94.7725,13.54 +2017-04-02 03:47:00,30.3862,94.61,13.48 +2017-04-02 04:02:00,33.0437,94.4375,13.42 +2017-04-02 04:17:00,30.535,94.2575,13.38 +2017-04-02 04:32:00,31.8613,94.0725,13.34 +2017-04-02 04:47:00,31.62,93.935,13.29 +2017-04-02 05:02:00,30.9287,93.84,13.26 +2017-04-02 05:17:00,30.6787,93.81,13.23 +2017-04-02 05:32:00,31.815,93.805,13.19 +2017-04-02 05:47:00,30.6338,93.8325,13.18 +2017-04-02 06:02:00,30.93,93.8675,13.15 +2017-04-02 06:17:00,31.2612,93.8475,13.15 +2017-04-02 06:32:00,30.5863,93.77,13.15 +2017-04-02 06:47:00,30.4325,93.69,13.14 +2017-04-02 07:02:00,31.5687,93.6125,13.15 +2017-04-02 07:17:00,30.19,93.545,13.17 +2017-04-02 07:32:00,31.0238,93.465,13.2 +2017-04-02 07:47:00,30.685,93.4125,13.23 +2017-04-02 08:02:00,30.7775,93.34,13.25 +2017-04-02 08:17:00,30.78,93.29,13.26 +2017-04-02 08:32:00,30.3387,93.2725,13.31 +2017-04-02 08:47:00,30.9275,93.28,13.37 +2017-04-02 09:02:00,30.73,93.31,13.4 +2017-04-02 09:17:00,31.0687,93.375,13.44 +2017-04-02 09:32:00,30.4775,93.4225,13.55 +2017-04-02 09:47:00,30.9713,93.4875,13.58 +2017-04-02 10:02:00,30.8825,93.545,13.62 +2017-04-02 10:17:00,31.1675,93.6225,13.62 +2017-04-02 10:32:00,30.9238,93.6925,13.61 +2017-04-02 10:47:00,30.1437,93.735,13.66 +2017-04-02 11:02:00,30.335,93.78,13.72 +2017-04-02 11:17:00,29.6012,93.82,13.74 +2017-04-02 11:32:00,32.845,93.8575,13.79 +2017-04-02 11:47:00,31.6237,93.89,13.82 +2017-04-02 12:02:00,30.7275,93.9425,13.85 +2017-04-02 12:17:00,29.3162,93.9625,13.89 +2017-04-02 12:32:00,30.6338,94.01,13.92 +2017-04-02 12:47:00,30.5837,94.0225,13.9 +2017-04-02 13:02:00,31.3187,94.05,13.87 +2017-04-02 13:17:00,30.8825,94.0825,13.87 +2017-04-02 13:32:00,30.58,94.1,13.89 +2017-04-02 13:47:00,30.78,94.115,13.89 +2017-04-02 14:02:00,31.5187,94.12,13.86 +2017-04-02 14:17:00,31.0212,94.1375,13.85 +2017-04-02 14:32:00,29.8538,94.155,13.85 +2017-04-02 14:47:00,29.755,94.19,13.83 +2017-04-02 15:02:00,30.0987,94.205,13.83 +2017-04-02 15:17:00,30.24,94.2225,13.86 +2017-04-02 15:32:00,29.9025,94.2275,13.89 +2017-04-02 15:47:00,31.4737,94.255,13.9 +2017-04-02 16:02:00,32.5088,94.25,13.92 +2017-04-02 16:17:00,31.265,94.275,13.94 +2017-04-02 16:32:00,30.5325,94.2875,13.97 +2017-04-02 16:47:00,30.8325,94.3,13.99 +2017-04-02 17:02:00,29.4112,94.3225,14.0 +2017-04-02 17:17:00,29.0737,94.345,14.01 +2017-04-02 17:32:00,30.145,94.36,14.02 +2017-04-02 17:47:00,30.4812,94.3825,14.04 +2017-04-02 18:02:00,32.0675,94.41,14.08 +2017-04-02 18:17:00,31.2675,94.4175,14.12 +2017-04-02 18:32:00,30.535,94.455,14.16 +2017-04-02 18:47:00,31.7188,94.485,14.22 +2017-04-02 19:02:00,29.37,94.5075,14.26 +2017-04-02 19:17:00,29.7988,94.55,14.29 +2017-04-02 19:32:00,31.0225,94.615,14.32 +2017-04-02 19:47:00,30.535,94.6475,14.32 +2017-04-02 20:02:00,29.61,94.715,14.32 +2017-04-02 20:17:00,32.07,94.7675,14.32 +2017-04-02 20:32:00,29.9,94.78,14.32 +2017-04-02 20:47:00,30.9287,94.765,14.29 +2017-04-02 21:02:00,30.1,94.78,14.27 +2017-04-02 21:17:00,29.1738,94.7375,14.26 +2017-04-02 21:32:00,31.1175,94.715,14.27 +2017-04-02 21:47:00,31.6762,94.7275,14.25 +2017-04-02 22:02:00,31.42,94.76,14.24 +2017-04-02 22:17:00,29.9025,94.82,14.22 +2017-04-02 22:32:00,30.335,94.91,14.18 +2017-04-02 22:47:00,31.12,94.9925,14.15 +2017-04-02 23:02:00,30.1925,95.0925,14.11 +2017-04-02 23:17:00,30.0512,95.2,14.08 +2017-04-02 23:32:00,31.3213,95.305,14.04 +2017-04-02 23:47:00,30.4825,95.4025,13.99 +2017-04-03 00:02:00,29.2188,95.5175,13.94 +2017-04-03 00:17:00,29.7012,95.6125,13.88 +2017-04-03 00:32:00,30.1475,95.675,13.82 +2017-04-03 00:47:00,30.3887,95.75,13.75 +2017-04-03 01:02:00,31.3187,95.815,13.68 +2017-04-03 01:17:00,30.24,95.8925,13.59 +2017-04-03 01:32:00,31.1675,95.97,13.51 +2017-04-03 01:47:00,30.3325,96.0375,13.45 +2017-04-03 02:02:00,30.68,96.09,13.38 +2017-04-03 02:17:00,31.17,96.155,13.3 +2017-04-03 02:32:00,31.215,96.195,13.24 +2017-04-03 02:47:00,30.635,96.2575,13.16 +2017-04-03 03:02:00,31.0212,96.3225,13.09 +2017-04-03 03:17:00,31.4175,96.37,13.04 +2017-04-03 03:32:00,30.4375,96.4225,13.01 +2017-04-03 03:47:00,30.6862,96.4925,12.97 +2017-04-03 04:02:00,30.7325,96.5475,12.94 +2017-04-03 04:17:00,30.7312,96.61,12.89 +2017-04-03 04:32:00,31.025,96.67,12.85 +2017-04-03 04:47:00,30.1012,96.73,12.84 +2017-04-03 05:02:00,29.6025,96.81,12.8 +2017-04-03 05:17:00,31.3175,96.8675,12.79 +2017-04-03 05:32:00,31.9637,96.9075,12.77 +2017-04-03 05:47:00,29.755,96.95,12.74 +2017-04-03 06:02:00,31.7663,96.975,12.69 +2017-04-03 06:17:00,29.125,96.9925,12.63 +2017-04-03 06:32:00,31.2137,96.9975,12.59 +2017-04-03 06:47:00,31.065,96.9925,12.55 +2017-04-03 07:02:00,29.6537,96.9775,12.52 +2017-04-03 07:17:00,30.8787,97.21,12.47 +2017-04-03 07:32:00,30.88,97.925,12.44 +2017-04-03 07:47:00,29.8037,98.3175,12.4 +2017-04-03 08:02:00,30.9313,98.415,12.35 +2017-04-03 08:17:00,31.0662,98.175,12.38 +2017-04-03 08:32:00,31.7663,97.825,12.4 +2017-04-03 08:47:00,30.435,97.44,12.37 +2017-04-03 09:02:00,32.5075,97.115,12.35 +2017-04-03 09:17:00,31.7213,96.88,12.29 +2017-04-03 09:32:00,30.19,96.75,12.23 +2017-04-03 09:47:00,30.285,96.6975,12.21 +2017-04-03 10:02:00,30.1488,96.6975,12.21 +2017-04-03 10:17:00,32.5112,96.7125,12.22 +2017-04-03 10:32:00,30.5837,96.715,12.21 +2017-04-03 10:47:00,31.965,96.755,12.25 +2017-04-03 11:02:00,30.9762,96.7825,12.26 +2017-04-03 11:17:00,31.3162,96.7975,12.28 +2017-04-03 11:32:00,30.8312,96.815,12.29 +2017-04-03 11:47:00,32.015,96.84,12.29 +2017-04-03 12:02:00,31.22,96.86,12.29 +2017-04-03 12:17:00,30.095,96.925,12.26 +2017-04-03 12:32:00,31.5687,97.005,12.25 +2017-04-03 12:47:00,30.6325,97.1225,12.23 +2017-04-03 13:02:00,30.8775,97.22,12.23 +2017-04-03 13:17:00,31.5187,97.335,12.22 +2017-04-03 13:32:00,30.9725,97.465,12.2 +2017-04-03 13:47:00,30.6287,97.58,12.19 +2017-04-03 14:02:00,30.3825,97.68,12.2 +2017-04-03 14:17:00,31.4662,97.7475,12.19 +2017-04-03 14:32:00,32.115,97.8,12.18 +2017-04-03 14:47:00,32.4662,97.815,12.16 +2017-04-03 15:02:00,31.0238,97.7625,12.17 +2017-04-03 15:17:00,31.1175,97.63,12.21 +2017-04-03 15:32:00,30.2412,97.42,12.21 +2017-04-03 15:47:00,30.7312,97.2225,12.22 +2017-04-03 16:02:00,30.9713,96.965,12.23 +2017-04-03 16:17:00,32.0638,96.725,12.21 +2017-04-03 16:32:00,32.3112,96.4625,12.21 +2017-04-03 16:47:00,30.385,96.2325,12.23 +2017-04-03 17:02:00,30.7312,95.96,12.23 +2017-04-03 17:17:00,31.9112,95.72,12.22 +2017-04-03 17:32:00,30.6813,95.5175,12.22 +2017-04-03 17:47:00,29.9012,95.3425,12.23 +2017-04-03 18:02:00,31.7625,95.2075,12.21 +2017-04-03 18:17:00,30.3787,95.09,12.18 +2017-04-03 18:32:00,32.0137,94.9925,12.18 +2017-04-03 18:47:00,31.1687,94.8875,12.18 +2017-04-03 19:02:00,31.1637,94.8425,12.21 +2017-04-03 19:17:00,31.9613,94.81,12.2 +2017-04-03 19:32:00,30.1413,94.795,12.2 +2017-04-03 19:47:00,29.9475,94.795,12.17 +2017-04-03 20:02:00,30.8787,94.78,12.17 +2017-04-03 20:17:00,30.285,94.74,12.17 +2017-04-03 20:32:00,29.9037,94.73,12.17 +2017-04-03 20:47:00,29.8975,94.735,12.17 +2017-04-03 21:02:00,30.8775,94.7375,12.15 +2017-04-03 21:17:00,30.3325,94.7325,12.14 +2017-04-03 21:32:00,30.68,94.725,12.15 +2017-04-03 21:47:00,29.8463,94.7225,12.13 +2017-04-03 22:02:00,31.3688,94.71,12.14 +2017-04-03 22:17:00,30.6325,94.675,12.14 +2017-04-03 22:32:00,29.4613,94.6475,12.13 +2017-04-03 22:47:00,31.2637,94.61,12.11 +2017-04-03 23:02:00,31.6687,94.58,12.09 +2017-04-03 23:17:00,29.3637,94.5025,12.07 +2017-04-03 23:32:00,30.9238,94.44,12.02 +2017-04-03 23:47:00,31.9637,94.375,11.97 +2017-04-04 00:02:00,31.4212,94.265,11.93 +2017-04-04 00:17:00,30.9725,94.1225,11.91 +2017-04-04 00:32:00,30.7262,93.99,11.86 +2017-04-04 00:47:00,31.6738,93.8625,11.83 +2017-04-04 01:02:00,30.1012,93.84,11.8 +2017-04-04 01:17:00,30.3838,93.845,11.8 +2017-04-04 01:32:00,29.7975,93.8875,11.8 +2017-04-04 01:47:00,31.1137,93.915,11.8 +2017-04-04 02:02:00,32.0112,93.9625,11.76 +2017-04-04 02:17:00,30.1437,93.995,11.72 +2017-04-04 02:32:00,31.8637,94.025,11.67 +2017-04-04 02:47:00,31.4675,94.0625,11.61 +2017-04-04 03:02:00,31.62,94.0775,11.57 +2017-04-04 03:17:00,31.0662,94.0975,11.55 +2017-04-04 03:32:00,30.5812,94.1325,11.54 +2017-04-04 03:47:00,32.7925,94.1875,11.54 +2017-04-04 04:02:00,31.6675,94.2325,11.54 +2017-04-04 04:17:00,31.2612,94.3,11.54 +2017-04-04 04:32:00,31.515,94.335,11.53 +2017-04-04 04:47:00,31.1663,94.3675,11.53 +2017-04-04 05:02:00,31.0675,94.3975,11.52 +2017-04-04 05:17:00,30.775,94.4325,11.48 +2017-04-04 05:32:00,32.2125,94.4775,11.46 +2017-04-04 05:47:00,30.9675,94.5325,11.42 +2017-04-04 06:02:00,30.9725,94.5375,11.39 +2017-04-04 06:17:00,30.5338,94.4975,11.38 +2017-04-04 06:32:00,30.8763,94.45,11.36 +2017-04-04 06:47:00,31.0163,94.355,11.34 +2017-04-04 07:02:00,30.0912,94.2625,11.29 +2017-04-04 07:17:00,30.825,94.2125,11.28 +2017-04-04 07:32:00,31.5125,94.1625,11.29 +2017-04-04 07:47:00,30.92,95.165,11.29 +2017-04-04 08:02:00,30.775,96.1825,11.32 +2017-04-04 08:17:00,31.0163,95.995,11.33 +2017-04-04 08:32:00,30.5275,95.415,11.36 +2017-04-04 08:47:00,31.3637,94.835,11.4 +2017-04-04 09:02:00,30.9688,94.38,11.45 +2017-04-04 09:17:00,31.76,94.05,11.5 +2017-04-04 09:32:00,32.355,93.86,11.51 +2017-04-04 09:47:00,30.48,93.7575,11.56 +2017-04-04 10:02:00,29.6937,93.7475,11.66 +2017-04-04 10:17:00,30.0437,93.7375,11.73 +2017-04-04 10:32:00,31.3138,93.7925,11.76 +2017-04-04 10:47:00,31.4662,93.8725,11.73 +2017-04-04 11:02:00,31.3175,94.0075,11.75 +2017-04-04 11:17:00,31.3138,94.07,11.75 +2017-04-04 11:32:00,31.1637,94.1625,11.77 +2017-04-04 11:47:00,30.775,94.23,11.81 +2017-04-04 12:02:00,31.5662,94.31,11.78 +2017-04-04 12:17:00,30.2363,94.4025,11.77 +2017-04-04 12:32:00,31.21,94.4425,11.72 +2017-04-04 12:47:00,30.8262,94.4175,11.77 +2017-04-04 13:02:00,29.75,94.355,11.73 +2017-04-04 13:17:00,31.6125,94.2725,11.61 +2017-04-04 13:32:00,31.8613,94.21,11.5 +2017-04-04 13:47:00,32.3138,94.18,11.44 +2017-04-04 14:02:00,30.2838,94.1875,11.41 +2017-04-04 14:17:00,31.2625,94.14,11.41 +2017-04-04 14:32:00,30.6287,94.1125,11.42 +2017-04-04 14:47:00,32.0612,94.0875,11.41 +2017-04-04 15:02:00,30.5825,94.0225,11.39 +2017-04-04 15:17:00,31.5175,93.9725,11.37 +2017-04-04 15:32:00,31.2125,93.945,11.36 +2017-04-04 15:47:00,30.5825,93.8925,11.35 +2017-04-04 16:02:00,31.4587,93.955,11.36 +2017-04-04 16:17:00,31.1162,94.0775,11.37 +2017-04-04 16:32:00,29.945,94.085,11.38 +2017-04-04 16:47:00,31.0662,94.0775,11.38 +2017-04-04 17:02:00,32.06,94.0475,11.4 +2017-04-04 17:17:00,30.9662,93.9825,11.43 +2017-04-04 17:32:00,29.4088,93.8875,11.46 +2017-04-04 17:47:00,30.6287,93.805,11.49 +2017-04-04 18:02:00,31.4137,93.7325,11.52 +2017-04-04 18:17:00,31.9613,93.6425,11.54 +2017-04-04 18:32:00,30.8737,93.5425,11.56 +2017-04-04 18:47:00,30.2325,93.44,11.59 +2017-04-04 19:02:00,31.8587,93.325,11.59 +2017-04-04 19:17:00,30.7775,93.2075,11.6 +2017-04-04 19:32:00,31.21,93.0975,11.6 +2017-04-04 19:47:00,31.5638,92.9975,11.62 +2017-04-04 20:02:00,30.9688,92.8925,11.62 +2017-04-04 20:17:00,31.7612,92.8,11.62 +2017-04-04 20:32:00,31.6637,92.7025,11.62 +2017-04-04 20:47:00,29.9938,92.635,11.63 +2017-04-04 21:02:00,29.8962,92.6275,11.63 +2017-04-04 21:17:00,30.3312,92.7025,11.62 +2017-04-04 21:32:00,30.5788,92.8075,11.6 +2017-04-04 21:47:00,30.6775,92.86,11.59 +2017-04-04 22:02:00,30.6237,92.87,11.59 +2017-04-04 22:17:00,29.5987,92.865,11.58 +2017-04-04 22:30:59,32.5013,92.8675,11.57 +2017-04-04 22:47:00,30.4788,92.8325,11.55 +2017-04-04 23:02:00,31.9575,92.8425,11.53 +2017-04-04 23:17:00,29.895,92.8425,11.5 +2017-04-04 23:32:00,31.7175,92.8375,11.46 +2017-04-04 23:47:00,31.86,92.8375,11.42 +2017-04-05 00:02:00,30.43,92.855,11.38 +2017-04-05 00:17:00,31.4637,92.86,11.34 +2017-04-05 00:32:00,31.315,92.87,11.31 +2017-04-05 00:47:00,30.1875,92.8975,11.26 +2017-04-05 01:02:00,31.8125,92.9225,11.22 +2017-04-05 01:17:00,31.1137,92.9675,11.18 +2017-04-05 01:32:00,30.9713,92.9825,11.14 +2017-04-05 01:47:00,31.2175,93.02,11.09 +2017-04-05 02:02:00,29.2663,93.035,11.05 +2017-04-05 02:17:00,31.2625,93.07,11.01 +2017-04-05 02:32:00,32.2087,93.1675,10.98 +2017-04-05 02:47:00,30.925,93.3425,10.95 +2017-04-05 03:02:00,31.2113,93.4625,10.9 +2017-04-05 03:17:00,31.1625,93.5125,10.86 +2017-04-05 03:32:00,31.1612,93.545,10.81 +2017-04-05 03:47:00,31.6162,93.535,10.78 +2017-04-05 04:02:00,30.9675,93.5425,10.74 +2017-04-05 04:17:00,30.625,93.535,10.69 +2017-04-05 04:32:00,31.6188,93.525,10.64 +2017-04-05 04:47:00,30.2762,93.535,10.59 +2017-04-05 05:02:00,31.8075,93.5575,10.56 +2017-04-05 05:17:00,31.1075,93.5625,10.56 +2017-04-05 05:32:00,30.1862,93.545,10.55 +2017-04-05 05:47:00,32.1113,93.5675,10.53 +2017-04-05 06:02:00,31.4613,93.575,10.53 +2017-04-05 06:17:00,31.7625,93.5825,10.54 +2017-04-05 06:32:00,31.5112,93.6,10.54 +2017-04-05 06:47:00,30.9613,93.62,10.54 +2017-04-05 07:02:00,31.5662,93.565,10.55 +2017-04-05 07:17:00,30.9238,93.5075,10.59 +2017-04-05 07:32:00,32.1562,93.41,10.61 +2017-04-05 07:47:00,32.1612,93.34,10.64 +2017-04-05 08:02:00,30.1837,93.33,10.68 +2017-04-05 08:17:00,30.8025,93.355,10.75 +2017-04-05 08:32:00,31.785,93.4575,10.67 +2017-04-05 08:47:00,42.5037,93.5875,9.2 +2017-04-05 09:02:00,30.2062,93.6225,10.85 +2017-04-05 09:13:35,30.31,93.585,10.9 +2017-04-05 09:17:00,29.3838,93.575,10.91 +2017-04-05 09:32:00,28.985,93.3,10.95 +2017-04-05 09:47:00,28.74,92.415,11.0 +2017-04-05 10:02:00,28.8913,90.94,11.04 +2017-04-05 10:17:00,28.9875,89.27,11.1 +2017-04-05 10:32:00,28.7862,87.3725,11.17 +2017-04-05 10:47:00,28.6888,84.96,11.22 +2017-04-05 11:02:00,27.795,77.7525,11.26 +2017-04-05 11:17:00,29.23,72.295,11.33 +2017-04-05 11:32:00,29.1338,68.405,11.39 +2017-04-05 11:47:00,29.1813,66.4825,11.41 +2017-04-05 12:02:00,28.6888,65.66,10.65 +2017-04-05 12:17:00,30.3463,65.3425,10.39 +2017-04-05 12:32:00,28.64,65.1975,11.12 +2017-04-05 12:47:00,28.6875,65.13,11.81 +2017-04-05 13:02:00,28.8937,65.7025,11.85 +2017-04-05 13:17:00,29.615,68.4,11.84 +2017-04-05 13:32:00,29.4212,73.1725,11.76 +2017-04-05 13:47:00,29.0387,75.9975,11.63 +2017-04-05 14:02:00,28.9887,78.5975,11.49 +2017-04-05 14:17:00,29.9613,80.775,11.37 +2017-04-05 14:32:00,29.035,82.8575,11.29 +2017-04-05 14:47:00,29.96,84.5175,11.24 +2017-04-05 15:02:00,29.3725,85.72,11.22 +2017-04-05 15:17:00,28.2462,86.745,11.21 +2017-04-05 15:32:00,28.3475,87.575,11.19 +2017-04-05 15:47:00,29.4675,88.1375,11.16 +2017-04-05 16:02:00,28.4975,88.6825,11.14 +2017-04-05 16:17:00,29.0387,89.02,11.11 +2017-04-05 16:32:00,29.2312,89.345,11.09 +2017-04-05 16:47:00,28.6888,89.58,11.06 +2017-04-05 17:02:00,29.8112,89.8125,11.03 +2017-04-05 17:17:00,29.8138,90.0875,11.02 +2017-04-05 17:32:00,28.3463,90.24,11.0 +2017-04-05 17:47:00,28.345,90.33,11.0 +2017-04-05 18:02:00,29.0375,90.4325,11.0 +2017-04-05 18:17:00,29.7125,90.5675,11.02 +2017-04-05 18:32:00,29.035,90.655,11.05 +2017-04-05 18:47:00,28.5863,90.735,11.11 +2017-04-05 19:02:00,28.7887,90.8325,11.17 +2017-04-05 19:17:00,29.035,90.9625,11.2 +2017-04-05 19:32:00,29.3775,91.2375,11.24 +2017-04-05 19:47:00,29.2812,91.48,11.25 +2017-04-05 20:02:00,29.8625,91.565,11.23 +2017-04-05 20:17:00,29.9575,91.63,11.19 +2017-04-05 20:32:00,28.9887,91.6625,11.13 +2017-04-05 20:47:00,28.2975,91.705,11.06 +2017-04-05 21:02:00,28.345,91.7325,11.0 +2017-04-05 21:17:00,28.985,91.705,10.96 +2017-04-05 21:32:00,28.3962,91.7,10.91 +2017-04-05 21:47:00,28.585,91.715,10.85 +2017-04-05 22:02:00,28.9388,91.7475,10.81 +2017-04-05 22:17:00,28.635,91.7325,10.78 +2017-04-05 22:32:00,29.4662,91.76,10.75 +2017-04-05 22:47:00,29.5662,91.8175,10.72 +2017-04-05 23:02:00,29.1813,91.8025,10.69 +2017-04-05 23:17:00,28.4,91.8425,10.66 +2017-04-05 23:32:00,27.9938,91.82,10.64 +2017-04-05 23:47:00,28.6888,91.725,10.63 +2017-04-06 00:02:00,28.685,91.7525,10.62 +2017-04-06 00:17:00,28.4437,91.7425,10.62 +2017-04-06 00:32:00,28.8875,91.83,10.6 +2017-04-06 00:47:00,28.6413,92.0475,10.61 +2017-04-06 01:02:00,27.7937,92.24,10.59 +2017-04-06 01:17:00,29.3712,92.38,10.57 +2017-04-06 01:32:00,28.045,92.3625,10.54 +2017-04-06 01:47:00,27.3463,92.3925,10.5 +2017-04-06 02:02:00,28.045,92.285,10.46 +2017-04-06 02:17:00,30.0987,92.2775,10.41 +2017-04-06 02:32:00,29.0325,92.17,10.38 +2017-04-06 02:47:00,28.9362,92.15,10.34 +2017-04-06 03:02:00,28.9362,92.1125,10.3 +2017-04-06 03:17:00,28.9388,92.0175,10.25 +2017-04-06 03:32:00,29.37,91.97,10.2 +2017-04-06 03:47:00,29.76,91.98,10.14 +2017-04-06 04:02:00,29.7137,91.9275,10.09 +2017-04-06 04:17:00,29.6137,91.875,10.05 +2017-04-06 04:32:00,27.3988,91.87,10.02 +2017-04-06 04:47:00,28.0938,91.8625,9.96 +2017-04-06 05:02:00,29.4163,91.805,9.92 +2017-04-06 05:17:00,28.785,91.86,9.88 +2017-04-06 05:32:00,29.1362,91.9425,9.84 +2017-04-06 05:47:00,29.42,91.995,9.82 +2017-04-06 06:02:00,28.9375,91.9975,9.79 +2017-04-06 06:17:00,28.885,92.025,9.77 +2017-04-06 06:32:00,29.2775,92.0725,9.75 +2017-04-06 06:47:00,28.0963,92.095,9.74 +2017-04-06 07:02:00,28.7862,92.1475,9.74 +2017-04-06 07:17:00,28.6875,92.2325,9.74 +2017-04-06 07:32:00,29.13,92.1925,9.74 +2017-04-06 07:47:00,28.6338,92.1075,9.74 +2017-04-06 08:02:00,28.59,92.1275,9.79 +2017-04-06 08:17:00,29.6125,92.0275,9.87 +2017-04-06 08:32:00,29.0812,91.9575,9.91 +2017-04-06 08:47:00,30.7387,91.9025,9.94 +2017-04-06 09:02:00,29.6637,91.84,9.99 +2017-04-06 09:17:00,29.3712,91.7675,9.98 +2017-04-06 09:32:00,29.2775,91.77,10.02 +2017-04-06 09:47:00,28.6837,91.7075,10.05 +2017-04-06 10:02:00,29.0825,91.6825,10.11 +2017-04-06 10:17:00,28.7337,91.67,10.14 +2017-04-06 10:32:00,28.2937,91.8475,10.24 +2017-04-06 10:47:00,29.7588,92.0225,10.25 +2017-04-06 11:02:00,28.6387,92.0975,10.28 +2017-04-06 11:17:00,27.295,92.1825,10.35 +2017-04-06 11:32:00,29.3225,92.175,10.39 +2017-04-06 11:47:00,28.54,92.145,10.41 +2017-04-06 12:02:00,29.0338,92.08,10.44 +2017-04-06 12:17:00,29.9062,91.975,10.48 +2017-04-06 12:32:00,28.835,91.95,10.56 +2017-04-06 12:47:00,28.34,91.855,10.61 +2017-04-06 13:02:00,28.395,91.8075,10.65 +2017-04-06 13:17:00,28.8325,91.69,10.65 +2017-04-06 13:32:00,29.1275,91.71,10.67 +2017-04-06 13:47:00,29.715,91.625,10.65 +2017-04-06 14:02:00,28.095,91.53,10.64 +2017-04-06 14:17:00,29.0812,91.4725,10.67 +2017-04-06 14:32:00,29.23,91.3925,10.66 +2017-04-06 14:47:00,28.8913,91.3325,10.67 +2017-04-06 15:02:00,28.2462,91.28,10.66 +2017-04-06 15:17:00,29.3675,91.125,10.64 +2017-04-06 15:32:00,28.8862,91.05,10.63 +2017-04-06 15:47:00,29.2312,90.9425,10.62 +2017-04-06 16:02:00,28.4475,90.8675,10.62 +2017-04-06 16:17:00,29.4637,90.905,10.62 +2017-04-06 16:32:00,29.7125,91.0275,10.62 +2017-04-06 16:47:00,29.715,91.0775,10.63 +2017-04-06 17:02:00,28.54,91.1225,10.62 +2017-04-06 17:17:00,27.7438,91.1625,10.61 +2017-04-06 17:32:00,28.59,91.0475,10.6 +2017-04-06 17:47:00,27.8412,90.96,10.6 +2017-04-06 18:02:00,30.0088,90.8175,10.61 +2017-04-06 18:17:00,28.5,90.775,10.6 +2017-04-06 18:32:00,26.0225,90.6925,10.6 +2017-04-06 18:47:00,27.8937,90.6025,10.61 +2017-04-06 19:02:00,29.0325,90.51,10.62 +2017-04-06 19:17:00,27.4938,90.405,10.64 +2017-04-06 19:32:00,30.7937,90.41,10.65 +2017-04-06 19:47:00,28.5413,90.3375,10.65 +2017-04-06 20:02:00,28.0425,90.33,10.67 +2017-04-06 20:17:00,28.3425,90.2525,10.69 +2017-04-06 20:32:00,27.5963,90.2525,10.71 +2017-04-06 20:47:00,29.6663,90.225,10.72 +2017-04-06 21:02:00,28.295,90.33,10.72 +2017-04-06 21:17:00,26.7012,90.505,10.73 +2017-04-06 21:32:00,29.035,90.615,10.73 +2017-04-06 21:47:00,29.0362,90.6625,10.72 +2017-04-06 22:02:00,30.3463,90.605,10.72 +2017-04-06 22:17:00,30.79,90.5325,10.71 +2017-04-06 22:32:00,28.195,90.465,10.71 +2017-04-06 22:47:00,26.7525,90.43,10.69 +2017-04-06 23:02:00,27.745,90.3975,10.65 +2017-04-06 23:17:00,29.7625,90.3525,10.65 +2017-04-06 23:32:00,27.6963,90.325,10.64 +2017-04-06 23:47:00,29.37,90.2575,10.62 +2017-04-07 00:02:00,28.2487,90.265,10.61 +2017-04-07 00:17:00,28.445,90.1675,10.61 +2017-04-07 00:32:00,28.495,90.145,10.59 +2017-04-07 00:47:00,28.4475,90.115,10.58 +2017-04-07 01:02:00,27.9425,90.02,10.54 +2017-04-07 01:17:00,27.0938,89.965,10.52 +2017-04-07 01:32:00,29.86,90.1025,10.49 +2017-04-07 01:47:00,28.7887,90.2625,10.48 +2017-04-07 02:02:00,29.4662,90.32,10.45 +2017-04-07 02:17:00,27.1888,90.355,10.44 +2017-04-07 02:32:00,28.3975,90.3325,10.43 +2017-04-07 02:47:00,29.1825,90.3275,10.42 +2017-04-07 03:02:00,27.9925,90.2475,10.42 +2017-04-07 03:17:00,30.0137,90.2325,10.39 +2017-04-07 03:32:00,29.9625,90.125,10.35 +2017-04-07 03:47:00,28.985,90.06,10.32 +2017-04-07 04:02:00,28.8887,90.0675,10.28 +2017-04-07 04:17:00,29.8125,90.05,10.24 +2017-04-07 04:32:00,27.0437,90.0375,10.19 +2017-04-07 04:47:00,28.395,90.0725,10.13 +2017-04-07 05:02:00,30.4463,89.935,10.08 +2017-04-07 05:17:00,30.3925,89.9225,10.04 +2017-04-07 05:32:00,29.7175,89.9825,9.99 +2017-04-07 05:47:00,28.89,89.93,9.95 +2017-04-07 06:02:00,28.8387,89.9225,9.9 +2017-04-07 06:17:00,28.885,89.925,9.86 +2017-04-07 06:32:00,28.5413,90.0125,9.83 +2017-04-07 06:47:00,29.5137,90.02,9.8 +2017-04-07 07:02:00,28.3475,90.11,9.78 +2017-04-07 07:17:00,28.3962,90.21,9.77 +2017-04-07 07:32:00,29.1837,90.3,9.75 +2017-04-07 07:47:00,30.0575,90.335,9.74 +2017-04-07 08:02:00,29.5625,90.345,9.73 +2017-04-07 08:17:00,30.0563,90.2875,9.72 +2017-04-07 08:32:00,30.5912,90.27,9.72 +2017-04-07 08:47:00,29.5662,90.305,9.71 +2017-04-07 09:02:00,30.2962,90.26,9.71 +2017-04-07 09:17:00,29.37,90.2775,9.72 +2017-04-07 09:32:00,29.3237,90.2,9.76 +2017-04-07 09:47:00,30.5938,90.1525,9.82 +2017-04-07 10:02:00,29.565,90.075,9.86 +2017-04-07 10:17:00,29.3712,90.1375,9.89 +2017-04-07 10:32:00,28.9388,90.1375,9.93 +2017-04-07 10:47:00,28.1963,90.315,9.94 +2017-04-07 11:02:00,29.3725,90.3925,9.98 +2017-04-07 11:17:00,29.2288,90.5125,10.04 +2017-04-07 11:32:00,28.7375,90.54,10.09 +2017-04-07 11:47:00,28.6362,90.54,10.13 +2017-04-07 12:02:00,28.8375,94.205,10.14 +2017-04-07 12:17:00,28.0425,105.232,10.13 +2017-04-07 12:32:00,29.0812,100.982,10.13 +2017-04-07 12:47:00,29.1825,95.95,10.19 +2017-04-07 13:02:00,30.0075,92.3875,10.26 +2017-04-07 13:17:00,29.7137,90.05,10.35 +2017-04-07 13:32:00,29.615,88.72,10.43 +2017-04-07 13:47:00,28.7825,87.93,10.45 +2017-04-07 14:02:00,29.0338,87.595,10.46 +2017-04-07 14:17:00,29.1813,87.605,10.44 +2017-04-07 14:32:00,30.1963,87.6225,10.41 +2017-04-07 14:47:00,28.15,87.79,10.39 +2017-04-07 15:02:00,30.2962,87.9125,10.37 +2017-04-07 15:17:00,29.6125,88.1525,10.37 +2017-04-07 15:32:00,28.2475,88.3575,10.36 +2017-04-07 15:47:00,28.195,88.515,10.36 +2017-04-07 16:02:00,29.4637,88.595,10.35 +2017-04-07 16:17:00,27.7462,88.69,10.35 +2017-04-07 16:32:00,29.4163,88.8125,10.33 +2017-04-07 16:47:00,30.0975,88.8925,10.31 +2017-04-07 17:02:00,29.4163,88.93,10.29 +2017-04-07 17:17:00,28.785,88.9225,10.28 +2017-04-07 17:32:00,29.1837,88.9175,10.29 +2017-04-07 17:47:00,28.5875,89.0325,10.27 +2017-04-07 18:02:00,29.515,89.195,10.25 +2017-04-07 18:17:00,29.0825,89.335,10.24 +2017-04-07 18:32:00,28.685,89.29,10.24 +2017-04-07 18:47:00,29.8075,89.2675,10.25 +2017-04-07 19:02:00,28.9875,89.16,10.24 +2017-04-07 19:17:00,28.9837,89.18,10.24 +2017-04-07 19:32:00,29.0863,89.0725,10.22 +2017-04-07 19:47:00,29.1813,89.095,10.21 +2017-04-07 20:02:00,29.08,89.045,10.21 +2017-04-07 20:17:00,29.515,88.96,10.22 +2017-04-07 20:32:00,28.3925,88.975,10.21 +2017-04-07 20:47:00,29.4662,88.935,10.21 +2017-04-07 21:02:00,28.095,88.9025,10.22 +2017-04-07 21:17:00,28.9837,88.8125,10.23 +2017-04-07 21:32:00,29.3712,88.8325,10.24 +2017-04-07 21:47:00,29.1825,88.76,10.22 +2017-04-07 22:02:00,29.3262,88.7425,10.21 +2017-04-07 22:17:00,28.7387,88.845,10.22 +2017-04-07 22:32:00,29.13,88.985,10.21 +2017-04-07 22:47:00,28.2962,89.025,10.21 +2017-04-07 23:02:00,28.345,88.9825,10.19 +2017-04-07 23:17:00,28.5375,88.9275,10.19 +2017-04-07 23:32:00,28.835,88.845,10.19 +2017-04-07 23:47:00,30.1,88.81,10.2 +2017-04-08 00:02:00,29.565,88.6325,10.23 +2017-04-08 00:17:00,29.5638,88.6075,10.22 +2017-04-08 00:32:00,29.6625,88.495,10.22 +2017-04-08 00:47:00,28.7887,88.425,10.23 +2017-04-08 01:02:00,28.4475,88.3675,10.25 +2017-04-08 01:17:00,29.1312,88.2825,10.27 +2017-04-08 01:32:00,29.4688,88.1825,10.29 +2017-04-08 01:47:00,29.8138,88.14,10.32 +2017-04-08 02:02:00,28.4437,88.0425,10.36 +2017-04-08 02:17:00,29.18,88.01,10.38 +2017-04-08 02:32:00,29.715,87.9775,10.41 +2017-04-08 02:47:00,29.1312,88.03,10.45 +2017-04-08 03:02:00,29.2288,88.22,10.47 +2017-04-08 03:17:00,27.945,88.405,10.5 +2017-04-08 03:32:00,29.66,88.4075,10.53 +2017-04-08 03:47:00,29.465,88.3825,10.54 +2017-04-08 04:02:00,28.935,88.375,10.56 +2017-04-08 04:17:00,28.9337,88.3225,10.57 +2017-04-08 04:32:00,29.415,88.2725,10.58 +2017-04-08 04:47:00,27.9925,88.2175,10.59 +2017-04-08 05:02:00,29.7612,88.255,10.6 +2017-04-08 05:17:00,29.7625,88.2775,10.6 +2017-04-08 05:32:00,28.9825,88.3025,10.59 +2017-04-08 05:47:00,28.5413,88.3925,10.58 +2017-04-08 06:02:00,28.8862,88.3875,10.58 +2017-04-08 06:17:00,28.8838,88.405,10.57 +2017-04-08 06:32:00,27.6437,88.3625,10.56 +2017-04-08 06:47:00,29.2775,88.185,10.55 +2017-04-08 07:02:00,28.9825,87.95,10.53 +2017-04-08 07:17:00,28.9375,87.81,10.51 +2017-04-08 07:32:00,29.6113,87.7425,10.48 +2017-04-08 07:47:00,27.9938,87.6775,10.46 +2017-04-08 08:02:00,29.2337,87.7275,10.45 +2017-04-08 08:17:00,28.6888,87.96,10.44 +2017-04-08 08:32:00,30.06,88.145,10.45 +2017-04-08 08:47:00,30.15,88.2225,10.47 +2017-04-08 09:02:00,28.9362,88.3025,10.51 +2017-04-08 09:17:00,28.69,88.2675,10.55 +2017-04-08 09:32:00,29.3675,88.245,10.56 +2017-04-08 09:47:00,29.7125,88.1825,10.57 +2017-04-08 10:02:00,29.9575,88.245,10.65 +2017-04-08 10:17:00,28.545,88.1775,10.68 +2017-04-08 10:32:00,30.15,88.19,10.69 +2017-04-08 10:47:00,28.8375,88.1675,10.72 +2017-04-08 11:02:00,29.4187,88.21,10.74 +2017-04-08 11:17:00,29.3237,88.1925,10.82 +2017-04-08 11:32:00,29.4212,88.1875,10.92 +2017-04-08 11:47:00,28.0963,88.12,11.0 +2017-04-08 12:02:00,28.4975,88.225,11.04 +2017-04-08 12:17:00,29.6637,88.19,11.01 +2017-04-08 12:32:00,28.5912,88.2,10.99 +2017-04-08 12:47:00,29.8125,88.2175,10.96 +2017-04-08 13:02:00,29.7637,88.4575,10.92 +2017-04-08 13:17:00,28.5413,88.5575,10.88 +2017-04-08 13:32:00,28.6888,88.5775,10.86 +2017-04-08 13:47:00,29.6675,88.5475,10.86 +2017-04-08 14:02:00,30.2462,88.5025,10.85 +2017-04-08 14:17:00,28.7887,88.4775,10.84 +2017-04-08 14:32:00,29.1825,88.4325,10.86 +2017-04-08 14:47:00,28.7375,88.32,10.89 +2017-04-08 15:02:00,28.9887,88.2975,10.95 +2017-04-08 15:17:00,29.2312,88.2525,10.98 +2017-04-08 15:32:00,29.5187,88.2475,11.0 +2017-04-08 15:47:00,28.4475,88.1625,11.0 +2017-04-08 16:02:00,28.735,88.1325,11.02 +2017-04-08 16:17:00,28.5437,88.13,11.05 +2017-04-08 16:32:00,28.7375,88.1425,11.06 +2017-04-08 16:47:00,28.7887,88.16,11.06 +2017-04-08 17:02:00,29.2325,88.2175,11.05 +2017-04-08 17:17:00,30.25,88.2975,11.06 +2017-04-08 17:32:00,29.1813,88.4925,11.07 +2017-04-08 17:47:00,28.9388,88.74,11.07 +2017-04-08 18:02:00,29.8162,88.8925,11.08 +2017-04-08 18:17:00,28.3975,88.935,11.08 +2017-04-08 18:32:00,29.2787,88.95,11.09 +2017-04-08 18:47:00,29.1338,88.975,11.1 +2017-04-08 19:02:00,28.89,89.0425,11.1 +2017-04-08 19:17:00,29.9137,88.9975,11.09 +2017-04-08 19:32:00,28.4487,89.005,11.08 +2017-04-08 19:47:00,28.9863,89.01,11.09 +2017-04-08 20:02:00,28.84,88.9375,11.08 +2017-04-08 20:17:00,30.3475,88.91,11.05 +2017-04-08 20:32:00,29.135,88.8525,11.02 +2017-04-08 20:47:00,28.0488,88.8775,11.01 +2017-04-08 21:02:00,29.42,88.85,10.99 +2017-04-08 21:17:00,28.7387,88.88,10.97 +2017-04-08 21:32:00,28.4975,88.9,10.93 +2017-04-08 21:47:00,29.715,88.8925,10.91 +2017-04-08 22:02:00,29.1875,88.93,10.88 +2017-04-08 22:17:00,29.3275,89.0825,10.86 +2017-04-08 22:32:00,29.4187,89.235,10.84 +2017-04-08 22:47:00,28.79,89.2625,10.82 +2017-04-08 23:02:00,29.185,89.2925,10.8 +2017-04-08 23:17:00,30.0088,89.265,10.81 +2017-04-08 23:32:00,29.5687,89.2725,10.8 +2017-04-08 23:47:00,30.1562,89.225,10.81 +2017-04-09 00:02:00,29.815,89.1875,10.81 +2017-04-09 00:17:00,28.6875,89.125,10.83 +2017-04-09 00:32:00,28.2475,89.0425,10.84 +2017-04-09 00:47:00,28.4475,89.03,10.85 +2017-04-09 01:02:00,29.86,88.98,10.84 +2017-04-09 01:17:00,28.3,88.905,10.84 +2017-04-09 01:32:00,29.7162,88.8825,10.83 +2017-04-09 01:47:00,29.615,88.8575,10.84 +2017-04-09 02:02:00,29.23,88.8,10.83 +2017-04-09 02:17:00,29.3712,88.7725,10.84 +2017-04-09 02:32:00,29.6137,88.74,10.85 +2017-04-09 02:47:00,28.345,88.77,10.85 +2017-04-09 03:02:00,29.8637,88.695,10.86 +2017-04-09 03:17:00,30.0088,88.64,10.85 +2017-04-09 03:32:00,29.8625,88.8075,10.85 +2017-04-09 03:47:00,30.0088,89.0075,10.84 +2017-04-09 04:02:00,28.94,89.015,10.82 +2017-04-09 04:17:00,29.5163,89.0275,10.81 +2017-04-09 04:32:00,29.6637,88.965,10.8 +2017-04-09 04:47:00,29.2787,88.965,10.78 +2017-04-09 05:02:00,29.81,88.9275,10.76 +2017-04-09 05:17:00,28.6875,88.9175,10.74 +2017-04-09 05:32:00,29.4675,88.8625,10.71 +2017-04-09 05:47:00,29.7625,88.94,10.69 +2017-04-09 06:02:00,28.5875,88.905,10.69 +2017-04-09 06:17:00,29.235,88.945,10.72 +2017-04-09 06:32:00,28.8375,89.0025,10.74 +2017-04-09 06:47:00,30.0125,89.01,10.75 +2017-04-09 07:02:00,28.89,89.0525,10.76 +2017-04-09 07:17:00,28.15,89.07,10.79 +2017-04-09 07:32:00,28.4463,89.055,10.82 +2017-04-09 07:47:00,29.0825,89.005,10.87 +2017-04-09 08:02:00,27.6488,89.0425,10.93 +2017-04-09 08:17:00,29.085,89.02,11.0 +2017-04-09 08:32:00,29.96,88.96,11.07 +2017-04-09 08:47:00,29.4625,88.9225,11.15 +2017-04-09 09:02:00,28.9388,88.8475,11.23 +2017-04-09 09:17:00,28.785,88.82,11.32 +2017-04-09 09:32:00,29.23,88.7675,11.38 +2017-04-09 09:47:00,30.0088,88.735,11.43 +2017-04-09 10:02:00,29.3213,88.7475,11.52 +2017-04-09 10:17:00,28.7363,88.7025,11.6 +2017-04-09 10:32:00,29.4163,88.6575,11.65 +2017-04-09 10:47:00,28.6862,88.625,11.66 +2017-04-09 11:02:00,28.6362,88.6075,11.77 +2017-04-09 11:17:00,29.0325,88.68,11.78 +2017-04-09 11:32:00,28.9875,88.5925,11.87 +2017-04-09 11:47:00,29.0825,88.5975,11.95 +2017-04-09 12:02:00,27.94,88.645,12.02 +2017-04-09 12:17:00,28.8887,88.575,12.08 +2017-04-09 12:32:00,28.7887,88.7825,12.12 +2017-04-09 12:47:00,28.7862,89.015,12.19 +2017-04-09 13:02:00,28.7875,89.105,12.23 +2017-04-09 13:17:00,29.6663,89.1775,12.25 +2017-04-09 13:32:00,28.4925,89.135,12.27 +2017-04-09 13:47:00,29.0837,89.035,12.31 +2017-04-09 14:02:00,28.9825,89.0525,12.32 +2017-04-09 14:17:00,29.4662,89.07,12.34 +2017-04-09 14:32:00,28.89,89.0375,12.36 +2017-04-09 14:47:00,29.9088,89.055,12.38 +2017-04-09 15:02:00,28.2487,89.0625,12.4 +2017-04-09 15:17:00,29.4187,89.065,12.41 +2017-04-09 15:32:00,27.7462,89.1025,12.41 +2017-04-09 15:47:00,27.4962,89.0825,12.41 +2017-04-09 16:02:00,28.4475,89.1525,12.41 +2017-04-09 16:17:00,28.195,89.1925,12.42 +2017-04-09 16:32:00,29.4175,89.225,12.44 +2017-04-09 16:47:00,28.0987,89.3225,12.45 +2017-04-09 17:02:00,28.4975,89.445,12.46 +2017-04-09 17:17:00,28.8913,89.6725,12.48 +2017-04-09 17:32:00,29.1325,89.88,12.49 +2017-04-09 17:47:00,30.0137,89.96,12.5 +2017-04-09 18:02:00,29.185,90.025,12.52 +2017-04-09 18:17:00,28.345,90.0125,12.53 +2017-04-09 18:32:00,28.5475,90.015,12.55 +2017-04-09 18:47:00,27.895,90.005,12.57 +2017-04-09 19:02:00,29.6625,89.925,12.59 +2017-04-09 19:17:00,28.345,89.885,12.6 +2017-04-09 19:32:00,29.1825,89.83,12.61 +2017-04-09 19:47:00,28.4475,89.7975,12.62 +2017-04-09 20:02:00,28.5912,89.7475,12.63 +2017-04-09 20:17:00,30.0088,89.7075,12.64 +2017-04-09 20:32:00,29.4688,89.595,12.66 +2017-04-09 20:47:00,29.0825,89.5625,12.67 +2017-04-09 21:02:00,28.4463,89.52,12.67 +2017-04-09 21:17:00,29.0863,89.4525,12.69 +2017-04-09 21:32:00,28.495,89.405,12.69 +2017-04-09 21:47:00,29.42,89.5325,12.69 +2017-04-09 22:02:00,28.8937,89.675,12.68 +2017-04-09 22:17:00,29.04,89.745,12.67 +2017-04-09 22:32:00,28.7375,89.7075,12.68 +2017-04-09 22:47:00,29.7162,89.65,12.67 +2017-04-09 23:02:00,30.1,89.6175,12.65 +2017-04-09 23:17:00,29.135,89.5075,12.63 +2017-04-09 23:32:00,29.565,89.4975,12.59 +2017-04-09 23:47:00,30.6937,89.38,12.58 +2017-04-10 00:02:00,29.3262,89.275,12.55 +2017-04-10 00:17:00,28.1,89.1875,12.53 +2017-04-10 00:32:00,28.7862,89.1,12.5 +2017-04-10 00:47:00,29.5662,89.065,12.47 +2017-04-10 01:02:00,28.345,89.0175,12.45 +2017-04-10 01:17:00,28.1975,88.9525,12.42 +2017-04-10 01:32:00,28.69,88.9175,12.4 +2017-04-10 01:47:00,29.5675,88.8125,12.37 +2017-04-10 02:02:00,29.1837,88.8675,12.35 +2017-04-10 02:17:00,29.3737,88.8925,12.33 +2017-04-10 02:32:00,29.1875,88.8875,12.32 +2017-04-10 02:47:00,29.1338,88.895,12.3 +2017-04-10 03:02:00,28.2513,88.925,12.29 +2017-04-10 03:17:00,28.0013,88.9375,12.27 +2017-04-10 03:32:00,29.325,88.9575,12.24 +2017-04-10 03:47:00,27.35,88.965,12.24 +2017-04-10 04:02:00,28.7387,88.9025,12.24 +2017-04-10 04:17:00,29.085,88.8825,12.23 +2017-04-10 04:32:00,27.8988,88.8525,12.22 +2017-04-10 04:47:00,28.6413,88.795,12.22 +2017-04-10 05:02:00,29.7175,88.7925,12.21 +2017-04-10 05:17:00,29.7675,88.71,12.21 +2017-04-10 05:32:00,28.4512,88.6025,12.2 +2017-04-10 05:47:00,29.375,88.5675,12.2 +2017-04-10 06:02:00,28.4012,88.55,12.21 +2017-04-10 06:17:00,28.9875,88.585,12.23 +2017-04-10 06:32:00,29.6162,88.61,12.26 +2017-04-10 06:47:00,28.15,88.5675,12.28 +2017-04-10 07:02:00,28.74,88.575,12.28 +2017-04-10 07:17:00,30.0587,88.61,12.31 +2017-04-10 07:32:00,29.1825,88.6275,12.35 +2017-04-10 07:47:00,28.2462,88.6825,12.39 +2017-04-10 08:02:00,28.35,88.6275,12.45 +2017-04-10 08:17:00,28.7412,88.5625,12.5 +2017-04-10 08:32:00,29.3725,88.525,12.54 +2017-04-10 08:47:00,28.6937,88.53,12.61 +2017-04-10 09:02:00,28.345,88.59,12.66 +2017-04-10 09:17:00,28.5925,88.7925,12.69 +2017-04-10 09:32:00,28.4975,88.8375,12.75 +2017-04-10 09:47:00,29.375,88.9425,12.76 +2017-04-10 10:02:00,28.94,88.8625,12.75 +2017-04-10 10:17:00,28.4487,88.905,12.79 +2017-04-10 10:32:00,29.1875,88.7175,12.74 +2017-04-10 10:47:00,27.5512,88.6525,12.78 +2017-04-10 11:02:00,27.9463,88.5075,12.85 +2017-04-10 11:17:00,28.3487,88.4125,12.86 +2017-04-10 11:32:00,27.7475,88.05,12.89 +2017-04-10 11:47:00,28.1963,87.725,12.99 +2017-04-10 12:02:00,28.245,87.3375,13.09 +2017-04-10 12:17:00,28.89,86.97,13.14 +2017-04-10 12:32:00,30.2525,86.72,13.1 +2017-04-10 12:47:00,28.545,86.45,13.02 +2017-04-10 13:02:00,30.0575,86.32,13.0 +2017-04-10 13:17:00,28.7925,86.3125,13.02 +2017-04-10 13:32:00,27.2462,86.1625,13.01 +2017-04-10 13:47:00,28.5425,86.0,13.03 +2017-04-10 14:02:00,29.3725,85.81,13.0 +2017-04-10 14:17:00,29.4675,85.6875,12.93 +2017-04-10 14:32:00,28.1512,85.61,12.88 +2017-04-10 14:47:00,28.3,85.4675,12.85 +2017-04-10 15:02:00,29.7637,85.41,12.82 +2017-04-10 15:17:00,28.59,85.37,12.84 +2017-04-10 15:32:00,28.4487,85.45,12.85 +2017-04-10 15:47:00,28.9412,85.5175,12.88 +2017-04-10 16:02:00,28.5425,85.6675,12.88 +2017-04-10 16:17:00,28.4987,85.725,12.9 +2017-04-10 16:32:00,29.3725,85.85,12.91 +2017-04-10 16:47:00,29.865,85.9525,12.89 +2017-04-10 17:02:00,28.2,86.0475,12.87 +2017-04-10 17:17:00,27.7925,86.1625,12.82 +2017-04-10 17:32:00,29.5675,86.245,12.77 +2017-04-10 17:47:00,28.4975,86.355,12.74 +2017-04-10 18:02:00,28.74,86.355,12.72 +2017-04-10 18:17:00,28.245,86.39,12.7 +2017-04-10 18:32:00,28.3463,86.385,12.68 +2017-04-10 18:47:00,28.94,86.385,12.68 +2017-04-10 19:02:00,29.325,86.4625,12.66 +2017-04-10 19:17:00,28.6925,86.47,12.65 +2017-04-10 19:32:00,28.6387,86.675,12.62 +2017-04-10 19:47:00,28.7925,86.8375,12.61 +2017-04-10 20:02:00,27.9975,86.945,12.57 +2017-04-10 20:17:00,28.4487,86.975,12.55 +2017-04-10 20:32:00,28.3988,87.0025,12.51 +2017-04-10 20:47:00,29.8613,87.0675,12.48 +2017-04-10 21:02:00,28.2975,87.1125,12.46 +2017-04-10 21:17:00,29.2787,87.1075,12.43 +2017-04-10 21:32:00,28.3487,87.1475,12.41 +2017-04-10 21:47:00,28.6912,87.2025,12.38 +2017-04-10 22:02:00,27.895,87.2625,12.34 +2017-04-10 22:17:00,28.2962,87.305,12.31 +2017-04-10 22:32:00,28.7412,87.295,12.29 +2017-04-10 22:47:00,28.74,87.28,12.26 +2017-04-10 23:02:00,29.7675,87.26,12.24 +2017-04-10 23:17:00,28.6375,87.2325,12.21 +2017-04-10 23:32:00,29.6162,87.205,12.2 +2017-04-10 23:47:00,29.7188,87.1725,12.19 +2017-04-11 00:02:00,29.3225,87.115,12.16 +2017-04-11 00:17:00,29.0875,87.1475,12.14 +2017-04-11 00:32:00,29.135,87.32,12.13 +2017-04-11 00:47:00,29.0362,87.5125,12.12 +2017-04-11 01:02:00,29.28,87.6025,12.1 +2017-04-11 01:17:00,29.325,87.655,12.08 +2017-04-11 01:32:00,29.2762,87.635,12.05 +2017-04-11 01:47:00,29.325,87.5625,12.03 +2017-04-11 02:02:00,28.9863,87.48,12.02 +2017-04-11 02:17:00,29.0387,87.39,11.99 +2017-04-11 02:32:00,29.8613,87.33,11.97 +2017-04-11 02:47:00,29.91,87.36,11.93 +2017-04-11 03:02:00,28.6912,87.355,11.88 +2017-04-11 03:17:00,29.8625,87.3375,11.86 +2017-04-11 03:32:00,28.1512,87.415,11.86 +2017-04-11 03:47:00,28.5875,87.4925,11.87 +2017-04-11 04:02:00,30.2962,87.5225,11.87 +2017-04-11 04:17:00,29.0837,87.57,11.85 +2017-04-11 04:32:00,29.8613,87.565,11.85 +2017-04-11 04:47:00,28.9837,87.52,11.82 +2017-04-11 05:02:00,28.545,87.495,11.79 +2017-04-11 05:17:00,29.615,87.435,11.75 +2017-04-11 05:32:00,28.54,87.42,11.69 +2017-04-11 05:47:00,27.6025,87.3925,11.66 +2017-04-11 06:02:00,28.4938,87.2975,11.63 +2017-04-11 06:17:00,29.37,87.2775,11.61 +2017-04-11 06:32:00,28.8875,87.2425,11.62 +2017-04-11 06:47:00,28.59,87.1775,11.6 +2017-04-11 07:02:00,28.59,87.1725,11.59 +2017-04-11 07:17:00,29.1825,87.1275,11.56 +2017-04-11 07:32:00,29.665,87.105,11.59 +2017-04-11 07:47:00,28.9887,87.225,11.64 +2017-04-11 08:02:00,29.325,87.3525,11.71 +2017-04-11 08:17:00,29.4662,87.47,11.73 +2017-04-11 08:32:00,29.8613,87.48,11.71 +2017-04-11 08:47:00,28.245,87.5375,11.73 +2017-04-11 09:02:00,29.325,87.635,11.71 +2017-04-11 09:17:00,29.1813,87.615,11.64 +2017-04-11 09:32:00,28.74,87.51,11.58 +2017-04-11 09:47:00,30.2475,87.355,11.55 +2017-04-11 10:02:00,28.8875,87.285,11.57 +2017-04-11 10:17:00,29.4675,87.2575,11.57 +2017-04-11 10:32:00,29.86,87.28,11.59 +2017-04-11 10:47:00,29.2775,87.4,11.59 +2017-04-11 11:02:00,29.5175,87.4875,11.56 +2017-04-11 11:17:00,28.6387,87.635,11.57 +2017-04-11 11:32:00,28.7387,87.6725,11.54 +2017-04-11 11:47:00,28.8887,87.7,11.52 +2017-04-11 12:02:00,29.1338,87.6025,11.48 +2017-04-11 12:17:00,29.0825,87.5125,11.48 +2017-04-11 12:32:00,30.3463,87.375,11.45 +2017-04-11 12:47:00,29.3237,87.22,11.46 +2017-04-11 13:02:00,29.3712,87.165,11.46 +2017-04-11 13:17:00,28.0963,87.255,11.39 +2017-04-11 13:32:00,29.9613,87.2975,11.32 +2017-04-11 13:47:00,28.6888,87.3925,11.34 +2017-04-11 14:02:00,29.8138,87.51,11.36 +2017-04-11 14:17:00,28.9425,87.4975,11.33 +2017-04-11 14:32:00,28.74,87.515,11.31 +2017-04-11 14:47:00,29.2275,87.46,11.27 +2017-04-11 15:02:00,28.6888,87.3325,11.26 +2017-04-11 15:17:00,29.8587,87.275,11.25 +2017-04-11 15:32:00,30.0088,87.1825,11.24 +2017-04-11 15:47:00,29.6125,87.22,11.23 +2017-04-11 16:02:00,29.3225,87.2175,11.22 +2017-04-11 16:17:00,29.565,87.3425,11.22 +2017-04-11 16:32:00,29.2312,87.455,11.21 +2017-04-11 16:47:00,30.7412,87.5175,11.2 +2017-04-11 17:02:00,29.42,87.5475,11.18 +2017-04-11 17:17:00,30.495,87.47,11.18 +2017-04-11 17:32:00,28.2425,87.4,11.17 +2017-04-11 17:47:00,29.4175,87.21,11.15 +2017-04-11 18:02:00,30.8375,87.0425,11.14 +2017-04-11 18:17:00,28.9375,86.9925,11.12 +2017-04-11 18:32:00,29.2312,87.0275,11.12 +2017-04-11 18:47:00,29.3712,87.1175,11.13 +2017-04-11 19:02:00,30.3463,87.205,11.11 +2017-04-11 19:17:00,29.1312,87.3075,11.1 +2017-04-11 19:32:00,28.9375,87.4075,11.09 +2017-04-11 19:47:00,28.4475,87.38,11.08 +2017-04-11 20:02:00,29.3237,87.2975,11.07 +2017-04-11 20:17:00,28.59,87.185,11.06 +2017-04-11 20:32:00,29.2288,87.075,11.04 +2017-04-11 20:47:00,29.565,86.9775,11.02 +2017-04-11 21:02:00,30.1937,86.9325,11.01 +2017-04-11 21:17:00,29.1312,86.965,10.99 +2017-04-11 21:32:00,30.2425,87.03,10.97 +2017-04-11 21:47:00,29.1813,87.0425,10.93 +2017-04-11 22:02:00,28.7375,87.105,10.89 +2017-04-11 22:17:00,29.0825,87.18,10.88 +2017-04-11 22:32:00,28.6862,87.165,10.88 +2017-04-11 22:47:00,29.0362,87.1425,10.88 +2017-04-11 23:02:00,29.81,87.015,10.86 +2017-04-11 23:17:00,29.0762,86.9,10.84 +2017-04-11 23:32:00,29.8587,86.7625,10.84 +2017-04-11 23:47:00,29.86,86.73,10.83 +2017-04-12 00:02:00,29.815,86.7125,10.82 +2017-04-12 00:17:00,29.6137,86.7925,10.8 +2017-04-12 00:32:00,29.18,86.8875,10.8 +2017-04-12 00:47:00,28.5863,86.9475,10.8 +2017-04-12 01:02:00,28.4437,87.085,10.78 +2017-04-12 01:17:00,29.4675,87.17,10.77 +2017-04-12 01:32:00,30.2962,87.2325,10.76 +2017-04-12 01:47:00,28.985,87.135,10.75 +2017-04-12 02:02:00,29.7625,87.01,10.75 +2017-04-12 02:17:00,28.5362,86.9475,10.75 +2017-04-12 02:32:00,29.565,86.8775,10.75 +2017-04-12 02:47:00,28.9837,86.895,10.74 +2017-04-12 03:02:00,30.3463,86.98,10.75 +2017-04-12 03:17:00,28.9875,87.03,10.76 +2017-04-12 03:32:00,29.4187,87.1575,10.74 +2017-04-12 03:47:00,30.0537,87.2625,10.73 +2017-04-12 04:02:00,29.0788,87.3925,10.73 +2017-04-12 04:17:00,29.3688,87.4125,10.72 +2017-04-12 04:32:00,28.4463,87.3625,10.72 +2017-04-12 04:47:00,30.4962,87.225,10.72 +2017-04-12 05:02:00,28.6862,87.1425,10.71 +2017-04-12 05:17:00,29.56,87.025,10.7 +2017-04-12 05:32:00,29.0837,86.93,10.69 +2017-04-12 05:47:00,28.5863,86.8475,10.68 +2017-04-12 06:02:00,30.195,86.79,10.67 +2017-04-12 06:17:00,28.9825,86.7725,10.66 +2017-04-12 06:32:00,29.2775,86.82,10.65 +2017-04-12 06:47:00,29.7137,86.9525,10.64 +2017-04-12 07:02:00,30.4938,87.0075,10.64 +2017-04-12 07:17:00,28.685,87.005,10.65 +2017-04-12 07:32:00,29.325,87.0325,10.66 +2017-04-12 07:47:00,30.1,86.8375,10.68 +2017-04-12 09:31:40,29.0387,86.38,10.89 +2017-04-12 09:37:14,29.0387,86.41,10.89 +2017-04-12 09:47:00,28.0013,86.495,10.91 +2017-04-12 10:02:00,29.7262,86.6,10.92 +2017-04-12 10:17:00,29.9625,86.61,10.94 +2017-04-12 10:32:00,28.745,86.76,10.92 +2017-04-12 10:47:00,29.1413,86.8075,10.9 +2017-04-12 11:02:00,29.1875,86.86,10.88 +2017-04-12 11:17:00,29.1387,87.01,10.89 +2017-04-12 11:32:00,29.09,87.1625,10.91 +2017-04-12 11:47:00,29.815,87.3725,10.94 +2017-04-12 12:02:00,29.1387,87.5075,10.98 +2017-04-12 12:17:00,27.9538,87.5375,11.01 +2017-04-12 12:32:00,28.5963,87.5375,11.03 +2017-04-12 12:47:00,29.6738,87.47,11.05 +2017-04-12 13:02:00,29.1413,87.365,11.06 +2017-04-12 13:17:00,28.5975,87.04,11.09 +2017-04-12 13:32:00,28.595,86.7025,11.1 +2017-04-12 13:47:00,29.0938,86.385,11.09 +2017-04-12 14:02:00,28.6462,86.1625,11.05 +2017-04-12 14:17:00,29.5713,85.9725,11.03 +2017-04-12 14:32:00,29.2387,85.9125,11.03 +2017-04-12 14:47:00,29.3288,85.855,11.02 +2017-04-12 15:02:00,28.8412,85.8625,11.01 +2017-04-12 15:17:00,29.1912,85.8925,11.0 +2017-04-12 15:32:00,29.4313,85.84,11.0 +2017-04-12 15:47:00,28.795,85.6925,11.0 +2017-04-12 16:02:00,28.9962,85.515,11.0 +2017-04-12 16:17:00,28.795,85.365,11.0 +2017-04-12 16:32:00,28.99,85.2575,11.0 +2017-04-12 16:47:00,28.6963,85.32,10.99 +2017-04-12 17:02:00,28.3037,85.385,10.99 +2017-04-12 17:17:00,28.945,85.525,10.99 +2017-04-12 17:32:00,29.2363,85.5925,10.99 +2017-04-12 17:47:00,29.6188,85.7525,10.98 +2017-04-12 18:02:00,29.5238,85.91,10.98 +2017-04-12 18:17:00,30.0662,86.075,10.97 +2017-04-12 18:32:00,29.3288,86.105,10.97 +2017-04-12 18:47:00,29.7188,86.1075,10.96 +2017-04-12 19:02:00,29.0887,86.08,10.95 +2017-04-12 19:17:00,29.8712,86.045,10.94 +2017-04-12 19:32:00,29.425,86.05,10.92 +2017-04-12 19:47:00,28.5013,86.13,10.92 +2017-04-12 20:02:00,30.015,86.2075,10.91 +2017-04-12 20:17:00,29.0413,86.3025,10.9 +2017-04-12 20:32:00,28.3025,86.41,10.88 +2017-04-12 20:47:00,28.8962,86.5225,10.88 +2017-04-12 21:02:00,28.9925,86.6675,10.86 +2017-04-12 21:17:00,29.82,86.66,10.87 +2017-04-12 21:32:00,30.65,86.605,10.86 +2017-04-12 21:47:00,28.2025,86.5375,10.86 +2017-04-12 22:02:00,28.1038,86.43,10.86 +2017-04-12 22:17:00,29.33,86.42,10.86 +2017-04-12 22:32:00,29.4737,86.45,10.86 +2017-04-12 22:47:00,29.1888,86.53,10.83 +2017-04-12 23:02:00,28.8962,86.63,10.8 +2017-04-12 23:17:00,28.0013,86.7275,10.79 +2017-04-12 23:32:00,27.7462,86.845,10.8 +2017-04-12 23:47:00,28.6462,86.9175,10.81 +2017-04-13 00:02:00,28.7925,86.9625,10.81 +2017-04-13 00:17:00,27.7975,86.9575,10.79 +2017-04-13 00:32:00,29.6212,86.9475,10.79 +2017-04-13 00:47:00,28.2012,86.9925,10.79 +2017-04-13 01:02:00,29.67,86.96,10.77 +2017-04-13 01:17:00,29.2887,87.07,10.77 +2017-04-13 01:32:00,28.55,87.18,10.76 +2017-04-13 01:47:00,28.4025,87.2825,10.73 +2017-04-13 02:02:00,29.8213,87.38,10.72 +2017-04-13 02:17:00,28.4012,87.4775,10.71 +2017-04-13 02:32:00,29.5713,87.5475,10.69 +2017-04-13 02:47:00,29.3763,87.6125,10.69 +2017-04-13 03:02:00,28.9912,87.4975,10.69 +2017-04-13 03:17:00,30.155,87.3875,10.69 +2017-04-13 03:32:00,29.0425,87.24,10.69 +2017-04-13 03:47:00,28.4025,87.1,10.68 +2017-04-13 04:02:00,29.8187,87.0475,10.66 +2017-04-13 04:17:00,28.8475,87.0575,10.61 +2017-04-13 04:32:00,28.9938,87.15,10.6 +2017-04-13 04:47:00,29.82,87.1875,10.59 +2017-04-13 05:02:00,29.7225,87.3125,10.56 +2017-04-13 05:17:00,29.4737,87.37,10.53 +2017-04-13 05:32:00,29.62,87.41,10.52 +2017-04-13 05:47:00,28.4012,87.38,10.51 +2017-04-13 06:02:00,29.1362,87.3775,10.51 +2017-04-13 06:17:00,29.6188,87.3675,10.52 +2017-04-13 06:32:00,29.1888,87.295,10.5 +2017-04-13 06:47:00,28.8913,87.325,10.48 +2017-04-13 07:02:00,29.5225,87.34,10.47 +2017-04-13 07:17:00,29.2375,87.4325,10.44 +2017-04-13 07:32:00,28.4538,87.48,10.45 +2017-04-13 07:47:00,29.19,87.54,10.46 +2017-04-13 08:02:00,28.7988,87.66,10.48 +2017-04-13 08:17:00,30.065,87.685,10.5 +2017-04-13 08:32:00,30.4525,87.7975,10.52 +2017-04-13 08:47:00,28.9938,87.785,10.54 +2017-04-13 09:02:00,29.525,87.77,10.53 +2017-04-13 09:17:00,30.015,87.7025,10.56 +2017-04-13 09:32:00,29.0887,87.61,10.53 +2017-04-13 09:47:00,30.1575,87.635,10.51 +2017-04-13 10:02:00,28.7913,87.715,10.47 +2017-04-13 10:17:00,29.04,87.865,10.45 +2017-04-13 10:32:00,29.3775,87.9975,10.44 +2017-04-13 10:47:00,29.2412,88.195,10.45 +2017-04-13 11:02:00,29.3288,88.3375,10.51 +2017-04-13 11:17:00,29.5262,88.535,10.47 +2017-04-13 11:32:00,29.3787,88.6425,10.43 +2017-04-13 11:47:00,28.6937,88.6825,10.4 +2017-04-13 12:02:00,29.4275,88.5825,10.41 +2017-04-13 12:17:00,29.4737,88.465,10.44 +2017-04-13 12:32:00,30.35,88.4125,10.5 +2017-04-13 12:47:00,28.3525,88.4875,10.56 +2017-04-13 13:02:00,29.3337,88.6325,10.57 +2017-04-13 13:17:00,29.24,88.7325,10.56 +2017-04-13 13:32:00,28.8988,88.875,10.58 +2017-04-13 13:47:00,30.3525,88.9875,10.64 +2017-04-13 14:02:00,28.9938,89.1425,10.62 +2017-04-13 14:17:00,30.3562,89.155,10.61 +2017-04-13 14:32:00,29.6712,89.08,10.62 +2017-04-13 14:47:00,29.09,88.9975,10.67 +2017-04-13 15:02:00,28.8962,88.8625,10.68 +2017-04-13 15:17:00,29.2862,88.8325,10.65 +2017-04-13 15:32:00,28.405,88.91,10.62 +2017-04-13 15:47:00,28.2588,88.95,10.64 +2017-04-13 16:02:00,29.6738,88.985,10.66 +2017-04-13 16:17:00,28.355,89.04,10.66 +2017-04-13 16:32:00,29.0925,89.165,10.63 +2017-04-13 16:47:00,29.8688,89.2825,10.6 +2017-04-13 17:02:00,29.5737,89.4375,10.6 +2017-04-13 17:17:00,28.6475,89.515,10.6 +2017-04-13 17:32:00,29.6738,89.495,10.6 +2017-04-13 17:47:00,29.1425,89.44,10.59 +2017-04-13 18:02:00,29.5225,89.4025,10.58 +2017-04-13 18:17:00,27.7562,89.3725,10.57 +2017-04-13 18:32:00,29.2387,89.435,10.57 +2017-04-13 18:47:00,29.6263,89.485,10.55 +2017-04-13 19:02:00,28.2025,89.555,10.52 +2017-04-13 19:17:00,28.7475,89.675,10.5 +2017-04-13 19:32:00,28.9437,89.6775,10.47 +2017-04-13 19:47:00,29.475,89.6225,10.45 +2017-04-13 20:02:00,29.9175,89.525,10.42 +2017-04-13 20:17:00,28.8962,89.345,10.38 +2017-04-13 20:32:00,28.355,89.1725,10.33 +2017-04-13 20:47:00,29.8175,88.98,10.32 +2017-04-13 21:02:00,29.1912,88.92,10.31 +2017-04-13 21:17:00,29.4238,88.8675,10.33 +2017-04-13 21:32:00,29.0875,88.8025,10.33 +2017-04-13 21:47:00,28.5475,88.7975,10.31 +2017-04-13 22:02:00,29.425,88.72,10.29 +2017-04-13 22:17:00,30.2075,88.6575,10.27 +2017-04-13 22:32:00,29.1888,88.59,10.24 +2017-04-13 22:47:00,28.5975,88.405,10.22 +2017-04-13 23:02:00,30.455,88.24,10.19 +2017-04-13 23:17:00,30.255,88.095,10.18 +2017-04-13 23:32:00,29.72,87.915,10.16 +2017-04-13 23:47:00,29.5775,87.845,10.18 +2017-04-14 00:02:00,28.0025,87.865,10.15 +2017-04-14 00:17:00,29.7213,87.92,10.12 +2017-04-14 00:32:00,28.7438,87.9825,10.09 +2017-04-14 00:47:00,29.2875,88.1325,10.06 +2017-04-14 01:02:00,29.3787,88.2775,10.05 +2017-04-14 01:17:00,30.1637,88.3925,10.02 +2017-04-14 01:32:00,29.2862,88.395,10.0 +2017-04-14 01:47:00,30.5062,88.41,9.98 +2017-04-14 02:02:00,29.14,88.3675,9.97 +2017-04-14 02:17:00,29.1937,88.44,9.93 +2017-04-14 02:32:00,29.475,88.5925,9.92 +2017-04-14 02:47:00,29.1888,88.815,9.89 +2017-04-14 03:02:00,29.57,89.025,9.86 +2017-04-14 03:17:00,29.1888,89.3075,9.84 +2017-04-14 03:32:00,28.845,89.58,9.82 +2017-04-14 03:47:00,29.3325,89.835,9.8 +2017-04-14 04:02:00,29.5725,90.055,9.77 +2017-04-14 04:17:00,29.9175,90.105,9.76 +2017-04-14 04:32:00,29.9175,90.14,9.73 +2017-04-14 04:47:00,28.8463,90.1525,9.69 +2017-04-14 05:02:00,30.4525,90.12,9.68 +2017-04-14 05:17:00,30.305,90.1275,9.67 +2017-04-14 05:32:00,29.1888,90.315,9.66 +2017-04-14 05:47:00,30.1113,90.4975,9.66 +2017-04-14 06:02:00,29.8712,90.65,9.69 +2017-04-14 06:17:00,30.115,90.7575,9.72 +2017-04-14 06:32:00,29.285,90.77,9.76 +2017-04-14 06:47:00,29.5725,90.7925,9.78 +2017-04-14 07:02:00,29.2387,90.8475,9.8 +2017-04-14 07:17:00,28.9487,90.8225,9.83 +2017-04-14 07:32:00,30.4525,90.8425,9.86 +2017-04-14 07:47:00,29.5275,90.94,9.89 +2017-04-14 08:02:00,30.5537,91.075,9.93 +2017-04-14 08:17:00,31.1325,91.2075,9.98 +2017-04-14 08:32:00,30.16,91.4775,10.01 +2017-04-14 08:47:00,28.5488,91.6825,10.02 +2017-04-14 09:02:00,29.7213,91.9375,10.09 +2017-04-14 09:17:00,30.5512,92.2075,10.16 +2017-04-14 09:32:00,29.5238,92.3625,10.2 +2017-04-14 09:47:00,30.1137,92.475,10.2 +2017-04-14 10:02:00,30.1562,92.56,10.24 +2017-04-14 10:17:00,28.9962,92.5575,10.31 +2017-04-14 10:32:00,28.6437,92.755,10.4 +2017-04-14 10:47:00,30.985,93.0025,10.47 +2017-04-14 11:02:00,30.1075,93.2325,10.49 +2017-04-14 11:17:00,29.2862,93.5125,10.58 +2017-04-14 11:32:00,30.4025,93.675,10.64 +2017-04-14 11:47:00,29.3775,93.8725,10.63 +2017-04-14 12:02:00,29.38,94.0275,10.65 +2017-04-14 12:17:00,28.2562,94.055,10.65 +2017-04-14 12:32:00,29.965,94.0775,10.63 +2017-04-14 12:47:00,29.04,94.0475,10.63 +2017-04-14 13:02:00,28.895,93.925,10.7 +2017-04-14 13:17:00,29.4262,93.915,10.78 +2017-04-14 13:32:00,29.8175,93.9975,10.83 +2017-04-14 13:47:00,29.1862,94.1,10.83 +2017-04-14 14:02:00,28.2525,94.225,10.85 +2017-04-14 14:17:00,29.9688,94.37,10.88 +2017-04-14 14:32:00,30.2075,94.4275,10.92 +2017-04-14 14:47:00,28.1038,94.5325,10.94 +2017-04-14 15:02:00,29.6237,94.4775,10.93 +2017-04-14 15:17:00,28.595,94.4,10.93 +2017-04-14 15:32:00,29.1375,94.2525,10.92 +2017-04-14 15:47:00,30.1087,94.105,10.93 +2017-04-14 16:02:00,28.1062,93.9975,10.92 +2017-04-14 16:17:00,29.6225,93.94,10.92 +2017-04-14 16:32:00,28.4575,93.9575,10.91 +2017-04-14 16:47:00,29.14,93.955,10.92 +2017-04-14 17:02:00,29.725,93.965,10.93 +2017-04-14 17:17:00,28.7962,93.9875,10.93 +2017-04-14 17:32:00,29.9175,93.965,10.96 +2017-04-14 17:47:00,28.945,93.82,10.98 +2017-04-14 18:02:00,28.7475,93.65,11.02 +2017-04-14 18:17:00,29.2375,93.43,11.04 +2017-04-14 18:32:00,29.8225,93.2275,11.07 +2017-04-14 18:47:00,29.82,93.1725,11.1 +2017-04-14 19:02:00,29.7725,93.13,11.14 +2017-04-14 19:17:00,30.11,93.1325,11.16 +2017-04-14 19:32:00,28.9475,93.1375,11.19 +2017-04-14 19:47:00,28.5488,93.13,11.21 +2017-04-14 20:02:00,28.4538,93.14,11.23 +2017-04-14 20:17:00,28.7462,93.0825,11.24 +2017-04-14 20:32:00,29.04,92.965,11.24 +2017-04-14 20:47:00,30.4538,92.7825,11.25 +2017-04-14 21:02:00,30.8012,92.615,11.23 +2017-04-14 21:17:00,29.425,92.3925,11.22 +2017-04-14 21:32:00,29.6687,92.26,11.2 +2017-04-14 21:47:00,29.09,92.1825,11.18 +2017-04-14 22:02:00,29.5713,92.15,11.16 +2017-04-14 22:17:00,29.77,92.13,11.14 +2017-04-14 22:32:00,29.3288,92.1375,11.11 +2017-04-14 22:47:00,29.1875,92.1275,11.09 +2017-04-14 23:02:00,29.5713,92.1425,11.06 +2017-04-14 23:17:00,29.5238,92.12,11.05 +2017-04-14 23:32:00,29.4225,92.0125,11.03 +2017-04-14 23:47:00,28.5975,91.88,11.01 +2017-04-15 00:02:00,28.695,91.7125,11.01 +2017-04-15 00:17:00,30.0638,91.5325,11.0 +2017-04-15 00:32:00,29.9187,91.4325,10.99 +2017-04-15 00:47:00,29.3775,91.41,10.98 +2017-04-15 01:02:00,28.5013,91.405,10.96 +2017-04-15 01:17:00,29.3763,91.415,10.95 +2017-04-15 01:32:00,29.865,91.43,10.94 +2017-04-15 01:47:00,29.1362,91.4525,10.92 +2017-04-15 02:02:00,28.7925,91.4525,10.93 +2017-04-15 02:17:00,29.5713,91.3525,10.93 +2017-04-15 02:32:00,29.4262,91.21,10.92 +2017-04-15 02:47:00,30.0638,91.085,10.91 +2017-04-15 03:02:00,29.3288,90.94,10.91 +2017-04-15 03:17:00,30.695,90.8825,10.91 +2017-04-15 03:32:00,30.0662,90.92,10.89 +2017-04-15 03:47:00,28.9437,90.955,10.88 +2017-04-15 04:02:00,28.9,90.9875,10.85 +2017-04-15 04:17:00,28.995,91.0075,10.86 +2017-04-15 04:32:00,29.0925,91.03,10.85 +2017-04-15 04:47:00,29.8712,91.05,10.83 +2017-04-15 05:02:00,29.2387,90.9725,10.81 +2017-04-15 05:17:00,30.6,90.8525,10.8 +2017-04-15 05:32:00,29.1413,90.7575,10.77 +2017-04-15 05:47:00,29.4737,90.6875,10.75 +2017-04-15 06:02:00,29.6225,90.585,10.73 +2017-04-15 06:17:00,29.9688,90.5625,10.7 +2017-04-15 06:32:00,29.0437,90.525,10.66 +2017-04-15 06:47:00,29.6237,90.505,10.62 +2017-04-15 07:02:00,29.8225,90.55,10.58 +2017-04-15 07:17:00,29.8737,90.595,10.55 +2017-04-15 07:32:00,30.25,90.7075,10.52 +2017-04-15 07:47:00,29.4737,90.81,10.49 +2017-04-15 08:02:00,28.795,90.78,10.46 +2017-04-15 08:17:00,29.8225,90.815,10.45 +2017-04-15 08:32:00,28.7913,90.875,10.43 +2017-04-15 08:47:00,29.7225,90.8025,10.4 +2017-04-15 09:02:00,30.3512,90.6425,10.4 +2017-04-15 09:17:00,29.525,90.5375,10.4 +2017-04-15 09:32:00,29.8175,90.365,10.41 +2017-04-15 09:47:00,30.155,90.3525,10.4 +2017-04-15 10:02:00,29.48,90.31,10.43 +2017-04-15 10:17:00,29.725,90.3325,10.44 +2017-04-15 10:32:00,29.19,90.335,10.44 +2017-04-15 10:47:00,29.5713,90.445,10.4 +2017-04-15 11:02:00,28.405,90.5225,10.39 +2017-04-15 11:17:00,28.7425,90.6325,10.37 +2017-04-15 11:32:00,28.4575,90.6425,10.36 +2017-04-15 11:47:00,29.045,90.5575,10.39 +2017-04-15 12:02:00,28.6963,90.4675,10.44 +2017-04-15 12:17:00,29.285,90.3625,10.55 +2017-04-15 12:32:00,29.3763,90.2025,10.63 +2017-04-15 12:47:00,29.4725,90.115,10.59 +2017-04-15 13:02:00,29.2375,90.2825,10.58 +2017-04-15 13:17:00,29.9175,90.53,10.57 +2017-04-15 13:32:00,29.6188,90.5975,10.56 +2017-04-15 13:47:00,29.7712,90.67,10.51 +2017-04-15 14:02:00,29.6212,90.655,10.48 +2017-04-15 14:17:00,29.7712,90.545,10.49 +2017-04-15 14:32:00,29.82,90.4425,10.52 +2017-04-15 14:47:00,29.38,90.24,10.56 +2017-04-15 15:02:00,28.9475,90.1075,10.58 +2017-04-15 15:17:00,29.2875,90.12,10.56 +2017-04-15 15:32:00,29.9688,90.18,10.55 +2017-04-15 15:47:00,28.9463,90.2825,10.57 +2017-04-15 16:02:00,29.525,90.36,10.57 +2017-04-15 16:17:00,29.3325,90.425,10.57 +2017-04-15 16:32:00,29.6225,90.5425,10.56 +2017-04-15 16:47:00,29.7725,90.6575,10.54 +2017-04-15 17:02:00,27.95,90.7625,10.5 +2017-04-15 17:17:00,29.4238,90.77,10.48 +2017-04-15 17:32:00,29.5713,90.7425,10.45 +2017-04-15 17:47:00,29.3763,90.635,10.41 +2017-04-15 18:02:00,29.8662,90.4875,10.36 +2017-04-15 18:17:00,30.0163,90.43,10.33 +2017-04-15 18:32:00,29.1888,90.39,10.31 +2017-04-15 18:47:00,28.8425,90.41,10.28 +2017-04-15 19:02:00,29.04,90.4625,10.25 +2017-04-15 19:17:00,28.9938,90.51,10.22 +2017-04-15 19:32:00,29.3775,90.575,10.21 +2017-04-15 19:47:00,29.9688,90.63,10.19 +2017-04-15 20:02:00,30.55,90.6325,10.19 +2017-04-15 20:17:00,30.6987,90.545,10.17 +2017-04-15 20:32:00,29.9163,90.4675,10.15 +2017-04-15 20:47:00,29.8162,90.3325,10.1 +2017-04-15 21:02:00,28.99,90.17,10.08 +2017-04-15 21:17:00,29.1912,90.0675,10.06 +2017-04-15 21:32:00,29.915,90.0675,10.03 +2017-04-15 21:47:00,29.815,90.0375,10.0 +2017-04-15 22:02:00,30.3512,90.0825,9.96 +2017-04-15 22:17:00,29.04,90.135,9.92 +2017-04-15 22:32:00,29.5187,90.1725,9.89 +2017-04-15 22:47:00,30.065,90.245,9.85 +2017-04-15 23:02:00,30.2038,90.295,9.83 +2017-04-15 23:17:00,30.0612,90.2075,9.79 +2017-04-15 23:32:00,28.9912,90.0925,9.76 +2017-04-15 23:47:00,28.9437,89.955,9.73 +2017-04-16 00:02:00,30.1537,89.7725,9.71 +2017-04-16 00:17:00,29.5238,89.6475,9.72 +2017-04-16 00:32:00,30.1588,89.665,9.71 +2017-04-16 00:47:00,29.8637,89.68,9.7 +2017-04-16 01:02:00,29.7675,89.695,9.69 +2017-04-16 01:17:00,29.2363,89.7275,9.69 +2017-04-16 01:32:00,29.3763,89.76,9.67 +2017-04-16 01:47:00,29.1888,89.7825,9.63 +2017-04-16 02:02:00,30.1113,89.7825,9.61 +2017-04-16 02:17:00,29.135,89.67,9.58 +2017-04-16 02:32:00,29.52,89.5175,9.55 +2017-04-16 02:47:00,30.1125,89.3775,9.51 +2017-04-16 03:02:00,30.89,89.3125,9.49 +2017-04-16 03:17:00,29.4775,89.335,9.47 +2017-04-16 03:32:00,28.4975,89.3575,9.46 +2017-04-16 03:47:00,28.845,89.4,9.43 +2017-04-16 04:02:00,29.7213,89.4275,9.42 +2017-04-16 04:17:00,29.5675,89.4675,9.39 +2017-04-16 04:32:00,29.72,89.5075,9.38 +2017-04-16 04:47:00,29.4725,89.515,9.36 +2017-04-16 05:02:00,28.9437,89.5125,9.34 +2017-04-16 05:17:00,30.3037,89.385,9.32 +2017-04-16 05:32:00,29.2375,89.3075,9.32 +2017-04-16 05:47:00,30.205,89.235,9.32 +2017-04-16 06:02:00,30.6937,89.1725,9.32 +2017-04-16 06:17:00,29.6175,89.07,9.31 +2017-04-16 06:32:00,29.7738,89.015,9.33 +2017-04-16 06:47:00,29.235,88.95,9.32 +2017-04-16 07:02:00,29.8175,89.0125,9.32 +2017-04-16 07:17:00,29.1375,89.125,9.33 +2017-04-16 07:32:00,29.815,89.1875,9.38 +2017-04-16 07:47:00,31.0837,89.35,9.44 +2017-04-16 08:02:00,29.3763,89.4225,9.41 +2017-04-16 08:17:00,29.6188,89.5025,9.37 +2017-04-16 08:32:00,28.9437,89.5,9.4 +2017-04-16 08:47:00,30.2025,89.605,9.47 +2017-04-16 09:02:00,30.4,89.52,9.46 +2017-04-16 09:17:00,30.06,89.4325,9.44 +2017-04-16 09:32:00,29.4737,89.235,9.44 +2017-04-16 09:47:00,30.1038,89.1,9.51 +2017-04-16 10:02:00,30.45,89.08,9.59 +2017-04-16 10:17:00,30.3962,89.1225,9.62 +2017-04-16 10:32:00,29.7675,89.2,9.58 +2017-04-16 10:47:00,29.6712,89.2925,9.62 +2017-04-16 11:02:00,29.135,89.3425,9.66 +2017-04-16 11:17:00,30.2487,89.4225,9.81 +2017-04-16 11:32:00,30.3512,89.2975,9.91 +2017-04-16 11:47:00,29.5175,89.2,9.87 +2017-04-16 12:02:00,30.0587,89.0875,9.88 +2017-04-16 12:17:00,29.865,88.99,10.01 +2017-04-16 12:32:00,29.6663,88.845,10.12 +2017-04-16 12:47:00,29.3712,88.8175,10.13 +2017-04-16 13:02:00,30.0112,88.8975,10.15 +2017-04-16 13:17:00,28.3512,89.0025,10.19 +2017-04-16 13:32:00,28.3,89.025,10.15 +2017-04-16 13:47:00,29.7188,89.1425,10.09 +2017-04-16 14:02:00,29.375,89.295,10.07 +2017-04-16 14:17:00,29.865,89.26,10.04 +2017-04-16 14:32:00,29.47,89.2125,10.09 +2017-04-16 14:47:00,30.5,89.1125,10.13 +2017-04-16 15:02:00,29.5225,88.9425,10.17 +2017-04-16 15:17:00,29.7225,88.83,10.2 +2017-04-16 15:32:00,28.6912,88.8425,10.18 +2017-04-16 15:47:00,29.0387,88.9575,10.16 +2017-04-16 16:02:00,29.0925,89.02,10.14 +2017-04-16 16:17:00,29.3787,89.1575,10.16 +2017-04-16 16:32:00,29.0413,89.2225,10.14 +2017-04-16 16:47:00,29.1375,89.2575,10.12 +2017-04-16 17:02:00,29.0387,89.255,10.12 +2017-04-16 17:17:00,30.4512,89.185,10.14 +2017-04-16 17:32:00,29.92,89.075,10.14 +2017-04-16 17:47:00,29.0938,88.9625,10.13 +2017-04-16 18:02:00,30.1113,88.8325,10.13 +2017-04-16 18:17:00,30.2537,88.825,10.14 +2017-04-16 18:32:00,29.82,88.8475,10.15 +2017-04-16 18:47:00,29.4737,88.935,10.17 +2017-04-16 19:02:00,30.4012,89.075,10.16 +2017-04-16 19:17:00,29.33,89.225,10.17 +2017-04-16 19:32:00,28.9912,89.3025,10.17 +2017-04-16 19:47:00,29.7262,89.3925,10.2 +2017-04-16 20:02:00,30.5037,89.3825,10.22 +2017-04-16 20:17:00,29.6162,89.2975,10.24 +2017-04-16 20:32:00,29.8175,89.205,10.26 +2017-04-16 20:47:00,29.5212,89.0775,10.27 +2017-04-16 21:02:00,28.945,89.0325,10.27 +2017-04-16 21:17:00,28.255,89.06,10.3 +2017-04-16 21:32:00,30.4525,89.145,10.31 +2017-04-16 21:47:00,30.5025,89.2275,10.31 +2017-04-16 22:02:00,28.7425,89.28,10.3 +2017-04-16 22:17:00,29.7188,89.31,10.28 +2017-04-16 22:32:00,29.8162,89.31,10.25 +2017-04-16 22:47:00,28.2537,89.3275,10.21 +2017-04-16 23:02:00,30.7962,89.2575,10.18 +2017-04-16 23:17:00,29.1387,89.12,10.14 +2017-04-16 23:32:00,30.5037,89.0275,10.1 +2017-04-16 23:47:00,28.7937,88.985,10.07 +2017-04-17 00:02:00,29.3737,88.97,10.05 +2017-04-17 00:17:00,29.7213,89.0025,10.02 +2017-04-17 00:32:00,30.3037,89.1025,9.99 +2017-04-17 00:47:00,30.16,89.225,9.96 +2017-04-17 01:02:00,30.5512,89.3,9.94 +2017-04-17 01:17:00,29.0925,89.4,9.94 +2017-04-17 01:32:00,30.8937,89.4125,9.94 +2017-04-17 01:47:00,30.115,89.3425,9.93 +2017-04-17 02:02:00,29.5212,89.245,9.91 +2017-04-17 02:17:00,29.0437,89.0975,9.91 +2017-04-17 02:32:00,30.2537,89.0,9.89 +2017-04-17 02:47:00,29.3325,89.0,9.87 +2017-04-17 03:02:00,30.0625,89.025,9.85 +2017-04-17 03:17:00,30.0687,89.09,9.83 +2017-04-17 03:32:00,29.8675,89.165,9.81 +2017-04-17 03:47:00,29.1413,89.2075,9.81 +2017-04-17 04:02:00,29.77,89.255,9.81 +2017-04-17 04:17:00,30.305,89.325,9.8 +2017-04-17 04:32:00,29.4262,89.295,9.77 +2017-04-17 04:47:00,29.19,89.2,9.78 +2017-04-17 05:02:00,29.8225,89.0725,9.79 +2017-04-17 05:17:00,29.4313,88.9275,9.8 +2017-04-17 05:32:00,29.5275,88.8775,9.83 +2017-04-17 05:47:00,28.795,88.8725,9.83 +2017-04-17 06:02:00,29.4275,88.895,9.85 +2017-04-17 06:17:00,29.04,88.935,9.86 +2017-04-17 06:32:00,29.77,89.0375,9.87 +2017-04-17 06:47:00,29.92,89.0825,9.87 +2017-04-17 07:02:00,28.9437,89.0625,9.85 +2017-04-17 07:17:00,29.2862,89.075,9.83 +2017-04-17 07:32:00,28.6437,89.04,9.81 +2017-04-17 07:47:00,28.8937,88.995,9.79 +2017-04-17 08:02:00,29.82,88.955,9.76 +2017-04-17 08:17:00,29.775,88.915,9.72 +2017-04-17 08:32:00,29.9637,88.87,9.7 +2017-04-17 08:47:00,30.6012,88.9025,9.67 +2017-04-17 09:02:00,30.6975,88.985,9.66 +2017-04-17 09:17:00,29.915,89.0275,9.7 +2017-04-17 09:32:00,28.5462,89.045,9.73 +2017-04-17 09:47:00,29.6188,89.0975,9.78 +2017-04-17 10:02:00,30.255,89.1725,9.87 +2017-04-17 10:17:00,30.8913,89.1125,9.98 +2017-04-17 10:32:00,29.8162,88.905,9.99 +2017-04-17 10:47:00,30.1075,88.7725,10.09 +2017-04-17 11:02:00,28.9925,88.6875,10.19 +2017-04-17 11:17:00,29.0437,88.65,10.19 +2017-04-17 11:32:00,29.8162,88.66,10.16 +2017-04-17 11:47:00,29.4287,88.68,10.22 +2017-04-17 12:02:00,29.82,88.6875,10.31 +2017-04-17 12:17:00,29.3312,88.755,10.38 +2017-04-17 12:32:00,29.7663,88.7775,10.43 +2017-04-17 12:47:00,29.0887,88.7625,10.44 +2017-04-17 13:02:00,29.0912,88.6925,10.48 +2017-04-17 13:17:00,29.8688,88.5625,10.54 +2017-04-17 13:32:00,29.6188,88.43,10.57 +2017-04-17 13:47:00,29.3775,88.2975,10.59 +2017-04-17 14:02:00,29.4287,88.24,10.6 +2017-04-17 14:17:00,29.3262,88.305,10.59 +2017-04-17 14:32:00,28.5,88.3775,10.58 +2017-04-17 14:47:00,29.62,88.55,10.63 +2017-04-17 15:02:00,29.8162,88.615,10.64 +2017-04-17 15:17:00,30.25,88.6375,10.58 +2017-04-17 15:32:00,31.2375,88.5875,10.52 +2017-04-17 15:47:00,28.99,88.6125,10.49 +2017-04-17 16:02:00,29.2825,88.5225,10.49 +2017-04-17 16:17:00,29.525,88.4125,10.49 +2017-04-17 16:32:00,29.5737,88.3025,10.45 +2017-04-17 16:47:00,29.4262,88.2775,10.42 +2017-04-17 17:02:00,29.38,88.3075,10.41 +2017-04-17 17:17:00,29.3763,88.3575,10.41 +2017-04-17 17:32:00,29.9662,88.4,10.4 +2017-04-17 17:47:00,29.7213,88.4525,10.37 +2017-04-17 18:02:00,29.0887,88.4975,10.35 +2017-04-17 18:17:00,29.82,88.4725,10.35 +2017-04-17 18:32:00,29.965,88.3675,10.35 +2017-04-17 18:47:00,30.9412,88.2325,10.37 +2017-04-17 19:02:00,28.4538,88.12,10.38 +2017-04-17 19:17:00,29.04,88.1,10.41 +2017-04-17 19:32:00,29.2838,88.0775,10.42 +2017-04-17 19:47:00,29.0912,88.09,10.45 +2017-04-17 20:02:00,28.9912,88.125,10.47 +2017-04-17 20:17:00,29.5687,88.185,10.46 +2017-04-17 20:32:00,29.8187,88.2525,10.48 +2017-04-17 20:47:00,29.235,88.3175,10.48 +2017-04-17 21:02:00,28.3538,88.305,10.5 +2017-04-17 21:17:00,29.8175,88.27,10.51 +2017-04-17 21:32:00,30.5025,88.185,10.5 +2017-04-17 21:47:00,30.5037,88.0775,10.49 +2017-04-17 22:02:00,28.9437,88.05,10.48 +2017-04-17 22:17:00,30.305,88.075,10.47 +2017-04-17 22:32:00,29.82,88.1175,10.45 +2017-04-17 22:47:00,29.1375,88.1875,10.45 +2017-04-17 23:02:00,29.4275,88.275,10.43 +2017-04-17 23:17:00,29.915,88.355,10.4 +2017-04-17 23:32:00,29.3787,88.4625,10.37 +2017-04-17 23:47:00,30.2025,88.4825,10.35 +2017-04-18 00:02:00,29.67,88.4275,10.31 +2017-04-18 00:17:00,29.6712,88.35,10.28 +2017-04-18 00:32:00,29.82,88.215,10.24 +2017-04-18 00:47:00,29.09,88.135,10.22 +2017-04-18 01:02:00,30.1575,88.125,10.18 +2017-04-18 01:17:00,30.2513,88.1475,10.14 +2017-04-18 01:32:00,29.4725,88.215,10.1 +2017-04-18 01:47:00,29.7687,88.28,10.06 +2017-04-18 02:02:00,28.8412,88.335,10.03 +2017-04-18 02:17:00,29.4262,88.415,10.0 +2017-04-18 02:32:00,28.3538,88.48,9.98 +2017-04-18 02:47:00,29.185,88.4475,9.96 +2017-04-18 03:02:00,30.015,88.43,9.94 +2017-04-18 03:17:00,30.155,88.57,9.88 +2017-04-18 03:32:00,29.6738,88.8875,9.8 +2017-04-18 03:47:00,29.24,89.3425,9.75 +2017-04-18 04:02:00,28.9938,89.885,9.73 +2017-04-18 04:17:00,30.0175,90.42,9.71 +2017-04-18 04:32:00,30.405,90.7575,9.7 +2017-04-18 04:47:00,30.505,90.98,9.68 +2017-04-18 05:02:00,30.2588,91.1425,9.64 +2017-04-18 05:17:00,30.8913,91.19,9.63 +2017-04-18 05:32:00,30.7462,91.175,9.62 +2017-04-18 05:47:00,30.99,91.02,9.65 +2017-04-18 06:02:00,30.6012,90.785,9.66 +2017-04-18 06:17:00,30.2038,90.5925,9.65 +2017-04-18 06:32:00,29.9137,90.3775,9.64 +2017-04-18 06:47:00,29.2363,90.32,9.59 +2017-04-18 07:02:00,30.0187,90.375,9.56 +2017-04-18 07:17:00,29.4238,90.3775,9.54 +2017-04-18 07:32:00,29.8688,90.31,9.54 +2017-04-18 07:47:00,29.57,90.265,9.54 +2017-04-18 08:02:00,29.8187,90.1675,9.55 +2017-04-18 08:17:00,29.915,90.1625,9.58 +2017-04-18 08:32:00,29.3775,90.2375,9.57 +2017-04-18 08:47:00,30.6475,90.3775,9.5 +2017-04-18 09:02:00,29.7237,90.475,9.47 +2017-04-18 09:17:00,30.75,90.49,9.48 +2017-04-18 09:32:00,29.7687,90.43,9.53 +2017-04-18 09:47:00,30.11,90.3975,9.53 +2017-04-18 10:02:00,30.3025,90.305,9.5 +2017-04-18 10:17:00,30.6025,90.24,9.46 +2017-04-18 10:32:00,30.25,90.215,9.47 +2017-04-18 10:47:00,31.785,90.25,9.45 +2017-04-18 11:02:00,30.65,90.22,9.45 +2017-04-18 11:17:00,30.7,90.2625,9.43 +2017-04-18 11:32:00,30.35,90.2825,9.39 +2017-04-18 11:47:00,29.2875,90.295,9.38 +2017-04-18 12:02:00,29.0912,90.24,9.38 +2017-04-18 12:17:00,30.0137,90.145,9.42 +2017-04-18 12:32:00,30.1575,90.02,9.43 +2017-04-18 12:47:00,30.6,89.92,9.51 +2017-04-18 13:02:00,29.915,89.7925,9.54 +2017-04-18 13:17:00,30.8887,89.7725,9.6 +2017-04-18 13:32:00,29.285,89.8225,9.66 +2017-04-18 13:47:00,30.7975,89.9775,9.62 +2017-04-18 14:02:00,29.7675,90.09,9.69 +2017-04-18 14:17:00,30.205,90.21,9.76 +2017-04-18 14:32:00,30.2075,90.325,9.79 +2017-04-18 14:47:00,29.67,90.3825,9.79 +2017-04-18 15:02:00,30.4487,90.3775,9.79 +2017-04-18 15:17:00,29.8688,90.365,9.76 +2017-04-18 15:32:00,29.7687,90.24,9.69 +2017-04-18 15:47:00,30.5512,90.0625,9.63 +2017-04-18 16:02:00,29.7738,90.0025,9.56 +2017-04-18 16:17:00,29.3763,90.0375,9.5 +2017-04-18 16:32:00,30.4525,90.0325,9.48 +2017-04-18 16:47:00,29.57,90.0275,9.46 +2017-04-18 17:02:00,29.865,90.07,9.46 +2017-04-18 17:17:00,30.0163,90.0725,9.47 +2017-04-18 17:32:00,28.2012,90.08,9.48 +2017-04-18 17:47:00,29.19,90.025,9.46 +2017-04-18 18:02:00,29.6175,89.905,9.45 +2017-04-18 18:17:00,29.62,89.755,9.46 +2017-04-18 18:32:00,29.87,89.6025,9.46 +2017-04-18 18:47:00,29.6188,89.505,9.43 +2017-04-18 19:02:00,30.11,89.48,9.42 +2017-04-18 19:17:00,29.3787,89.4875,9.4 +2017-04-18 19:32:00,29.7213,89.5275,9.37 +2017-04-18 19:47:00,29.5713,89.56,9.35 +2017-04-18 20:02:00,29.865,89.615,9.32 +2017-04-18 20:17:00,30.6987,89.665,9.3 +2017-04-18 20:32:00,28.8937,89.6525,9.27 +2017-04-18 20:47:00,30.5537,89.57,9.26 +2017-04-18 21:02:00,30.4538,89.455,9.24 +2017-04-18 21:17:00,29.8675,89.3275,9.22 +2017-04-18 21:32:00,30.1062,89.24,9.2 +2017-04-18 21:47:00,30.5525,89.215,9.2 +2017-04-18 22:02:00,30.1588,89.235,9.17 +2017-04-18 22:17:00,30.015,89.2725,9.15 +2017-04-18 22:32:00,30.25,89.3075,9.11 +2017-04-18 22:47:00,30.455,89.3725,9.09 +2017-04-18 23:02:00,29.72,89.47,9.06 +2017-04-18 23:17:00,31.2363,89.495,9.03 +2017-04-18 23:32:00,29.6188,89.4325,9.0 +2017-04-18 23:47:00,30.3512,89.2975,8.96 +2017-04-19 00:02:00,30.5475,89.1675,8.91 +2017-04-19 00:17:00,29.7675,89.025,8.86 +2017-04-19 00:32:00,31.135,88.975,8.81 +2017-04-19 00:47:00,30.0625,88.9725,8.78 +2017-04-19 01:02:00,29.7188,89.01,8.71 +2017-04-19 01:17:00,30.2012,89.075,8.67 +2017-04-19 01:32:00,29.4212,89.1275,8.62 +2017-04-19 01:47:00,30.3512,89.195,8.56 +2017-04-19 02:02:00,30.1075,89.2175,8.54 +2017-04-19 02:17:00,29.5713,89.1425,8.51 +2017-04-19 02:32:00,30.4,89.0325,8.5 +2017-04-19 02:47:00,30.0625,88.9425,8.49 +2017-04-19 03:02:00,29.72,88.87,8.49 +2017-04-19 03:17:00,30.3,88.925,8.5 +2017-04-19 03:32:00,30.3025,89.0125,8.48 +2017-04-19 03:47:00,29.7687,89.1525,8.46 +2017-04-19 04:02:00,29.8187,89.285,8.46 +2017-04-19 04:17:00,29.38,89.435,8.42 +2017-04-19 04:32:00,29.7675,89.585,8.41 +2017-04-19 04:47:00,30.2525,89.735,8.37 +2017-04-19 05:02:00,30.2513,89.8,8.35 +2017-04-19 05:17:00,30.1075,89.87,8.33 +2017-04-19 05:32:00,28.3012,89.91,8.32 +2017-04-19 05:47:00,30.5512,89.98,8.31 +2017-04-19 06:02:00,30.5987,90.0625,8.29 +2017-04-19 06:17:00,29.6225,90.1175,8.28 +2017-04-19 06:32:00,30.4012,90.1875,8.29 +2017-04-19 06:47:00,29.135,90.29,8.29 +2017-04-19 07:02:00,30.5488,90.415,8.3 +2017-04-19 07:17:00,28.9437,90.6275,8.29 +2017-04-19 07:32:00,28.645,90.8575,8.3 +2017-04-19 07:47:00,29.57,91.0525,8.34 +2017-04-19 08:02:00,30.6488,91.335,8.36 +2017-04-19 08:17:00,29.5675,91.525,8.33 +2017-04-19 08:32:00,30.9388,91.7575,8.37 +2017-04-19 08:47:00,29.7213,92.3225,8.34 +2017-04-19 09:02:00,30.505,91.6875,8.38 +2017-04-19 09:17:00,31.1837,91.815,8.38 +2017-04-19 09:32:00,30.1987,92.085,8.43 +2017-04-19 09:47:00,30.105,92.3775,8.38 +2017-04-19 10:02:00,30.7937,92.2875,8.43 +2017-04-19 10:17:00,29.1862,92.49,8.58 +2017-04-19 10:32:00,30.0625,92.595,8.64 +2017-04-19 10:47:00,29.7687,92.785,8.54 +2017-04-19 11:02:00,30.1113,93.0475,8.45 +2017-04-19 11:17:00,29.9137,93.4525,8.55 +2017-04-19 11:32:00,29.2838,93.1975,8.68 +2017-04-19 11:47:00,29.9675,93.335,8.75 +2017-04-19 12:02:00,30.1537,93.1525,8.74 +2017-04-19 12:17:00,29.57,93.38,8.79 +2017-04-19 12:32:00,29.8675,93.0925,8.83 +2017-04-19 12:47:00,30.5025,93.2025,8.89 +2017-04-19 13:02:00,29.865,93.4,8.84 +2017-04-19 13:17:00,29.815,93.4925,8.8 +2017-04-19 13:32:00,29.57,93.6875,8.82 +2017-04-19 13:47:00,30.5512,93.4625,8.84 +2017-04-19 14:02:00,29.8175,94.2125,8.82 +2017-04-19 14:17:00,30.5025,93.8825,8.8 +2017-04-19 14:32:00,29.3763,93.29,8.84 +2017-04-19 14:47:00,30.015,93.8425,8.87 +2017-04-19 15:02:00,29.7675,93.94,8.91 +2017-04-19 15:17:00,30.0625,93.73,8.92 +2017-04-19 15:32:00,29.8712,93.595,8.86 +2017-04-19 15:47:00,29.1387,93.485,8.84 +2017-04-19 16:02:00,29.8162,93.845,8.82 +2017-04-19 16:17:00,31.0375,93.65,8.79 +2017-04-19 16:32:00,30.3525,93.815,8.76 +2017-04-19 16:47:00,31.3862,93.905,8.71 +2017-04-19 17:02:00,30.6975,93.735,8.68 +2017-04-19 17:17:00,30.0638,93.6425,8.65 +2017-04-19 17:32:00,29.1925,93.605,8.62 +2017-04-19 17:47:00,30.1562,93.425,8.6 +2017-04-19 18:02:00,30.1588,93.4225,8.57 +2017-04-19 18:17:00,30.89,93.1775,8.53 +2017-04-19 18:32:00,29.7213,93.1275,8.52 +2017-04-19 18:47:00,30.3037,93.035,8.5 +2017-04-19 19:02:00,29.6188,93.1825,8.49 +2017-04-19 19:17:00,29.9662,93.0175,8.48 +2017-04-19 19:32:00,30.6512,92.805,8.5 +2017-04-19 19:47:00,30.5987,92.605,8.53 +2017-04-19 20:02:00,29.9637,92.37,8.57 +2017-04-19 20:17:00,29.0362,92.09,8.61 +2017-04-19 20:32:00,30.5,91.7675,8.62 +2017-04-19 20:47:00,30.5512,91.2825,8.64 +2017-04-19 21:02:00,29.82,90.98,8.65 +2017-04-19 21:17:00,29.3775,90.815,8.65 +2017-04-19 21:32:00,30.6,90.54,8.64 +2017-04-19 21:47:00,30.6475,90.1675,8.6 +2017-04-19 22:02:00,30.5512,90.05,8.57 +2017-04-19 22:17:00,28.4512,90.13,8.53 +2017-04-19 22:32:00,30.89,89.7575,8.51 +2017-04-19 22:47:00,29.4725,89.61,8.5 +2017-04-19 23:02:00,30.6963,89.21,8.47 +2017-04-19 23:17:00,30.1537,89.17,8.45 +2017-04-19 23:32:00,29.8675,88.88,8.45 +2017-04-19 23:47:00,30.3988,88.55,8.42 +2017-04-20 00:02:00,29.6725,88.6175,8.4 +2017-04-20 00:17:00,29.7712,88.5725,8.4 +2017-04-20 00:32:00,29.0387,88.66,8.38 +2017-04-20 00:47:00,29.9125,88.545,8.36 +2017-04-20 01:02:00,30.4512,88.73,8.34 +2017-04-20 01:17:00,31.0338,88.66,8.32 +2017-04-20 01:32:00,30.2537,88.56,8.28 +2017-04-20 01:47:00,30.5013,88.4775,8.23 +2017-04-20 02:02:00,29.9125,88.3775,8.19 +2017-04-20 02:17:00,28.6437,88.2125,8.14 +2017-04-20 02:32:00,30.7462,88.4325,8.09 +2017-04-20 02:47:00,30.2062,88.3775,8.04 +2017-04-20 03:02:00,29.9675,88.58,7.99 +2017-04-20 03:17:00,30.3012,88.54,7.95 +2017-04-20 03:32:00,29.8213,88.7125,7.91 +2017-04-20 03:47:00,30.7462,89.035,7.88 +2017-04-20 04:02:00,29.77,89.125,7.84 +2017-04-20 04:17:00,30.5025,88.9425,7.82 +2017-04-20 04:32:00,29.9175,88.9475,7.79 +2017-04-20 04:47:00,29.8175,88.89,7.74 +2017-04-20 05:02:00,29.6188,88.77,7.69 +2017-04-20 05:17:00,29.6188,88.7175,7.65 +2017-04-20 05:32:00,29.2363,88.7425,7.63 +2017-04-20 05:47:00,29.3288,88.6525,7.63 +2017-04-20 06:02:00,29.57,88.895,7.65 +2017-04-20 06:17:00,30.2513,89.0325,7.66 +2017-04-20 06:32:00,29.965,88.865,7.68 +2017-04-20 06:47:00,29.9125,89.0975,7.68 +2017-04-20 07:02:00,29.6687,89.3625,7.69 +2017-04-20 07:17:00,30.8887,89.25,7.7 +2017-04-20 07:32:00,30.155,89.22,7.72 +2017-04-20 07:47:00,29.6712,89.075,7.75 +2017-04-20 08:02:00,30.155,89.0775,7.79 +2017-04-20 08:17:00,30.5,89.1375,7.84 +2017-04-20 08:32:00,30.1537,89.275,7.88 +2017-04-20 08:47:00,29.9137,89.265,7.95 +2017-04-20 09:02:00,30.5462,89.33,8.06 +2017-04-20 09:17:00,29.6663,89.55,8.03 +2017-04-20 09:32:00,29.9163,89.7125,8.06 +2017-04-20 09:47:00,29.8175,89.645,7.96 +2017-04-20 10:02:00,29.7175,89.5825,7.96 +2017-04-20 10:17:00,29.9163,89.6175,8.05 +2017-04-20 10:32:00,30.5475,89.575,7.93 +2017-04-20 10:47:00,29.8175,89.345,8.0 +2017-04-20 11:02:00,30.0587,89.295,8.09 +2017-04-20 11:17:00,29.6663,89.3075,8.26 +2017-04-20 11:32:00,30.0125,89.4075,8.23 +2017-04-20 11:47:00,28.8925,89.475,8.3 +2017-04-20 12:02:00,28.595,89.4225,8.29 +2017-04-20 12:17:00,30.06,89.34,8.35 +2017-04-20 12:32:00,29.42,89.62,8.38 +2017-04-20 12:47:00,30.3463,89.4225,8.39 +2017-04-20 13:02:00,30.105,89.5875,8.41 +2017-04-20 13:17:00,30.105,89.3875,8.41 +2017-04-20 13:32:00,29.1862,89.4925,8.38 +2017-04-20 13:47:00,29.085,89.19,8.38 +2017-04-20 14:02:00,29.815,89.2075,8.42 +2017-04-20 14:17:00,30.3988,89.545,8.51 +2017-04-20 14:32:00,29.9137,89.335,8.56 +2017-04-20 14:47:00,29.815,89.5025,8.62 +2017-04-20 15:02:00,30.3975,89.7,8.67 +2017-04-20 15:17:00,31.1338,89.565,8.7 +2017-04-20 15:32:00,30.5025,89.5375,8.7 +2017-04-20 15:47:00,30.25,89.5625,8.72 +2017-04-20 16:02:00,30.1562,89.6125,8.74 +2017-04-20 16:17:00,30.6,89.2875,8.76 +2017-04-20 16:32:00,29.7175,89.445,8.76 +2017-04-20 16:47:00,29.615,89.465,8.77 +2017-04-20 17:02:00,30.4037,89.64,8.78 +2017-04-20 17:17:00,30.6987,89.2925,8.77 +2017-04-20 17:32:00,29.2838,89.45,8.77 +2017-04-20 17:47:00,30.5488,89.47,8.77 +2017-04-20 18:02:00,30.6012,89.725,8.79 +2017-04-20 18:17:00,29.5225,89.495,8.82 +2017-04-20 18:32:00,30.845,89.685,8.88 +2017-04-20 18:47:00,30.105,89.66,8.92 +2017-04-20 19:02:00,31.49,89.4375,8.94 +2017-04-20 19:17:00,30.1562,89.2575,8.98 +2017-04-20 19:32:00,30.0612,89.2825,9.01 +2017-04-20 19:47:00,29.3288,89.3425,9.01 +2017-04-20 20:02:00,30.55,89.335,9.02 +2017-04-20 20:17:00,30.4487,89.305,9.02 +2017-04-20 20:32:00,29.475,89.2625,9.02 +2017-04-20 20:47:00,31.185,89.495,9.01 +2017-04-20 21:02:00,29.97,89.4875,9.01 +2017-04-20 21:17:00,30.0163,89.5975,9.01 +2017-04-20 21:32:00,29.1387,89.5275,9.01 +2017-04-20 21:47:00,31.4938,89.5575,9.01 +2017-04-20 22:02:00,29.8675,89.2375,9.01 +2017-04-20 22:17:00,30.1612,89.115,9.01 +2017-04-20 22:32:00,30.2012,89.12,9.02 +2017-04-20 22:47:00,29.67,89.1875,9.02 +2017-04-20 23:02:00,29.9662,89.145,9.02 +2017-04-20 23:17:00,29.915,89.17,9.01 +2017-04-20 23:32:00,29.0887,89.33,9.0 +2017-04-20 23:47:00,30.6,89.26,9.0 +2017-04-21 00:02:00,30.3025,89.415,8.99 +2017-04-21 00:17:00,30.3487,89.4975,8.97 +2017-04-21 00:32:00,30.7937,89.365,8.95 +2017-04-21 00:47:00,31.1312,89.345,8.92 +2017-04-21 01:02:00,30.3525,89.1575,8.9 +2017-04-21 01:17:00,29.7675,89.1275,8.87 +2017-04-21 01:32:00,30.2513,88.8925,8.83 +2017-04-21 01:47:00,30.1075,88.925,8.8 +2017-04-21 02:02:00,30.5475,88.915,8.77 +2017-04-21 02:17:00,29.8187,88.985,8.74 +2017-04-21 02:32:00,29.8675,88.8775,8.71 +2017-04-21 02:47:00,30.8425,89.1875,8.69 +2017-04-21 03:02:00,30.4525,89.2775,8.68 +2017-04-21 03:17:00,29.9625,89.44,8.68 +2017-04-21 03:32:00,29.9613,89.2375,8.69 +2017-04-21 03:47:00,30.0112,89.195,8.69 +2017-04-21 04:02:00,30.4987,89.2875,8.69 +2017-04-21 04:17:00,29.1888,89.05,8.7 +2017-04-21 04:32:00,29.9662,88.87,8.71 +2017-04-21 04:47:00,29.6188,88.94,8.71 +2017-04-21 05:02:00,29.135,89.1675,8.7 +2017-04-21 05:17:00,30.1075,89.425,8.69 +2017-04-21 05:32:00,31.7787,89.565,8.76 +2017-04-21 05:47:00,30.0625,89.59,8.91 +2017-04-21 06:02:00,29.965,89.7075,8.99 +2017-04-21 06:17:00,29.285,89.79,9.04 +2017-04-21 06:32:00,29.5687,89.675,9.05 +2017-04-21 06:47:00,28.9912,89.8225,9.01 +2017-04-21 07:02:00,30.3512,89.875,9.0 +2017-04-21 07:17:00,30.3475,89.445,9.03 +2017-04-21 07:32:00,29.3775,89.48,9.09 +2017-04-21 07:47:00,30.5062,89.3325,9.1 +2017-04-21 08:02:00,30.7975,89.225,9.08 +2017-04-21 08:17:00,30.5488,89.0675,9.0 +2017-04-21 08:32:00,29.2838,89.06,9.01 +2017-04-21 08:47:00,28.945,89.12,9.07 +2017-04-21 09:02:00,30.5987,89.3325,9.1 +2017-04-21 09:17:00,31.3375,89.2425,9.14 +2017-04-21 09:32:00,30.1512,89.1525,9.19 +2017-04-21 09:47:00,30.0638,89.445,9.27 +2017-04-21 10:02:00,30.0163,89.2975,9.29 +2017-04-21 10:17:00,29.565,89.815,9.39 +2017-04-21 10:32:00,31.5362,89.84,9.38 +2017-04-21 10:47:00,29.3737,90.495,9.42 +2017-04-21 11:02:00,29.815,90.93,9.45 +2017-04-21 11:17:00,29.5212,90.9525,9.49 +2017-04-21 11:32:00,30.2038,90.855,9.54 +2017-04-21 11:47:00,30.5013,90.9925,9.56 +2017-04-21 12:02:00,29.7637,91.0375,9.68 +2017-04-21 12:17:00,30.3037,91.055,9.73 +2017-04-21 12:32:00,31.1825,90.705,9.72 +2017-04-21 12:47:00,29.9637,90.4125,9.74 +2017-04-21 13:02:00,29.815,90.1375,9.81 +2017-04-21 13:17:00,30.3037,90.3075,9.85 +2017-04-21 13:32:00,29.865,90.43,9.83 +2017-04-21 13:47:00,29.765,90.0975,9.83 +2017-04-21 14:02:00,29.6125,90.08,9.88 +2017-04-21 14:17:00,30.0625,90.2,9.95 +2017-04-21 14:32:00,30.3475,89.43,10.0 +2017-04-21 14:47:00,30.3538,89.4325,10.04 +2017-04-21 15:02:00,29.2375,88.9175,10.07 +2017-04-21 15:17:00,29.1387,88.88,10.08 +2017-04-21 15:32:00,29.6237,88.45,10.09 +2017-04-21 15:47:00,30.1562,88.78,10.1 +2017-04-21 16:02:00,29.67,88.235,10.1 +2017-04-21 16:17:00,30.2038,88.38,10.1 +2017-04-21 16:32:00,28.895,88.415,10.11 +2017-04-21 16:47:00,29.67,88.5875,10.12 +2017-04-21 17:02:00,30.305,88.4775,10.14 +2017-04-21 17:17:00,30.7,88.63,10.15 +2017-04-21 17:32:00,31.3913,88.2325,10.17 +2017-04-21 17:47:00,30.0187,88.24,10.2 +2017-04-21 18:02:00,29.5225,88.1,10.21 +2017-04-21 18:17:00,29.4238,88.045,10.23 +2017-04-21 18:32:00,29.9175,87.9575,10.24 +2017-04-21 18:47:00,28.8425,87.905,10.25 +2017-04-21 19:02:00,29.3325,88.2525,10.27 +2017-04-21 19:17:00,29.4287,88.0475,10.3 +2017-04-21 19:32:00,29.62,88.245,10.31 +2017-04-21 19:47:00,30.0625,88.3275,10.32 +2017-04-21 20:02:00,29.3763,88.2025,10.32 +2017-04-21 20:17:00,29.9688,87.825,10.32 +2017-04-21 20:32:00,29.2838,87.73,10.32 +2017-04-21 20:47:00,30.3525,87.7525,10.32 +2017-04-21 21:02:00,29.865,87.88,10.32 +2017-04-21 21:17:00,30.3037,87.395,10.3 +2017-04-21 21:32:00,30.55,87.7775,10.27 +2017-04-21 21:47:00,29.7687,87.77,10.25 +2017-04-21 22:02:00,29.965,87.8125,10.21 +2017-04-21 22:17:00,29.8187,87.7525,10.2 +2017-04-21 22:32:00,30.845,88.005,10.18 +2017-04-21 22:47:00,30.0638,87.525,10.17 +2017-04-21 23:02:00,30.1113,87.46,10.15 +2017-04-21 23:17:00,29.6725,87.5575,10.13 +2017-04-21 23:32:00,29.4238,87.3425,10.1 +2017-04-21 23:47:00,30.3025,87.2625,10.07 +2017-04-22 00:02:00,29.7225,87.3025,10.05 +2017-04-22 00:17:00,30.7462,87.2225,10.03 +2017-04-22 00:32:00,30.6488,87.575,10.03 +2017-04-22 00:47:00,30.0638,87.31,10.03 +2017-04-22 01:02:00,29.7213,87.6475,10.01 +2017-04-22 01:17:00,29.6225,87.47,9.98 +2017-04-22 01:32:00,29.8637,87.2525,9.96 +2017-04-22 01:47:00,30.65,87.1975,9.94 +2017-04-22 02:02:00,30.1588,87.1825,9.94 +2017-04-22 02:17:00,29.2887,87.1425,9.92 +2017-04-22 02:32:00,29.8688,87.105,9.92 +2017-04-22 02:47:00,29.7687,87.235,9.93 +2017-04-22 03:02:00,30.4037,87.2625,9.91 +2017-04-22 03:17:00,29.8213,87.3375,9.91 +2017-04-22 03:32:00,29.87,87.3675,9.93 +2017-04-22 03:47:00,29.4262,87.4325,9.95 +2017-04-22 04:02:00,29.2363,87.505,9.95 +2017-04-22 04:17:00,29.4262,87.3125,9.97 +2017-04-22 04:32:00,29.3312,87.1225,9.98 +2017-04-22 04:47:00,31.1888,86.8375,9.99 +2017-04-22 05:02:00,30.1125,87.085,10.01 +2017-04-22 05:17:00,29.82,86.975,10.01 +2017-04-22 05:32:00,30.4538,87.2075,10.02 +2017-04-22 05:47:00,30.6488,87.185,10.02 +2017-04-22 06:02:00,30.1537,87.315,10.05 +2017-04-22 06:17:00,30.0662,87.285,10.08 +2017-04-22 06:32:00,29.9675,87.04,10.08 +2017-04-22 06:47:00,29.4725,87.1625,10.07 +2017-04-22 07:02:00,29.8175,87.1625,10.07 +2017-04-22 07:17:00,29.8187,86.965,10.04 +2017-04-22 07:32:00,30.1075,87.0225,10.04 +2017-04-22 07:47:00,30.5025,87.185,10.0 +2017-04-22 08:02:00,28.9938,86.83,9.99 +2017-04-22 08:17:00,29.045,86.98,9.99 +2017-04-22 08:32:00,29.7225,86.9575,9.97 +2017-04-22 08:47:00,30.2537,87.3375,9.97 +2017-04-22 09:02:00,28.745,87.1125,10.03 +2017-04-22 09:17:00,29.525,87.1525,10.04 +2017-04-22 09:32:00,29.815,87.345,10.08 +2017-04-22 09:47:00,30.99,87.63,10.06 +2017-04-22 10:02:00,30.6987,87.46,10.15 +2017-04-22 10:17:00,30.6025,87.625,10.19 +2017-04-22 10:32:00,30.99,87.465,10.19 +2017-04-22 10:47:00,29.8187,87.4775,10.15 +2017-04-22 11:02:00,29.9675,86.7975,10.09 +2017-04-22 11:17:00,30.9875,87.3575,10.05 +2017-04-22 11:32:00,29.9163,86.97,10.08 +2017-04-22 11:47:00,29.8187,87.16,10.14 +2017-04-22 12:02:00,29.5713,87.2725,10.26 +2017-04-22 12:17:00,29.97,87.32,10.29 +2017-04-22 12:32:00,30.015,87.7,10.24 +2017-04-22 12:47:00,29.2363,87.2625,10.21 +2017-04-22 13:02:00,29.3288,87.375,10.24 +2017-04-22 13:17:00,29.5762,87.29,10.21 +2017-04-22 13:32:00,29.865,87.21,10.19 +2017-04-22 13:47:00,30.0125,87.3075,10.13 +2017-04-22 14:02:00,29.7188,86.8925,10.13 +2017-04-22 14:17:00,30.6975,86.9475,10.17 +2017-04-22 14:32:00,29.4275,87.07,10.22 +2017-04-22 14:47:00,29.5713,87.08,10.21 +2017-04-22 15:02:00,30.8012,87.04,10.22 +2017-04-22 15:17:00,29.4238,87.375,10.26 +2017-04-22 15:32:00,29.6675,87.4975,10.29 +2017-04-22 15:47:00,29.3763,87.5225,10.33 +2017-04-22 16:02:00,31.2913,87.2025,10.31 +2017-04-22 16:17:00,29.57,87.24,10.3 +2017-04-22 16:32:00,29.14,87.27,10.26 +2017-04-22 16:47:00,29.765,86.955,10.24 +2017-04-22 17:02:00,29.9125,87.4925,10.18 +2017-04-22 17:17:00,30.845,87.105,10.14 +2017-04-22 17:32:00,29.965,87.47,10.09 +2017-04-22 17:47:00,30.1525,87.535,10.07 +2017-04-22 18:02:00,30.3,87.4975,10.05 +2017-04-22 18:17:00,30.3025,87.9525,10.0 +2017-04-22 18:32:00,29.915,87.81,9.97 +2017-04-22 18:47:00,30.3512,88.085,9.94 +2017-04-22 19:02:00,29.57,87.7975,9.92 +2017-04-22 19:17:00,29.92,87.2575,9.88 +2017-04-22 19:32:00,29.92,87.445,9.87 +2017-04-22 19:47:00,29.09,87.3,9.82 +2017-04-22 20:02:00,29.6237,87.41,9.79 +2017-04-22 20:17:00,29.6675,87.335,9.76 +2017-04-22 20:32:00,29.9163,87.47,9.74 +2017-04-22 20:47:00,29.2387,87.5325,9.7 +2017-04-22 21:02:00,29.7213,87.6525,9.66 +2017-04-22 21:17:00,29.6162,87.75,9.62 +2017-04-22 21:32:00,30.0587,87.555,9.58 +2017-04-22 21:47:00,30.7962,87.295,9.55 +2017-04-22 22:02:00,30.3512,87.3675,9.52 +2017-04-22 22:17:00,30.0625,87.28,9.5 +2017-04-22 22:32:00,29.1387,87.4225,9.48 +2017-04-22 22:47:00,29.43,87.6025,9.48 +2017-04-22 23:02:00,29.9675,87.32,9.46 +2017-04-22 23:17:00,30.255,87.7925,9.46 +2017-04-22 23:32:00,29.3787,87.5625,9.45 +2017-04-22 23:47:00,29.5238,88.0,9.45 +2017-04-23 00:02:00,29.5687,87.92,9.44 +2017-04-23 00:17:00,30.4012,87.615,9.45 +2017-04-23 00:32:00,30.3512,87.6175,9.44 +2017-04-23 00:47:00,29.8162,87.6375,9.42 +2017-04-23 01:02:00,30.7487,87.4975,9.4 +2017-04-23 01:17:00,30.8487,87.645,9.36 +2017-04-23 01:32:00,30.3463,87.34,9.33 +2017-04-23 01:47:00,29.4212,87.755,9.3 +2017-04-23 02:02:00,30.6488,87.675,9.28 +2017-04-23 02:17:00,29.4275,87.5475,9.27 +2017-04-23 02:32:00,30.3975,87.64,9.24 +2017-04-23 02:47:00,29.0413,88.09,9.19 +2017-04-23 03:02:00,29.6212,87.8225,9.14 +2017-04-23 03:17:00,30.5475,87.7525,9.12 +2017-04-23 03:32:00,30.5013,87.6525,9.1 +2017-04-23 03:47:00,29.4238,87.5425,9.1 +2017-04-23 04:02:00,30.11,87.6125,9.08 +2017-04-23 04:17:00,30.9362,87.5725,9.07 +2017-04-23 04:32:00,30.4,87.5625,9.05 +2017-04-23 04:47:00,30.7475,87.69,9.05 +2017-04-23 05:02:00,30.8937,87.83,9.05 +2017-04-23 05:17:00,29.33,87.9225,9.05 +2017-04-23 05:32:00,30.155,87.99,9.04 +2017-04-23 05:47:00,29.145,87.925,9.06 +2017-04-23 06:02:00,29.7213,88.0675,9.05 +2017-04-23 06:17:00,30.35,88.055,9.07 +2017-04-23 06:32:00,30.35,87.775,9.1 +2017-04-23 06:47:00,30.2537,87.8725,9.09 +2017-04-23 07:02:00,30.205,87.6775,9.07 +2017-04-23 07:17:00,28.9425,87.835,9.05 +2017-04-23 07:32:00,29.4238,87.7875,9.07 +2017-04-23 07:47:00,30.5025,87.9275,9.12 +2017-04-23 08:02:00,30.2038,87.6225,9.14 +2017-04-23 08:17:00,29.8187,87.8675,9.19 +2017-04-23 08:32:00,29.965,87.94,9.21 +2017-04-23 08:47:00,30.2038,88.4025,9.18 +2017-04-23 09:02:00,29.2838,88.225,9.21 +2017-04-23 09:17:00,29.72,88.3175,9.26 +2017-04-23 09:32:00,30.9875,88.385,9.28 +2017-04-23 09:47:00,30.6462,88.28,9.27 +2017-04-23 10:02:00,29.8637,88.2975,9.26 +2017-04-23 10:17:00,29.9688,88.18,9.35 +2017-04-23 10:32:00,30.015,87.685,9.34 +2017-04-23 10:47:00,31.085,87.675,9.32 +2017-04-23 11:02:00,29.3288,87.6725,9.33 +2017-04-23 11:17:00,29.2363,87.9325,9.32 +2017-04-23 11:32:00,30.6488,88.215,9.29 +2017-04-23 11:47:00,30.7462,88.465,9.31 +2017-04-23 12:02:00,29.2838,88.3075,9.25 +2017-04-23 12:17:00,29.9675,88.525,9.23 +2017-04-23 12:32:00,30.2537,88.6675,9.26 +2017-04-23 12:47:00,30.3012,88.59,9.3 +2017-04-23 13:02:00,31.3875,88.1375,9.32 +2017-04-23 13:17:00,30.4025,87.855,9.39 +2017-04-23 13:32:00,30.1562,88.0,9.46 +2017-04-23 13:47:00,30.6975,88.335,9.41 +2017-04-23 14:02:00,30.0187,88.2825,9.36 +2017-04-23 14:17:00,30.6488,88.34,9.38 +2017-04-23 14:32:00,30.89,88.405,9.48 +2017-04-23 14:47:00,29.5713,87.98,9.51 +2017-04-23 15:02:00,29.5187,88.5425,9.53 +2017-04-23 15:17:00,29.665,88.69,9.55 +2017-04-23 15:32:00,29.8162,88.6075,9.49 +2017-04-23 15:47:00,29.865,88.645,9.45 +2017-04-23 16:02:00,30.7962,88.075,9.44 +2017-04-23 16:17:00,30.8925,88.145,9.45 +2017-04-23 16:32:00,30.745,88.255,9.43 +2017-04-23 16:47:00,30.1062,88.235,9.39 +2017-04-23 17:02:00,30.4987,88.1175,9.37 +2017-04-23 17:17:00,29.5662,88.215,9.37 +2017-04-23 17:32:00,29.865,88.3875,9.37 +2017-04-23 17:47:00,30.0638,88.495,9.39 +2017-04-23 18:02:00,31.4388,88.46,9.39 +2017-04-23 18:17:00,30.25,88.14,9.39 +2017-04-23 18:32:00,29.4713,87.9325,9.38 +2017-04-23 18:47:00,29.9662,88.2125,9.38 +2017-04-23 19:02:00,29.7188,88.06,9.37 +2017-04-23 19:17:00,30.2025,88.1175,9.35 +2017-04-23 19:32:00,30.3525,88.23,9.33 +2017-04-23 19:47:00,30.2525,88.365,9.32 +2017-04-23 20:02:00,29.7237,88.4025,9.3 +2017-04-23 20:17:00,30.7962,88.31,9.26 +2017-04-23 20:32:00,30.6012,88.5025,9.22 +2017-04-23 20:47:00,30.3975,88.3375,9.18 +2017-04-23 21:02:00,30.7475,88.4575,9.16 +2017-04-23 21:17:00,30.2038,88.22,9.12 +2017-04-23 21:32:00,29.04,88.2475,9.1 +2017-04-23 21:47:00,30.3012,88.17,9.09 +2017-04-23 22:02:00,30.0675,88.2725,9.07 +2017-04-23 22:17:00,30.5037,88.485,9.04 +2017-04-23 22:32:00,30.0625,88.5175,9.05 +2017-04-23 22:47:00,28.9463,88.65,9.04 +2017-04-23 23:02:00,30.4538,88.8125,9.02 +2017-04-23 23:17:00,29.7225,88.955,9.0 +2017-04-23 23:32:00,29.8162,88.7925,9.0 +2017-04-23 23:47:00,30.3975,88.8475,8.98 +2017-04-24 00:02:00,30.2525,88.7425,8.96 +2017-04-24 00:17:00,29.5275,88.66,8.93 +2017-04-24 00:32:00,30.5512,88.7575,8.88 +2017-04-24 00:47:00,30.2513,88.9225,8.86 +2017-04-24 01:02:00,31.6888,88.8825,8.83 +2017-04-24 01:17:00,30.7513,89.055,8.79 +2017-04-24 01:32:00,30.8425,89.25,8.75 +2017-04-24 01:47:00,30.2562,89.175,8.71 +2017-04-24 02:02:00,30.6025,89.5575,8.69 +2017-04-24 02:17:00,31.3387,89.2875,8.66 +2017-04-24 02:32:00,31.2387,89.26,8.64 +2017-04-24 02:47:00,30.4012,89.2175,8.63 +2017-04-24 03:02:00,31.2925,89.1225,8.6 +2017-04-24 03:17:00,29.9675,89.075,8.56 +2017-04-24 03:32:00,30.85,88.8825,8.57 +2017-04-24 03:47:00,30.9388,88.9925,8.55 +2017-04-24 04:02:00,30.7975,89.15,8.52 +2017-04-24 04:17:00,29.9175,89.305,8.51 +2017-04-24 04:32:00,30.75,89.24,8.49 +2017-04-24 04:47:00,30.015,89.3325,8.49 +2017-04-24 05:02:00,29.4262,89.41,8.48 +2017-04-24 05:17:00,30.5037,89.385,8.49 +2017-04-24 05:32:00,29.87,89.3075,8.49 +2017-04-24 05:47:00,30.4538,89.16,8.49 +2017-04-24 06:02:00,30.9425,88.9325,8.5 +2017-04-24 06:17:00,30.155,88.8025,8.52 +2017-04-24 06:32:00,30.2525,88.875,8.55 +2017-04-24 06:47:00,30.5037,88.625,8.58 +2017-04-24 07:02:00,29.5713,88.75,8.6 +2017-04-24 07:17:00,30.3487,88.6575,8.62 +2017-04-24 07:32:00,30.8,88.7425,8.68 +2017-04-24 07:47:00,29.6725,89.0525,8.74 +2017-04-24 08:02:00,30.2562,89.0325,8.81 +2017-04-24 08:17:00,30.8425,89.7025,8.88 +2017-04-24 08:32:00,30.3025,89.2225,8.97 +2017-04-24 08:47:00,30.8925,89.2575,9.07 +2017-04-24 09:02:00,30.255,89.195,9.15 +2017-04-24 09:17:00,30.6012,89.1525,9.22 +2017-04-24 09:32:00,29.9675,89.03,9.3 +2017-04-24 09:47:00,30.7988,88.7075,9.39 +2017-04-24 10:02:00,30.4487,89.0775,9.43 +2017-04-24 10:17:00,30.9887,88.945,9.44 +2017-04-24 10:32:00,30.9863,89.0525,9.52 +2017-04-24 10:47:00,30.8463,88.9575,9.56 +2017-04-24 11:02:00,31.1813,89.135,9.53 +2017-04-24 11:17:00,31.8812,89.345,9.5 +2017-04-24 11:32:00,31.1837,89.1975,9.67 +2017-04-24 11:47:00,31.1862,89.4075,9.71 +2017-04-24 12:02:00,30.9425,89.05,9.76 +2017-04-24 12:17:00,30.1588,89.0175,9.84 +2017-04-24 12:32:00,31.4388,89.0375,9.95 +2017-04-24 12:47:00,29.8225,88.755,10.01 +2017-04-24 13:02:00,29.3312,89.145,10.04 +2017-04-24 13:17:00,31.4375,89.0475,10.05 +2017-04-24 13:32:00,30.0612,89.1725,10.09 +2017-04-24 13:47:00,30.6488,89.155,10.13 +2017-04-24 14:02:00,30.6488,89.1975,10.13 +2017-04-24 14:17:00,29.2387,89.125,10.12 +2017-04-24 14:32:00,30.3075,88.885,10.13 +2017-04-24 14:47:00,30.1625,89.2475,10.21 +2017-04-24 15:02:00,30.6987,89.005,10.24 +2017-04-24 15:17:00,30.3988,89.1325,10.24 +2017-04-24 15:32:00,30.3025,88.8125,10.24 +2017-04-24 15:47:00,30.7487,88.9175,10.25 +2017-04-24 16:02:00,30.065,89.0475,10.24 +2017-04-24 16:17:00,30.7513,89.1125,10.24 +2017-04-24 16:32:00,29.4313,89.3475,10.26 +2017-04-24 16:47:00,29.87,89.535,10.28 +2017-04-24 17:02:00,31.0875,89.635,10.29 +2017-04-24 17:17:00,29.1888,89.61,10.31 +2017-04-24 17:32:00,30.105,89.5125,10.35 +2017-04-24 17:47:00,30.35,89.345,10.39 +2017-04-24 18:02:00,30.3975,89.405,10.39 +2017-04-24 18:17:00,30.6975,89.3,10.41 +2017-04-24 18:32:00,29.7188,89.3575,10.42 +2017-04-24 18:47:00,29.0375,89.34,10.42 +2017-04-24 19:02:00,30.5475,89.3925,10.43 +2017-04-24 19:17:00,30.5512,89.63,10.44 +2017-04-24 19:32:00,29.3775,89.5875,10.45 +2017-04-24 19:47:00,29.6188,89.7075,10.47 +2017-04-24 20:02:00,30.6987,89.7925,10.48 +2017-04-24 20:17:00,30.1075,89.6875,10.49 +2017-04-24 20:32:00,30.4475,89.595,10.5 +2017-04-24 20:47:00,29.285,89.445,10.51 +2017-04-24 21:02:00,30.1062,89.36,10.53 +2017-04-24 21:17:00,30.845,89.5525,10.58 +2017-04-24 21:32:00,29.57,89.515,10.59 +2017-04-24 21:47:00,30.3012,89.5325,10.63 +2017-04-24 22:02:00,29.5725,89.5675,10.64 +2017-04-24 22:17:00,30.4538,89.53,10.65 +2017-04-24 22:32:00,30.3487,89.5525,10.64 +2017-04-24 22:47:00,30.2513,89.585,10.66 +2017-04-24 23:02:00,30.015,89.565,10.65 +2017-04-24 23:17:00,30.9388,89.4475,10.63 +2017-04-24 23:32:00,30.205,89.3675,10.6 +2017-04-24 23:47:00,29.9137,89.17,10.57 +2017-04-25 00:02:00,29.4725,89.3525,10.54 +2017-04-25 00:17:00,29.1375,89.2825,10.51 +2017-04-25 00:32:00,31.1825,89.3575,10.47 +2017-04-25 00:47:00,30.8925,89.3425,10.45 +2017-04-25 01:02:00,30.105,89.3425,10.42 +2017-04-25 01:17:00,30.065,89.3825,10.39 +2017-04-25 01:32:00,29.4212,89.5475,10.36 +2017-04-25 01:47:00,30.6488,89.63,10.35 +2017-04-25 02:02:00,31.1362,89.5675,10.33 +2017-04-25 02:17:00,29.7237,89.58,10.32 +2017-04-25 02:32:00,30.3,89.2425,10.32 +2017-04-25 02:47:00,30.3512,89.2575,10.31 +2017-04-25 03:02:00,31.035,89.2025,10.3 +2017-04-25 03:17:00,30.94,89.2325,10.27 +2017-04-25 03:32:00,29.5675,89.4,10.26 +2017-04-25 03:47:00,30.1075,89.455,10.26 +2017-04-25 04:02:00,30.35,89.54,10.25 +2017-04-25 04:17:00,29.7237,89.37,10.24 +2017-04-25 04:32:00,30.6,89.3825,10.24 +2017-04-25 04:47:00,31.0362,89.4325,10.24 +2017-04-25 05:02:00,31.735,89.39,10.26 +2017-04-25 05:17:00,30.55,89.16,10.27 +2017-04-25 05:32:00,30.4037,89.2575,10.27 +2017-04-25 05:47:00,30.8925,89.145,10.26 +2017-04-25 06:02:00,30.3,89.1925,10.26 +2017-04-25 06:17:00,29.82,89.21,10.26 +2017-04-25 06:32:00,30.4575,89.34,10.25 +2017-04-25 06:47:00,31.59,89.3075,10.22 +2017-04-25 07:02:00,31.24,89.25,10.17 +2017-04-25 07:17:00,31.035,88.97,10.14 +2017-04-25 07:32:00,30.7012,89.235,10.12 +2017-04-25 07:47:00,30.7462,88.8775,10.1 +2017-04-25 08:02:00,30.305,88.9375,10.09 +2017-04-25 08:17:00,30.2513,88.83,10.06 +2017-04-25 08:32:00,30.3,88.9675,10.05 +2017-04-25 08:47:00,31.54,88.7775,10.04 +2017-04-25 09:02:00,30.4012,89.0525,10.03 +2017-04-25 09:17:00,30.2,89.3125,10.03 +2017-04-25 09:32:00,29.6725,89.41,10.04 +2017-04-25 09:47:00,29.915,89.29,10.07 +2017-04-25 10:02:00,30.35,89.215,10.08 +2017-04-25 10:17:00,30.8913,88.9025,10.06 +2017-04-25 10:32:00,29.9163,89.13,10.03 +2017-04-25 10:47:00,30.8887,88.7975,10.01 +2017-04-25 11:02:00,31.4362,88.6725,10.0 +2017-04-25 11:17:00,30.9863,88.9125,10.01 +2017-04-25 11:32:00,30.6012,89.0625,10.04 +2017-04-25 11:47:00,30.5963,88.9625,10.01 +2017-04-25 12:02:00,30.0137,88.9425,10.09 +2017-04-25 12:17:00,32.08,89.155,10.16 +2017-04-25 12:32:00,30.1525,88.8525,10.15 +2017-04-25 12:47:00,30.7962,89.0225,10.21 +2017-04-25 13:02:00,30.5512,88.94,10.27 +2017-04-25 13:17:00,30.3087,88.6225,10.31 +2017-04-25 13:32:00,30.1562,88.875,10.32 +2017-04-25 13:47:00,30.8475,88.7075,10.34 +2017-04-25 14:02:00,30.355,88.96,10.36 +2017-04-25 14:17:00,31.2875,88.8575,10.39 +2017-04-25 14:32:00,30.5488,88.97,10.38 +2017-04-25 14:47:00,30.3487,89.025,10.37 +2017-04-25 15:02:00,29.62,88.9225,10.36 +2017-04-25 15:17:00,29.8688,88.9175,10.36 +2017-04-25 15:32:00,29.285,88.91,10.33 +2017-04-25 15:47:00,31.29,88.7875,10.32 +2017-04-25 16:02:00,30.4525,88.95,10.31 +2017-04-25 16:17:00,29.9662,88.7,10.32 +2017-04-25 16:32:00,30.0625,88.9925,10.34 +2017-04-25 16:47:00,30.2025,89.235,10.34 +2017-04-25 17:02:00,30.695,88.945,10.31 +2017-04-25 17:17:00,30.065,88.8925,10.27 +2017-04-25 17:32:00,31.8337,89.03,10.25 +2017-04-25 17:47:00,31.59,89.2525,10.22 +2017-04-25 18:02:00,30.7525,89.4025,10.19 +2017-04-25 18:17:00,29.9137,89.1075,10.18 +2017-04-25 18:32:00,30.305,89.005,10.16 +2017-04-25 18:47:00,30.4525,89.0525,10.15 +2017-04-25 19:02:00,30.4525,88.6875,10.15 +2017-04-25 19:17:00,30.6488,88.7825,10.15 +2017-04-25 19:32:00,29.865,88.96,10.16 +2017-04-25 19:47:00,30.7975,89.0075,10.17 +2017-04-25 20:02:00,29.87,89.105,10.15 +2017-04-25 20:17:00,31.1375,89.1625,10.15 +2017-04-25 20:32:00,30.8887,89.24,10.16 +2017-04-25 20:47:00,30.7487,89.375,10.16 +2017-04-25 21:02:00,30.5013,89.1775,10.17 +2017-04-25 21:17:00,30.1562,89.095,10.16 +2017-04-25 21:32:00,30.35,88.945,10.14 +2017-04-25 21:47:00,31.6875,88.9825,10.12 +2017-04-25 22:02:00,29.775,89.06,10.12 +2017-04-25 22:17:00,30.0612,89.095,10.11 +2017-04-25 22:32:00,30.4525,89.09,10.11 +2017-04-25 22:47:00,30.45,89.0825,10.09 +2017-04-25 23:02:00,31.1325,89.2825,10.06 +2017-04-25 23:17:00,30.3538,89.3475,10.03 +2017-04-25 23:32:00,30.155,89.3175,10.02 +2017-04-25 23:47:00,30.1087,89.165,9.99 +2017-04-26 00:02:00,30.0662,89.14,9.95 +2017-04-26 00:17:00,31.9837,89.07,9.91 +2017-04-26 00:32:00,30.1588,88.9125,9.86 +2017-04-26 00:47:00,31.4412,88.9425,9.8 +2017-04-26 01:02:00,30.9912,89.0175,9.74 +2017-04-26 01:17:00,31.9887,89.1525,9.67 +2017-04-26 01:32:00,30.3538,89.275,9.61 +2017-04-26 01:47:00,30.3525,89.35,9.56 +2017-04-26 02:02:00,30.065,89.3825,9.51 +2017-04-26 02:17:00,30.5525,89.465,9.46 +2017-04-26 02:32:00,31.2913,89.5775,9.4 +2017-04-26 02:47:00,30.75,89.5525,9.35 +2017-04-26 03:02:00,32.2825,89.34,9.32 +2017-04-26 03:17:00,31.5912,89.3775,9.31 +2017-04-26 03:32:00,29.9163,89.21,9.28 +2017-04-26 03:47:00,29.8187,89.2825,9.26 +2017-04-26 04:02:00,31.0338,89.3175,9.26 +2017-04-26 04:17:00,31.085,89.265,9.28 +2017-04-26 04:32:00,30.4012,89.2925,9.28 +2017-04-26 04:47:00,31.0362,89.405,9.28 +2017-04-26 05:02:00,30.4012,89.465,9.3 +2017-04-26 05:17:00,31.235,89.54,9.3 +2017-04-26 05:32:00,30.8425,89.5975,9.36 +2017-04-26 05:47:00,30.4025,89.5525,9.4 +2017-04-26 06:02:00,30.7975,89.4525,9.46 +2017-04-26 06:17:00,30.1087,89.455,9.51 +2017-04-26 06:32:00,30.1075,89.3775,9.55 +2017-04-26 06:47:00,31.1837,89.2575,9.6 +2017-04-26 07:02:00,30.6012,89.32,9.67 +2017-04-26 07:17:00,29.9163,89.435,9.7 +2017-04-26 07:32:00,31.185,89.2575,9.77 +2017-04-26 07:47:00,30.94,89.205,9.79 +2017-04-26 08:02:00,31.085,89.305,9.85 +2017-04-26 08:17:00,30.0175,89.2775,9.91 +2017-04-26 08:32:00,31.3838,89.52,9.95 +2017-04-26 08:47:00,30.1537,89.4525,10.07 +2017-04-26 09:02:00,30.8913,89.7225,9.99 +2017-04-26 09:17:00,30.5025,89.65,10.09 +2017-04-26 09:32:00,31.2875,89.7375,10.15 +2017-04-26 09:47:00,30.5,89.6875,10.13 +2017-04-26 10:02:00,31.185,89.47,10.15 +2017-04-26 10:17:00,31.4375,89.33,10.11 +2017-04-26 10:32:00,-51.93,89.5,10.13 +2017-04-26 10:47:00,-51.9287,89.6325,10.23 +2017-04-26 11:02:00,-0.110001,89.6025,10.28 +2017-04-26 11:17:00,30.98,89.6975,10.29 +2017-04-26 11:32:00,30.5437,89.87,10.43 +2017-04-26 11:47:00,31.085,90.0175,10.54 +2017-04-26 12:02:00,30.7937,89.915,10.53 +2017-04-26 12:17:00,30.6012,89.82,10.44 +2017-04-26 12:32:00,30.4037,89.66,10.35 +2017-04-26 12:47:00,30.4512,89.5925,10.26 +2017-04-26 13:02:00,30.8913,89.515,10.22 +2017-04-26 13:17:00,31.0338,89.3125,10.19 +2017-04-26 13:32:00,31.59,89.6175,10.23 +2017-04-26 13:47:00,29.6712,89.4875,10.24 +2017-04-26 14:02:00,30.2075,89.7875,10.27 +2017-04-26 14:17:00,30.7988,89.6625,10.29 +2017-04-26 14:32:00,29.9737,89.7175,10.32 +2017-04-26 14:47:00,30.89,89.7175,10.35 +2017-04-26 15:02:00,31.3887,89.6875,10.38 +2017-04-26 15:17:00,31.685,89.62,10.4 +2017-04-26 15:32:00,30.4525,89.5825,10.42 +2017-04-26 15:47:00,30.8913,89.46,10.44 +2017-04-26 16:02:00,30.4025,89.4675,10.49 +2017-04-26 16:17:00,29.725,89.375,10.57 +2017-04-26 16:32:00,30.5512,89.47,10.58 +2017-04-26 16:47:00,30.55,89.5125,10.57 +2017-04-26 17:02:00,31.1875,89.675,10.57 +2017-04-26 17:17:00,30.5987,89.7525,10.58 +2017-04-26 17:32:00,29.9163,89.84,10.58 +2017-04-26 17:47:00,30.5013,89.85,10.58 +2017-04-26 18:02:00,30.6525,89.8175,10.59 +2017-04-26 18:17:00,30.02,89.7525,10.58 +2017-04-26 18:32:00,30.5025,89.5775,10.56 +2017-04-26 18:47:00,31.39,89.525,10.54 +2017-04-26 19:02:00,29.8688,89.585,10.52 +2017-04-26 19:17:00,30.8913,89.815,10.51 +2017-04-26 19:32:00,30.6012,89.73,10.51 +2017-04-26 19:47:00,29.92,89.67,10.51 +2017-04-26 20:02:00,30.75,89.88,10.52 +2017-04-26 20:17:00,30.5013,89.915,10.54 +2017-04-26 20:32:00,31.235,89.9175,10.55 +2017-04-26 20:47:00,30.4575,89.9175,10.56 +2017-04-26 21:02:00,30.845,89.8925,10.59 +2017-04-26 21:17:00,29.7663,89.69,10.58 +2017-04-26 21:32:00,31.9325,89.705,10.58 +2017-04-26 21:47:00,30.6562,89.5525,10.57 +2017-04-26 22:02:00,29.7288,89.65,10.55 +2017-04-26 22:17:00,29.7675,89.75,10.51 +2017-04-26 22:32:00,30.1087,89.7175,10.45 +2017-04-26 22:47:00,30.9412,89.7425,10.4 +2017-04-26 23:02:00,30.305,89.7325,10.33 +2017-04-26 23:17:00,31.085,89.74,10.27 +2017-04-26 23:32:00,30.75,89.73,10.19 +2017-04-26 23:47:00,30.4075,89.5225,10.12 +2017-04-27 00:02:00,29.9137,89.6,10.06 +2017-04-27 00:17:00,31.4887,89.4225,10.02 +2017-04-27 00:32:00,30.9825,89.45,9.96 +2017-04-27 00:47:00,30.6,89.4925,9.91 +2017-04-27 01:02:00,30.6975,89.445,9.88 +2017-04-27 01:17:00,32.0375,89.5275,9.83 +2017-04-27 01:32:00,30.945,89.4525,9.8 +2017-04-27 01:47:00,30.2087,89.605,9.76 +2017-04-27 02:02:00,30.0163,89.71,9.74 +2017-04-27 02:17:00,31.1375,89.6725,9.7 +2017-04-27 02:32:00,31.0887,89.6325,9.68 +2017-04-27 02:47:00,31.1375,89.4525,9.66 +2017-04-27 03:02:00,31.64,89.27,9.64 +2017-04-27 03:17:00,30.99,89.31,9.61 +2017-04-27 03:32:00,31.04,89.0625,9.57 +2017-04-27 03:47:00,31.8337,89.275,9.57 +2017-04-27 04:02:00,29.5725,89.12,9.56 +2017-04-27 04:17:00,30.9375,89.24,9.55 +2017-04-27 04:32:00,31.335,89.1225,9.53 +2017-04-27 04:47:00,31.18,89.1375,9.52 +2017-04-27 05:02:00,30.8425,89.1025,9.53 +2017-04-27 05:17:00,30.2038,89.065,9.54 +2017-04-27 05:32:00,30.9425,88.78,9.54 +2017-04-27 05:47:00,30.6012,88.71,9.54 +2017-04-27 06:02:00,31.3363,88.585,9.54 +2017-04-27 06:17:00,30.6975,88.4075,9.56 +2017-04-27 06:32:00,30.7487,88.45,9.58 +2017-04-27 06:47:00,30.35,88.5425,9.57 +2017-04-27 07:02:00,31.2875,88.4075,9.57 +2017-04-27 07:17:00,31.1375,88.6525,9.57 +2017-04-27 07:32:00,30.6012,88.5225,9.57 +2017-04-27 07:47:00,30.8463,88.6625,9.65 +2017-04-27 08:02:00,31.24,88.6075,9.72 +2017-04-27 08:17:00,30.45,88.525,9.81 +2017-04-27 08:32:00,30.7462,88.245,9.9 +2017-04-27 08:47:00,31.135,88.255,9.99 +2017-04-27 09:02:00,30.8,88.305,10.06 +2017-04-27 09:17:00,31.2913,88.295,10.23 +2017-04-27 09:32:00,31.1837,88.23,10.28 +2017-04-27 09:47:00,31.685,88.2475,10.35 +2017-04-27 10:02:00,31.1837,88.285,10.34 +2017-04-27 10:17:00,31.0387,88.2,10.23 +2017-04-27 10:32:00,31.1362,88.1925,10.16 +2017-04-27 10:47:00,31.3925,87.985,10.1 +2017-04-27 11:02:00,30.7537,87.8125,10.06 +2017-04-27 11:17:00,31.0387,87.6675,10.07 +2017-04-27 11:32:00,31.8825,87.3175,10.09 +2017-04-27 11:47:00,30.3988,87.4075,10.1 +2017-04-27 12:02:00,31.1387,87.445,10.25 +2017-04-27 12:17:00,30.1113,87.5925,10.38 +2017-04-27 12:32:00,29.1375,87.6,10.49 +2017-04-27 12:47:00,30.5088,87.67,10.57 +2017-04-27 13:02:00,31.545,87.825,10.65 +2017-04-27 13:17:00,30.4512,87.705,10.78 +2017-04-27 13:32:00,31.0375,87.4025,10.76 +2017-04-27 13:47:00,29.4713,87.42,10.69 +2017-04-27 14:02:00,30.985,87.0775,10.59 +2017-04-27 14:17:00,30.3988,87.09,10.51 +2017-04-27 14:32:00,30.2525,86.9575,10.46 +2017-04-27 14:47:00,30.2075,86.97,10.49 +2017-04-27 15:02:00,30.7025,86.9125,10.52 +2017-04-27 15:17:00,30.9863,86.87,10.64 +2017-04-27 15:32:00,31.1375,87.0025,10.67 +2017-04-27 15:47:00,31.2363,86.795,10.68 +2017-04-27 16:02:00,30.305,86.6675,10.68 +2017-04-27 16:17:00,29.9137,86.51,10.69 +2017-04-27 16:32:00,30.7475,86.41,10.68 +2017-04-27 16:47:00,31.1425,86.225,10.65 +2017-04-27 17:02:00,30.015,86.2325,10.64 +2017-04-27 17:17:00,30.8925,86.0725,10.67 +2017-04-27 17:32:00,31.735,86.23,10.67 +2017-04-27 17:47:00,30.5537,86.3325,10.68 +2017-04-27 18:02:00,31.9837,86.335,10.68 +2017-04-27 18:17:00,30.3037,86.475,10.7 +2017-04-27 18:32:00,30.2087,86.4475,10.72 +2017-04-27 18:47:00,31.5488,86.3975,10.76 +2017-04-27 19:02:00,31.185,86.3675,10.78 +2017-04-27 19:17:00,30.55,86.34,10.77 +2017-04-27 19:32:00,30.7475,86.135,10.77 +2017-04-27 19:47:00,30.9375,86.0375,10.77 +2017-04-27 20:02:00,31.6387,86.015,10.74 +2017-04-27 20:17:00,32.2375,86.105,10.71 +2017-04-27 20:32:00,31.8375,86.045,10.69 +2017-04-27 20:47:00,29.8187,86.2225,10.65 +2017-04-27 21:02:00,30.75,86.245,10.65 +2017-04-27 21:17:00,30.5025,86.295,10.62 +2017-04-27 21:32:00,31.8337,86.4525,10.59 +2017-04-27 21:47:00,31.1338,86.4025,10.58 +2017-04-27 22:02:00,30.2075,86.315,10.59 +2017-04-27 22:17:00,30.8962,86.365,10.6 +2017-04-27 22:32:00,32.2862,86.275,10.61 +2017-04-27 22:47:00,30.9412,86.2425,10.62 +2017-04-27 23:02:00,30.7,86.28,10.61 +2017-04-27 23:17:00,31.3875,86.285,10.62 +2017-04-27 23:32:00,30.4512,86.3725,10.62 +2017-04-27 23:47:00,30.6987,86.6025,10.61 +2017-04-28 00:02:00,31.14,86.64,10.6 +2017-04-28 00:17:00,31.69,86.61,10.61 +2017-04-28 00:32:00,29.62,86.6375,10.59 +2017-04-28 00:47:00,30.25,86.47,10.6 +2017-04-28 01:02:00,32.0863,86.545,10.57 +2017-04-28 01:17:00,30.9875,86.4325,10.55 +2017-04-28 01:32:00,30.0625,86.32,10.53 +2017-04-28 01:47:00,30.845,86.38,10.53 +2017-04-28 02:02:00,30.6575,86.4025,10.51 +2017-04-28 02:17:00,31.7412,86.2575,10.47 +2017-04-28 02:32:00,30.9375,86.5025,10.46 +2017-04-28 02:47:00,31.2875,86.48,10.42 +2017-04-28 03:02:00,31.9325,86.485,10.4 +2017-04-28 03:17:00,30.8937,86.47,10.37 +2017-04-28 03:32:00,31.8337,86.2775,10.34 +2017-04-28 03:47:00,30.7988,86.28,10.3 +2017-04-28 04:02:00,30.2075,86.035,10.26 +2017-04-28 04:17:00,30.0163,85.925,10.23 +2017-04-28 04:32:00,30.2025,86.005,10.21 +2017-04-28 04:47:00,31.0338,86.185,10.21 +2017-04-28 05:02:00,31.5875,86.225,10.18 +2017-04-28 05:17:00,31.2375,86.3425,10.18 +2017-04-28 05:32:00,30.6012,86.48,10.2 +2017-04-28 05:47:00,31.6937,86.3825,10.22 +2017-04-28 06:02:00,30.405,86.2425,10.26 +2017-04-28 06:17:00,31.3363,86.17,10.3 +2017-04-28 06:32:00,29.5713,85.9525,10.35 +2017-04-28 06:47:00,31.8838,85.935,10.4 +2017-04-28 07:02:00,31.8325,85.925,10.45 +2017-04-28 07:17:00,30.7975,85.8575,10.49 +2017-04-28 07:32:00,30.8937,85.6425,10.53 +2017-04-28 07:47:00,31.4437,85.6675,10.58 +2017-04-28 08:02:00,30.3063,85.8225,10.65 +2017-04-28 08:17:00,30.5488,85.6825,10.71 +2017-04-28 08:32:00,30.8937,85.66,10.76 +2017-04-28 08:47:00,30.6975,85.8575,10.79 +2017-04-28 09:02:00,32.5187,85.8975,10.85 +2017-04-28 09:17:00,32.6663,85.85,10.91 +2017-04-28 09:32:00,31.79,85.9325,10.93 +2017-04-28 09:47:00,31.1387,85.8,10.88 +2017-04-28 10:02:00,31.2887,85.585,10.82 +2017-04-28 10:17:00,31.49,85.5475,10.96 +2017-04-28 10:32:00,31.7325,85.5275,11.0 +2017-04-28 10:47:00,30.5975,85.6125,10.89 +2017-04-28 11:02:00,30.7537,85.62,10.86 +2017-04-28 11:17:00,31.1837,85.7275,10.96 +2017-04-28 11:32:00,32.5713,85.83,11.03 +2017-04-28 11:47:00,30.6987,85.8725,11.02 +2017-04-28 12:02:00,30.7012,85.885,10.96 +2017-04-28 12:17:00,30.55,85.7975,10.95 +2017-04-28 12:32:00,29.72,85.5825,10.86 +2017-04-28 12:47:00,31.1338,85.695,10.85 +2017-04-28 13:02:00,31.0825,85.63,10.8 +2017-04-28 13:17:00,30.505,85.7125,10.76 +2017-04-28 13:32:00,30.7,85.8175,10.77 +2017-04-28 13:47:00,31.2887,85.9875,10.81 +2017-04-28 14:02:00,31.6387,86.1475,10.81 +2017-04-28 14:17:00,30.3463,86.1325,10.8 +2017-04-28 14:32:00,31.1825,86.2975,10.8 +2017-04-28 14:47:00,31.4863,86.475,10.83 +2017-04-28 15:02:00,30.4475,86.3675,10.87 +2017-04-28 15:17:00,30.65,86.3175,10.9 +2017-04-28 15:32:00,30.8925,86.385,10.9 +2017-04-28 15:47:00,32.18,86.2725,10.89 +2017-04-28 16:02:00,31.235,86.3975,10.88 +2017-04-28 16:17:00,32.1837,86.305,10.89 +2017-04-28 16:32:00,30.8913,86.4,10.91 +2017-04-28 16:47:00,30.6488,86.425,10.91 +2017-04-28 17:02:00,31.09,86.6475,10.91 +2017-04-28 17:17:00,31.4938,86.6975,10.91 +2017-04-28 17:32:00,30.9388,86.71,10.93 +2017-04-28 17:47:00,30.7975,86.675,10.92 +2017-04-28 18:02:00,32.2288,86.64,10.94 +2017-04-28 18:17:00,30.595,86.56,10.96 +2017-04-28 18:32:00,31.2887,86.455,10.97 +2017-04-28 18:47:00,31.085,86.4325,10.98 +2017-04-28 19:02:00,30.305,86.445,10.98 +2017-04-28 19:17:00,31.435,86.5375,10.97 +2017-04-28 19:32:00,31.3363,86.51,10.99 +2017-04-28 19:47:00,30.305,86.76,11.0 +2017-04-28 20:02:00,30.35,86.7,10.99 +2017-04-28 20:17:00,30.9863,86.8775,11.0 +2017-04-28 20:32:00,30.8438,86.75,10.99 +2017-04-28 20:47:00,31.2375,86.8375,11.02 +2017-04-28 21:02:00,30.8012,86.685,11.03 +2017-04-28 21:17:00,31.29,86.39,11.04 +2017-04-28 21:32:00,30.5537,86.4525,11.05 +2017-04-28 21:47:00,30.4512,86.47,11.05 +2017-04-28 22:02:00,31.2862,86.5275,11.06 +2017-04-28 22:17:00,31.8312,86.58,11.06 +2017-04-28 22:32:00,31.035,86.5625,11.05 +2017-04-28 22:47:00,31.8862,86.605,11.02 +2017-04-28 23:02:00,31.3925,86.725,10.99 +2017-04-28 23:17:00,31.2363,86.675,10.94 +2017-04-28 23:32:00,31.2375,86.7125,10.89 +2017-04-28 23:47:00,31.285,86.525,10.84 +2017-04-29 00:02:00,30.6512,86.38,10.81 +2017-04-29 00:17:00,30.9375,86.2825,10.76 +2017-04-29 00:32:00,32.04,86.2925,10.74 +2017-04-29 00:47:00,29.6225,86.3225,10.72 +2017-04-29 01:02:00,30.6963,86.54,10.72 +2017-04-29 01:17:00,32.04,86.495,10.69 +2017-04-29 01:32:00,30.6512,86.49,10.66 +2017-04-29 01:47:00,31.3887,86.7,10.64 +2017-04-29 02:02:00,30.3525,86.7725,10.64 +2017-04-29 02:17:00,30.5512,86.6725,10.64 +2017-04-29 02:32:00,30.6525,86.5575,10.62 +2017-04-29 02:47:00,31.0938,86.5,10.58 +2017-04-29 03:02:00,31.5425,86.5,10.54 +2017-04-29 03:17:00,30.7962,86.45,10.51 +2017-04-29 03:32:00,30.7012,86.5,10.48 +2017-04-29 03:47:00,31.5413,86.6575,10.46 +2017-04-29 04:02:00,31.4912,86.6625,10.42 +2017-04-29 04:17:00,30.3562,86.5975,10.41 +2017-04-29 04:32:00,31.0912,86.72,10.38 +2017-04-29 04:47:00,30.99,86.845,10.37 +2017-04-29 05:02:00,31.2387,86.9725,10.36 +2017-04-29 05:17:00,30.5013,86.815,10.35 +2017-04-29 05:32:00,30.6963,86.845,10.35 +2017-04-29 05:47:00,30.845,86.7975,10.34 +2017-04-29 06:02:00,31.3875,86.785,10.35 +2017-04-29 06:17:00,31.185,86.8075,10.35 +2017-04-29 06:32:00,33.305,86.98,10.37 +2017-04-29 06:47:00,31.1338,87.04,10.41 +2017-04-29 07:02:00,31.4863,87.1175,10.43 +2017-04-29 07:17:00,30.89,87.12,10.44 +2017-04-29 07:32:00,30.9362,86.9625,10.45 +2017-04-29 07:47:00,32.33,86.8,10.46 +2017-04-29 08:02:00,31.59,87.0675,10.45 +2017-04-29 08:17:00,31.8312,87.0125,10.44 +2017-04-29 08:32:00,32.185,87.05,10.44 +2017-04-29 08:47:00,31.6375,87.165,10.48 +2017-04-29 09:02:00,32.4762,87.19,10.6 +2017-04-29 09:17:00,31.54,87.16,10.7 +2017-04-29 09:32:00,31.44,87.26,10.7 +2017-04-29 09:47:00,31.54,87.545,10.72 +2017-04-29 10:02:00,31.9412,87.53,10.73 +2017-04-29 10:17:00,29.7712,87.5875,10.73 +2017-04-29 10:32:00,32.0887,87.245,10.74 +2017-04-29 10:47:00,32.185,87.1925,10.71 +2017-04-29 11:02:00,31.5863,87.3575,10.73 +2017-04-29 11:17:00,31.0863,87.1925,10.74 +2017-04-29 11:32:00,30.99,86.91,10.71 +2017-04-29 11:47:00,31.8825,87.0875,10.73 +2017-04-29 12:02:00,31.39,87.3975,10.84 +2017-04-29 12:17:00,32.04,87.3825,10.9 +2017-04-29 12:32:00,30.94,87.615,10.95 +2017-04-29 12:47:00,30.895,87.35,11.04 +2017-04-29 13:02:00,30.2062,87.385,11.17 +2017-04-29 13:17:00,30.6012,87.4575,11.2 +2017-04-29 13:32:00,31.7387,87.075,11.22 +2017-04-29 13:47:00,32.14,87.0725,11.31 +2017-04-29 14:02:00,30.9437,87.14,11.4 +2017-04-29 14:17:00,31.39,87.0225,11.43 +2017-04-29 14:32:00,32.0362,86.9975,11.36 +2017-04-29 14:47:00,30.2537,86.7825,11.34 +2017-04-29 15:02:00,30.7,87.12,11.4 +2017-04-29 15:17:00,31.2375,87.085,11.45 +2017-04-29 15:32:00,32.185,87.4725,11.44 +2017-04-29 15:47:00,30.995,87.64,11.42 +2017-04-29 16:02:00,31.3887,87.0725,11.4 +2017-04-29 16:17:00,30.6512,87.175,11.39 +2017-04-29 16:32:00,29.8187,87.1125,11.37 +2017-04-29 16:47:00,30.3525,86.715,11.35 +2017-04-29 17:02:00,30.6,86.9025,11.32 +2017-04-29 17:17:00,31.985,87.1125,11.29 +2017-04-29 17:32:00,29.7725,87.0975,11.27 +2017-04-29 17:47:00,30.9437,87.225,11.27 +2017-04-29 18:02:00,31.5413,87.2175,11.28 +2017-04-29 18:17:00,31.6862,87.525,11.26 +2017-04-29 18:32:00,31.39,87.4375,11.26 +2017-04-29 18:47:00,30.9412,87.34,11.26 +2017-04-29 19:02:00,30.8463,87.13,11.25 +2017-04-29 19:17:00,31.3387,87.1025,11.24 +2017-04-29 19:32:00,30.9,87.0675,11.25 +2017-04-29 19:47:00,31.29,87.005,11.24 +2017-04-29 20:02:00,31.685,86.8775,11.24 +2017-04-29 20:17:00,30.7962,86.9525,11.23 +2017-04-29 20:32:00,30.9875,87.045,11.23 +2017-04-29 20:47:00,31.735,87.3225,11.21 +2017-04-29 21:02:00,31.49,87.3275,11.2 +2017-04-29 21:17:00,32.5225,87.2225,11.18 +2017-04-29 21:32:00,30.0175,87.1,11.17 +2017-04-29 21:47:00,30.2537,87.0825,11.14 +2017-04-29 22:02:00,31.1862,87.0825,11.11 +2017-04-29 22:17:00,31.8838,86.985,11.06 +2017-04-29 22:32:00,31.1862,86.9675,11.03 +2017-04-29 22:47:00,30.89,86.9725,11.01 +2017-04-29 23:02:00,31.3387,87.165,10.97 +2017-04-29 23:17:00,30.7025,87.2625,10.94 +2017-04-29 23:32:00,31.1925,87.2575,10.94 +2017-04-29 23:47:00,31.1413,87.3075,10.92 +2017-04-30 00:02:00,31.7337,87.43,10.89 +2017-04-30 00:17:00,30.065,87.35,10.86 +2017-04-30 00:32:00,31.3875,87.285,10.82 +2017-04-30 00:47:00,31.29,87.2075,10.78 +2017-04-30 01:02:00,31.835,86.9625,10.77 +2017-04-30 01:17:00,31.3875,86.955,10.71 +2017-04-30 01:32:00,30.5025,86.95,10.68 +2017-04-30 01:47:00,32.1325,86.9125,10.62 +2017-04-30 02:02:00,30.645,86.94,10.57 +2017-04-30 02:17:00,31.785,87.06,10.51 +2017-04-30 02:32:00,30.8887,86.9625,10.45 +2017-04-30 02:47:00,31.0863,87.23,10.4 +2017-04-30 03:02:00,31.1862,87.1975,10.34 +2017-04-30 03:17:00,31.09,87.22,10.28 +2017-04-30 03:32:00,31.39,87.13,10.22 +2017-04-30 03:47:00,30.35,87.0075,10.18 +2017-04-30 04:02:00,30.5525,86.945,10.13 +2017-04-30 04:17:00,30.5025,86.965,10.1 +2017-04-30 04:32:00,31.6862,86.925,10.06 +2017-04-30 04:47:00,29.915,87.1675,10.04 +2017-04-30 05:02:00,31.2412,87.0575,10.03 +2017-04-30 05:17:00,31.24,87.1625,10.04 +2017-04-30 05:32:00,30.94,87.32,10.06 +2017-04-30 05:47:00,30.2525,87.1725,10.08 +2017-04-30 06:02:00,31.5875,87.1125,10.12 +2017-04-30 06:17:00,30.8425,87.0525,10.17 +2017-04-30 06:32:00,30.7475,87.0525,10.23 +2017-04-30 06:47:00,30.405,86.96,10.28 +2017-04-30 07:02:00,32.0413,86.6525,10.32 +2017-04-30 07:17:00,30.7988,86.845,10.38 +2017-04-30 07:32:00,32.0863,86.9325,10.45 +2017-04-30 07:47:00,32.0387,86.6925,10.51 +2017-04-30 08:02:00,30.5037,86.9425,10.57 +2017-04-30 08:17:00,31.8325,87.03,10.64 +2017-04-30 08:32:00,31.54,87.2375,10.72 +2017-04-30 08:47:00,32.3838,87.51,10.8 +2017-04-30 09:02:00,30.945,87.225,10.88 +2017-04-30 09:17:00,31.785,87.3275,10.95 +2017-04-30 09:32:00,31.285,87.065,11.02 +2017-04-30 09:47:00,31.3337,86.9875,11.08 +2017-04-30 10:02:00,31.1325,87.1975,11.16 +2017-04-30 10:17:00,31.8838,87.135,11.22 +2017-04-30 10:32:00,31.3913,86.935,11.27 +2017-04-30 10:47:00,32.285,87.2375,11.34 +2017-04-30 11:02:00,31.785,87.29,11.38 +2017-04-30 11:17:00,31.4337,87.035,11.45 +2017-04-30 11:32:00,30.9837,86.9725,11.48 +2017-04-30 11:47:00,30.6488,87.0575,11.52 +2017-04-30 12:02:00,31.485,87.1475,11.53 +2017-04-30 12:17:00,31.3337,86.83,11.56 +2017-04-30 12:32:00,30.1075,86.8925,11.59 +2017-04-30 12:47:00,31.4938,86.83,11.62 +2017-04-30 13:02:00,31.3375,86.9025,11.65 +2017-04-30 13:17:00,30.4,86.91,11.66 +2017-04-30 13:32:00,29.8175,86.73,11.66 +2017-04-30 13:47:00,31.59,86.935,11.64 +2017-04-30 14:02:00,31.2337,86.9675,11.64 +2017-04-30 14:17:00,30.7988,87.2375,11.63 +2017-04-30 14:32:00,31.8387,87.0375,11.61 +2017-04-30 14:47:00,30.2513,87.195,11.59 +2017-04-30 15:02:00,30.6488,87.065,11.58 +2017-04-30 15:17:00,30.945,86.7875,11.54 +2017-04-30 15:32:00,30.7475,86.81,11.52 +2017-04-30 15:47:00,31.29,86.8825,11.5 +2017-04-30 16:02:00,30.9425,87.2875,11.48 +2017-04-30 16:17:00,32.1387,86.9625,11.46 +2017-04-30 16:32:00,32.385,86.9825,11.43 +2017-04-30 16:47:00,30.255,87.1525,11.41 +2017-04-30 17:02:00,30.2575,87.6,11.39 +2017-04-30 17:17:00,31.2387,87.19,11.38 +2017-04-30 17:32:00,29.3825,87.1475,11.38 +2017-04-30 17:47:00,30.1588,87.2625,11.37 +2017-04-30 18:02:00,30.7025,87.115,11.36 +2017-04-30 18:17:00,29.8688,87.15,11.37 +2017-04-30 18:32:00,31.1375,87.075,11.4 +2017-04-30 18:47:00,30.895,87.0775,11.42 +2017-04-30 19:02:00,31.7363,87.26,11.43 +2017-04-30 19:17:00,31.59,87.2925,11.43 +2017-04-30 19:32:00,31.1813,87.445,11.43 +2017-04-30 19:47:00,31.1837,87.49,11.44 +2017-04-30 20:02:00,31.19,87.32,11.47 +2017-04-30 20:17:00,32.1362,87.3575,11.48 +2017-04-30 20:32:00,30.2537,87.105,11.5 +2017-04-30 20:47:00,30.9863,87.205,11.51 +2017-04-30 21:02:00,30.0187,86.9275,11.53 +2017-04-30 21:17:00,30.9425,87.05,11.55 +2017-04-30 21:32:00,30.6012,87.1125,11.55 +2017-04-30 21:47:00,30.6025,86.865,11.56 +2017-04-30 22:02:00,31.1375,86.9675,11.56 +2017-04-30 22:17:00,30.355,87.2075,11.56 +2017-04-30 22:32:00,31.1375,86.985,11.56 +2017-04-30 22:47:00,30.65,86.82,11.56 +2017-04-30 23:02:00,31.8312,86.8475,11.55 +2017-04-30 23:17:00,30.6488,86.71,11.54 +2017-04-30 23:32:00,30.94,86.805,11.54 +2017-04-30 23:47:00,30.11,86.445,11.54 +2017-05-01 00:02:00,29.8225,86.61,11.51 +2017-05-01 00:17:00,30.2537,86.72,11.5 +2017-05-01 00:32:00,30.35,86.455,11.46 +2017-05-01 00:47:00,30.2075,86.705,11.43 +2017-05-01 01:02:00,31.2875,86.495,11.4 +2017-05-01 01:17:00,30.65,86.675,11.36 +2017-05-01 01:32:00,31.135,86.635,11.31 +2017-05-01 01:47:00,31.9863,86.425,11.27 +2017-05-01 02:02:00,32.135,86.3025,11.21 +2017-05-01 02:17:00,31.3363,86.195,11.18 +2017-05-01 02:32:00,32.2325,86.1175,11.13 +2017-05-01 02:47:00,30.1562,86.1525,11.07 +2017-05-01 03:02:00,31.3875,86.1725,11.03 +2017-05-01 03:17:00,31.1362,86.17,10.98 +2017-05-01 03:32:00,30.5062,86.2225,10.93 +2017-05-01 03:47:00,30.02,86.1675,10.91 +2017-05-01 04:02:00,31.3412,86.4575,10.87 +2017-05-01 04:17:00,31.83,86.215,10.84 +2017-05-01 04:32:00,30.3538,86.2875,10.81 +2017-05-01 04:47:00,31.0875,86.0875,10.8 +2017-05-01 05:02:00,30.455,86.03,10.8 +2017-05-01 05:17:00,31.1325,85.815,10.79 +2017-05-01 05:32:00,30.1113,85.995,10.79 +2017-05-01 05:47:00,31.6413,85.8875,10.81 +2017-05-01 06:02:00,31.385,86.07,10.84 +2017-05-01 06:17:00,31.5387,85.915,10.87 +2017-05-01 06:32:00,30.985,85.87,10.91 +2017-05-01 06:47:00,31.54,86.0225,10.93 +2017-05-01 07:02:00,31.9825,86.045,10.95 +2017-05-01 07:17:00,31.3913,86.02,10.98 +2017-05-01 07:32:00,31.2937,85.9,11.03 +2017-05-01 07:47:00,30.2025,86.03,11.06 +2017-05-01 08:02:00,30.7988,85.9175,11.12 +2017-05-01 08:17:00,31.44,85.8275,11.18 +2017-05-01 08:32:00,31.4875,86.2,11.24 +2017-05-01 08:47:00,31.5413,86.145,11.32 +2017-05-01 09:02:00,31.8337,85.93,11.4 +2017-05-01 09:17:00,31.5938,86.175,11.43 +2017-05-01 09:32:00,31.4425,86.225,11.44 +2017-05-01 09:47:00,31.9812,86.3025,11.49 +2017-05-01 10:02:00,32.1338,85.9825,11.52 +2017-05-01 10:17:00,32.185,85.8025,11.5 +2017-05-01 10:32:00,33.0163,85.6825,11.46 +2017-05-01 10:47:00,31.54,85.87,11.5 +2017-05-01 11:02:00,32.0875,85.82,11.49 +2017-05-01 11:17:00,31.4925,85.905,11.51 +2017-05-01 11:32:00,31.9825,85.63,11.53 +2017-05-01 11:47:00,30.9887,85.915,11.51 +2017-05-01 12:02:00,30.0625,85.96,11.51 +2017-05-01 12:17:00,31.8838,85.8925,11.58 +2017-05-01 12:32:00,30.8925,85.8275,11.58 +2017-05-01 12:47:00,30.1087,85.9525,11.57 +2017-05-01 13:02:00,31.2988,85.9825,11.55 +2017-05-01 13:17:00,30.7525,85.7675,11.5 +2017-05-01 13:32:00,30.94,85.8775,11.45 +2017-05-01 13:47:00,31.735,85.96,11.42 +2017-05-01 14:02:00,31.5375,86.0875,11.4 +2017-05-01 14:17:00,31.59,86.0275,11.38 +2017-05-01 14:32:00,30.8438,86.2225,11.4 +2017-05-01 14:47:00,30.85,86.145,11.42 +2017-05-01 15:02:00,31.1925,86.0925,11.4 +2017-05-01 15:17:00,31.985,86.1475,11.39 +2017-05-01 15:32:00,31.29,86.11,11.39 +2017-05-01 15:47:00,31.2387,85.905,11.4 +2017-05-01 16:02:00,30.8,86.075,11.4 +2017-05-01 16:17:00,31.6862,86.185,11.4 +2017-05-01 16:32:00,30.5512,86.0475,11.4 +2017-05-01 16:47:00,31.545,86.0175,11.41 +2017-05-01 17:02:00,32.1387,86.1375,11.44 +2017-05-01 17:17:00,31.135,86.3825,11.47 +2017-05-01 17:32:00,32.1362,86.3125,11.49 +2017-05-01 17:47:00,31.685,86.36,11.53 +2017-05-01 18:02:00,30.9412,86.3425,11.56 +2017-05-01 18:17:00,30.8487,86.1575,11.57 +2017-05-01 18:32:00,32.2325,86.1275,11.59 +2017-05-01 18:47:00,31.2425,86.1675,11.61 +2017-05-01 19:02:00,30.8463,86.0125,11.63 +2017-05-01 19:17:00,30.5037,85.91,11.64 +2017-05-01 19:32:00,31.0863,86.0175,11.65 +2017-05-01 19:47:00,31.0387,85.8875,11.65 +2017-05-01 20:02:00,31.2375,86.145,11.67 +2017-05-01 20:17:00,30.5025,86.24,11.68 +2017-05-01 20:32:00,31.2937,86.0225,11.68 +2017-05-01 20:47:00,30.7062,86.0275,11.68 +2017-05-01 21:02:00,30.8463,85.9925,11.68 +2017-05-01 21:17:00,31.3375,85.9875,11.68 +2017-05-01 21:32:00,31.7375,85.8275,11.67 +2017-05-01 21:47:00,30.99,85.725,11.65 +2017-05-01 22:02:00,31.7838,85.7675,11.62 +2017-05-01 22:17:00,31.2875,85.6225,11.6 +2017-05-01 22:32:00,30.2588,85.715,11.59 +2017-05-01 22:47:00,30.1162,85.9225,11.58 +2017-05-01 23:02:00,31.2913,85.7725,11.57 +2017-05-01 23:17:00,32.1312,85.9425,11.54 +2017-05-01 23:32:00,31.5938,85.9525,11.53 +2017-05-01 23:47:00,31.1862,85.77,11.51 +2017-05-02 00:02:00,30.4525,85.715,11.5 +2017-05-02 00:17:00,30.205,85.625,11.48 +2017-05-02 00:32:00,31.2925,85.63,11.45 +2017-05-02 00:47:00,30.6987,85.44,11.43 +2017-05-02 01:02:00,32.035,85.6875,11.42 +2017-05-02 01:17:00,31.0362,85.665,11.41 +2017-05-02 01:32:00,30.505,85.735,11.4 +2017-05-02 01:47:00,30.6488,85.78,11.38 +2017-05-02 02:02:00,31.5887,85.9,11.36 +2017-05-02 02:17:00,31.1425,85.665,11.35 +2017-05-02 02:32:00,30.8538,85.7675,11.35 +2017-05-02 02:47:00,30.35,85.5225,11.34 +2017-05-02 03:02:00,31.8363,85.44,11.34 +2017-05-02 03:17:00,31.4912,85.3925,11.33 +2017-05-02 03:32:00,32.6725,85.26,11.34 +2017-05-02 03:47:00,30.8512,85.3125,11.34 +2017-05-02 04:02:00,30.7038,85.455,11.35 +2017-05-02 04:17:00,31.3937,85.4675,11.35 +2017-05-02 04:32:00,31.6437,85.6675,11.35 +2017-05-02 04:47:00,32.0875,85.7375,11.35 +2017-05-02 05:02:00,30.3075,85.87,11.37 +2017-05-02 05:17:00,31.9362,86.185,11.38 +2017-05-02 05:32:00,31.3375,86.095,11.39 +2017-05-02 05:47:00,31.44,85.99,11.39 +2017-05-02 06:02:00,32.82,86.06,11.38 +2017-05-02 06:17:00,32.2387,85.88,11.37 +2017-05-02 06:32:00,31.8312,85.6875,11.36 +2017-05-02 06:47:00,31.8838,85.635,11.35 +2017-05-02 07:02:00,32.3825,85.5175,11.34 +2017-05-02 07:17:00,32.4737,85.505,11.33 +2017-05-02 07:32:00,31.8838,85.5025,11.31 +2017-05-02 07:47:00,32.72,85.6575,11.27 +2017-05-02 08:02:00,31.79,85.8575,11.24 +2017-05-02 08:17:00,32.1888,86.175,11.21 +2017-05-02 08:32:00,33.4512,86.1275,11.18 +2017-05-02 08:47:00,32.0375,86.3,11.15 +2017-05-02 09:02:00,32.185,86.255,11.13 +2017-05-02 09:17:00,32.6675,86.4625,11.1 +2017-05-02 09:32:00,32.7137,86.755,11.05 +2017-05-02 09:47:00,32.4737,86.9325,11.02 +2017-05-02 10:02:00,33.5525,87.47,10.99 +2017-05-02 10:17:00,32.6162,88.0275,10.94 +2017-05-02 10:32:00,31.6437,88.165,10.89 +2017-05-02 10:47:00,32.2325,88.1675,10.85 +2017-05-02 11:02:00,32.815,88.0525,10.83 +2017-05-02 11:17:00,33.55,88.21,10.81 +2017-05-02 11:32:00,32.6725,87.85,10.79 +2017-05-02 11:47:00,32.7675,88.0225,10.77 +2017-05-02 12:02:00,32.72,87.98,10.77 +2017-05-02 12:17:00,32.9713,87.735,10.76 +2017-05-02 12:32:00,32.67,87.8425,10.76 +2017-05-02 12:47:00,32.4688,87.6575,10.77 +2017-05-02 13:02:00,32.1837,87.675,10.77 +2017-05-02 13:17:00,33.0163,87.6225,10.78 +2017-05-02 13:31:20,28.4112,87.9875,9.73 +2017-05-02 13:47:00,31.8325,87.76,10.81 +2017-05-02 14:02:00,31.54,87.8225,10.86 +2017-05-02 14:17:00,32.765,87.9725,10.9 +2017-05-02 14:32:00,31.9325,87.85,10.94 +2017-05-02 14:47:00,31.445,87.7575,10.95 +2017-05-02 15:02:00,30.9463,87.4225,10.95 +2017-05-02 15:17:00,31.64,87.475,10.94 +2017-05-02 15:32:00,31.9887,87.395,10.93 +2017-05-02 15:47:00,31.6888,87.2775,10.92 +2017-05-02 16:02:00,30.9875,87.17,10.91 +2017-05-02 16:17:00,30.65,87.295,10.9 +2017-05-02 16:32:00,32.23,87.61,10.9 +2017-05-02 16:47:00,32.0437,87.96,10.89 +2017-05-02 17:02:00,30.51,88.05,10.89 +2017-05-02 17:17:00,32.2325,87.81,10.89 +2017-05-02 17:32:00,31.0375,87.7275,10.9 +2017-05-02 17:47:00,32.0863,87.53,10.9 +2017-05-02 18:02:00,32.4325,87.385,10.88 +2017-05-02 18:17:00,31.2337,87.2225,10.86 +2017-05-02 18:32:00,31.3925,87.195,10.84 +2017-05-02 18:47:00,30.3075,87.0725,10.83 +2017-05-02 19:02:00,32.135,86.88,10.81 +2017-05-02 19:17:00,32.5687,86.93,10.8 +2017-05-02 19:32:00,31.245,86.8875,10.78 +2017-05-02 19:47:00,31.935,87.13,10.77 +2017-05-02 20:02:00,31.0362,87.14,10.75 +2017-05-02 20:17:00,31.4375,86.9,10.73 +2017-05-02 20:32:00,30.7525,86.7825,10.71 +2017-05-02 20:47:00,31.6912,86.715,10.69 +2017-05-02 21:02:00,31.7337,86.71,10.67 +2017-05-02 21:17:00,31.835,86.8675,10.66 +2017-05-02 21:32:00,31.9337,86.765,10.65 +2017-05-02 21:47:00,31.24,86.8425,10.61 +2017-05-02 22:02:00,31.1338,87.02,10.57 +2017-05-02 22:17:00,31.0925,87.1025,10.55 +2017-05-02 22:32:00,31.7875,87.2375,10.53 +2017-05-02 22:47:00,30.6525,87.29,10.49 +2017-05-02 23:02:00,31.5863,87.3575,10.46 +2017-05-02 23:17:00,31.9863,87.2775,10.43 +2017-05-02 23:32:00,30.1137,87.175,10.41 +2017-05-02 23:47:00,31.985,87.1975,10.39 +2017-05-03 00:02:00,31.4388,87.35,10.38 +2017-05-03 00:17:00,31.7862,87.39,10.36 +2017-05-03 00:32:00,31.3425,87.545,10.34 +2017-05-03 00:47:00,31.7862,87.7425,10.31 +2017-05-03 01:02:00,30.89,87.7925,10.29 +2017-05-03 01:17:00,32.3312,88.1475,10.28 +2017-05-03 01:32:00,31.9837,88.28,10.26 +2017-05-03 01:47:00,31.24,88.345,10.25 +2017-05-03 02:02:00,31.3463,88.5425,10.22 +2017-05-03 02:17:00,32.4812,88.5525,10.19 +2017-05-03 02:32:00,31.7387,88.6525,10.16 +2017-05-03 02:47:00,31.64,88.985,10.13 +2017-05-03 03:02:00,32.5262,89.265,10.11 +2017-05-03 03:17:00,32.4788,89.575,10.09 +2017-05-03 03:32:00,31.8337,89.9025,10.07 +2017-05-03 03:47:00,30.9875,90.1825,10.04 +2017-05-03 04:02:00,31.4463,90.6925,10.01 +2017-05-03 04:17:00,32.24,91.1625,9.98 +2017-05-03 04:32:00,30.8525,91.6725,9.95 +2017-05-03 04:47:00,31.885,91.81,9.94 +2017-05-03 05:02:00,31.4863,92.215,9.93 +2017-05-03 05:17:00,31.3375,92.5725,9.93 +2017-05-03 05:32:00,31.2913,92.9075,9.94 +2017-05-03 05:47:00,31.2913,93.4025,9.97 +2017-05-03 06:02:00,32.4762,93.945,9.99 +2017-05-03 06:17:00,32.09,94.455,10.03 +2017-05-03 06:32:00,30.16,94.9525,10.08 +2017-05-03 06:47:00,32.8675,95.505,10.12 +2017-05-03 07:02:00,31.9837,96.055,10.17 +2017-05-03 07:17:00,31.34,96.9525,10.24 +2017-05-03 07:32:00,32.5762,100.378,10.3 +2017-05-03 07:47:00,32.0413,102.592,10.36 +2017-05-03 08:02:00,31.9925,104.06,10.43 +2017-05-03 08:17:00,31.49,105.287,10.48 +2017-05-03 08:32:00,31.6875,105.302,10.54 +2017-05-03 08:47:00,32.0912,105.867,10.6 +2017-05-03 09:02:00,31.0887,105.875,10.66 +2017-05-03 09:17:00,32.4762,106.095,10.74 +2017-05-03 09:32:00,31.7825,106.027,10.8 +2017-05-03 09:47:00,32.29,105.675,10.86 +2017-05-03 10:02:00,31.695,105.73,10.86 +2017-05-03 10:17:00,31.1837,105.548,10.91 +2017-05-03 10:32:00,31.785,105.445,10.95 +2017-05-03 10:47:00,30.9887,105.595,10.99 +2017-05-03 11:02:00,30.5013,105.445,11.04 +2017-05-03 11:17:00,31.1375,105.673,11.1 +2017-05-03 11:32:00,32.2862,105.895,11.17 +2017-05-03 11:47:00,32.24,105.915,11.25 +2017-05-03 12:02:00,31.185,106.05,11.28 +2017-05-03 12:17:00,31.54,106.095,11.31 +2017-05-03 12:32:00,30.5062,105.902,11.33 +2017-05-03 12:47:00,32.1338,105.908,11.36 +2017-05-03 13:02:00,33.115,105.62,11.36 +2017-05-03 13:17:00,32.1312,105.542,11.37 +2017-05-03 13:32:00,31.1888,105.597,11.38 +2017-05-03 13:47:00,32.0375,105.325,11.41 +2017-05-03 14:02:00,32.1325,105.445,11.44 +2017-05-03 14:17:00,31.935,105.587,11.51 +2017-05-03 14:32:00,30.7025,105.315,11.6 +2017-05-03 14:47:00,32.2325,105.3,11.65 +2017-05-03 15:02:00,31.3412,105.247,11.72 +2017-05-03 15:17:00,31.9388,105.195,11.76 +2017-05-03 15:32:00,31.5938,104.92,11.78 +2017-05-03 15:47:00,32.4287,104.917,11.79 +2017-05-03 16:02:00,31.985,104.512,11.82 +2017-05-03 16:17:00,29.8225,104.36,11.86 +2017-05-03 16:32:00,33.1637,104.265,11.89 +2017-05-03 16:47:00,32.04,104.115,11.92 +2017-05-03 17:02:00,31.295,104.295,11.93 +2017-05-03 17:17:00,32.1413,104.265,11.94 +2017-05-03 17:32:00,31.19,104.253,11.96 +2017-05-03 17:47:00,31.345,104.033,11.98 +2017-05-03 18:02:00,32.0362,104.227,12.01 +2017-05-03 18:17:00,31.5413,104.295,12.03 +2017-05-03 18:32:00,32.28,104.44,12.05 +2017-05-03 18:47:00,31.5925,104.507,12.07 +2017-05-03 19:02:00,30.2062,104.597,12.1 +2017-05-03 19:17:00,32.7725,104.67,12.12 +2017-05-03 19:32:00,32.3875,104.662,12.14 +2017-05-03 19:47:00,30.8475,104.807,12.14 +2017-05-03 20:02:00,32.7162,104.702,12.16 +2017-05-03 20:17:00,32.8187,104.867,12.18 +2017-05-03 20:32:00,31.2412,104.665,12.19 +2017-05-03 20:47:00,31.0413,104.492,12.21 +2017-05-03 21:02:00,32.0912,104.56,12.24 +2017-05-03 21:17:00,30.6562,104.048,12.27 +2017-05-03 21:32:00,31.5462,103.765,12.29 +2017-05-03 21:47:00,32.4275,103.487,12.31 +2017-05-03 22:02:00,30.85,103.378,12.32 +2017-05-03 22:17:00,32.3325,103.375,12.33 +2017-05-03 22:32:00,30.9925,103.12,12.34 +2017-05-03 22:47:00,31.7887,102.85,12.34 +2017-05-03 23:02:00,31.6475,102.675,12.33 +2017-05-03 23:17:00,32.8213,102.537,12.31 +2017-05-03 23:32:00,31.1387,102.475,12.29 +2017-05-03 23:47:00,31.8337,102.582,12.25 +2017-05-04 00:02:00,31.9375,102.13,12.22 +2017-05-04 00:17:00,31.6912,102.06,12.19 +2017-05-04 00:32:00,31.9875,101.685,12.15 +2017-05-04 00:47:00,31.7913,101.585,12.12 +2017-05-04 01:02:00,31.5437,101.245,12.08 +2017-05-04 01:17:00,31.6437,101.107,12.05 +2017-05-04 01:32:00,31.0413,101.393,12.03 +2017-05-04 01:47:00,32.1338,101.247,12.02 +2017-05-04 02:02:00,32.0375,101.167,12.0 +2017-05-04 02:17:00,29.9212,101.185,11.97 +2017-05-04 02:32:00,32.8688,100.863,11.95 +2017-05-04 02:47:00,31.6925,100.7,11.93 +2017-05-04 03:02:00,31.2475,100.822,11.9 +2017-05-04 03:17:00,31.3913,100.67,11.87 +2017-05-04 03:32:00,31.2387,100.66,11.84 +2017-05-04 03:47:00,31.7838,100.52,11.82 +2017-05-04 04:02:00,32.2337,100.68,11.8 +2017-05-04 04:17:00,32.0362,100.597,11.78 +2017-05-04 04:32:00,32.3887,100.55,11.76 +2017-05-04 04:47:00,33.0725,100.592,11.73 +2017-05-04 05:02:00,31.5437,100.673,11.72 +2017-05-04 05:17:00,32.67,100.772,11.7 +2017-05-04 05:32:00,32.09,100.423,11.68 +2017-05-04 05:47:00,31.8913,100.555,11.65 +2017-05-04 06:02:00,32.3312,100.647,11.64 +2017-05-04 06:17:00,32.0825,100.435,11.62 +2017-05-04 06:32:00,33.4088,100.412,11.6 +2017-05-04 06:47:00,33.1212,100.355,11.6 +2017-05-04 07:02:00,32.09,100.2,11.59 +2017-05-04 07:17:00,32.8737,100.235,11.59 +2017-05-04 07:32:00,32.385,100.272,11.58 +2017-05-04 07:47:00,32.035,100.08,11.57 +2017-05-04 08:02:00,33.4538,99.93,11.57 +2017-05-04 08:17:00,32.1912,100.145,11.58 +2017-05-04 08:32:00,32.9238,100.247,11.59 +2017-05-04 08:47:00,32.4762,100.0,11.59 +2017-05-04 09:02:00,33.3075,100.315,11.59 +2017-05-04 09:17:00,31.89,100.152,11.57 +2017-05-04 09:32:00,32.82,100.09,11.55 +2017-05-04 09:47:00,33.0187,99.775,11.54 +2017-05-04 10:02:00,33.1175,99.88,11.52 +2017-05-04 10:17:00,32.3387,99.8475,11.51 +2017-05-04 10:32:00,33.0212,99.75,11.49 +2017-05-04 10:47:00,31.2425,99.665,11.48 +2017-05-04 11:02:00,32.9675,99.5475,11.46 +2017-05-04 11:17:00,32.6188,99.6925,11.45 +2017-05-04 11:32:00,33.4575,99.8375,11.44 +2017-05-04 11:47:00,32.2337,99.6725,11.45 +2017-05-04 12:02:00,33.2125,99.5975,11.45 +2017-05-04 12:17:00,31.0925,99.64,11.45 +2017-05-04 12:32:00,32.335,99.5575,11.44 +2017-05-04 12:47:00,32.3862,99.1125,11.44 +2017-05-04 13:02:00,32.38,99.1375,11.44 +2017-05-04 13:17:00,33.6025,98.9425,11.44 +2017-05-04 13:32:00,33.8463,98.9,11.45 +2017-05-04 13:47:00,30.6512,98.9525,11.47 +2017-05-04 14:02:00,32.825,98.9325,11.48 +2017-05-04 14:17:00,31.995,99.0925,11.47 +2017-05-04 14:32:00,33.015,98.9175,11.48 +2017-05-04 14:47:00,32.0875,98.755,11.48 +2017-05-04 15:02:00,32.8675,98.95,11.47 +2017-05-04 15:17:00,32.4325,98.4325,11.46 +2017-05-04 15:32:00,32.2838,98.6075,11.44 +2017-05-04 15:47:00,33.2137,98.4125,11.42 +2017-05-04 16:02:00,32.975,98.2175,11.4 +2017-05-04 16:17:00,32.7213,98.1075,11.39 +2017-05-04 16:32:00,33.7012,98.0375,11.37 +2017-05-04 16:47:00,32.6738,98.07,11.36 +2017-05-04 17:02:00,32.035,98.08,11.34 +2017-05-04 17:17:00,32.9688,98.02,11.32 +2017-05-04 17:32:00,33.215,97.9025,11.3 +2017-05-04 17:47:00,33.1212,98.025,11.28 +2017-05-04 18:02:00,33.7562,97.7825,11.26 +2017-05-04 18:17:00,32.4762,97.63,11.24 +2017-05-04 18:32:00,33.3538,97.4025,11.22 +2017-05-04 18:47:00,33.55,97.425,11.2 +2017-05-04 19:02:00,32.7162,97.29,11.17 +2017-05-04 19:17:00,34.2325,97.1075,11.15 +2017-05-04 19:32:00,34.23,97.1725,11.14 +2017-05-04 19:47:00,32.9762,97.065,11.12 +2017-05-04 20:02:00,32.1925,97.06,11.11 +2017-05-04 20:17:00,34.1837,97.0225,11.1 +2017-05-04 20:32:00,34.4788,96.9425,11.09 +2017-05-04 20:47:00,32.1825,96.765,11.09 +2017-05-04 21:02:00,32.87,96.4675,11.08 +2017-05-04 21:17:00,33.8487,96.36,11.07 +2017-05-04 21:32:00,33.1712,96.425,11.06 +2017-05-04 21:47:00,33.0225,96.1075,11.06 +2017-05-04 22:02:00,33.4562,96.1625,11.04 +2017-05-04 22:17:00,34.1362,96.19,11.03 +2017-05-04 22:32:00,34.67,96.115,11.04 +2017-05-04 22:47:00,33.8463,96.21,11.03 +2017-05-04 23:02:00,33.45,96.1225,11.02 +2017-05-04 23:17:00,32.87,96.04,11.01 +2017-05-04 23:32:00,32.2375,96.01,11.0 +2017-05-04 23:47:00,33.2213,95.8475,10.99 +2017-05-05 00:02:00,33.0662,95.8475,10.98 +2017-05-05 00:17:00,33.455,95.7125,10.96 +2017-05-05 00:32:00,33.405,95.5625,10.96 +2017-05-05 00:47:00,34.5737,95.5775,10.95 +2017-05-05 01:02:00,33.8988,95.5225,10.93 +2017-05-05 01:17:00,34.43,95.67,10.92 +2017-05-05 01:32:00,33.7537,95.63,10.91 +2017-05-05 01:47:00,33.3587,95.735,10.89 +2017-05-05 02:02:00,33.3575,95.5325,10.89 +2017-05-05 02:17:00,33.4037,95.405,10.87 +2017-05-05 02:32:00,34.0837,95.4075,10.86 +2017-05-05 02:47:00,33.8475,95.4725,10.85 +2017-05-05 03:02:00,33.4987,95.2825,10.83 +2017-05-05 03:17:00,34.0912,95.3525,10.82 +2017-05-05 03:32:00,34.6787,95.34,10.81 +2017-05-05 03:47:00,33.4575,95.2275,10.79 +2017-05-05 04:02:00,35.3988,95.4075,10.77 +2017-05-05 04:17:00,35.555,95.28,10.75 +2017-05-05 04:32:00,33.1137,95.55,10.75 +2017-05-05 04:47:00,34.3763,95.54,10.74 +2017-05-05 05:02:00,33.85,95.395,10.72 +2017-05-05 05:17:00,34.235,95.465,10.71 +2017-05-05 05:32:00,34.38,95.64,10.71 +2017-05-05 05:47:00,33.995,95.7675,10.71 +2017-05-05 06:02:00,34.43,95.9275,10.72 +2017-05-05 06:17:00,35.0525,95.99,10.81 +2017-05-05 06:32:00,34.4762,95.89,10.91 +2017-05-05 06:47:00,33.85,95.865,10.95 +2017-05-05 07:02:00,35.2038,96.0075,10.9 +2017-05-05 07:17:00,34.0387,96.115,10.84 +2017-05-05 07:32:00,35.2012,96.07,10.8 +2017-05-05 07:47:00,34.3763,96.045,10.78 +2017-05-05 08:02:00,35.5437,96.05,10.78 +2017-05-05 08:17:00,34.62,96.1875,10.81 +2017-05-05 08:32:00,35.5938,96.0975,10.82 +2017-05-05 08:47:00,34.1325,96.02,10.83 +2017-05-05 09:02:00,34.435,95.935,10.85 +2017-05-05 09:17:00,34.09,96.005,10.86 +2017-05-05 09:32:00,34.765,95.965,10.88 +2017-05-05 09:47:00,33.6987,95.9575,10.88 +2017-05-05 10:02:00,34.3275,96.0325,10.88 +2017-05-05 10:17:00,36.52,96.23,10.88 +2017-05-05 10:32:00,34.57,96.2075,10.89 +2017-05-05 10:47:00,37.065,96.275,10.89 +2017-05-05 11:02:00,35.155,96.225,10.89 +2017-05-05 11:17:00,35.6425,96.2725,10.89 +2017-05-05 11:32:00,36.7663,96.2875,10.88 +2017-05-05 11:47:00,36.5687,96.3475,10.84 +2017-05-05 12:02:00,35.25,96.3425,10.8 +2017-05-05 12:17:00,35.0013,96.225,10.81 +2017-05-05 12:32:00,36.0362,96.1075,10.84 +2017-05-05 12:47:00,36.3825,96.2475,10.87 +2017-05-05 13:02:00,35.3012,96.1975,10.88 +2017-05-05 13:17:00,34.6225,96.255,10.89 +2017-05-05 13:32:00,33.4562,96.365,10.89 +2017-05-05 13:47:00,35.2525,96.405,10.9 +2017-05-05 14:02:00,34.3262,96.3125,10.88 +2017-05-05 14:17:00,35.1,96.2325,10.87 +2017-05-05 14:32:00,34.5762,96.075,10.86 +2017-05-05 14:47:00,35.7425,96.0725,10.84 +2017-05-05 15:02:00,34.9562,95.9475,10.83 +2017-05-05 15:17:00,34.7175,95.86,10.82 +2017-05-05 15:32:00,35.595,95.82,10.82 +2017-05-05 15:47:00,35.05,96.015,10.82 +2017-05-05 16:02:00,33.945,96.0675,10.83 +2017-05-05 16:17:00,34.4262,96.1325,10.85 +2017-05-05 16:32:00,33.7537,96.3025,10.87 +2017-05-05 16:47:00,35.5975,96.0775,10.89 +2017-05-05 17:02:00,34.3763,96.2525,10.9 +2017-05-05 17:17:00,35.3012,96.0425,10.92 +2017-05-05 17:32:00,35.2487,96.0225,10.91 +2017-05-05 17:47:00,34.5238,96.075,10.91 +2017-05-05 18:02:00,34.475,95.8575,10.9 +2017-05-05 18:17:00,35.65,95.87,10.89 +2017-05-05 18:32:00,35.1537,95.935,10.88 +2017-05-05 18:47:00,33.6075,96.0525,10.87 +2017-05-05 19:02:00,36.4688,96.0125,10.85 +2017-05-05 19:17:00,35.45,96.0625,10.84 +2017-05-05 19:32:00,35.1012,96.1625,10.84 +2017-05-05 19:47:00,36.5212,95.9675,10.84 +2017-05-05 20:02:00,36.8187,96.0575,10.84 +2017-05-05 20:17:00,34.865,96.045,10.85 +2017-05-05 20:32:00,34.8625,95.8125,10.86 +2017-05-05 20:47:00,34.9538,95.8875,10.86 +2017-05-05 21:02:00,35.3512,95.92,10.86 +2017-05-05 21:17:00,34.5238,95.9925,10.86 +2017-05-05 21:32:00,34.81,96.0225,10.86 +2017-05-05 21:47:00,35.5938,95.965,10.84 +2017-05-05 22:02:00,36.2812,96.18,10.84 +2017-05-05 22:17:00,35.69,96.085,10.82 +2017-05-05 22:32:00,36.4275,96.0875,10.82 +2017-05-05 22:47:00,34.2325,95.92,10.81 +2017-05-05 23:02:00,35.9425,95.9975,10.8 +2017-05-05 23:17:00,36.1825,95.6775,10.79 +2017-05-05 23:32:00,33.6062,95.7825,10.78 +2017-05-05 23:47:00,35.3037,95.84,10.76 +2017-05-06 00:02:00,36.3825,95.7525,10.75 +2017-05-06 00:17:00,36.87,95.9625,10.74 +2017-05-06 00:32:00,36.6625,96.0975,10.74 +2017-05-06 00:47:00,34.4287,96.2575,10.75 +2017-05-06 01:02:00,34.7162,96.27,10.76 +2017-05-06 01:17:00,34.1787,96.1675,10.77 +2017-05-06 01:32:00,34.8112,96.0175,10.77 +2017-05-06 01:47:00,35.2513,96.04,10.76 +2017-05-06 02:02:00,35.2525,96.0475,10.76 +2017-05-06 02:17:00,36.475,96.025,10.75 +2017-05-06 02:32:00,34.86,96.0875,10.75 +2017-05-06 02:47:00,37.505,95.9275,10.74 +2017-05-06 03:02:00,35.5475,96.12,10.73 +2017-05-06 03:17:00,35.3988,96.285,10.72 +2017-05-06 03:32:00,35.8887,96.175,10.71 +2017-05-06 03:47:00,35.0062,96.0975,10.7 +2017-05-06 04:02:00,34.3325,96.3425,10.69 +2017-05-06 04:17:00,33.6975,96.1475,10.68 +2017-05-06 04:32:00,36.5725,96.1725,10.67 +2017-05-06 04:47:00,33.8962,96.1375,10.67 +2017-05-06 05:02:00,36.425,96.2125,10.67 +2017-05-06 05:17:00,34.4775,96.23,10.67 +2017-05-06 05:32:00,35.8412,96.3975,10.66 +2017-05-06 05:47:00,35.5525,96.5425,10.66 +2017-05-06 06:02:00,36.1875,96.3425,10.66 +2017-05-06 06:17:00,34.9538,96.345,10.66 +2017-05-06 06:32:00,37.2113,96.5025,10.65 +2017-05-06 06:47:00,36.2838,96.4275,10.65 +2017-05-06 07:02:00,36.1362,96.565,10.64 +2017-05-06 07:17:00,35.255,96.6075,10.65 +2017-05-06 07:32:00,35.505,96.4675,10.68 +2017-05-06 07:47:00,36.0387,96.665,10.67 +2017-05-06 08:02:00,35.5963,96.7525,10.68 +2017-05-06 08:17:00,35.5,96.9375,10.67 +2017-05-06 08:32:00,35.2475,97.0,10.68 +2017-05-06 08:47:00,34.9525,97.0575,10.69 +2017-05-06 09:02:00,35.0938,97.1125,10.69 +2017-05-06 09:17:00,35.9912,97.2125,10.69 +2017-05-06 09:32:00,36.1875,97.095,10.7 +2017-05-06 09:47:00,36.0425,96.9625,10.71 +2017-05-06 10:02:00,35.1012,97.0725,10.72 +2017-05-06 10:17:00,34.8087,97.02,10.72 +2017-05-06 10:32:00,37.355,97.0875,10.73 +2017-05-06 10:47:00,33.8988,97.245,10.75 +2017-05-06 11:02:00,35.45,97.315,10.77 +2017-05-06 11:17:00,35.205,97.305,10.78 +2017-05-06 11:32:00,36.09,97.4175,10.78 +2017-05-06 11:47:00,35.0525,97.395,10.81 +2017-05-06 12:02:00,35.5062,97.475,10.9 +2017-05-06 12:17:00,34.7188,97.3275,10.99 +2017-05-06 12:32:00,33.7513,97.15,11.04 +2017-05-06 12:47:00,37.2075,97.18,11.06 +2017-05-06 13:02:00,34.5212,97.2725,11.07 +2017-05-06 13:17:00,34.8587,97.3075,11.14 +2017-05-06 13:32:00,34.62,97.4375,11.19 +2017-05-06 13:47:00,35.9412,97.435,11.22 +2017-05-06 14:02:00,36.865,97.4175,11.23 +2017-05-06 14:17:00,33.55,97.465,11.28 +2017-05-06 14:32:00,32.8675,97.595,11.33 +2017-05-06 14:47:00,35.4412,97.5925,11.35 +2017-05-06 15:02:00,35.7875,97.4875,11.34 +2017-05-06 15:17:00,34.185,97.3575,11.34 +2017-05-06 15:32:00,34.8587,97.5,11.35 +2017-05-06 15:47:00,34.8562,97.595,11.34 +2017-05-06 16:02:00,36.2825,97.4575,11.35 +2017-05-06 16:17:00,36.2375,97.795,11.37 +2017-05-06 16:32:00,34.0387,97.485,11.36 +2017-05-06 16:47:00,34.62,97.725,11.36 +2017-05-06 17:02:00,36.4262,97.66,11.38 +2017-05-06 17:17:00,36.0887,97.8375,11.38 +2017-05-06 17:32:00,33.4075,97.4975,11.37 +2017-05-06 17:47:00,34.67,97.5175,11.36 +2017-05-06 18:02:00,34.0387,97.5125,11.34 +2017-05-06 18:17:00,35.5938,97.485,11.34 +2017-05-06 18:32:00,35.99,97.5025,11.33 +2017-05-06 18:47:00,34.5212,97.5075,11.33 +2017-05-06 19:02:00,34.9587,97.5275,11.34 +2017-05-06 19:17:00,35.255,97.7125,11.35 +2017-05-06 19:32:00,35.5488,97.5925,11.37 +2017-05-06 19:47:00,35.3538,97.52,11.39 +2017-05-06 20:02:00,35.5938,97.59,11.42 +2017-05-06 20:17:00,35.05,97.3075,11.44 +2017-05-06 20:32:00,35.095,97.2425,11.46 +2017-05-06 20:47:00,36.965,97.2425,11.48 +2017-05-06 21:02:00,35.8925,97.3475,11.49 +2017-05-06 21:17:00,36.3775,97.435,11.51 +2017-05-06 21:32:00,36.0375,97.26,11.52 +2017-05-06 21:47:00,35.8375,97.41,11.52 +2017-05-06 22:02:00,36.0362,97.3875,11.52 +2017-05-06 22:17:00,36.1375,97.435,11.52 +2017-05-06 22:32:00,35.7887,97.5775,11.51 +2017-05-06 22:47:00,35.3538,97.3825,11.49 +2017-05-06 23:02:00,35.1537,97.34,11.48 +2017-05-06 23:17:00,35.6888,97.195,11.46 +2017-05-06 23:32:00,36.235,97.1725,11.45 +2017-05-06 23:47:00,35.5462,97.12,11.46 +2017-05-07 00:02:00,35.5938,97.1975,11.46 +2017-05-07 00:17:00,35.9437,97.3,11.45 +2017-05-07 00:32:00,36.5262,97.2,11.45 +2017-05-07 00:47:00,34.8637,97.3075,11.44 +2017-05-07 01:02:00,34.91,97.2,11.42 +2017-05-07 01:17:00,36.8662,97.3,11.4 +2017-05-07 01:32:00,35.9887,97.2775,11.37 +2017-05-07 01:47:00,35.6437,97.245,11.33 +2017-05-07 02:02:00,35.89,97.1475,11.3 +2017-05-07 02:17:00,36.3337,96.9725,11.28 +2017-05-07 02:32:00,36.19,97.085,11.25 +2017-05-07 02:47:00,36.5238,97.2675,11.23 +2017-05-07 03:02:00,35.5938,97.1525,11.22 +2017-05-07 03:17:00,36.1888,97.1825,11.21 +2017-05-07 03:32:00,35.7412,97.2825,11.2 +2017-05-07 03:47:00,36.4788,97.2675,11.19 +2017-05-07 04:02:00,37.4562,97.165,11.18 +2017-05-07 04:17:00,37.0175,97.25,11.18 +2017-05-07 04:32:00,36.3363,97.2125,11.18 +2017-05-07 04:47:00,37.1612,97.275,11.19 +2017-05-07 05:02:00,35.6912,97.0325,11.2 +2017-05-07 05:17:00,36.04,96.99,11.23 +2017-05-07 05:32:00,36.7188,97.12,11.25 +2017-05-07 05:47:00,36.6663,96.9875,11.27 +2017-05-07 06:02:00,35.9912,97.14,11.3 +2017-05-07 06:17:00,36.6225,97.1,11.31 +2017-05-07 06:32:00,36.8237,97.3825,11.34 +2017-05-07 06:47:00,37.9075,104.837,11.36 +2017-05-07 07:02:00,36.5187,105.415,11.39 +2017-05-07 07:17:00,36.8688,103.052,11.42 +2017-05-07 07:32:00,36.8175,101.033,11.42 +2017-05-07 07:47:00,37.065,99.58,11.45 +2017-05-07 08:02:00,36.19,98.3125,11.49 +2017-05-07 08:17:00,36.8237,97.7225,11.52 +2017-05-07 08:32:00,36.7237,97.06,11.56 +2017-05-07 08:47:00,35.9875,96.6575,11.62 +2017-05-07 09:02:00,36.5737,96.495,11.68 +2017-05-07 09:17:00,36.7213,96.3525,11.81 +2017-05-07 09:32:00,36.2825,96.2,11.89 +2017-05-07 09:47:00,37.4075,96.0425,11.93 +2017-05-07 10:02:00,37.2612,96.03,12.03 +2017-05-07 10:17:00,37.6612,96.0925,12.11 +2017-05-07 10:32:00,35.9912,96.0625,12.14 +2017-05-07 10:47:00,36.8187,95.9225,12.14 +2017-05-07 11:02:00,36.335,96.0575,12.18 +2017-05-07 11:17:00,35.5963,96.2025,12.24 +2017-05-07 11:32:00,36.3312,96.1625,12.32 +2017-05-07 11:47:00,35.7925,96.6225,12.36 +2017-05-07 12:02:00,35.845,96.4725,12.44 +2017-05-07 12:17:00,35.9475,96.435,12.46 +2017-05-07 12:32:00,36.5713,96.585,12.44 +2017-05-07 12:47:00,36.82,96.5575,12.41 +2017-05-07 13:02:00,36.4737,96.3275,12.5 +2017-05-07 13:17:00,35.8412,96.645,12.54 +2017-05-07 13:32:00,35.995,96.6775,12.52 +2017-05-07 13:47:00,37.165,96.58,12.54 +2017-05-07 14:02:00,37.215,96.5275,12.57 +2017-05-07 14:17:00,37.0187,96.7575,12.68 +2017-05-07 14:32:00,36.6675,96.5775,12.8 +2017-05-07 14:47:00,36.0387,96.8375,12.85 +2017-05-07 15:02:00,37.9062,96.855,12.82 +2017-05-07 15:17:00,37.1137,96.67,12.8 +2017-05-07 15:32:00,36.67,96.62,12.83 +2017-05-07 15:47:00,36.675,96.4975,12.85 +2017-05-07 16:02:00,36.09,96.6675,12.88 +2017-05-07 16:17:00,36.3325,96.5725,12.9 +2017-05-07 16:32:00,36.6237,96.3475,12.94 +2017-05-07 16:47:00,36.7712,96.815,12.98 +2017-05-07 17:02:00,37.9075,96.8175,13.01 +2017-05-07 17:17:00,35.94,96.915,13.04 +2017-05-07 17:32:00,37.5575,96.8575,13.06 +2017-05-07 17:47:00,37.31,96.975,13.08 +2017-05-07 18:02:00,36.67,96.735,13.09 +2017-05-07 18:17:00,37.2575,96.78,13.08 +2017-05-07 18:32:00,37.1637,96.6925,13.07 +2017-05-07 18:47:00,36.3812,96.6575,13.08 +2017-05-07 19:02:00,35.9425,96.7725,13.1 +2017-05-07 19:17:00,36.0375,96.74,13.13 +2017-05-07 19:32:00,36.4762,96.845,13.14 +2017-05-07 19:47:00,36.38,96.7675,13.15 +2017-05-07 20:02:00,36.3775,96.97,13.16 +2017-05-07 20:17:00,37.2062,97.0425,13.18 +2017-05-07 20:32:00,35.9388,96.77,13.19 +2017-05-07 20:47:00,37.1113,96.645,13.19 +2017-05-07 21:02:00,36.965,96.77,13.19 +2017-05-07 21:17:00,36.9637,96.6825,13.18 +2017-05-07 21:32:00,37.7137,96.68,13.17 +2017-05-07 21:47:00,36.5737,96.6,13.17 +2017-05-07 22:02:00,38.25,96.5725,13.16 +2017-05-07 22:17:00,37.86,96.7025,13.16 +2017-05-07 22:32:00,38.6475,96.6675,13.15 +2017-05-07 22:47:00,38.4025,96.9325,13.14 +2017-05-07 23:02:00,37.8587,96.78,13.15 +2017-05-07 23:17:00,38.8838,96.9575,13.16 +2017-05-07 23:32:00,38.6975,96.6425,13.15 +2017-05-07 23:47:00,38.2038,96.6075,13.14 +2017-05-08 00:02:00,39.8225,96.455,13.13 +2017-05-08 00:17:00,38.355,96.4625,13.11 +2017-05-08 00:32:00,38.1537,96.3875,13.09 +2017-05-08 00:47:00,38.4525,96.46,13.07 +2017-05-08 01:02:00,37.16,96.5225,13.05 +2017-05-08 01:17:00,39.5837,96.425,13.03 +2017-05-08 01:32:00,40.0713,96.7875,13.0 +2017-05-08 01:47:00,39.53,96.635,12.98 +2017-05-08 02:02:00,39.675,96.62,12.95 +2017-05-08 02:17:00,38.6937,96.335,12.94 +2017-05-08 02:32:00,39.3812,96.2275,12.9 +2017-05-08 02:47:00,38.785,96.305,12.87 +2017-05-08 03:02:00,37.7137,96.325,12.86 +2017-05-08 03:17:00,38.055,96.2025,12.84 +2017-05-08 03:32:00,38.0512,96.5075,12.82 +2017-05-08 03:47:00,39.3825,96.32,12.79 +2017-05-08 04:02:00,38.2525,96.5075,12.76 +2017-05-08 04:17:00,38.0025,96.1425,12.74 +2017-05-08 04:32:00,36.7663,96.2925,12.72 +2017-05-08 04:47:00,37.5025,96.175,12.67 +2017-05-08 05:02:00,39.8288,95.9025,12.64 +2017-05-08 05:17:00,38.5488,96.8875,12.6 +2017-05-08 05:32:00,38.25,97.09,12.58 +2017-05-08 05:47:00,38.9788,92.96,12.54 +2017-05-08 06:02:00,39.13,89.6025,12.49 +2017-05-08 06:17:00,39.6275,87.76,12.44 +2017-05-08 06:32:00,38.5962,86.3875,12.41 +2017-05-08 06:47:00,39.5737,85.82,12.41 +2017-05-08 07:02:00,38.9337,85.57,12.4 +2017-05-08 07:17:00,39.2825,85.3075,12.4 +2017-05-08 07:32:00,39.825,85.58,12.37 +2017-05-08 07:47:00,39.1338,86.2075,12.35 +2017-05-08 08:02:00,40.3512,86.5675,12.33 +2017-05-08 08:17:00,41.035,86.9575,12.33 +2017-05-08 08:32:00,39.2312,87.87,12.33 +2017-05-08 08:47:00,39.2825,88.2925,12.31 +2017-05-08 09:02:00,40.4012,88.775,12.3 +2017-05-08 09:17:00,41.4737,89.76,12.3 +2017-05-08 09:32:00,42.1062,90.2625,12.28 +2017-05-08 09:47:00,40.885,90.7775,12.27 +2017-05-08 10:02:00,41.325,91.0825,12.25 +2017-05-08 10:17:00,41.0788,91.4925,12.25 +2017-05-08 10:32:00,40.7387,91.7325,12.23 +2017-05-08 10:47:00,38.6512,92.075,12.2 +2017-05-08 11:02:00,39.7837,91.84,12.19 +2017-05-08 11:17:00,39.0863,92.2475,12.19 +2017-05-08 11:32:00,39.625,92.27,12.16 +2017-05-08 11:47:00,40.59,92.405,12.16 +2017-05-08 12:02:00,40.305,92.7925,12.15 +2017-05-08 12:17:00,40.59,92.6425,12.14 +2017-05-08 12:32:00,39.9775,93.0475,12.14 +2017-05-08 12:47:00,39.4362,93.5325,12.15 +2017-05-08 13:02:00,40.3962,93.265,12.16 +2017-05-08 13:17:00,40.6912,93.6625,12.17 +2017-05-08 13:32:00,40.3525,93.475,12.18 +2017-05-08 13:47:00,41.37,93.4,12.17 +2017-05-08 14:02:00,41.96,93.4925,12.16 +2017-05-08 14:17:00,40.74,93.46,12.15 +2017-05-08 14:32:00,41.1775,93.475,12.16 +2017-05-08 14:47:00,41.275,93.7875,12.15 +2017-05-08 15:02:00,42.355,93.84,12.14 +2017-05-08 15:17:00,40.885,93.9575,12.12 +2017-05-08 15:32:00,40.4512,94.3775,12.1 +2017-05-08 15:47:00,39.8787,94.39,12.1 +2017-05-08 16:02:00,42.4037,94.5075,12.1 +2017-05-08 16:17:00,41.575,95.1,12.1 +2017-05-08 16:32:00,41.5275,94.8425,12.09 +2017-05-08 16:47:00,40.2625,95.065,12.09 +2017-05-08 17:02:00,38.695,95.015,12.09 +2017-05-08 17:17:00,39.9275,94.8075,12.09 +2017-05-08 17:32:00,39.6787,94.635,12.08 +2017-05-08 17:47:00,40.1162,94.64,12.07 +2017-05-08 18:02:00,40.9375,94.55,12.05 +2017-05-08 18:17:00,38.8875,94.53,12.01 +2017-05-08 18:32:00,39.9762,94.335,11.98 +2017-05-08 18:47:00,39.9275,94.1,11.95 +2017-05-08 19:02:00,37.4012,94.0075,11.9 +2017-05-08 19:17:00,38.9313,93.655,11.86 +2017-05-08 19:32:00,39.5312,93.53,11.83 +2017-05-08 19:47:00,39.4362,93.0,11.79 +2017-05-08 20:02:00,40.17,92.7625,11.76 +2017-05-08 20:17:00,39.7837,92.3875,11.72 +2017-05-08 20:32:00,38.9863,92.315,11.69 +2017-05-08 20:47:00,39.83,92.1225,11.66 +2017-05-08 21:02:00,38.6012,92.0975,11.63 +2017-05-08 21:17:00,40.5925,91.94,11.61 +2017-05-08 21:32:00,39.8763,91.995,11.59 +2017-05-08 21:47:00,37.7087,91.9475,11.57 +2017-05-08 22:02:00,39.3375,91.8575,11.54 +2017-05-08 22:17:00,39.0863,91.675,11.52 +2017-05-08 22:32:00,37.4562,91.4575,11.51 +2017-05-08 22:47:00,38.3063,91.45,11.49 +2017-05-08 23:02:00,39.4337,91.5,11.47 +2017-05-08 23:17:00,39.3312,91.5875,11.45 +2017-05-08 23:32:00,38.5475,91.5075,11.44 +2017-05-08 23:47:00,38.7862,91.65,11.42 +2017-05-09 00:02:00,38.155,91.745,11.41 +2017-05-09 00:17:00,37.6075,91.855,11.39 +2017-05-09 00:32:00,38.0037,92.0,11.37 +2017-05-09 00:47:00,38.3538,91.9175,11.36 +2017-05-09 01:02:00,37.6038,91.7975,11.34 +2017-05-09 01:17:00,38.8337,91.8125,11.33 +2017-05-09 01:32:00,36.775,91.895,11.32 +2017-05-09 01:47:00,38.3562,91.8125,11.29 +2017-05-09 02:02:00,39.78,91.9275,11.3 +2017-05-09 02:17:00,38.6475,91.9825,11.3 +2017-05-09 02:32:00,39.6275,92.1075,11.3 +2017-05-09 02:47:00,41.2738,92.18,11.31 +2017-05-09 03:02:00,40.0212,92.33,11.31 +2017-05-09 03:17:00,41.1237,92.2625,11.3 +2017-05-09 03:32:00,39.9725,92.3125,11.29 +2017-05-09 03:47:00,39.0337,92.2475,11.26 +2017-05-09 04:02:00,40.5462,92.16,11.25 +2017-05-09 04:17:00,39.2325,92.22,11.23 +2017-05-09 04:32:00,40.985,92.0275,11.22 +2017-05-09 04:47:00,40.3075,92.17,11.22 +2017-05-09 05:02:00,38.8312,92.26,11.22 +2017-05-09 05:17:00,41.7687,92.2975,11.22 +2017-05-09 05:32:00,42.0662,92.39,11.21 +2017-05-09 05:47:00,41.1787,92.75,11.22 +2017-05-09 06:02:00,40.6888,92.8,11.22 +2017-05-09 06:17:00,42.2087,92.8925,11.23 +2017-05-09 06:32:00,40.165,92.92,11.25 +2017-05-09 06:47:00,39.9225,92.8725,11.25 +2017-05-09 07:02:00,41.2712,92.885,11.26 +2017-05-09 07:17:00,40.49,92.8,11.28 +2017-05-09 07:32:00,42.1075,93.0075,11.31 +2017-05-09 07:47:00,39.9762,92.92,11.39 +2017-05-09 08:02:00,39.4812,93.005,11.48 +2017-05-09 08:17:00,40.8375,93.055,11.49 +2017-05-09 08:32:00,40.8875,93.1925,11.49 +2017-05-09 08:47:00,42.6937,93.2275,11.52 +2017-05-09 09:02:00,41.47,93.4675,11.49 +2017-05-09 09:17:00,41.4238,93.425,11.47 +2017-05-09 09:32:00,41.8675,93.56,11.45 +2017-05-09 09:47:00,40.07,93.72,11.4 +2017-05-09 10:02:00,40.5413,93.52,11.38 +2017-05-09 10:17:00,37.9062,93.7825,11.36 +2017-05-09 10:32:00,38.5488,93.4675,11.36 +2017-05-09 10:47:00,39.8775,93.425,11.37 +2017-05-09 11:02:00,39.8775,93.155,11.38 +2017-05-09 11:17:00,39.9325,93.355,11.44 +2017-05-09 11:32:00,37.4562,93.1,11.46 +2017-05-09 11:47:00,39.3838,93.3125,11.41 +2017-05-09 12:02:00,39.3825,93.3425,11.37 +2017-05-09 12:17:00,36.6687,93.3525,11.39 +2017-05-09 12:32:00,39.975,93.455,11.41 +2017-05-09 12:47:00,41.2212,93.6625,11.45 +2017-05-09 13:02:00,38.8325,93.5125,11.52 +2017-05-09 13:17:00,39.5337,93.38,11.53 +2017-05-09 13:32:00,38.8862,93.565,11.52 +2017-05-09 13:47:00,37.9538,93.4225,11.54 +2017-05-09 14:02:00,38.6937,93.505,11.58 +2017-05-09 14:17:00,39.3838,93.34,11.68 +2017-05-09 14:32:00,38.7363,93.58,11.77 +2017-05-09 14:47:00,39.0262,93.72,11.76 +2017-05-09 15:02:00,38.6987,93.58,11.73 +2017-05-09 15:17:00,39.3887,93.5025,11.71 +2017-05-09 15:32:00,40.495,93.77,11.76 +2017-05-09 15:47:00,39.5775,93.6375,11.79 +2017-05-09 16:02:00,38.8363,93.42,11.76 +2017-05-09 16:17:00,39.7762,93.5825,11.77 +2017-05-09 16:32:00,38.4525,93.44,11.78 +2017-05-09 16:47:00,38.7913,93.4875,11.76 +2017-05-09 17:02:00,37.4587,93.16,11.75 +2017-05-09 17:17:00,38.9875,93.2525,11.73 +2017-05-09 17:32:00,40.2588,93.28,11.7 +2017-05-09 17:47:00,39.8275,93.175,11.66 +2017-05-09 18:02:00,37.86,93.235,11.61 +2017-05-09 18:17:00,36.0413,93.3275,11.58 +2017-05-09 18:32:00,37.4037,93.225,11.55 +2017-05-09 18:47:00,39.0863,93.2925,11.52 +2017-05-09 19:02:00,37.8087,93.27,11.5 +2017-05-09 19:17:00,38.74,93.36,11.47 +2017-05-09 19:32:00,40.4025,92.9175,11.47 +2017-05-09 19:47:00,39.7275,93.075,11.46 +2017-05-09 20:02:00,36.1875,92.87,11.45 +2017-05-09 20:17:00,37.6562,92.8925,11.44 +2017-05-09 20:32:00,36.67,92.8775,11.43 +2017-05-09 20:47:00,40.84,92.8425,11.42 +2017-05-09 21:02:00,40.1725,93.07,11.39 +2017-05-09 21:17:00,40.3988,92.995,11.4 +2017-05-09 21:32:00,39.925,93.14,11.38 +2017-05-09 21:47:00,42.26,93.1175,11.38 +2017-05-09 22:02:00,39.3312,93.06,11.38 +2017-05-09 22:17:00,41.32,93.1825,11.37 +2017-05-09 22:32:00,39.7787,92.88,11.39 +2017-05-09 22:47:00,39.78,92.81,11.4 +2017-05-09 23:02:00,45.9675,92.7375,11.42 +2017-05-09 23:17:00,45.585,92.7875,11.44 +2017-05-09 23:32:00,44.2725,92.775,11.47 +2017-05-09 23:47:00,45.185,93.06,11.5 +2017-05-10 00:02:00,45.63,92.985,11.52 +2017-05-10 00:17:00,44.9938,93.115,11.53 +2017-05-10 00:32:00,45.6312,92.96,11.55 +2017-05-10 00:47:00,45.0,93.0525,11.54 +2017-05-10 01:02:00,45.185,93.275,11.53 +2017-05-10 01:17:00,46.4625,93.2075,11.5 +2017-05-10 01:32:00,45.5762,93.22,11.49 +2017-05-10 01:47:00,45.235,93.0475,11.46 +2017-05-10 02:02:00,45.7262,93.085,11.41 +2017-05-10 02:17:00,45.6787,92.985,11.37 +2017-05-10 02:32:00,46.2175,93.0,11.32 +2017-05-10 02:47:00,45.6312,93.115,11.27 +2017-05-10 03:02:00,46.065,93.145,11.21 +2017-05-10 03:17:00,46.0675,93.1525,11.15 +2017-05-10 03:32:00,45.9613,93.1925,11.11 +2017-05-10 03:47:00,46.6963,93.265,11.07 +2017-05-10 04:02:00,45.1338,93.2225,11.03 +2017-05-10 04:17:00,44.6162,93.1725,11.0 +2017-05-10 04:32:00,45.4362,93.0425,10.98 +2017-05-10 04:47:00,45.8637,93.0725,10.94 +2017-05-10 05:02:00,45.3825,92.975,10.92 +2017-05-10 05:17:00,45.7687,93.07,10.92 +2017-05-10 05:32:00,47.045,93.1225,10.92 +2017-05-10 05:47:00,46.3138,93.2675,10.92 +2017-05-10 06:02:00,46.4562,93.2275,10.94 +2017-05-10 06:17:00,39.7787,93.1125,10.95 +2017-05-10 06:32:00,37.4538,93.09,10.99 +2017-05-10 06:47:00,37.015,92.98,11.03 +2017-05-10 07:02:00,36.9163,92.9125,11.04 +2017-05-10 07:17:00,38.4475,92.82,11.07 +2017-05-10 07:32:00,37.7562,92.8975,11.08 +2017-05-10 07:47:00,38.1012,92.785,11.09 +2017-05-10 08:02:00,37.8125,92.68,11.12 +2017-05-10 08:17:00,38.3063,92.65,11.2 +2017-05-10 08:32:00,38.15,92.675,11.28 +2017-05-10 08:47:00,38.5488,92.7325,11.38 +2017-05-10 09:02:00,39.1325,92.89,11.48 +2017-05-10 09:17:00,39.2337,92.86,11.56 +2017-05-10 09:32:00,38.2988,93.1525,11.66 +2017-05-10 09:47:00,38.7862,93.4175,11.72 +2017-05-10 10:02:00,38.7875,93.26,11.85 +2017-05-10 10:17:00,39.5337,93.3425,11.94 +2017-05-10 10:32:00,38.5987,93.2925,11.93 +2017-05-10 10:47:00,39.825,93.395,12.0 +2017-05-10 11:02:00,39.925,93.1075,12.12 +2017-05-10 11:17:00,40.0675,93.365,12.2 +2017-05-10 11:32:00,39.4313,93.0975,12.08 +2017-05-10 11:47:00,38.2012,93.1975,12.06 +2017-05-10 12:02:00,39.0275,93.4575,12.1 +2017-05-10 12:17:00,39.1862,93.5825,12.11 +2017-05-10 12:32:00,38.5462,93.765,12.1 +2017-05-10 12:47:00,37.5563,93.575,12.15 +2017-05-10 13:02:00,38.6937,93.7075,12.2 +2017-05-10 13:17:00,37.905,93.5125,12.26 +2017-05-10 13:32:00,38.5975,93.5575,12.23 +2017-05-10 13:47:00,39.0837,93.4525,12.28 +2017-05-10 14:02:00,37.7575,93.58,12.38 +2017-05-10 14:17:00,37.5037,93.4175,12.4 +2017-05-10 14:32:00,39.0275,93.475,12.46 +2017-05-10 14:47:00,38.6012,93.8175,12.52 +2017-05-10 15:02:00,37.8575,93.735,12.56 +2017-05-10 15:17:00,36.9613,93.58,12.61 +2017-05-10 15:32:00,38.6488,93.6725,12.62 +2017-05-10 15:47:00,38.2012,93.615,12.63 +2017-05-10 16:02:00,39.0812,93.63,12.66 +2017-05-10 16:17:00,37.9037,93.58,12.68 +2017-05-10 16:32:00,39.13,93.61,12.69 +2017-05-10 16:47:00,39.0812,93.57,12.71 +2017-05-10 17:02:00,38.1,93.6925,12.71 +2017-05-10 17:17:00,38.3525,93.925,12.71 +2017-05-10 17:32:00,39.1862,94.0075,12.72 +2017-05-10 17:47:00,38.3538,93.8725,12.75 +2017-05-10 18:02:00,39.8262,93.8075,12.76 +2017-05-10 18:17:00,38.6912,93.67,12.78 +2017-05-10 18:32:00,37.6562,93.5775,12.8 +2017-05-10 18:47:00,38.2012,93.47,12.81 +2017-05-10 19:02:00,38.3512,93.5075,12.85 +2017-05-10 19:17:00,38.0013,93.39,12.87 +2017-05-10 19:32:00,39.6287,93.43,12.89 +2017-05-10 19:47:00,38.9812,93.53,12.91 +2017-05-10 20:02:00,40.0212,93.5025,12.92 +2017-05-10 20:17:00,39.7275,93.5675,12.92 +2017-05-10 20:32:00,40.02,93.5275,12.91 +2017-05-10 20:47:00,40.445,93.615,12.91 +2017-05-10 21:02:00,39.23,93.4,12.91 +2017-05-10 21:17:00,41.0362,93.38,12.93 +2017-05-10 21:32:00,40.4987,93.3225,12.94 +2017-05-10 21:47:00,38.88,93.2725,12.93 +2017-05-10 22:02:00,40.35,93.21,12.92 +2017-05-10 22:17:00,40.59,93.1425,12.91 +2017-05-10 22:32:00,40.495,93.2925,12.92 +2017-05-10 22:47:00,39.5762,93.2825,12.91 +2017-05-10 23:02:00,40.8337,93.3275,12.88 +2017-05-10 23:17:00,39.2825,93.315,12.84 +2017-05-10 23:32:00,41.275,93.255,12.84 +2017-05-10 23:47:00,40.5887,93.195,12.83 +2017-05-11 00:02:00,41.0312,93.02,12.81 +2017-05-11 00:17:00,41.0337,93.11,12.78 +2017-05-11 00:32:00,40.7913,93.0925,12.75 +2017-05-11 00:47:00,40.7412,93.0725,12.7 +2017-05-11 01:02:00,40.5938,93.1275,12.66 +2017-05-11 01:17:00,41.5225,93.2725,12.62 +2017-05-11 01:32:00,41.225,93.2075,12.55 +2017-05-11 01:47:00,42.0075,93.2775,12.47 +2017-05-11 02:02:00,41.8162,93.3025,12.4 +2017-05-11 02:17:00,42.1075,93.23,12.34 +2017-05-11 02:32:00,41.4163,93.0025,12.3 +2017-05-11 02:47:00,42.2075,93.0075,12.22 +2017-05-11 03:02:00,41.4775,93.1025,12.17 +2017-05-11 03:17:00,41.7225,93.0375,12.11 +2017-05-11 03:32:00,41.2212,93.01,12.06 +2017-05-11 03:47:00,42.745,93.1675,12.01 +2017-05-11 04:02:00,41.03,93.3175,11.98 +2017-05-11 04:17:00,42.4587,93.3075,11.95 +2017-05-11 04:32:00,43.1325,93.21,11.91 +2017-05-11 04:47:00,42.99,93.155,11.89 +2017-05-11 05:02:00,41.2762,93.0425,11.89 +2017-05-11 05:17:00,40.6425,93.0575,11.91 +2017-05-11 05:32:00,42.4538,93.09,11.93 +2017-05-11 05:47:00,41.8625,93.1625,11.94 +2017-05-11 06:02:00,41.725,93.1275,11.96 +2017-05-11 06:17:00,41.4262,93.39,11.98 +2017-05-11 06:32:00,41.2225,93.34,12.03 +2017-05-11 06:47:00,40.89,93.455,12.09 +2017-05-11 07:02:00,40.2162,93.415,12.13 +2017-05-11 07:17:00,41.4712,93.44,12.15 +2017-05-11 07:32:00,41.6212,93.315,12.21 +2017-05-11 07:47:00,41.4712,93.4225,12.26 +2017-05-11 08:02:00,41.5725,93.345,12.35 +2017-05-11 08:17:00,42.41,93.475,12.41 +2017-05-11 08:32:00,43.035,92.9725,12.49 +2017-05-11 08:47:00,42.6987,93.5425,12.56 +2017-05-11 09:02:00,42.3625,93.3975,12.62 +2017-05-11 09:17:00,41.4175,93.3525,12.71 +2017-05-11 09:32:00,43.9362,93.5475,12.78 +2017-05-11 09:47:00,43.9912,93.685,12.83 +2017-05-11 10:02:00,43.51,93.5275,12.91 +2017-05-11 10:17:00,43.895,93.52,12.92 +2017-05-11 10:32:00,42.7925,93.7425,12.98 +2017-05-11 10:47:00,43.8937,93.5075,13.05 +2017-05-11 11:02:00,44.9463,93.4475,13.11 +2017-05-11 11:17:00,45.6775,93.0775,13.18 +2017-05-11 11:32:00,44.1338,93.2175,13.23 +2017-05-11 11:47:00,43.5025,93.4075,13.27 +2017-05-11 12:02:00,45.1825,93.41,13.3 +2017-05-11 12:17:00,44.3213,93.455,13.34 +2017-05-11 12:32:00,43.8037,93.33,13.37 +2017-05-11 12:47:00,43.2262,93.51,13.41 +2017-05-11 13:02:00,43.6488,93.525,13.46 +2017-05-11 13:17:00,44.6675,93.6925,13.45 +2017-05-11 13:32:00,43.5088,93.625,13.48 +2017-05-11 13:47:00,44.9012,93.565,13.56 +2017-05-11 14:02:00,42.0075,93.4975,13.55 +2017-05-11 14:17:00,44.2288,93.725,13.57 +2017-05-11 14:32:00,44.6637,93.845,13.58 +2017-05-11 14:47:00,45.915,93.72,13.56 +2017-05-11 15:02:00,43.6,93.945,13.52 +2017-05-11 15:17:00,45.6725,94.0825,13.55 +2017-05-11 15:32:00,43.2212,94.3275,13.61 +2017-05-11 15:47:00,47.3825,94.2325,13.64 +2017-05-11 16:02:00,45.04,94.2975,13.65 +2017-05-11 16:17:00,46.0175,94.3075,13.67 +2017-05-11 16:32:00,43.945,94.3525,13.67 +2017-05-11 16:47:00,42.8875,94.335,13.71 +2017-05-11 17:02:00,43.1787,94.42,13.78 +2017-05-11 17:17:00,43.2225,94.6325,13.82 +2017-05-11 17:32:00,42.8875,94.6625,13.83 +2017-05-11 17:47:00,44.6587,94.9975,13.86 +2017-05-11 18:02:00,45.97,95.02,13.89 +2017-05-11 18:17:00,44.3262,94.9825,13.92 +2017-05-11 18:32:00,43.0837,95.0125,13.95 +2017-05-11 18:47:00,46.1687,95.0125,14.0 +2017-05-11 19:02:00,44.47,94.935,14.05 +2017-05-11 19:17:00,43.51,94.685,14.12 +2017-05-11 19:32:00,43.0413,94.7225,14.18 +2017-05-11 19:47:00,45.0887,94.8575,14.24 +2017-05-11 20:02:00,45.7787,94.9125,14.3 +2017-05-11 20:17:00,46.12,95.0775,14.36 +2017-05-11 20:32:00,46.555,95.095,14.41 +2017-05-11 20:47:00,44.0375,94.975,14.45 +2017-05-11 21:02:00,44.665,95.0175,14.47 +2017-05-11 21:17:00,45.485,94.8475,14.49 +2017-05-11 21:32:00,45.68,94.6975,14.5 +2017-05-11 21:47:00,45.9662,94.6225,14.52 +2017-05-11 22:02:00,44.5687,94.4525,14.56 +2017-05-11 22:17:00,45.1875,94.4525,14.58 +2017-05-11 22:32:00,45.2375,94.475,14.6 +2017-05-11 22:47:00,44.9475,94.4375,14.6 +2017-05-11 23:02:00,46.6488,94.5525,14.61 +2017-05-11 23:17:00,45.7237,94.5425,14.63 +2017-05-11 23:32:00,46.1612,94.465,14.62 +2017-05-11 23:47:00,46.8988,94.395,14.62 +2017-05-12 00:02:00,42.4587,94.0325,14.61 +2017-05-12 00:17:00,47.4287,94.0325,14.59 +2017-05-12 00:32:00,42.01,94.0225,14.56 +2017-05-12 00:47:00,43.8937,93.865,14.54 +2017-05-12 01:02:00,40.165,93.895,14.51 +2017-05-12 01:17:00,42.1575,93.8125,14.49 +2017-05-12 01:32:00,43.89,94.005,14.45 +2017-05-12 01:47:00,43.7487,94.0625,14.42 +2017-05-12 02:02:00,45.4837,93.9725,14.39 +2017-05-12 02:17:00,41.125,93.955,14.36 +2017-05-12 02:32:00,40.8325,93.8625,14.32 +2017-05-12 02:47:00,41.9575,93.975,14.27 +2017-05-12 03:02:00,43.4587,93.7925,14.23 +2017-05-12 03:17:00,43.7925,93.77,14.2 +2017-05-12 03:32:00,43.1787,93.56,14.17 +2017-05-12 03:47:00,42.6963,93.5425,14.15 +2017-05-12 04:02:00,46.1637,93.6375,14.13 +2017-05-12 04:17:00,39.2787,93.785,14.13 +2017-05-12 04:32:00,46.4125,93.795,14.12 +2017-05-12 04:47:00,42.2575,93.75,14.13 +2017-05-12 05:02:00,36.4287,93.7125,14.15 +2017-05-12 05:17:00,43.795,93.5725,14.19 +2017-05-12 05:32:00,38.405,93.67,14.23 +2017-05-12 05:47:00,36.3812,93.5725,14.22 +2017-05-12 06:02:00,39.0287,93.5875,14.22 +2017-05-12 06:17:00,40.12,93.4525,14.27 +2017-05-12 06:32:00,41.08,93.4825,14.33 +2017-05-12 06:47:00,37.9525,93.325,14.39 +2017-05-12 07:02:00,36.6188,93.48,14.45 +2017-05-12 07:17:00,41.0837,93.3575,14.5 +2017-05-12 07:32:00,35.6937,93.465,14.56 +2017-05-12 07:47:00,40.6975,93.7725,14.62 +2017-05-12 08:02:00,43.46,93.6275,14.67 +2017-05-12 08:17:00,35.89,93.725,14.7 +2017-05-12 08:32:00,43.6937,93.8975,14.72 +2017-05-12 08:47:00,36.285,93.865,14.75 +2017-05-12 09:02:00,41.5725,93.935,14.79 +2017-05-12 09:17:00,39.335,93.815,14.79 +2017-05-12 09:32:00,41.2212,93.845,14.81 +2017-05-12 09:47:00,38.1525,93.6925,14.84 +2017-05-12 10:02:00,32.77,93.69,14.92 +2017-05-12 10:17:00,39.2862,93.61,14.99 +2017-05-12 10:32:00,39.83,93.655,15.0 +2017-05-12 10:47:00,38.83,93.7,14.99 +2017-05-12 11:02:00,42.0112,93.7825,15.07 +2017-05-12 11:17:00,40.4025,93.8625,15.12 +2017-05-12 11:32:00,38.1062,93.895,15.15 +2017-05-12 11:47:00,32.5762,93.7475,15.19 +2017-05-12 12:02:00,32.1387,93.7375,15.23 +2017-05-12 12:17:00,34.7237,93.9675,15.23 +2017-05-12 12:32:00,34.8613,93.9375,15.24 +2017-05-12 12:47:00,31.495,93.785,15.31 +2017-05-12 13:02:00,32.3412,94.2575,15.33 +2017-05-12 13:17:00,40.6488,94.375,15.43 +2017-05-12 13:32:00,40.94,94.515,15.44 +2017-05-12 13:47:00,29.97,94.7975,15.35 +2017-05-12 14:02:00,46.4137,94.69,15.3 +2017-05-12 14:17:00,36.6725,94.89,15.24 +2017-05-12 14:32:00,45.2887,94.5325,15.22 +2017-05-12 14:47:00,36.6712,94.3875,15.21 +2017-05-12 15:02:00,32.775,94.1775,15.22 +2017-05-12 15:17:00,39.9375,93.955,15.24 +2017-05-12 15:32:00,33.3575,93.8825,15.26 +2017-05-12 15:47:00,40.5962,93.6075,15.28 +2017-05-12 16:02:00,40.99,93.475,15.32 +2017-05-12 16:17:00,43.7962,93.4075,15.36 +2017-05-12 16:32:00,34.53,93.375,15.4 +2017-05-12 16:47:00,34.1875,93.355,15.44 +2017-05-12 17:02:00,36.8763,93.1,15.41 +2017-05-12 17:17:00,33.3125,93.0875,15.4 +2017-05-12 17:32:00,32.5775,92.9275,15.43 +2017-05-12 17:47:00,28.01,92.9625,15.49 +2017-05-12 18:02:00,52.095,92.8525,15.55 +2017-05-12 18:17:00,50.86,92.785,15.58 +2017-05-12 18:32:00,50.045,92.9025,15.61 +2017-05-12 18:47:00,45.0975,92.955,15.64 +2017-05-12 19:02:00,44.2363,92.935,15.67 +2017-05-12 19:17:00,44.47,93.1075,15.7 +2017-05-12 19:32:00,44.8125,93.055,15.72 +2017-05-12 19:47:00,44.9987,93.0275,15.77 +2017-05-12 20:02:00,44.9075,92.9,15.82 +2017-05-12 20:17:00,44.2312,92.7575,15.84 +2017-05-12 20:32:00,43.755,92.7575,15.87 +2017-05-12 20:47:00,45.7762,92.755,15.88 +2017-05-12 21:02:00,45.0525,92.8325,15.89 +2017-05-12 21:17:00,44.3275,92.915,15.9 +2017-05-12 21:32:00,45.3425,93.02,15.91 +2017-05-12 21:47:00,46.2188,93.1125,15.92 +2017-05-12 22:02:00,44.9975,93.15,15.9 +2017-05-12 22:17:00,45.235,93.1,15.88 +2017-05-12 22:32:00,45.9712,93.0625,15.85 +2017-05-12 22:47:00,45.5375,93.0075,15.82 +2017-05-12 23:02:00,44.1425,92.88,15.79 +2017-05-12 23:17:00,45.1875,92.975,15.76 +2017-05-12 23:32:00,45.87,93.09,15.74 +2017-05-12 23:47:00,44.7625,93.2275,15.74 +2017-05-13 00:02:00,45.0938,93.21,15.72 +2017-05-13 00:17:00,43.99,93.32,15.71 +2017-05-13 00:32:00,45.4375,93.4425,15.69 +2017-05-13 00:47:00,45.875,93.3825,15.68 +2017-05-13 01:02:00,44.6675,93.305,15.67 +2017-05-13 01:17:00,45.29,93.4175,15.65 +2017-05-13 01:32:00,44.5238,93.23,15.63 +2017-05-13 01:47:00,45.0912,93.1125,15.62 +2017-05-13 02:02:00,44.9075,93.2575,15.61 +2017-05-13 02:17:00,44.7687,93.1575,15.6 +2017-05-13 02:32:00,44.77,93.215,15.59 +2017-05-13 02:47:00,44.5713,93.26,15.59 +2017-05-13 03:02:00,44.7188,93.475,15.6 +2017-05-13 03:17:00,44.8125,93.3575,15.59 +2017-05-13 03:32:00,44.325,93.3475,15.58 +2017-05-13 03:47:00,44.7637,93.1975,15.57 +2017-05-13 04:02:00,46.2675,93.18,15.6 +2017-05-13 04:17:00,46.7562,93.045,15.61 +2017-05-13 04:32:00,47.89,93.0975,15.63 +2017-05-13 04:47:00,46.5137,93.0775,15.64 +2017-05-13 05:02:00,46.4175,93.0075,15.66 +2017-05-13 05:17:00,44.3763,93.3525,15.67 +2017-05-13 05:32:00,47.4875,96.0975,15.7 +2017-05-13 05:47:00,48.8175,98.73,15.74 +2017-05-13 06:02:00,48.3812,100.488,15.79 +2017-05-13 06:17:00,48.53,101.315,15.78 +2017-05-13 06:32:00,45.7312,101.807,15.77 +2017-05-13 06:47:00,47.1525,102.035,15.8 +2017-05-13 07:02:00,46.605,101.825,15.84 +2017-05-13 07:17:00,46.9037,101.607,15.87 +2017-05-13 07:32:00,49.3025,101.262,15.9 +2017-05-13 07:47:00,48.0812,100.995,15.92 +2017-05-13 08:02:00,47.7887,100.72,15.93 +2017-05-13 08:17:00,45.0975,100.202,15.95 +2017-05-13 08:32:00,47.3887,99.9175,16.04 +2017-05-13 08:47:00,45.6362,99.435,16.13 +2017-05-13 09:02:00,47.3887,99.115,16.17 +2017-05-13 09:17:00,43.2775,98.845,16.26 +2017-05-13 09:32:00,47.4863,98.3925,16.27 +2017-05-13 09:47:00,48.575,98.265,16.24 +2017-05-13 10:02:00,47.39,98.055,16.32 +2017-05-13 10:17:00,43.85,97.83,16.48 +2017-05-13 10:32:00,44.325,97.315,16.55 +2017-05-13 10:47:00,40.12,97.2075,16.57 +2017-05-13 11:02:00,47.7862,96.8475,16.6 +2017-05-13 11:17:00,41.2288,96.7675,16.68 +2017-05-13 11:32:00,46.7537,96.495,16.74 +2017-05-13 11:47:00,42.8975,96.4075,16.69 +2017-05-13 12:02:00,41.7275,96.175,16.6 +2017-05-13 12:17:00,41.8275,96.1175,16.52 +2017-05-13 12:32:00,41.0375,95.9725,16.46 +2017-05-13 12:47:00,45.2887,95.8625,16.46 +2017-05-13 13:02:00,36.8712,95.555,16.59 +2017-05-13 13:17:00,38.355,95.5425,16.7 +2017-05-13 13:32:00,37.165,95.33,16.71 +2017-05-13 13:47:00,32.975,95.36,16.71 +2017-05-13 14:02:00,31.9425,95.3225,16.76 +2017-05-13 14:17:00,37.2575,95.045,16.91 +2017-05-13 14:32:00,35.8962,95.055,17.06 +2017-05-13 14:47:00,41.0825,95.1825,17.09 +2017-05-13 15:02:00,33.5037,95.17,17.06 +2017-05-13 15:17:00,42.2125,95.0875,17.05 +2017-05-13 15:32:00,39.2887,95.03,17.07 +2017-05-13 15:47:00,39.5887,95.05,17.12 +2017-05-13 16:02:00,37.5112,95.085,17.18 +2017-05-13 16:17:00,43.2312,94.9625,17.27 +2017-05-13 16:32:00,32.1937,94.8825,17.33 +2017-05-13 16:47:00,37.455,94.9275,17.35 +2017-05-13 17:02:00,38.31,95.03,17.34 +2017-05-13 17:17:00,40.94,95.035,17.33 +2017-05-13 17:32:00,43.9938,95.0825,17.33 +2017-05-13 17:47:00,41.6725,94.9625,17.34 +2017-05-13 18:02:00,35.1038,95.245,17.36 +2017-05-13 18:17:00,42.5575,95.3825,17.36 +2017-05-13 18:32:00,43.415,95.0925,17.36 +2017-05-13 18:47:00,37.1175,95.07,17.36 +2017-05-13 19:02:00,30.9925,95.3125,17.38 +2017-05-13 19:17:00,41.575,95.4,17.4 +2017-05-13 19:32:00,46.2262,95.8575,17.41 +2017-05-13 19:47:00,43.4662,96.495,17.41 +2017-05-13 20:02:00,37.3587,96.9475,17.41 +2017-05-13 20:17:00,37.3562,97.2425,17.42 +2017-05-13 20:32:00,42.0612,97.4175,17.46 +2017-05-13 20:47:00,41.1712,97.3475,17.43 +2017-05-13 21:02:00,27.3112,97.345,17.37 +2017-05-13 21:17:00,37.1212,97.2625,17.31 +2017-05-13 21:32:00,40.8925,97.2025,17.27 +2017-05-13 21:47:00,36.2375,97.085,17.23 +2017-05-13 22:02:00,32.575,97.14,17.18 +2017-05-13 22:17:00,35.7425,97.1925,17.14 +2017-05-13 22:32:00,38.55,97.3575,17.11 +2017-05-13 22:47:00,41.2275,97.3375,17.08 +2017-05-13 23:02:00,27.8562,97.4875,17.05 +2017-05-13 23:17:00,39.2375,97.6,17.03 +2017-05-13 23:32:00,42.1663,97.585,17.02 +2017-05-13 23:47:00,36.185,97.535,16.99 +2017-05-14 00:02:00,36.425,97.585,16.96 +2017-05-14 00:17:00,35.5525,97.6175,16.93 +2017-05-14 00:32:00,51.01,97.61,16.89 +2017-05-14 00:47:00,41.9112,97.445,16.85 +2017-05-14 01:02:00,32.0925,97.7025,16.8 +2017-05-14 01:17:00,36.1912,97.76,16.75 +2017-05-14 01:32:00,35.0062,97.6375,16.71 +2017-05-14 01:47:00,30.6575,97.7675,16.68 +2017-05-14 02:02:00,32.9675,97.725,16.64 +2017-05-14 02:17:00,45.725,97.69,16.6 +2017-05-14 02:32:00,35.2537,97.535,16.57 +2017-05-14 02:47:00,37.2588,97.5775,16.54 +2017-05-14 03:02:00,45.435,97.4175,16.5 +2017-05-14 03:17:00,35.0638,97.3475,16.49 +2017-05-14 03:32:00,38.005,97.33,16.49 +2017-05-14 03:47:00,36.6687,97.28,16.51 +2017-05-14 04:02:00,37.2588,97.395,16.54 +2017-05-14 04:17:00,35.3037,97.39,16.57 +2017-05-14 04:32:00,44.6637,97.3825,16.58 +2017-05-14 04:47:00,18.1362,97.49,16.58 +2017-05-14 05:02:00,44.0475,100.375,16.59 +2017-05-14 05:17:00,29.6287,100.482,16.59 +2017-05-14 05:32:00,33.705,99.8275,16.58 +2017-05-14 05:47:00,34.2838,99.24,16.53 +2017-05-14 06:02:00,38.4562,98.6525,16.49 +2017-05-14 06:17:00,34.0887,98.1875,16.51 +2017-05-14 06:32:00,29.8262,98.0725,16.55 +2017-05-14 06:47:00,31.0437,97.6425,16.56 +2017-05-14 07:02:00,29.8312,97.67,16.55 +2017-05-14 07:17:00,34.6738,97.6125,16.6 +2017-05-14 07:32:00,21.4362,97.5025,16.64 +2017-05-14 07:47:00,24.2525,97.8325,16.71 +2017-05-14 08:02:00,28.2612,97.8975,16.74 +2017-05-14 08:17:00,31.8375,97.6825,16.8 +2017-05-14 08:32:00,19.88,97.91,16.79 +2017-05-14 08:47:00,23.5762,98.11,16.78 +2017-05-14 09:02:00,18.7687,98.17,16.75 +2017-05-14 09:17:00,36.235,98.155,16.7 +2017-05-14 09:32:00,35.645,98.355,16.65 +2017-05-14 09:47:00,30.5563,98.675,16.57 +2017-05-14 10:02:00,34.2325,98.82,16.5 +2017-05-14 10:17:00,31.0413,99.3875,16.44 +2017-05-14 10:32:00,36.7237,99.7575,16.4 +2017-05-14 10:47:00,37.955,100.423,16.38 +2017-05-14 11:02:00,41.6237,100.897,16.35 +2017-05-14 11:17:00,32.48,101.662,16.37 +2017-05-14 11:32:00,36.1888,102.305,16.42 +2017-05-14 11:47:00,35.9463,102.827,16.47 +2017-05-14 12:02:00,33.9487,103.035,16.54 +2017-05-14 12:17:00,33.0713,103.26,16.73 +2017-05-14 12:32:00,39.785,103.617,16.86 +2017-05-14 12:47:00,36.7288,103.875,16.93 +2017-05-14 13:02:00,37.26,104.34,17.04 +2017-05-14 13:17:00,38.0987,104.662,17.15 +2017-05-14 13:32:00,38.2562,104.9,17.23 +2017-05-14 13:47:00,37.4025,105.295,17.26 +2017-05-14 14:02:00,38.8825,105.325,17.32 +2017-05-14 14:17:00,37.0212,105.655,17.35 +2017-05-14 14:32:00,41.6787,105.89,17.37 +2017-05-14 14:47:00,42.3138,106.13,17.31 +2017-05-14 15:02:00,41.725,106.482,17.31 +2017-05-14 15:17:00,41.6237,106.76,17.4 +2017-05-14 15:32:00,41.1287,107.18,17.46 +2017-05-14 15:47:00,40.8887,107.378,17.48 +2017-05-14 16:02:00,40.025,107.575,17.5 +2017-05-14 16:17:00,40.9962,107.822,17.5 +2017-05-14 16:32:00,39.435,107.872,17.48 +2017-05-14 16:47:00,44.1387,108.285,17.44 +2017-05-14 17:02:00,-51.9162,108.482,17.4 +2017-05-14 17:17:00,39.4725,108.205,17.36 +2017-05-14 17:32:00,40.8838,108.452,17.3 +2017-05-14 17:47:00,41.3637,108.485,17.26 +2017-05-14 18:02:00,41.9613,108.762,17.23 +2017-05-14 18:17:00,44.95,108.865,17.23 +2017-05-14 18:32:00,40.305,109.322,17.23 +2017-05-14 18:47:00,40.0212,109.367,17.26 +2017-05-14 19:02:00,41.625,109.423,17.3 +2017-05-14 19:17:00,40.84,109.522,17.34 +2017-05-14 19:32:00,38.355,109.595,17.39 +2017-05-14 19:47:00,40.5437,109.602,17.44 +2017-05-14 20:02:00,39.3825,109.71,17.49 +2017-05-14 20:17:00,38.93,110.997,17.51 +2017-05-14 20:32:00,37.115,114.215,17.48 +2017-05-14 20:47:00,39.235,118.15,17.47 +2017-05-14 21:02:00,38.6,119.732,17.4 +2017-05-14 21:17:00,38.6462,119.658,17.34 +2017-05-14 21:32:00,41.6212,119.26,17.32 +2017-05-14 21:47:00,44.765,118.725,17.23 +2017-05-14 22:02:00,38.9825,117.962,17.21 +2017-05-14 22:17:00,40.5912,117.38,17.25 +2017-05-14 22:32:00,43.8913,117.005,17.25 +2017-05-14 22:47:00,40.7412,116.5,17.22 +2017-05-14 23:02:00,42.4062,116.253,17.16 +2017-05-14 23:17:00,39.9287,115.85,17.11 +2017-05-14 23:32:00,39.485,115.865,17.05 +2017-05-14 23:47:00,39.6762,115.673,16.97 +2017-05-15 00:02:00,43.8487,115.64,16.87 +2017-05-15 00:17:00,40.26,115.38,16.76 +2017-05-15 00:32:00,35.2537,115.165,16.68 +2017-05-15 00:47:00,33.9975,115.165,16.64 +2017-05-15 01:02:00,39.3812,114.897,16.6 +2017-05-15 01:17:00,38.7425,114.83,16.56 +2017-05-15 01:32:00,37.255,114.615,16.55 +2017-05-15 01:47:00,43.5062,114.41,16.56 +2017-05-15 02:02:00,38.255,114.49,16.57 +2017-05-15 02:17:00,33.5563,114.25,16.57 +2017-05-15 02:32:00,35.305,114.312,16.56 +2017-05-15 02:47:00,39.385,114.097,16.54 +2017-05-15 03:02:00,36.8688,114.055,16.54 +2017-05-15 03:17:00,41.3688,113.977,16.53 +2017-05-15 03:32:00,41.4737,113.893,16.51 +2017-05-15 03:47:00,36.475,113.66,16.49 +2017-05-15 04:02:00,36.6675,113.86,16.49 +2017-05-15 04:17:00,33.5525,113.93,16.49 +2017-05-15 04:32:00,34.9025,113.885,16.51 +2017-05-15 04:47:00,36.5725,114.092,16.51 +2017-05-15 05:02:00,41.1263,114.128,16.51 +2017-05-15 05:17:00,39.335,114.317,16.53 +2017-05-15 05:32:00,34.0,114.268,16.54 +2017-05-15 05:47:00,32.765,114.275,16.57 +2017-05-15 06:02:00,38.155,114.807,16.57 +2017-05-15 06:17:00,34.4788,114.55,16.53 +2017-05-15 06:32:00,36.2375,114.602,16.48 +2017-05-15 06:47:00,40.495,114.965,16.42 +2017-05-15 07:02:00,34.1837,115.075,16.37 +2017-05-15 07:17:00,32.6263,114.942,16.32 +2017-05-15 07:32:00,35.595,115.1,16.29 +2017-05-15 07:47:00,34.2337,115.455,16.25 +2017-05-15 08:02:00,44.615,115.4,16.26 +2017-05-15 08:17:00,38.9313,115.737,16.26 +2017-05-15 08:32:00,40.4463,115.655,16.24 +2017-05-15 08:47:00,38.9325,117.3,16.24 +2017-05-15 09:02:00,33.065,117.033,16.3 +2017-05-15 09:17:00,25.3913,116.777,16.35 +2017-05-15 09:32:00,31.44,116.715,16.34 +2017-05-15 09:47:00,23.6175,116.423,16.37 +2017-05-15 10:02:00,44.945,116.667,16.42 +2017-05-15 10:17:00,36.9163,116.887,16.55 +2017-05-15 10:32:00,44.5625,117.53,16.67 +2017-05-15 10:47:00,32.4775,117.722,16.72 +2017-05-15 11:02:00,40.74,118.035,16.78 +2017-05-15 11:17:00,35.0987,118.438,16.8 +2017-05-15 11:32:00,33.8037,118.688,16.81 +2017-05-15 11:47:00,35.9412,118.742,16.85 +2017-05-15 12:02:00,39.1825,118.962,16.99 +2017-05-15 12:17:00,32.8213,118.765,17.06 +2017-05-15 12:32:00,30.705,118.89,17.13 +2017-05-15 12:47:00,38.4,119.482,17.2 +2017-05-15 13:02:00,31.9375,119.32,17.26 +2017-05-15 13:17:00,38.8375,119.11,17.31 +2017-05-15 13:32:00,43.2237,119.22,17.36 +2017-05-15 13:47:00,37.2575,119.232,17.42 +2017-05-15 14:02:00,40.3475,119.295,17.46 +2017-05-15 14:17:00,36.77,119.212,17.46 +2017-05-15 14:32:00,35.3512,119.0,17.49 +2017-05-15 14:47:00,28.3562,118.88,17.51 +2017-05-15 15:02:00,40.5863,118.882,17.52 +2017-05-15 15:17:00,30.3075,118.855,17.53 +2017-05-15 15:32:00,31.2387,118.745,17.57 +2017-05-15 15:47:00,35.7925,118.86,17.61 +2017-05-15 16:02:00,32.5262,118.715,17.63 +2017-05-15 16:17:00,39.6775,118.64,17.64 +2017-05-15 16:32:00,40.1212,118.562,17.66 +2017-05-15 16:47:00,35.4538,118.23,17.71 +2017-05-15 17:02:00,40.6375,118.117,17.77 +2017-05-15 17:17:00,43.5512,117.962,17.81 +2017-05-15 17:32:00,35.0512,117.662,17.87 +2017-05-15 17:47:00,33.4075,117.622,17.9 +2017-05-15 18:02:00,41.0788,117.525,17.94 +2017-05-15 18:17:00,36.1875,117.33,17.96 +2017-05-15 18:32:00,33.6562,117.12,17.98 +2017-05-15 18:47:00,30.6537,116.947,17.99 +2017-05-15 19:02:00,34.3812,116.827,17.99 +2017-05-15 19:17:00,39.1875,116.737,18.0 +2017-05-15 19:32:00,35.9412,116.325,18.01 +2017-05-15 19:47:00,34.5275,116.122,18.02 +2017-05-15 20:02:00,39.1825,115.732,18.02 +2017-05-15 20:17:00,40.94,115.527,18.01 +2017-05-15 20:32:00,37.2562,115.4,17.99 +2017-05-15 20:47:00,38.0563,115.065,17.97 +2017-05-15 21:02:00,41.1787,115.085,17.94 +2017-05-15 21:17:00,44.0387,114.952,17.9 +2017-05-15 21:32:00,48.4275,114.74,17.86 +2017-05-15 21:47:00,45.3838,114.445,17.8 +2017-05-15 22:02:00,43.7962,114.175,17.75 +2017-05-15 22:17:00,37.6113,113.897,17.69 +2017-05-15 22:32:00,40.5425,113.637,17.65 +2017-05-15 22:47:00,37.6575,113.24,17.59 +2017-05-15 23:02:00,38.935,113.06,17.54 +2017-05-15 23:17:00,41.0837,112.992,17.49 +2017-05-15 23:32:00,37.3037,112.8,17.42 +2017-05-15 23:47:00,41.2237,112.5,17.36 +2017-05-16 00:02:00,36.2862,112.467,17.3 +2017-05-16 00:17:00,42.895,112.307,17.24 +2017-05-16 00:32:00,37.405,111.95,17.18 +2017-05-16 00:47:00,43.2738,111.795,17.12 +2017-05-16 01:02:00,45.2312,111.72,17.04 +2017-05-16 01:17:00,41.3737,111.325,16.99 +2017-05-16 01:32:00,38.6937,111.12,16.95 +2017-05-16 01:47:00,38.6,111.107,16.92 +2017-05-16 02:02:00,32.3363,110.945,16.88 +2017-05-16 02:17:00,41.4238,110.96,16.84 +2017-05-16 02:32:00,37.115,110.792,16.81 +2017-05-16 02:47:00,36.7237,110.622,16.79 +2017-05-16 03:02:00,32.9163,110.475,16.75 +2017-05-16 03:17:00,45.8187,110.232,16.72 +2017-05-16 03:32:00,34.085,110.177,16.68 +2017-05-16 03:47:00,37.0675,109.86,16.64 +2017-05-16 04:02:00,38.745,109.717,16.61 +2017-05-16 04:17:00,45.0875,109.727,16.57 +2017-05-16 04:32:00,41.6225,109.59,16.54 +2017-05-16 04:47:00,37.1162,109.503,16.52 +2017-05-16 05:02:00,37.455,109.4,16.5 +2017-05-16 05:17:00,40.84,109.245,16.47 +2017-05-16 05:32:00,37.7575,109.235,16.44 +2017-05-16 05:47:00,41.6725,109.07,16.41 +2017-05-16 06:02:00,44.04,110.965,16.42 +2017-05-16 06:17:00,44.4238,110.402,16.43 +2017-05-16 06:32:00,42.0075,109.292,16.45 +2017-05-16 06:47:00,38.0537,108.352,16.44 +2017-05-16 07:02:00,34.235,107.662,16.44 +2017-05-16 07:17:00,41.8187,107.32,16.5 +2017-05-16 07:32:00,36.6712,106.923,16.56 +2017-05-16 07:47:00,42.0587,106.645,16.56 +2017-05-16 08:02:00,33.5062,106.45,16.58 +2017-05-16 08:17:00,37.3562,106.587,16.59 +2017-05-16 08:32:00,45.185,106.427,16.64 +2017-05-16 08:47:00,35.2062,106.335,16.61 +2017-05-16 09:02:00,48.0762,106.315,16.56 +2017-05-16 09:17:00,37.4575,106.425,16.52 +2017-05-16 09:32:00,38.0537,106.507,16.53 +2017-05-16 09:47:00,43.75,106.4,16.66 +2017-05-16 10:02:00,41.8187,106.472,16.73 +2017-05-16 10:17:00,38.885,106.632,16.75 +2017-05-16 10:32:00,41.175,106.63,16.82 +2017-05-16 10:47:00,35.2537,106.567,16.83 +2017-05-16 11:02:00,38.8875,106.397,16.84 +2017-05-16 11:17:00,39.5825,106.355,16.87 +2017-05-16 11:32:00,33.945,106.24,16.87 +2017-05-16 11:47:00,34.4287,106.22,16.85 +2017-05-16 12:02:00,37.9075,106.26,16.81 +2017-05-16 12:17:00,35.5025,106.11,16.8 +2017-05-16 12:32:00,43.6512,106.128,16.86 +2017-05-16 12:47:00,33.07,106.237,16.92 +2017-05-16 13:02:00,39.135,106.247,16.98 +2017-05-16 13:17:00,38.505,106.22,17.02 +2017-05-16 13:32:00,42.2588,106.03,17.05 +2017-05-16 13:47:00,32.6725,106.092,17.07 +2017-05-16 14:02:00,34.9587,105.947,17.1 +2017-05-16 14:17:00,35.0075,105.825,17.15 +2017-05-16 14:32:00,39.1837,105.695,17.18 +2017-05-16 14:47:00,45.2337,105.64,17.19 +2017-05-16 15:02:00,35.8412,105.617,17.2 +2017-05-16 15:17:00,47.9362,105.622,17.21 +2017-05-16 15:32:00,34.815,105.605,17.23 +2017-05-16 15:47:00,38.65,105.495,17.24 +2017-05-16 16:02:00,38.8875,105.535,17.25 +2017-05-16 16:17:00,34.815,105.503,17.25 +2017-05-16 16:32:00,43.6012,105.307,17.24 +2017-05-16 16:47:00,46.1675,105.162,17.24 +2017-05-16 17:02:00,31.8887,104.992,17.23 +2017-05-16 17:17:00,23.4262,104.935,17.23 +2017-05-16 17:32:00,40.3988,105.003,17.25 +2017-05-16 17:47:00,45.1387,104.89,17.26 +2017-05-16 18:02:00,45.2887,105.08,17.26 +2017-05-16 18:17:00,33.0662,104.962,17.26 +2017-05-16 18:32:00,37.115,104.837,17.26 +2017-05-16 18:47:00,37.6075,104.817,17.26 +2017-05-16 19:02:00,37.6075,104.72,17.26 +2017-05-16 19:17:00,33.3087,104.512,17.24 +2017-05-16 19:32:00,43.1787,104.405,17.23 +2017-05-16 19:47:00,46.8512,104.345,17.22 +2017-05-16 20:02:00,38.3587,104.457,17.21 +2017-05-16 20:17:00,41.62,104.342,17.21 +2017-05-16 20:32:00,43.5088,104.253,17.21 +2017-05-16 20:47:00,44.18,104.39,17.21 +2017-05-16 21:02:00,42.4075,104.292,17.19 +2017-05-16 21:17:00,40.6437,104.167,17.19 +2017-05-16 21:32:00,40.69,104.235,17.18 +2017-05-16 21:47:00,42.555,104.035,17.17 +2017-05-16 22:02:00,46.015,103.95,17.16 +2017-05-16 22:17:00,38.6963,103.878,17.15 +2017-05-16 22:32:00,40.5912,103.742,17.16 +2017-05-16 22:47:00,43.3712,103.742,17.16 +2017-05-16 23:02:00,38.6488,103.787,17.16 +2017-05-16 23:17:00,47.6387,103.86,17.16 +2017-05-16 23:32:00,46.65,103.88,17.16 +2017-05-16 23:47:00,43.5075,103.697,17.15 +2017-05-17 00:02:00,33.505,103.832,17.13 +2017-05-17 00:17:00,48.225,103.68,17.11 +2017-05-17 00:32:00,41.0788,103.427,17.09 +2017-05-17 00:47:00,17.69,103.55,17.07 +2017-05-17 01:02:00,50.4675,103.44,17.05 +2017-05-17 01:17:00,37.61,103.41,17.03 +2017-05-17 01:32:00,38.5537,103.412,17.0 +2017-05-17 01:47:00,36.2862,103.527,16.99 +2017-05-17 02:02:00,54.9238,103.54,17.0 +2017-05-17 02:17:00,39.6787,103.462,17.0 +2017-05-17 02:32:00,29.3812,103.462,16.98 +2017-05-17 02:47:00,49.4012,103.515,16.96 +2017-05-17 03:02:00,62.35,103.423,16.95 +2017-05-17 03:17:00,26.7162,103.222,16.92 +2017-05-17 03:32:00,36.1375,103.25,16.89 +2017-05-17 03:47:00,0.892498,103.143,16.87 +2017-05-17 04:02:00,37.4512,103.135,16.85 +2017-05-17 04:17:00,44.1362,103.17,16.83 +2017-05-17 04:32:00,25.445,103.18,16.82 +2017-05-17 04:47:00,43.7988,103.265,16.81 +2017-05-17 05:02:00,32.2375,103.298,16.82 +2017-05-17 05:17:00,34.4313,103.372,16.85 +2017-05-17 05:32:00,45.97,103.162,16.88 +2017-05-17 05:47:00,34.625,103.302,16.9 +2017-05-17 06:02:00,28.8475,103.197,16.91 +2017-05-17 06:17:00,32.6712,103.067,16.93 +2017-05-17 06:32:00,44.5212,103.135,16.98 +2017-05-17 06:47:00,4.5675,103.18,17.0 +2017-05-17 07:02:00,23.0812,103.14,17.04 +2017-05-17 07:17:00,28.6525,103.205,17.07 +2017-05-17 07:32:00,55.6575,103.132,17.12 +2017-05-17 07:47:00,26.0863,103.115,17.17 +2017-05-17 08:02:00,40.5425,103.045,17.23 +2017-05-17 08:17:00,-0.138752,103.322,17.25 +2017-05-17 08:32:00,38.1025,103.22,17.26 +2017-05-17 08:47:00,39.9762,103.542,17.31 +2017-05-17 09:02:00,36.3787,103.42,17.38 +2017-05-17 09:17:00,-0.137501,103.31,17.44 +2017-05-17 09:32:00,4.4175,103.317,17.49 +2017-05-17 09:47:00,43.175,103.255,17.58 +2017-05-17 10:02:00,39.6787,103.305,17.65 +2017-05-17 10:17:00,60.205,103.207,17.73 +2017-05-17 10:32:00,29.6787,103.145,17.83 +2017-05-17 10:47:00,49.1012,102.942,17.89 +2017-05-17 11:02:00,-0.137501,103.025,17.96 +2017-05-17 11:17:00,45.235,102.977,18.02 +2017-05-17 11:32:00,42.9887,102.912,18.13 +2017-05-17 11:47:00,-0.137501,102.438,18.21 +2017-05-17 12:02:00,45.2862,102.33,18.28 +2017-05-17 12:17:00,50.0887,102.0,18.29 +2017-05-17 12:32:00,21.73,101.518,18.34 +2017-05-17 12:47:00,42.79,101.315,18.4 +2017-05-17 13:02:00,51.5488,100.742,18.44 +2017-05-17 13:17:00,42.2575,100.405,18.48 +2017-05-17 13:32:00,38.0563,99.965,18.54 +2017-05-17 13:47:00,-0.137501,99.74,18.61 +2017-05-17 14:02:00,22.7988,99.3475,18.68 +2017-05-17 14:17:00,44.1375,99.1375,18.75 +2017-05-17 14:32:00,36.8187,98.9525,18.83 +2017-05-17 14:47:00,44.1787,98.885,18.89 +2017-05-17 15:02:00,39.2325,98.3225,18.96 +2017-05-17 15:17:00,40.9388,97.895,19.0 +2017-05-17 15:32:00,42.5525,97.87,19.0 +2017-05-17 15:47:00,33.2162,97.53,18.99 +2017-05-17 16:02:00,46.5563,97.335,18.98 +2017-05-17 16:17:00,32.92,97.4125,18.97 +2017-05-17 16:32:00,25.6387,97.0725,18.96 +2017-05-17 16:47:00,47.2475,97.225,18.96 +2017-05-17 17:02:00,44.7612,97.34,18.96 +2017-05-17 17:17:00,40.1663,97.0825,18.95 +2017-05-17 17:32:00,55.0262,97.26,18.96 +2017-05-17 17:47:00,45.3412,97.12,18.98 +2017-05-17 18:02:00,38.5488,97.1375,19.0 +2017-05-17 18:17:00,42.8462,97.1225,19.01 +2017-05-17 18:32:00,51.0112,97.1925,19.02 +2017-05-17 18:47:00,40.8425,97.3075,19.02 +2017-05-17 19:02:00,38.5025,97.4825,19.0 +2017-05-17 19:17:00,49.89,97.54,18.99 +2017-05-17 19:32:00,53.615,97.7725,18.99 +2017-05-17 19:47:00,49.695,97.8325,19.01 +2017-05-17 20:02:00,41.9125,97.9475,19.04 +2017-05-17 20:17:00,42.9925,98.0375,19.08 +2017-05-17 20:32:00,31.245,98.145,19.1 +2017-05-17 20:47:00,25.11,98.2375,19.13 +2017-05-17 21:02:00,30.2588,98.505,19.16 +2017-05-17 21:17:00,46.6012,98.575,19.21 +2017-05-17 21:32:00,41.2262,98.7025,19.27 +2017-05-17 21:47:00,42.5625,98.885,19.31 +2017-05-17 22:02:00,36.4287,99.03,19.36 +2017-05-17 22:17:00,10.3488,99.175,19.38 +2017-05-17 22:32:00,32.3387,99.15,19.4 +2017-05-17 22:47:00,34.5287,99.46,19.43 +2017-05-17 23:02:00,55.66,99.365,19.44 +2017-05-17 23:17:00,9.60625,99.375,19.43 +2017-05-17 23:32:00,42.7925,99.59,19.39 +2017-05-17 23:47:00,33.3587,99.7075,19.36 +2017-05-18 00:02:00,44.4175,99.9225,19.31 +2017-05-18 00:17:00,35.355,99.9175,19.25 +2017-05-18 00:32:00,43.23,99.9575,19.19 +2017-05-18 00:47:00,51.2562,100.092,19.13 +2017-05-18 01:02:00,46.5062,100.312,19.06 +2017-05-18 01:17:00,22.405,100.29,19.01 +2017-05-18 01:32:00,40.1237,100.315,18.97 +2017-05-18 01:47:00,46.1663,100.347,18.95 +2017-05-18 02:02:00,41.3275,100.425,18.91 +2017-05-18 02:17:00,49.8438,100.402,18.87 +2017-05-18 02:32:00,-0.137501,100.58,18.84 +2017-05-18 02:47:00,-0.13625,100.64,18.81 +2017-05-18 03:02:00,58.78,100.715,18.79 +2017-05-18 03:17:00,51.0088,100.882,18.75 +2017-05-18 03:32:00,16.3862,100.865,18.73 +2017-05-18 03:47:00,24.8063,101.045,18.71 +2017-05-18 04:02:00,37.9562,100.97,18.69 +2017-05-18 04:17:00,-0.1325,101.067,18.67 +2017-05-18 04:32:00,47.4388,101.725,18.63 +2017-05-18 04:47:00,25.84,102.13,18.61 +2017-05-18 05:02:00,26.6162,99.0125,18.61 +2017-05-18 05:17:00,30.2113,96.5375,18.63 +2017-05-18 05:32:00,35.3525,94.8175,18.63 +2017-05-18 05:47:00,29.0975,93.715,18.66 +2017-05-18 06:02:00,38.2062,93.19,18.72 +2017-05-18 06:17:00,27.815,93.035,18.83 +2017-05-18 06:32:00,43.0413,93.145,18.94 +2017-05-18 06:47:00,48.9575,93.105,18.99 +2017-05-18 07:02:00,39.8275,93.59,18.97 +2017-05-18 07:17:00,33.7075,93.725,18.97 +2017-05-18 07:32:00,38.5025,94.2975,19.0 +2017-05-18 07:47:00,37.9562,95.12,19.05 +2017-05-18 08:02:00,37.66,95.55,19.11 +2017-05-18 08:17:00,24.2087,96.0775,19.2 +2017-05-18 08:32:00,46.3637,96.6875,19.28 +2017-05-18 08:47:00,39.3363,97.07,19.34 +2017-05-18 09:02:00,15.2213,97.3075,19.44 +2017-05-18 09:17:00,41.7762,97.66,19.46 +2017-05-18 09:32:00,52.1413,97.9025,19.5 +2017-05-18 09:47:00,-0.135002,98.0475,19.54 +2017-05-18 10:02:00,-0.135002,98.2625,19.55 +2017-05-18 10:17:00,38.5037,98.4375,19.58 +2017-05-18 10:32:00,40.8412,98.765,19.57 +2017-05-18 10:47:00,24.3112,99.1075,19.6 +2017-05-18 11:02:00,22.9962,99.335,19.63 +2017-05-18 11:17:00,36.9675,99.4675,19.64 +2017-05-18 11:32:00,8.535,99.7825,19.69 +2017-05-18 11:47:00,32.4375,99.8475,19.7 +2017-05-18 12:02:00,38.4525,100.115,19.74 +2017-05-18 12:17:00,42.845,99.795,19.8 +2017-05-18 12:32:00,41.9625,99.765,19.79 +2017-05-18 12:47:00,36.0437,99.8875,19.79 +2017-05-18 13:02:00,42.31,100.15,19.84 +2017-05-18 13:17:00,-0.131252,100.062,19.86 +2017-05-18 13:32:00,44.8613,100.42,19.92 +2017-05-18 13:47:00,45.8213,100.555,19.93 +2017-05-18 14:02:00,5.3025,100.402,19.94 +2017-05-18 14:17:00,36.29,100.47,19.93 +2017-05-18 14:32:00,43.2288,100.562,19.91 +2017-05-18 14:47:00,0.94875,100.518,19.88 +2017-05-18 15:02:00,63.745,100.465,19.88 +2017-05-18 15:17:00,48.8637,100.575,19.91 +2017-05-18 15:32:00,-0.1325,100.472,19.92 +2017-05-18 15:47:00,24.8562,100.667,19.91 +2017-05-18 16:02:00,17.6937,100.745,19.92 +2017-05-18 16:17:00,46.85,100.867,19.93 +2017-05-18 16:32:00,47.735,100.783,19.95 +2017-05-18 16:47:00,37.4062,100.57,19.96 +2017-05-18 17:02:00,35.3075,100.727,19.96 +2017-05-18 17:17:00,31.0987,100.677,19.99 +2017-05-18 17:32:00,22.125,100.597,20.02 +2017-05-18 17:47:00,42.6025,100.522,20.03 +2017-05-18 18:02:00,50.47,100.792,20.05 +2017-05-18 18:17:00,36.5262,101.182,20.05 +2017-05-18 18:32:00,6.23375,101.875,20.04 +2017-05-18 18:47:00,6.03125,103.147,20.08 +2017-05-18 19:02:00,14.9275,103.435,20.1 +2017-05-18 19:17:00,40.7925,103.487,20.14 +2017-05-18 19:32:00,-0.1325,103.298,20.16 +2017-05-18 19:47:00,21.6825,103.197,20.21 +2017-05-18 20:02:00,23.7262,102.855,20.25 +2017-05-18 20:17:00,54.92,102.807,20.27 +2017-05-18 20:32:00,46.7038,102.652,20.31 +2017-05-18 20:47:00,36.725,102.607,20.34 +2017-05-18 21:02:00,54.1012,102.577,20.38 +2017-05-18 21:17:00,36.14,102.467,20.4 +2017-05-18 21:32:00,43.8913,102.432,20.42 +2017-05-18 21:47:00,41.7212,102.275,20.44 +2017-05-18 22:02:00,47.0975,102.192,20.45 +2017-05-18 22:17:00,47.835,101.982,20.46 +2017-05-18 22:32:00,50.3312,101.817,20.47 +2017-05-18 22:47:00,46.75,101.655,20.47 +2017-05-18 23:02:00,44.5675,101.535,20.46 +2017-05-18 23:17:00,43.8462,101.575,20.46 +2017-05-18 23:32:00,54.2925,101.53,20.44 +2017-05-18 23:47:00,43.5525,101.4,20.41 +2017-05-19 00:02:00,48.9562,101.305,20.37 +2017-05-19 00:17:00,37.7612,101.285,20.34 +2017-05-19 00:32:00,40.3562,101.145,20.31 +2017-05-19 00:47:00,46.17,100.945,20.28 +2017-05-19 01:02:00,44.275,101.03,20.23 +2017-05-19 01:17:00,50.3787,101.472,20.17 +2017-05-19 01:32:00,50.6637,103.23,20.03 +2017-05-19 01:47:00,44.3213,104.605,19.96 +2017-05-19 02:02:00,42.8425,104.965,19.81 +2017-05-19 02:17:00,43.6537,105.005,19.87 +2017-05-19 02:32:00,34.4788,104.705,19.75 +2017-05-19 02:47:00,43.2262,104.412,19.72 +2017-05-19 03:02:00,59.4613,104.13,19.67 +2017-05-19 03:17:00,49.6462,103.705,19.66 +2017-05-19 03:32:00,13.9987,103.597,19.67 +2017-05-19 03:47:00,53.8125,103.272,19.69 +2017-05-19 04:02:00,39.8812,102.98,19.72 +2017-05-19 04:17:00,19.4388,102.927,19.73 +2017-05-19 04:32:00,52.59,102.857,19.76 +2017-05-19 04:47:00,69.4,103.02,19.78 +2017-05-19 05:02:00,59.0737,102.975,19.8 +2017-05-19 05:17:00,61.5088,103.075,19.86 +2017-05-19 05:32:00,-0.1325,102.987,19.94 +2017-05-19 05:47:00,41.5262,102.96,20.0 +2017-05-19 06:02:00,55.405,103.077,20.03 +2017-05-19 06:17:00,-0.135002,102.97,20.06 +2017-05-19 06:32:00,51.4012,102.965,20.05 +2017-05-19 06:47:00,19.3463,103.052,20.06 +2017-05-19 07:02:00,-0.1325,102.99,20.08 +2017-05-19 07:17:00,56.7438,104.438,20.07 +2017-05-19 07:32:00,6.38125,106.507,20.06 +2017-05-19 07:47:00,-0.1325,107.975,20.11 +2017-05-19 08:02:00,30.3575,108.647,20.18 +2017-05-19 08:17:00,16.1413,109.41,20.18 +2017-05-19 08:32:00,27.2075,109.753,20.21 +2017-05-19 08:47:00,52.4925,109.802,20.24 +2017-05-19 09:02:00,-0.135002,109.66,20.29 +2017-05-19 09:17:00,54.6775,109.58,20.34 +2017-05-19 09:32:00,59.9487,109.455,20.37 +2017-05-19 09:47:00,8.195,109.49,20.4 +2017-05-19 10:02:00,47.9313,109.277,20.41 +2017-05-19 10:17:00,34.72,108.815,20.47 +2017-05-19 10:32:00,45.87,108.597,20.52 +2017-05-19 10:47:00,51.7513,108.4,20.56 +2017-05-19 11:02:00,50.2837,108.057,20.61 +2017-05-19 11:17:00,43.23,107.895,20.66 +2017-05-19 11:32:00,57.4962,107.647,20.66 +2017-05-19 11:47:00,66.32,107.42,20.68 +2017-05-19 12:02:00,35.7,107.63,20.74 +2017-05-19 12:17:00,36.0425,107.457,20.78 +2017-05-19 12:32:00,56.3962,107.39,20.79 +2017-05-19 12:47:00,-0.131252,107.55,20.83 +2017-05-19 13:02:00,32.5762,107.647,20.88 +2017-05-19 13:17:00,20.2213,108.01,20.93 +2017-05-19 13:32:00,58.0437,108.322,20.99 +2017-05-19 13:47:00,58.3337,108.64,21.06 +2017-05-19 14:02:00,66.3725,108.972,21.1 +2017-05-19 14:17:00,29.8763,109.268,21.08 +2017-05-19 14:32:00,47.4375,109.982,21.13 +2017-05-19 14:47:00,-0.131252,110.242,21.17 +2017-05-19 15:02:00,46.3175,110.8,21.17 +2017-05-19 15:17:00,33.1712,111.197,21.13 +2017-05-19 15:32:00,31.645,111.57,21.11 +2017-05-19 15:47:00,30.5638,111.682,21.1 +2017-05-19 16:02:00,36.6275,111.702,21.1 +2017-05-19 16:17:00,34.6263,112.182,21.12 +2017-05-19 16:32:00,35.2612,112.265,21.14 +2017-05-19 16:47:00,35.8475,112.128,21.16 +2017-05-19 17:02:00,44.1387,113.005,21.16 +2017-05-19 17:17:00,50.6612,112.905,21.17 +2017-05-19 17:32:00,43.755,112.707,21.19 +2017-05-19 17:47:00,41.915,112.837,21.2 +2017-05-19 18:02:00,35.795,112.522,21.18 +2017-05-19 18:17:00,42.5575,112.742,21.18 +2017-05-19 18:32:00,34.1387,113.05,21.21 +2017-05-19 18:47:00,38.255,114.49,21.18 +2017-05-19 19:02:00,31.245,119.122,21.04 +2017-05-19 19:17:00,37.4075,120.66,20.81 +2017-05-19 19:32:00,37.7113,120.72,20.95 +2017-05-19 19:47:00,51.3012,120.307,21.04 +2017-05-19 20:02:00,37.6612,119.85,20.83 +2017-05-19 20:17:00,41.7762,119.395,20.68 +2017-05-19 20:32:00,37.3575,118.66,20.65 +2017-05-19 20:47:00,63.395,118.012,20.65 +2017-05-19 21:02:00,25.695,117.385,20.64 +2017-05-19 21:17:00,21.1413,116.887,20.6 +2017-05-19 21:32:00,44.5262,116.745,20.59 +2017-05-19 21:47:00,44.33,117.018,20.57 +2017-05-19 22:02:00,39.6312,116.857,20.52 +2017-05-19 22:17:00,35.4062,116.435,20.41 +2017-05-19 22:32:00,38.1562,116.82,20.35 +2017-05-19 22:47:00,40.7425,116.42,20.3 +2017-05-19 23:02:00,41.7738,116.08,20.2 +2017-05-19 23:17:00,43.3712,116.175,20.11 +2017-05-19 23:32:00,42.2625,115.777,20.01 +2017-05-19 23:47:00,43.5575,115.55,19.91 +2017-05-20 00:02:00,51.16,115.11,19.8 +2017-05-20 00:17:00,41.13,115.352,19.72 +2017-05-20 00:32:00,44.8112,115.212,19.66 +2017-05-20 00:47:00,42.6537,115.06,19.6 +2017-05-20 01:02:00,42.4562,115.207,19.56 +2017-05-20 01:17:00,48.28,114.787,19.54 +2017-05-20 01:32:00,44.715,115.085,19.5 +2017-05-20 01:47:00,46.9037,114.965,19.47 +2017-05-20 02:02:00,44.5725,114.685,19.44 +2017-05-20 02:17:00,36.6738,114.637,19.41 +2017-05-20 02:32:00,41.775,114.512,19.39 +2017-05-20 02:47:00,44.6675,114.205,19.37 +2017-05-20 03:02:00,48.2762,114.242,19.33 +2017-05-20 03:17:00,43.5575,114.205,19.3 +2017-05-20 03:32:00,37.1225,114.192,19.27 +2017-05-20 03:47:00,33.4587,114.155,19.25 +2017-05-20 04:02:00,36.2387,114.18,19.23 +2017-05-20 04:17:00,41.4788,114.17,19.22 +2017-05-20 04:32:00,42.84,114.205,19.21 +2017-05-20 04:47:00,35.255,114.232,19.19 +2017-05-20 05:02:00,38.305,114.158,19.17 +2017-05-20 05:17:00,38.405,114.007,19.16 +2017-05-20 05:32:00,39.1862,114.177,19.14 +2017-05-20 05:47:00,31.4962,114.077,19.14 +2017-05-20 06:02:00,42.99,115.062,19.12 +2017-05-20 06:17:00,41.5225,116.555,19.1 +2017-05-20 06:32:00,38.255,117.467,19.1 +2017-05-20 06:47:00,43.845,118.352,19.1 +2017-05-20 07:02:00,48.0312,119.07,19.08 +2017-05-20 07:17:00,37.36,119.542,19.06 +2017-05-20 07:32:00,40.6963,120.188,19.07 +2017-05-20 07:47:00,39.9775,120.36,19.06 +2017-05-20 08:02:00,46.1188,120.952,19.04 +2017-05-20 08:17:00,46.6025,121.485,19.0 +2017-05-20 08:32:00,43.0837,121.99,19.01 +2017-05-20 08:47:00,35.3562,122.742,18.98 +2017-05-20 09:02:00,31.74,123.472,18.97 +2017-05-20 09:17:00,35.2513,124.445,18.96 +2017-05-20 09:32:00,41.425,125.2,18.95 +2017-05-20 09:47:00,34.0912,126.412,18.99 +2017-05-20 10:02:00,42.3562,127.055,19.03 +2017-05-20 10:17:00,44.1813,128.712,19.1 +2017-05-20 10:32:00,39.9737,129.232,19.11 +2017-05-20 10:47:00,43.8,130.87,19.17 +2017-05-20 11:02:00,37.91,132.357,19.21 +2017-05-20 11:17:00,40.2162,133.33,19.22 +2017-05-20 11:32:00,35.8925,134.612,19.29 +2017-05-20 11:47:00,45.4313,135.427,19.32 +2017-05-20 12:02:00,48.5713,136.59,19.39 +2017-05-20 12:17:00,46.9987,137.537,19.42 +2017-05-20 12:32:00,44.2275,138.622,19.43 +2017-05-20 12:47:00,41.8662,139.885,19.46 +2017-05-20 13:02:00,43.8,140.622,19.49 +2017-05-20 13:17:00,35.5037,141.742,19.56 +2017-05-20 13:32:00,50.8138,142.877,19.61 +2017-05-20 13:47:00,45.335,143.91,19.64 +2017-05-20 14:02:00,44.0887,144.438,19.67 +2017-05-20 14:17:00,32.2375,146.792,19.69 +2017-05-20 14:32:00,39.8825,150.095,19.73 +2017-05-20 14:47:00,49.5013,152.722,19.78 +2017-05-20 15:02:00,14.8787,154.2,19.79 +2017-05-20 15:17:00,43.845,155.212,19.78 +2017-05-20 15:32:00,44.95,155.7,19.78 +2017-05-20 15:47:00,-0.133751,156.285,19.77 +2017-05-20 16:02:00,-0.133751,156.652,19.78 +2017-05-20 16:17:00,13.7462,156.952,19.81 +2017-05-20 16:32:00,7.90375,157.14,19.85 +2017-05-20 16:47:00,68.8575,157.015,19.87 +2017-05-20 17:02:00,-0.131252,156.985,19.9 +2017-05-20 17:17:00,25.59,157.182,19.98 +2017-05-20 17:32:00,45.7712,157.5,20.03 +2017-05-20 17:47:00,37.5088,157.408,20.04 +2017-05-20 18:02:00,59.4112,157.665,20.03 +2017-05-20 18:17:00,39.39,157.927,20.0 +2017-05-20 18:32:00,60.5412,157.902,19.94 +2017-05-20 18:47:00,47.195,157.922,19.88 +2017-05-20 19:02:00,-0.1325,157.973,19.81 +2017-05-20 19:17:00,58.4775,157.915,19.72 +2017-05-20 19:32:00,51.35,157.915,19.64 +2017-05-20 19:47:00,27.7612,158.142,19.55 +2017-05-20 20:02:00,37.255,158.2,19.47 +2017-05-20 20:17:00,14.7275,158.372,19.39 +2017-05-20 20:32:00,39.5775,158.538,19.29 +2017-05-20 20:47:00,-0.133751,158.562,19.2 +2017-05-20 21:02:00,-0.13625,158.79,19.11 +2017-05-20 21:17:00,41.2237,158.872,19.02 +2017-05-20 21:32:00,16.63,158.962,18.94 +2017-05-20 21:47:00,44.0413,159.055,18.86 +2017-05-20 22:02:00,46.9975,159.158,18.79 +2017-05-20 22:17:00,39.9287,159.223,18.72 +2017-05-20 22:32:00,41.96,158.965,18.65 +2017-05-20 22:47:00,43.65,159.36,18.59 +2017-05-20 23:02:00,37.5088,159.467,18.51 +2017-05-20 23:17:00,48.9087,159.49,18.41 +2017-05-20 23:32:00,58.975,159.745,18.32 +2017-05-20 23:47:00,48.9125,159.94,18.21 +2017-05-21 00:02:00,39.1312,160.155,18.1 +2017-05-21 00:17:00,55.6575,160.105,18.0 +2017-05-21 00:32:00,45.6338,160.112,17.88 +2017-05-21 00:47:00,39.8787,160.372,17.79 +2017-05-21 01:02:00,51.7012,160.45,17.69 +2017-05-21 01:17:00,46.4125,160.565,17.6 +2017-05-21 01:32:00,66.77,160.49,17.51 +2017-05-21 01:47:00,48.5725,160.835,17.43 +2017-05-21 02:02:00,52.9225,160.982,17.36 +2017-05-21 02:17:00,51.3063,161.177,17.28 +2017-05-21 02:32:00,38.8363,161.375,17.23 +2017-05-21 02:47:00,57.3438,161.522,17.18 +2017-05-21 03:02:00,42.9875,161.432,17.12 +2017-05-21 03:17:00,52.9212,161.71,17.08 +2017-05-21 03:32:00,40.6912,161.385,17.03 +2017-05-21 03:47:00,49.1525,161.447,16.98 +2017-05-21 04:02:00,47.6825,161.53,16.93 +2017-05-21 04:17:00,52.8262,161.595,16.88 +2017-05-21 04:32:00,59.6562,161.67,16.84 +2017-05-21 04:47:00,41.7188,161.72,16.81 +2017-05-21 05:02:00,52.635,161.728,16.78 +2017-05-21 05:17:00,64.5975,161.73,16.76 +2017-05-21 05:32:00,47.2875,161.503,16.75 +2017-05-21 05:47:00,8.23625,161.622,16.73 +2017-05-21 06:02:00,49.3487,161.615,16.72 +2017-05-21 06:17:00,50.4613,161.357,16.7 +2017-05-21 06:32:00,50.0863,161.51,16.7 +2017-05-21 06:47:00,42.7913,161.34,16.69 +2017-05-21 07:02:00,47.8812,161.11,16.68 +2017-05-21 07:17:00,17.4037,161.047,16.69 +2017-05-21 07:32:00,56.1437,161.152,16.7 +2017-05-21 07:47:00,69.495,161.01,16.74 +2017-05-21 08:02:00,8.62625,160.892,16.75 +2017-05-21 08:17:00,50.6587,160.862,16.78 +2017-05-21 08:32:00,-0.138752,160.842,16.82 +2017-05-21 08:47:00,58.3838,160.783,16.86 +2017-05-21 09:02:00,46.6525,160.805,16.89 +2017-05-21 09:17:00,-0.138752,160.405,16.93 +2017-05-21 09:32:00,53.515,160.46,16.97 +2017-05-21 09:47:00,-0.138752,160.367,16.95 +2017-05-21 10:02:00,49.9875,160.223,16.98 +2017-05-21 10:17:00,44.2762,160.195,17.05 +2017-05-21 10:32:00,38.0512,159.765,17.07 +2017-05-21 10:47:00,49.4,159.788,17.09 +2017-05-21 11:02:00,32.4762,159.758,17.09 +2017-05-21 11:17:00,42.1087,159.24,17.14 +2017-05-21 11:32:00,38.7412,159.11,17.2 +2017-05-21 11:47:00,29.5287,158.978,17.29 +2017-05-21 12:02:00,35.0975,158.637,17.42 +2017-05-21 12:17:00,45.48,158.505,17.45 +2017-05-21 12:32:00,39.385,158.473,17.51 +2017-05-21 12:47:00,39.7762,158.337,17.54 +2017-05-21 13:02:00,34.33,157.878,17.58 +2017-05-21 13:17:00,45.5775,157.802,17.68 +2017-05-21 13:32:00,34.8138,157.38,17.69 +2017-05-21 13:47:00,50.8087,156.96,17.72 +2017-05-21 14:02:00,45.9688,156.802,17.75 +2017-05-21 14:17:00,51.3475,156.642,17.84 +2017-05-21 14:32:00,49.84,156.38,17.85 +2017-05-21 14:47:00,56.4463,156.117,17.86 +2017-05-21 15:02:00,36.6188,156.092,17.9 +2017-05-21 15:17:00,48.4238,155.432,17.94 +2017-05-21 15:32:00,45.135,155.467,17.92 +2017-05-21 15:47:00,33.8463,155.207,17.94 +2017-05-21 16:02:00,38.0488,154.945,17.96 +2017-05-21 16:17:00,18.0375,154.577,18.0 +2017-05-21 16:32:00,29.385,154.207,18.04 +2017-05-21 16:47:00,31.8363,153.957,18.05 +2017-05-21 17:02:00,64.6975,153.88,18.03 +2017-05-21 17:17:00,54.53,153.327,17.98 +2017-05-21 17:32:00,24.4088,153.26,17.94 +2017-05-21 17:47:00,35.2038,152.997,17.91 +2017-05-21 18:02:00,22.0687,152.777,17.9 +2017-05-21 18:17:00,50.8087,152.6,17.91 +2017-05-21 18:32:00,61.3662,152.35,17.93 +2017-05-21 18:47:00,70.0987,152.155,17.94 +2017-05-21 19:02:00,39.5812,151.99,17.95 +2017-05-21 19:17:00,46.6987,151.587,17.96 +2017-05-21 19:32:00,36.6212,151.515,17.95 +2017-05-21 19:47:00,49.8887,151.362,17.93 +2017-05-21 20:02:00,-0.133751,151.097,17.9 +2017-05-21 20:17:00,43.795,150.735,17.86 +2017-05-21 20:32:00,65.4362,150.6,17.82 +2017-05-21 20:47:00,18.9075,150.3,17.76 +2017-05-21 21:02:00,49.3063,150.375,17.69 +2017-05-21 21:17:00,49.94,149.792,17.63 +2017-05-21 21:32:00,52.49,149.61,17.56 +2017-05-21 21:47:00,48.9562,149.48,17.5 +2017-05-21 22:02:00,24.2575,149.18,17.43 +2017-05-21 22:17:00,21.9275,149.087,17.37 +2017-05-21 22:32:00,-0.131252,148.875,17.32 +2017-05-21 22:47:00,27.8512,148.52,17.27 +2017-05-21 23:02:00,46.0662,148.36,17.22 +2017-05-21 23:17:00,42.3037,148.327,17.18 +2017-05-21 23:32:00,25.1575,148.337,17.14 +2017-05-21 23:47:00,25.3463,147.925,17.11 +2017-05-22 00:02:00,-0.13625,147.827,17.08 +2017-05-22 00:17:00,51.7487,147.665,17.06 +2017-05-22 00:32:00,40.1663,147.38,17.03 +2017-05-22 00:47:00,73.06,147.425,16.99 +2017-05-22 01:02:00,42.2113,147.132,16.96 +2017-05-22 01:17:00,59.71,146.785,16.91 +2017-05-22 01:32:00,42.4075,146.815,16.86 +2017-05-22 01:47:00,55.4037,146.61,16.8 +2017-05-22 02:02:00,61.6037,146.27,16.75 +2017-05-22 02:17:00,45.185,146.122,16.71 +2017-05-22 02:32:00,63.34,145.897,16.65 +2017-05-22 02:47:00,68.2062,145.772,16.59 +2017-05-22 03:02:00,41.4212,145.545,16.53 +2017-05-22 03:17:00,29.0975,145.415,16.47 +2017-05-22 03:32:00,39.9262,145.438,16.41 +2017-05-22 03:47:00,46.31,145.01,16.35 +2017-05-22 04:02:00,-0.138752,145.062,16.29 +2017-05-22 04:17:00,-0.138752,144.79,16.24 +2017-05-22 04:32:00,-0.138752,144.745,16.2 +2017-05-22 04:47:00,-0.13625,144.712,16.17 +2017-05-22 05:02:00,-0.138752,144.562,16.15 +2017-05-22 05:17:00,-0.138752,144.447,16.13 +2017-05-22 05:32:00,-0.138752,144.505,16.11 +2017-05-22 05:47:00,35.4012,144.212,16.1 +2017-05-22 06:02:00,-0.13625,144.173,16.09 +2017-05-22 06:17:00,67.2075,143.25,16.09 +2017-05-22 06:32:00,20.0187,141.745,16.1 +2017-05-22 06:47:00,-0.139999,140.575,16.11 +2017-05-22 07:02:00,8.04375,139.952,16.13 +2017-05-22 07:17:00,-0.141251,139.467,16.19 +2017-05-22 07:32:00,35.9925,139.018,16.23 +2017-05-22 07:47:00,47.8325,138.895,16.28 +2017-05-22 08:02:00,45.3337,138.812,16.37 +2017-05-22 08:17:00,31.1425,138.84,16.43 +2017-05-22 08:32:00,51.5488,138.86,16.47 +2017-05-22 08:47:00,24.7513,139.02,16.53 +2017-05-22 09:02:00,28.6937,139.022,16.58 +2017-05-22 09:17:00,-0.142502,139.252,16.63 +2017-05-22 09:32:00,43.6012,139.872,16.68 +2017-05-22 09:47:00,59.995,140.08,16.75 +2017-05-22 10:02:00,67.1612,140.595,16.79 +2017-05-22 10:17:00,57.74,141.423,16.84 +2017-05-22 10:32:00,72.8175,141.96,16.91 +2017-05-22 10:47:00,22.6513,142.87,16.96 +2017-05-22 11:02:00,78.1187,143.467,17.03 +2017-05-22 11:17:00,-0.139999,144.31,17.06 +2017-05-22 11:32:00,60.9775,144.757,17.06 +2017-05-22 11:47:00,71.3725,145.097,17.09 +2017-05-22 12:02:00,-0.139999,145.397,17.1 +2017-05-22 12:17:00,32.5725,145.862,17.17 +2017-05-22 12:32:00,-0.139999,145.837,17.25 +2017-05-22 12:47:00,81.0163,145.992,17.28 +2017-05-22 13:02:00,-0.137501,146.132,17.27 +2017-05-22 13:17:00,-0.141251,146.107,17.38 +2017-05-22 13:32:00,47.0462,146.055,17.46 +2017-05-22 13:47:00,-0.135002,146.247,17.55 +2017-05-22 14:02:00,-0.138752,146.057,17.62 +2017-05-22 14:17:00,83.8525,145.985,17.71 +2017-05-22 14:32:00,1.9775,145.637,17.81 +2017-05-22 14:47:00,-0.137501,145.627,17.9 +2017-05-22 15:02:00,104.766,145.272,17.96 +2017-05-22 15:17:00,47.935,145.167,18.03 +2017-05-22 15:32:00,13.3538,144.908,18.07 +2017-05-22 15:47:00,37.45,144.725,18.1 +2017-05-22 16:02:00,22.845,144.45,18.15 +2017-05-22 16:17:00,51.5,144.11,18.17 +2017-05-22 16:32:00,-0.133751,143.857,18.17 +2017-05-22 16:47:00,-0.137501,143.645,18.16 +2017-05-22 17:02:00,-0.135002,143.227,18.17 +2017-05-22 17:17:00,20.7475,142.965,18.17 +2017-05-22 17:32:00,-0.138752,142.722,18.18 +2017-05-22 17:47:00,57.8925,142.507,18.17 +2017-05-22 18:02:00,57.5387,142.192,18.19 +2017-05-22 18:17:00,-0.13625,141.877,18.22 +2017-05-22 18:32:00,-0.137501,141.742,18.24 +2017-05-22 18:47:00,61.32,141.405,18.26 +2017-05-22 19:02:00,-0.135002,141.177,18.27 +2017-05-22 19:17:00,34.4762,141.072,18.28 +2017-05-22 19:32:00,52.4362,140.685,18.31 +2017-05-22 19:47:00,22.4562,140.49,18.3 +2017-05-22 20:02:00,39.83,140.21,18.29 +2017-05-22 20:17:00,18.7175,139.893,18.27 +2017-05-22 20:32:00,40.4437,139.602,18.25 +2017-05-22 20:47:00,46.1175,139.387,18.22 +2017-05-22 21:02:00,54.0537,139.072,18.18 +2017-05-22 21:17:00,23.3275,138.8,18.15 +2017-05-22 21:32:00,39.2825,138.552,18.1 +2017-05-22 21:47:00,43.3213,138.408,18.06 +2017-05-22 22:02:00,49.0537,137.93,18.0 +2017-05-22 22:17:00,41.865,137.86,17.95 +2017-05-22 22:32:00,36.425,137.662,17.91 +2017-05-22 22:47:00,59.8537,137.55,17.83 +2017-05-22 23:02:00,31.7412,137.412,17.77 +2017-05-22 23:17:00,41.5713,137.382,17.71 +2017-05-22 23:32:00,42.5563,137.185,17.65 +2017-05-22 23:47:00,35.5975,137.137,17.58 +2017-05-23 00:02:00,47.1462,136.912,17.52 +2017-05-23 00:17:00,49.205,136.887,17.46 +2017-05-23 00:32:00,52.4912,136.655,17.41 +2017-05-23 00:47:00,50.4238,136.495,17.37 +2017-05-23 01:02:00,41.6725,136.37,17.34 +2017-05-23 01:17:00,60.3462,136.298,17.31 +2017-05-23 01:32:00,57.9437,136.188,17.27 +2017-05-23 01:47:00,7.27375,136.137,17.24 +2017-05-23 02:02:00,42.405,135.88,17.22 +2017-05-23 02:17:00,46.3112,135.798,17.2 +2017-05-23 02:32:00,31.6912,135.712,17.18 +2017-05-23 02:47:00,42.6462,135.557,17.15 +2017-05-23 03:02:00,40.2612,135.658,17.12 +2017-05-23 03:17:00,35.005,135.442,17.07 +2017-05-23 03:32:00,31.0912,135.287,17.02 +2017-05-23 03:47:00,22.655,135.205,16.97 +2017-05-23 04:02:00,41.62,135.057,16.95 +2017-05-23 04:17:00,21.0413,134.82,16.9 +2017-05-23 04:32:00,39.6762,135.11,16.86 +2017-05-23 04:47:00,31.8375,132.507,16.83 +2017-05-23 05:02:00,46.3662,130.9,16.79 +2017-05-23 05:17:00,29.3838,129.785,16.75 +2017-05-23 05:32:00,37.7588,129.25,16.74 +2017-05-23 05:47:00,47.5837,129.018,16.76 +2017-05-23 06:02:00,36.72,128.885,16.77 +2017-05-23 06:17:00,21.1387,128.812,16.76 +2017-05-23 06:32:00,34.4812,129.005,16.75 +2017-05-23 06:47:00,5.935,129.132,16.74 +2017-05-23 07:02:00,45.9175,129.38,16.76 +2017-05-23 07:17:00,37.165,129.37,16.8 +2017-05-23 07:32:00,20.0675,129.552,16.83 +2017-05-23 07:47:00,58.1937,129.665,16.87 +2017-05-23 08:02:00,47.5825,129.615,16.91 +2017-05-23 08:17:00,54.9238,129.585,16.95 +2017-05-23 08:32:00,52.78,129.548,17.0 +2017-05-23 08:47:00,45.1825,129.442,17.04 +2017-05-23 09:02:00,47.0475,129.082,17.09 +2017-05-23 09:17:00,41.5713,128.67,17.13 +2017-05-23 09:32:00,41.4737,128.087,17.15 +2017-05-23 09:47:00,52.19,127.63,17.2 +2017-05-23 10:02:00,47.685,127.05,17.28 +2017-05-23 10:17:00,50.8562,126.43,17.29 +2017-05-23 10:32:00,50.9125,125.845,17.36 +2017-05-23 10:47:00,55.9975,125.19,17.43 +2017-05-23 11:02:00,37.0675,124.58,17.5 +2017-05-23 11:17:00,51.6525,123.87,17.57 +2017-05-23 11:32:00,48.2275,123.515,17.58 +2017-05-23 11:47:00,55.2612,122.97,17.66 +2017-05-23 12:02:00,42.6488,125.167,17.65 +2017-05-23 12:17:00,57.0925,123.625,17.66 +2017-05-23 12:32:00,56.6937,121.825,17.76 +2017-05-23 12:47:00,47.6338,120.612,17.79 +2017-05-23 13:02:00,52.2387,119.647,17.83 +2017-05-23 13:17:00,46.8475,118.962,17.92 +2017-05-23 13:32:00,50.2288,118.542,17.98 +2017-05-23 13:47:00,44.1362,118.397,18.0 +2017-05-23 14:02:00,40.5925,118.217,17.99 +2017-05-23 14:17:00,45.2875,118.345,17.98 +2017-05-23 14:32:00,33.12,118.52,17.98 +2017-05-23 14:47:00,51.1087,118.737,17.98 +2017-05-23 15:02:00,36.4737,119.005,17.98 +2017-05-23 15:17:00,49.005,119.175,17.98 +2017-05-23 15:32:00,53.9562,119.597,18.0 +2017-05-23 15:47:00,50.2825,119.822,18.02 +2017-05-23 16:02:00,60.3012,120.315,18.06 +2017-05-23 16:17:00,41.2275,120.51,18.12 +2017-05-23 16:32:00,51.4975,120.867,18.17 +2017-05-23 16:47:00,43.8438,121.235,18.21 +2017-05-23 17:02:00,39.9725,121.577,18.27 +2017-05-23 17:17:00,57.0412,121.867,18.34 +2017-05-23 17:32:00,52.39,122.167,18.4 +2017-05-23 17:47:00,38.6975,122.412,18.46 +2017-05-23 18:02:00,37.0687,122.777,18.51 +2017-05-23 18:17:00,40.7913,123.052,18.58 +2017-05-23 18:32:00,42.1087,123.205,18.63 +2017-05-23 18:47:00,38.5013,123.612,18.66 +2017-05-23 19:02:00,48.1775,123.81,18.67 +2017-05-23 19:17:00,-0.135002,124.325,18.68 +2017-05-23 19:32:00,54.6725,124.015,18.68 +2017-05-23 19:47:00,55.2113,124.237,18.67 +2017-05-23 20:02:00,-0.133751,124.58,18.65 +2017-05-23 20:17:00,73.9037,124.67,18.64 +2017-05-23 20:32:00,-0.133751,124.612,18.61 +2017-05-23 20:47:00,22.1725,124.645,18.58 +2017-05-23 21:02:00,35.3538,124.837,18.54 +2017-05-23 21:17:00,52.3387,125.025,18.51 +2017-05-23 21:32:00,42.5537,125.03,18.46 +2017-05-23 21:47:00,39.4887,124.575,18.39 +2017-05-23 22:02:00,45.82,124.965,18.36 +2017-05-23 22:17:00,34.7237,125.262,18.35 +2017-05-23 22:32:00,29.9238,125.283,18.32 +2017-05-23 22:47:00,59.9475,125.505,18.28 +2017-05-23 23:02:00,51.6062,125.667,18.24 +2017-05-23 23:17:00,57.7912,125.7,18.21 +2017-05-23 23:32:00,58.0938,125.78,18.18 +2017-05-23 23:47:00,41.82,126.188,18.14 +2017-05-24 00:02:00,34.4287,126.17,18.11 +2017-05-24 00:17:00,48.0362,126.29,18.06 +2017-05-24 00:32:00,43.9912,126.345,18.01 +2017-05-24 00:47:00,48.5262,126.255,17.96 +2017-05-24 01:02:00,32.9225,126.215,17.9 +2017-05-24 01:17:00,22.6062,126.33,17.85 +2017-05-24 01:32:00,46.1188,126.442,17.78 +2017-05-24 01:47:00,36.625,126.512,17.73 +2017-05-24 02:02:00,49.055,126.462,17.67 +2017-05-24 02:17:00,45.1387,126.362,17.62 +2017-05-24 02:32:00,55.7087,126.447,17.55 +2017-05-24 02:47:00,47.2875,126.525,17.49 +2017-05-24 03:02:00,51.6025,126.36,17.43 +2017-05-24 03:17:00,25.06,126.287,17.36 +2017-05-24 03:32:00,42.1062,126.295,17.28 +2017-05-24 03:47:00,66.0287,126.327,17.23 +2017-05-24 04:02:00,34.9637,126.28,17.18 +2017-05-24 04:17:00,64.1413,126.085,17.12 +2017-05-24 04:32:00,31.8425,126.04,17.06 +2017-05-24 04:47:00,63.29,126.027,17.0 +2017-05-24 05:02:00,32.3887,126.125,16.96 +2017-05-24 05:17:00,-0.135002,126.052,16.92 +2017-05-24 05:32:00,50.5112,126.07,16.9 +2017-05-24 05:47:00,55.41,126.132,16.88 +2017-05-24 06:02:00,-0.133751,126.173,16.9 +2017-05-24 06:17:00,34.1375,126.205,16.9 +2017-05-24 06:32:00,42.0112,125.775,16.89 +2017-05-24 06:47:00,41.575,126.115,16.87 +2017-05-24 07:02:00,57.5875,126.19,16.88 +2017-05-24 07:17:00,46.7462,128.107,16.88 +2017-05-24 07:32:00,51.1575,127.465,16.89 +2017-05-24 07:47:00,45.9675,127.137,16.94 +2017-05-24 08:02:00,43.04,126.63,16.91 +2017-05-24 08:17:00,54.7787,126.24,16.9 +2017-05-24 08:32:00,46.5587,125.862,16.93 +2017-05-24 08:47:00,47.4812,125.84,16.95 +2017-05-24 09:02:00,42.305,124.787,17.04 +2017-05-24 09:17:00,49.3012,125.175,17.02 +2017-05-24 09:32:00,54.295,125.268,17.02 +2017-05-24 09:47:00,42.5525,125.327,17.06 +2017-05-24 10:02:00,55.3562,125.162,17.11 +2017-05-24 10:17:00,48.1762,125.31,17.16 +2017-05-24 10:32:00,41.7663,125.612,17.17 +2017-05-24 10:47:00,38.7387,126.112,17.12 +2017-05-24 11:02:00,42.84,125.947,17.15 +2017-05-24 11:17:00,31.6937,125.912,17.21 +2017-05-24 11:32:00,43.1813,125.942,17.18 +2017-05-24 11:47:00,38.8375,125.93,17.16 +2017-05-24 12:02:00,44.9062,126.128,17.21 +2017-05-24 12:17:00,47.8862,126.312,17.19 +2017-05-24 12:32:00,53.1212,126.245,17.17 +2017-05-24 12:47:00,49.5512,126.253,17.15 +2017-05-24 13:02:00,49.5462,126.082,17.22 +2017-05-24 13:17:00,37.3525,126.307,17.2 +2017-05-24 13:32:00,45.6775,126.065,17.17 +2017-05-24 13:47:00,44.4212,125.98,17.12 +2017-05-24 14:02:00,44.8562,125.945,17.1 +2017-05-24 14:17:00,49.8913,126.147,17.09 +2017-05-24 14:32:00,46.1663,126.107,17.08 +2017-05-24 14:47:00,52.2875,126.042,17.14 +2017-05-24 15:02:00,41.865,126.092,17.18 +2017-05-24 15:17:00,43.1813,126.355,17.2 +2017-05-24 15:32:00,36.8688,126.487,17.19 +2017-05-24 15:47:00,49.105,126.415,17.19 +2017-05-24 16:02:00,43.6012,126.035,17.18 +2017-05-24 16:17:00,36.5187,125.98,17.19 +2017-05-24 16:32:00,42.645,126.037,17.2 +2017-05-24 16:47:00,31.94,126.092,17.22 +2017-05-24 17:02:00,43.6975,126.048,17.23 +2017-05-24 17:17:00,51.35,126.065,17.2 +2017-05-24 17:32:00,37.7562,126.003,17.22 +2017-05-24 17:47:00,52.5863,125.997,17.22 +2017-05-24 18:02:00,43.505,125.995,17.23 +2017-05-24 18:17:00,45.63,126.0,17.24 +2017-05-24 18:32:00,39.6775,125.885,17.24 +2017-05-24 18:47:00,41.9587,125.735,17.24 +2017-05-24 19:02:00,44.5163,125.692,17.23 +2017-05-24 19:17:00,51.3012,125.745,17.22 +2017-05-24 19:32:00,55.9487,125.777,17.21 +2017-05-24 19:47:00,56.2462,125.717,17.18 +2017-05-24 20:02:00,49.0062,125.85,17.15 +2017-05-24 20:17:00,56.1925,125.75,17.11 +2017-05-24 20:32:00,39.435,125.712,17.08 +2017-05-24 20:47:00,58.7775,125.645,17.04 +2017-05-24 21:02:00,50.7025,125.59,17.01 +2017-05-24 21:17:00,43.2262,125.482,16.98 +2017-05-24 21:32:00,47.5312,125.438,16.96 +2017-05-24 21:47:00,56.1875,125.44,16.94 +2017-05-24 22:02:00,46.7525,125.555,16.91 +2017-05-24 22:17:00,51.6,125.602,16.88 +2017-05-24 22:32:00,44.3175,125.445,16.85 +2017-05-24 22:47:00,47.2887,125.622,16.82 +2017-05-24 23:02:00,44.4187,125.535,16.79 +2017-05-24 23:17:00,42.1562,125.585,16.77 +2017-05-24 23:32:00,42.5525,125.512,16.75 +2017-05-24 23:47:00,47.3363,125.4,16.72 +2017-05-25 00:02:00,41.525,125.402,16.7 +2017-05-25 00:17:00,55.6037,125.34,16.68 +2017-05-25 00:32:00,51.7525,125.42,16.65 +2017-05-25 00:47:00,54.4775,125.457,16.62 +2017-05-25 01:02:00,57.0962,125.438,16.61 +2017-05-25 01:17:00,55.4075,125.46,16.58 +2017-05-25 01:32:00,47.0437,125.395,16.56 +2017-05-25 01:47:00,41.1738,125.402,16.52 +2017-05-25 02:02:00,50.61,125.44,16.49 +2017-05-25 02:17:00,49.6,125.242,16.46 +2017-05-25 02:32:00,41.2262,125.137,16.42 +2017-05-25 02:47:00,40.2612,125.035,16.39 +2017-05-25 03:02:00,41.8175,124.917,16.36 +2017-05-25 03:17:00,52.4875,125.132,16.32 +2017-05-25 03:32:00,48.2225,125.05,16.27 +2017-05-25 03:47:00,43.0825,124.967,16.21 +2017-05-25 04:02:00,37.905,125.012,16.15 +2017-05-25 04:17:00,45.2288,124.9,16.11 +2017-05-25 04:32:00,47.9812,124.99,16.07 +2017-05-25 04:47:00,58.14,124.755,16.05 +2017-05-25 05:02:00,46.9437,124.662,16.04 +2017-05-25 05:17:00,42.0612,124.66,16.04 +2017-05-25 05:32:00,51.2513,124.347,16.02 +2017-05-25 05:47:00,54.575,124.52,16.02 +2017-05-25 06:02:00,48.67,124.562,15.99 +2017-05-25 06:17:00,54.2937,124.298,16.0 +2017-05-25 06:32:00,56.7425,124.285,16.0 +2017-05-25 06:47:00,49.6462,124.19,16.0 +2017-05-25 07:02:00,46.9487,124.287,16.03 +2017-05-25 07:17:00,56.2925,124.152,16.09 +2017-05-25 07:32:00,43.32,124.19,16.1 +2017-05-25 07:47:00,45.48,124.052,16.11 +2017-05-25 08:02:00,46.0662,123.96,16.16 +2017-05-25 08:17:00,45.965,124.07,16.22 +2017-05-25 08:32:00,38.4975,123.655,16.23 +2017-05-25 08:47:00,50.7625,124.04,16.21 +2017-05-25 09:02:00,56.5462,123.685,16.2 +2017-05-25 09:17:00,51.7988,124.115,16.2 +2017-05-25 09:32:00,46.7975,123.822,16.2 +2017-05-25 09:47:00,57.84,123.557,16.21 +2017-05-25 10:02:00,55.5075,123.597,16.21 +2017-05-25 10:17:00,51.6512,123.652,16.24 +2017-05-25 10:32:00,48.8613,123.555,16.23 +2017-05-25 10:47:00,53.705,123.518,16.23 +2017-05-25 11:02:00,51.155,123.402,16.21 +2017-05-25 11:17:00,59.4075,123.643,16.23 +2017-05-25 11:32:00,54.0088,123.65,16.22 +2017-05-25 11:47:00,51.6525,123.777,16.22 +2017-05-25 12:02:00,39.5788,123.227,16.23 +2017-05-25 12:17:00,49.3063,123.692,16.27 +2017-05-25 12:32:00,57.3937,123.552,16.31 +2017-05-25 12:47:00,48.8625,123.32,16.4 +2017-05-25 13:02:00,60.6875,123.275,16.44 +2017-05-25 13:17:00,50.9562,123.5,16.5 +2017-05-25 13:32:00,54.0512,123.477,16.54 +2017-05-25 13:47:00,60.7363,123.54,16.6 +2017-05-25 14:02:00,31.2962,123.442,16.63 +2017-05-25 14:17:00,38.2513,123.28,16.63 +2017-05-25 14:32:00,49.7425,123.482,16.66 +2017-05-25 14:47:00,50.5612,123.167,16.71 +2017-05-25 15:02:00,41.035,123.23,16.69 +2017-05-25 15:17:00,55.0662,123.277,16.7 +2017-05-25 15:32:00,54.975,123.542,16.69 +2017-05-25 15:47:00,34.0437,123.52,16.7 +2017-05-25 16:02:00,48.0312,123.298,16.71 +2017-05-25 16:17:00,44.9975,123.11,16.73 +2017-05-25 16:32:00,44.42,123.155,16.74 +2017-05-25 16:47:00,40.7887,123.05,16.74 +2017-05-25 17:02:00,34.48,123.26,16.73 +2017-05-25 17:17:00,49.6475,122.895,16.75 +2017-05-25 17:32:00,46.215,123.022,16.78 +2017-05-25 17:47:00,24.0088,122.777,16.79 +2017-05-25 18:02:00,28.65,122.967,16.8 +2017-05-25 18:17:00,46.4587,122.885,16.81 +2017-05-25 18:32:00,41.4225,122.938,16.79 +2017-05-25 18:47:00,50.42,122.855,16.78 +2017-05-25 19:02:00,45.185,122.91,16.79 +2017-05-25 19:17:00,54.4812,122.785,16.8 +2017-05-25 19:32:00,47.34,122.712,16.82 +2017-05-25 19:47:00,40.1675,122.697,16.84 +2017-05-25 20:02:00,47.8387,122.655,16.86 +2017-05-25 20:17:00,45.7237,122.645,16.89 +2017-05-25 20:32:00,42.21,122.61,16.91 +2017-05-25 20:47:00,40.3063,122.772,16.95 +2017-05-25 21:02:00,61.6488,122.798,16.97 +2017-05-25 21:17:00,38.5475,122.632,16.98 +2017-05-25 21:32:00,24.8538,122.548,16.97 +2017-05-25 21:47:00,36.6663,122.457,16.96 +2017-05-25 22:02:00,45.92,122.292,16.93 +2017-05-25 22:17:00,47.6875,122.325,16.9 +2017-05-25 22:32:00,52.4388,122.265,16.85 +2017-05-25 22:47:00,60.4425,122.29,16.81 +2017-05-25 23:02:00,50.56,122.285,16.76 +2017-05-25 23:17:00,53.7113,122.283,16.72 +2017-05-25 23:32:00,56.1912,122.35,16.67 +2017-05-25 23:47:00,48.6712,122.285,16.63 +2017-05-26 00:02:00,60.05,122.295,16.57 +2017-05-26 00:17:00,51.995,122.165,16.52 +2017-05-26 00:32:00,37.605,122.085,16.47 +2017-05-26 00:47:00,60.6837,122.217,16.42 +2017-05-26 01:02:00,46.215,121.977,16.39 +2017-05-26 01:17:00,46.9962,121.945,16.34 +2017-05-26 01:32:00,43.5525,121.965,16.29 +2017-05-26 01:47:00,51.4487,122.09,16.23 +2017-05-26 02:02:00,36.87,122.005,16.19 +2017-05-26 02:17:00,48.1762,122.045,16.18 +2017-05-26 02:32:00,49.6925,122.087,16.16 +2017-05-26 02:47:00,52.8725,122.035,16.15 +2017-05-26 03:02:00,44.4212,121.952,16.13 +2017-05-26 03:17:00,44.995,121.79,16.11 +2017-05-26 03:32:00,51.7038,121.798,16.11 +2017-05-26 03:47:00,60.1475,121.927,16.09 +2017-05-26 04:02:00,52.2375,121.947,16.09 +2017-05-26 04:17:00,41.5737,121.975,16.08 +2017-05-26 04:32:00,59.165,122.04,16.07 +2017-05-26 04:47:00,53.4225,122.107,16.05 +2017-05-26 05:02:00,54.0537,121.923,16.05 +2017-05-26 05:17:00,45.2837,122.037,16.05 +2017-05-26 05:32:00,43.1287,121.835,16.06 +2017-05-26 05:47:00,56.8913,122.01,16.07 +2017-05-26 06:02:00,33.95,121.97,16.06 +2017-05-26 06:17:00,25.3,121.74,16.05 +2017-05-26 06:32:00,20.8425,121.862,16.04 +2017-05-26 06:47:00,31.0912,121.827,16.01 +2017-05-26 07:02:00,-0.139999,121.872,15.96 +2017-05-26 07:17:00,56.8862,121.755,15.94 +2017-05-26 07:32:00,44.1325,122.048,15.92 +2017-05-26 07:47:00,23.375,121.697,15.93 +2017-05-26 08:02:00,57.3425,121.745,15.98 +2017-05-26 08:17:00,51.2537,121.857,16.03 +2017-05-26 08:32:00,34.5737,121.8,16.08 +2017-05-26 08:47:00,65.4375,121.872,16.13 +2017-05-26 09:02:00,54.15,121.82,16.19 +2017-05-26 09:17:00,54.1437,121.912,16.27 +2017-05-26 09:32:00,46.8937,121.89,16.32 +2017-05-26 09:47:00,61.9025,121.925,16.39 +2017-05-26 10:02:00,58.1912,122.097,16.45 +2017-05-26 10:17:00,57.5375,122.065,16.51 +2017-05-26 10:32:00,51.01,121.95,16.59 +2017-05-26 10:47:00,49.1062,122.115,16.68 +2017-05-26 11:02:00,54.2925,121.745,16.76 +2017-05-26 11:17:00,50.8587,121.8,16.83 +2017-05-26 11:32:00,47.9812,121.58,16.9 +2017-05-26 11:47:00,42.8862,121.55,16.97 +2017-05-26 12:02:00,43.3688,121.635,17.05 +2017-05-26 12:17:00,67.2575,121.692,17.11 +2017-05-26 12:32:00,57.1925,121.59,17.17 +2017-05-26 12:47:00,64.5537,121.835,17.18 +2017-05-26 13:02:00,55.7562,121.637,17.25 +2017-05-26 13:17:00,45.0037,121.837,17.36 +2017-05-26 13:32:00,44.6637,121.59,17.45 +2017-05-26 13:47:00,52.2862,121.25,17.5 +2017-05-26 14:02:00,32.7188,121.175,17.57 +2017-05-26 14:17:00,36.7675,121.025,17.62 +2017-05-26 14:32:00,59.4075,120.867,17.69 +2017-05-26 14:47:00,59.21,120.58,17.73 +2017-05-26 15:02:00,62.1062,120.595,17.76 +2017-05-26 15:17:00,48.62,120.215,17.79 +2017-05-26 15:32:00,73.8112,119.905,17.82 +2017-05-26 15:47:00,42.745,119.63,17.86 +2017-05-26 16:02:00,55.945,119.075,17.91 +2017-05-26 16:17:00,56.4437,118.747,17.97 +2017-05-26 16:32:00,65.345,118.352,18.01 +2017-05-26 16:47:00,58.335,118.122,18.05 +2017-05-26 17:02:00,6.42875,117.82,18.09 +2017-05-26 17:17:00,49.0512,117.47,18.12 +2017-05-26 17:32:00,75.565,117.417,18.15 +2017-05-26 17:47:00,46.5575,117.46,18.17 +2017-05-26 18:02:00,22.455,117.12,18.18 +2017-05-26 18:17:00,62.0525,117.007,18.2 +2017-05-26 18:32:00,43.1287,116.885,18.22 +2017-05-26 18:47:00,71.7663,116.64,18.25 +2017-05-26 19:02:00,30.9475,116.582,18.27 +2017-05-26 19:17:00,-0.13625,116.487,18.29 +2017-05-26 19:32:00,60.9812,116.423,18.31 +2017-05-26 19:47:00,56.985,116.512,18.34 +2017-05-26 20:02:00,54.9712,116.485,18.37 +2017-05-26 20:17:00,57.4875,116.51,18.37 +2017-05-26 20:32:00,56.8363,116.66,18.38 +2017-05-26 20:47:00,63.5938,116.645,18.39 +2017-05-26 21:02:00,49.2012,116.685,18.39 +2017-05-26 21:17:00,48.0312,116.632,18.4 +2017-05-26 21:32:00,49.1,116.732,18.41 +2017-05-26 21:47:00,54.385,116.75,18.41 +2017-05-26 22:02:00,58.1425,116.792,18.43 +2017-05-26 22:17:00,62.2,116.902,18.44 +2017-05-26 22:32:00,64.55,116.923,18.45 +2017-05-26 22:47:00,50.8087,117.145,18.44 +2017-05-26 23:02:00,45.285,117.25,18.45 +2017-05-26 23:17:00,62.0525,117.337,18.44 +2017-05-26 23:32:00,50.515,117.438,18.43 +2017-05-26 23:47:00,47.1475,117.43,18.41 +2017-05-27 00:02:00,62.1975,117.48,18.4 +2017-05-27 00:17:00,41.2275,117.522,18.37 +2017-05-27 00:32:00,63.49,117.597,18.33 +2017-05-27 00:47:00,51.5537,117.645,18.27 +2017-05-27 01:02:00,56.4463,117.72,18.22 +2017-05-27 01:17:00,57.7875,117.815,18.17 +2017-05-27 01:32:00,68.51,117.992,18.12 +2017-05-27 01:47:00,58.1413,118.147,18.07 +2017-05-27 02:02:00,52.5362,118.155,18.0 +2017-05-27 02:17:00,59.46,118.165,17.94 +2017-05-27 02:30:58,33.9975,118.302,17.9 +2017-05-27 02:47:00,53.3213,118.35,17.86 +2017-05-27 03:02:00,60.3012,118.3,17.82 +2017-05-27 03:17:00,56.9425,118.397,17.79 +2017-05-27 03:32:00,56.0488,118.503,17.77 +2017-05-27 03:47:00,57.5887,118.555,17.75 +2017-05-27 04:02:00,55.0737,118.73,17.74 +2017-05-27 04:17:00,50.0887,118.755,17.74 +2017-05-27 04:32:00,65.6375,118.832,17.72 +2017-05-27 04:47:00,65.64,118.908,17.73 +2017-05-27 05:02:00,76.4388,118.845,17.74 +2017-05-27 05:17:00,59.81,118.832,17.77 +2017-05-27 05:32:00,50.66,118.893,17.81 +2017-05-27 05:47:00,30.7025,118.91,17.83 +2017-05-27 06:02:00,69.2575,118.97,17.86 +2017-05-27 06:17:00,73.3138,119.085,17.89 +2017-05-27 06:32:00,38.5475,119.182,17.92 +2017-05-27 06:47:00,28.41,119.12,17.94 +2017-05-27 07:02:00,25.6413,119.217,17.96 +2017-05-27 07:17:00,-0.130001,119.212,17.99 +2017-05-27 07:32:00,79.8775,119.265,17.99 +2017-05-27 07:47:00,57.8375,119.357,18.02 +2017-05-27 08:02:00,65.9325,119.43,18.06 +2017-05-27 08:17:00,-0.133751,119.355,18.11 +2017-05-27 08:32:00,66.1263,119.552,18.16 +2017-05-27 08:47:00,71.1675,119.575,18.19 +2017-05-27 09:02:00,-0.133751,119.423,18.25 +2017-05-27 09:17:00,48.9087,119.78,18.29 +2017-05-27 09:32:00,78.1175,119.48,18.35 +2017-05-27 09:47:00,50.4212,119.725,18.36 +2017-05-27 10:02:00,-0.13625,119.812,18.4 +2017-05-27 10:17:00,68.8063,119.567,18.45 +2017-05-27 10:32:00,69.8462,119.585,18.47 +2017-05-27 10:47:00,9.40875,119.595,18.52 +2017-05-27 11:02:00,69.0112,119.617,18.61 +2017-05-27 11:17:00,39.1362,119.57,18.63 +2017-05-27 11:32:00,16.6775,119.6,18.68 +2017-05-27 11:47:00,43.3237,119.518,18.74 +2017-05-27 12:02:00,-0.1325,119.842,18.77 +2017-05-27 12:17:00,64.7025,119.54,18.82 +2017-05-27 12:32:00,63.745,119.832,18.88 +2017-05-27 12:47:00,70.9262,119.677,18.95 +2017-05-27 13:02:00,61.51,119.945,18.97 +2017-05-27 13:17:00,60.145,119.45,19.02 +2017-05-27 13:32:00,68.965,119.53,19.04 +2017-05-27 13:47:00,64.2975,119.755,19.1 +2017-05-27 14:02:00,48.77,119.533,19.15 +2017-05-27 14:17:00,62.345,119.522,19.2 +2017-05-27 14:32:00,49.8425,119.732,19.23 +2017-05-27 14:47:00,44.4712,119.762,19.28 +2017-05-27 15:02:00,67.1087,119.54,19.32 +2017-05-27 15:17:00,54.4787,119.512,19.35 +2017-05-27 15:32:00,65.35,119.522,19.39 +2017-05-27 15:47:00,60.2975,119.548,19.41 +2017-05-27 16:02:00,28.9062,119.455,19.44 +2017-05-27 16:17:00,66.77,119.253,19.47 +2017-05-27 16:32:00,63.5912,119.232,19.49 +2017-05-27 16:47:00,66.0325,119.197,19.54 +2017-05-27 17:02:00,5.55125,119.022,19.57 +2017-05-27 17:17:00,54.9737,118.985,19.58 +2017-05-27 17:32:00,60.2513,118.997,19.59 +2017-05-27 17:47:00,53.0713,118.975,19.61 +2017-05-27 18:02:00,49.1512,118.837,19.62 +2017-05-27 18:17:00,60.3487,118.827,19.63 +2017-05-27 18:32:00,57.4475,118.675,19.65 +2017-05-27 18:47:00,27.1562,118.612,19.67 +2017-05-27 19:02:00,60.3475,118.572,19.7 +2017-05-27 19:17:00,46.8487,118.408,19.73 +2017-05-27 19:32:00,57.8937,118.37,19.75 +2017-05-27 19:47:00,60.2025,118.335,19.78 +2017-05-27 20:02:00,59.9538,118.33,19.81 +2017-05-27 20:17:00,54.8262,118.378,19.83 +2017-05-27 20:32:00,71.5175,118.367,19.85 +2017-05-27 20:47:00,53.5175,118.295,19.87 +2017-05-27 21:02:00,45.29,118.28,19.88 +2017-05-27 21:17:00,61.46,118.272,19.91 +2017-05-27 21:32:00,45.535,118.092,19.93 +2017-05-27 21:47:00,57.94,118.167,19.95 +2017-05-27 22:02:00,59.26,118.107,19.96 +2017-05-27 22:17:00,53.07,118.125,19.97 +2017-05-27 22:32:00,59.6113,118.215,19.97 +2017-05-27 22:47:00,50.1375,118.182,19.96 +2017-05-27 23:02:00,50.855,118.242,19.94 +2017-05-27 23:17:00,58.5825,118.27,19.91 +2017-05-27 23:32:00,54.0037,118.15,19.88 +2017-05-27 23:47:00,41.2762,118.132,19.85 +2017-05-28 00:02:00,50.3312,118.128,19.82 +2017-05-28 00:17:00,49.1025,118.115,19.78 +2017-05-28 00:32:00,58.4287,118.052,19.73 +2017-05-28 00:47:00,46.4137,118.158,19.68 +2017-05-28 01:02:00,47.8375,118.057,19.63 +2017-05-28 01:17:00,74.0525,118.095,19.56 +2017-05-28 01:32:00,57.35,118.14,19.5 +2017-05-28 01:47:00,49.405,118.165,19.45 +2017-05-28 02:02:00,64.1475,118.235,19.4 +2017-05-28 02:17:00,62.55,118.125,19.32 +2017-05-28 02:32:00,65.49,118.19,19.26 +2017-05-28 02:47:00,47.0025,118.13,19.22 +2017-05-28 03:02:00,55.7575,118.1,19.17 +2017-05-28 03:17:00,46.85,118.212,19.14 +2017-05-28 03:32:00,56.6937,118.26,19.12 +2017-05-28 03:47:00,50.3375,118.4,19.09 +2017-05-28 04:02:00,60.8325,118.452,19.08 +2017-05-28 04:17:00,60.8312,118.6,19.06 +2017-05-28 04:32:00,56.94,118.567,19.05 +2017-05-28 04:47:00,65.6325,118.692,19.05 +2017-05-28 05:02:00,53.475,118.675,19.04 +2017-05-28 05:17:00,65.7912,118.712,19.05 +2017-05-28 05:32:00,65.7875,118.725,19.06 +2017-05-28 05:47:00,42.9925,118.772,19.08 +2017-05-28 06:02:00,54.8712,118.88,19.11 +2017-05-28 06:17:00,55.5088,118.862,19.13 +2017-05-28 06:32:00,54.0062,119.01,19.17 +2017-05-28 06:47:00,49.9437,118.99,19.2 +2017-05-28 07:02:00,40.7913,119.158,19.24 +2017-05-28 07:17:00,50.9587,119.158,19.28 +2017-05-28 07:32:00,54.0563,119.075,19.31 +2017-05-28 07:47:00,62.6012,119.335,19.35 +2017-05-28 08:02:00,61.9538,119.158,19.43 +2017-05-28 08:17:00,54.3,119.305,19.49 +2017-05-28 08:32:00,62.8475,119.327,19.56 +2017-05-28 08:47:00,63.0875,119.21,19.62 +2017-05-28 09:02:00,59.9012,119.262,19.69 +2017-05-28 09:17:00,62.3988,119.408,19.68 +2017-05-28 09:32:00,57.445,119.35,19.73 +2017-05-28 09:47:00,31.9437,119.375,19.8 +2017-05-28 10:02:00,58.4812,119.485,19.84 +2017-05-28 10:17:00,52.3412,119.362,19.91 +2017-05-28 10:32:00,50.8587,119.415,19.87 +2017-05-28 10:47:00,45.8675,119.525,19.87 +2017-05-28 11:02:00,47.0938,119.202,19.94 +2017-05-28 11:17:00,54.1025,119.335,19.96 +2017-05-28 11:32:00,44.6113,119.495,20.02 +2017-05-28 11:47:00,62.4,119.217,20.09 +2017-05-28 12:02:00,57.3425,119.277,20.16 +2017-05-28 12:17:00,49.7925,119.415,20.23 +2017-05-28 12:32:00,63.2875,119.372,20.21 +2017-05-28 12:47:00,70.9762,119.38,20.21 +2017-05-28 13:02:00,54.3425,119.497,20.28 +2017-05-28 13:17:00,57.0437,119.39,20.35 +2017-05-28 13:32:00,48.1888,119.42,20.42 +2017-05-28 13:47:00,61.6037,119.535,20.5 +2017-05-28 14:02:00,42.8913,119.382,20.49 +2017-05-28 14:17:00,58.14,119.438,20.47 +2017-05-28 14:32:00,55.465,119.402,20.49 +2017-05-28 14:47:00,62.3475,119.32,20.49 +2017-05-28 15:02:00,51.0587,119.305,20.49 +2017-05-28 15:17:00,47.585,119.385,20.54 +2017-05-28 15:32:00,51.3512,119.315,20.6 +2017-05-28 15:47:00,57.445,119.24,20.65 +2017-05-28 16:02:00,34.7213,119.197,20.73 +2017-05-28 16:17:00,58.7325,119.262,20.77 +2017-05-28 16:32:00,40.1162,119.21,20.78 +2017-05-28 16:47:00,54.25,119.097,20.82 +2017-05-28 17:02:00,55.51,119.185,20.86 +2017-05-28 17:17:00,53.0238,119.17,20.91 +2017-05-28 17:32:00,70.5887,119.13,20.96 +2017-05-28 17:47:00,-0.131252,119.272,20.99 +2017-05-28 18:02:00,74.4475,119.15,21.02 +2017-05-28 18:17:00,81.0188,119.217,21.05 +2017-05-28 18:32:00,59.115,119.17,21.07 +2017-05-28 18:47:00,59.5612,119.162,21.08 +2017-05-28 19:02:00,54.5825,119.145,21.1 +2017-05-28 19:17:00,60.8812,119.192,21.11 +2017-05-28 19:32:00,59.03,119.192,21.13 +2017-05-28 19:47:00,54.4325,119.135,21.16 +2017-05-28 20:02:00,56.0475,119.102,21.18 +2017-05-28 20:17:00,61.0312,119.147,21.18 +2017-05-28 20:32:00,61.605,119.335,21.19 +2017-05-28 20:47:00,60.9287,119.227,21.21 +2017-05-28 21:02:00,60.64,119.268,21.22 +2017-05-28 21:17:00,53.66,119.22,21.23 +2017-05-28 21:32:00,57.7375,119.145,21.25 +2017-05-28 21:47:00,51.755,119.175,21.26 +2017-05-28 22:02:00,55.6625,119.092,21.26 +2017-05-28 22:17:00,50.7637,119.143,21.26 +2017-05-28 22:32:00,54.5812,119.105,21.25 +2017-05-28 22:47:00,62.75,119.192,21.23 +2017-05-28 23:02:00,51.4538,119.202,21.2 +2017-05-28 23:17:00,52.39,119.237,21.16 +2017-05-28 23:32:00,59.6637,119.292,21.13 +2017-05-28 23:47:00,56.1,119.23,21.09 +2017-05-29 00:02:00,51.7075,119.16,21.03 +2017-05-29 00:17:00,57.045,119.207,20.97 +2017-05-29 00:32:00,51.5037,119.162,20.93 +2017-05-29 00:47:00,49.6937,119.197,20.9 +2017-05-29 01:02:00,53.9575,119.23,20.87 +2017-05-29 01:17:00,47.1,119.265,20.86 +2017-05-29 01:32:00,53.9613,119.283,20.84 +2017-05-29 01:47:00,58.88,119.265,20.82 +2017-05-29 02:02:00,56.0488,119.298,20.81 +2017-05-29 02:17:00,60.2038,119.372,20.78 +2017-05-29 02:32:00,57.0975,119.322,20.76 +2017-05-29 02:47:00,57.4425,119.372,20.74 +2017-05-29 03:02:00,55.0713,119.317,20.72 +2017-05-29 03:17:00,56.8937,119.317,20.71 +2017-05-29 03:32:00,43.4613,119.29,20.7 +2017-05-29 03:47:00,63.2912,119.378,20.7 +2017-05-29 04:02:00,62.2025,119.417,20.7 +2017-05-29 04:17:00,64.9037,119.435,20.69 +2017-05-29 04:32:00,58.9775,119.482,20.69 +2017-05-29 04:47:00,57.8438,119.423,20.68 +2017-05-29 05:02:00,46.8512,119.49,20.68 +2017-05-29 05:17:00,51.3037,119.505,20.68 +2017-05-29 05:32:00,56.94,119.435,20.68 +2017-05-29 05:47:00,65.255,119.41,20.67 +2017-05-29 06:02:00,61.6062,124.21,20.7 +2017-05-29 06:17:00,62.5987,120.557,20.7 +2017-05-29 06:32:00,54.2925,116.987,20.72 +2017-05-29 06:47:00,59.2637,114.197,20.75 +2017-05-29 07:02:00,45.3913,112.2,20.75 +2017-05-29 07:17:00,54.155,110.755,20.69 +2017-05-29 07:32:00,59.1625,112.375,20.67 +2017-05-29 07:47:00,64.1987,118.705,20.9 +2017-05-29 08:02:00,51.7062,118.5,21.06 +2017-05-29 08:17:00,41.3775,115.885,21.08 +2017-05-29 08:32:00,53.0238,113.695,20.98 +2017-05-29 08:47:00,24.91,112.2,20.88 +2017-05-29 09:02:00,47.985,111.227,20.83 +2017-05-29 09:17:00,69.0587,110.38,20.89 +2017-05-29 09:32:00,55.2162,109.717,21.05 +2017-05-29 09:47:00,61.955,109.307,21.21 +2017-05-29 10:02:00,63.2412,109.033,21.33 +2017-05-29 10:17:00,55.465,109.097,21.45 +2017-05-29 10:32:00,53.2775,109.302,21.51 +2017-05-29 10:47:00,54.3887,109.587,21.53 +2017-05-29 11:02:00,79.73,109.85,21.58 +2017-05-29 11:17:00,86.8187,110.222,21.61 +2017-05-29 11:32:00,48.6225,110.712,21.66 +2017-05-29 11:47:00,45.1888,111.102,21.71 +2017-05-29 12:02:00,70.3925,111.525,21.76 +2017-05-29 12:17:00,50.4212,111.725,21.81 +2017-05-29 12:32:00,59.4087,112.105,21.83 +2017-05-29 12:47:00,79.5425,112.545,21.87 +2017-05-29 13:02:00,54.2962,113.188,21.89 +2017-05-29 13:17:00,69.1537,113.477,21.91 +2017-05-29 13:32:00,14.2475,113.855,21.95 +2017-05-29 13:47:00,-0.127502,114.24,21.95 +2017-05-29 14:02:00,62.1963,114.45,21.97 +2017-05-29 14:17:00,-0.130001,114.805,22.01 +2017-05-29 14:32:00,55.2175,114.982,22.04 +2017-05-29 14:47:00,-0.130001,115.202,22.09 +2017-05-29 15:02:00,62.0013,115.335,22.12 +2017-05-29 15:17:00,49.745,115.535,22.17 +2017-05-29 15:32:00,80.025,115.912,22.23 +2017-05-29 15:47:00,100.636,116.08,22.28 +2017-05-29 16:02:00,65.44,116.227,22.33 +2017-05-29 16:17:00,75.8012,116.402,22.34 +2017-05-29 16:32:00,27.31,116.84,22.36 +2017-05-29 16:47:00,59.21,117.035,22.34 +2017-05-29 17:02:00,62.6462,117.205,22.31 +2017-05-29 17:17:00,29.2937,117.322,22.3 +2017-05-29 17:32:00,57.5875,117.43,22.32 +2017-05-29 17:47:00,51.5512,117.605,22.34 +2017-05-29 18:02:00,27.365,117.688,22.37 +2017-05-29 18:17:00,40.845,117.81,22.39 +2017-05-29 18:32:00,39.4412,117.982,22.4 +2017-05-29 18:47:00,22.95,118.232,22.4 +2017-05-29 19:02:00,50.38,118.342,22.41 +2017-05-29 19:17:00,62.005,118.445,22.42 +2017-05-29 19:32:00,56.195,118.485,22.43 +2017-05-29 19:47:00,63.445,118.555,22.46 +2017-05-29 20:02:00,57.6937,118.655,22.48 +2017-05-29 20:17:00,57.0938,118.582,22.5 +2017-05-29 20:32:00,50.2375,118.667,22.52 +2017-05-29 20:47:00,56.095,118.737,22.54 +2017-05-29 21:02:00,60.0537,118.815,22.57 +2017-05-29 21:17:00,76.29,118.885,22.56 +2017-05-29 21:32:00,59.1212,119.03,22.57 +2017-05-29 21:47:00,68.7062,119.155,22.59 +2017-05-29 22:02:00,53.1775,119.152,22.58 +2017-05-29 22:17:00,49.845,119.18,22.6 +2017-05-29 22:32:00,31.8937,119.18,22.59 +2017-05-29 22:47:00,52.1437,119.155,22.59 +2017-05-29 23:02:00,65.3525,119.152,22.59 +2017-05-29 23:17:00,43.5112,119.197,22.58 +2017-05-29 23:32:00,60.64,119.237,22.55 +2017-05-29 23:47:00,81.1162,119.342,22.54 +2017-05-30 00:02:00,56.4487,119.438,22.53 +2017-05-30 00:17:00,70.545,119.535,22.51 +2017-05-30 00:32:00,46.1225,119.482,22.49 +2017-05-30 00:47:00,61.1275,119.552,22.47 +2017-05-30 01:02:00,66.2762,119.562,22.43 +2017-05-30 01:17:00,50.2825,119.472,22.39 +2017-05-30 01:32:00,62.3,119.477,22.35 +2017-05-30 01:47:00,67.7575,119.427,22.31 +2017-05-30 02:02:00,57.1437,119.597,22.28 +2017-05-30 02:17:00,65.2525,119.522,22.24 +2017-05-30 02:32:00,55.6587,119.565,22.19 +2017-05-30 02:47:00,49.5088,119.697,22.14 +2017-05-30 03:02:00,49.845,119.673,22.09 +2017-05-30 03:17:00,56.9412,119.73,22.04 +2017-05-30 03:32:00,70.1012,119.7,22.0 +2017-05-30 03:47:00,56.6012,119.607,21.95 +2017-05-30 04:02:00,43.5062,119.51,21.92 +2017-05-30 04:17:00,58.9762,119.562,21.89 +2017-05-30 04:32:00,60.55,119.472,21.87 +2017-05-30 04:47:00,60.3988,119.52,21.86 +2017-05-30 05:02:00,51.3075,119.688,21.86 +2017-05-30 05:17:00,68.1025,119.7,21.88 +2017-05-30 05:32:00,68.5575,119.737,21.9 +2017-05-30 05:47:00,55.76,119.695,21.93 +2017-05-30 06:02:00,47.6413,119.76,21.97 +2017-05-30 06:17:00,62.155,120.337,22.05 +2017-05-30 06:32:00,38.505,120.128,22.14 +2017-05-30 06:47:00,60.005,120.425,22.21 +2017-05-30 07:02:00,41.775,123.595,22.28 +2017-05-30 07:17:00,53.0713,122.518,22.29 +2017-05-30 07:32:00,52.3475,121.785,21.45 +2017-05-30 07:47:00,88.1662,121.19,22.35 +2017-05-30 08:02:00,27.1787,120.335,22.35 +2017-05-30 08:20:10,27.2812,120.482,22.4 +2017-05-30 08:32:00,26.14,122.17,22.42 +2017-05-30 08:47:00,26.5775,123.365,22.48 +2017-05-30 09:02:00,28.065,122.592,22.53 +2017-05-30 09:17:00,27.5175,121.372,22.53 +2017-05-30 09:32:00,27.6687,120.812,22.5 +2017-05-30 09:47:00,27.5175,120.247,22.43 +2017-05-30 10:02:00,26.1825,121.36,22.42 +2017-05-30 10:17:00,28.2175,120.507,22.48 +2017-05-30 10:32:00,26.5737,120.0,22.58 +2017-05-30 10:47:00,26.6237,119.305,22.63 +2017-05-30 11:02:00,26.6725,119.03,22.62 +2017-05-30 11:17:00,26.2775,118.83,22.57 +2017-05-30 11:32:00,26.7762,118.765,22.61 +2017-05-30 11:47:00,25.5963,118.567,22.6 +2017-05-30 12:02:00,28.2687,118.567,22.52 +2017-05-30 12:17:00,27.9613,123.345,22.46 +2017-05-30 12:32:00,26.9662,131.585,22.35 +2017-05-30 12:47:00,28.6087,128.037,22.31 +2017-05-30 13:02:00,27.9637,125.075,22.28 +2017-05-30 13:17:00,27.4187,123.462,22.25 +2017-05-30 13:32:00,25.5975,122.087,22.17 +2017-05-30 13:47:00,27.9625,121.007,22.15 +2017-05-30 14:02:00,28.61,120.08,22.3 +2017-05-30 14:17:00,27.2625,119.482,22.43 +2017-05-30 14:32:00,27.67,118.825,22.42 +2017-05-30 14:47:00,26.8725,118.487,22.38 +2017-05-30 15:02:00,27.1137,118.25,22.32 +2017-05-30 15:17:00,27.4163,118.158,22.24 +2017-05-30 15:32:00,28.4675,118.048,22.17 +2017-05-30 15:47:00,27.7663,117.987,22.15 +2017-05-30 16:02:00,26.525,118.015,22.12 +2017-05-30 16:17:00,27.62,118.09,22.1 +2017-05-30 16:32:00,26.7237,118.09,22.09 +2017-05-30 16:47:00,28.42,118.132,22.08 +2017-05-30 17:02:00,26.4275,118.122,22.08 +2017-05-30 17:17:00,28.565,118.105,22.06 +2017-05-30 17:32:00,29.2513,118.13,22.04 +2017-05-30 17:47:00,27.3637,118.052,22.03 +2017-05-30 18:02:00,28.2137,118.268,22.03 +2017-05-30 18:17:00,27.2113,118.375,22.04 +2017-05-30 18:32:00,26.9212,118.408,22.05 +2017-05-30 18:47:00,25.7487,118.505,22.06 +2017-05-30 19:02:00,26.8225,118.63,22.05 +2017-05-30 19:17:00,27.165,118.762,22.03 +2017-05-30 19:32:00,28.5612,118.8,22.01 +2017-05-30 19:47:00,27.3175,118.897,22.0 +2017-05-30 20:02:00,26.6275,118.92,21.98 +2017-05-30 20:17:00,26.375,118.965,21.97 +2017-05-30 20:32:00,26.675,119.035,21.94 +2017-05-30 20:47:00,28.6087,119.295,21.91 +2017-05-30 21:02:00,27.2113,119.548,21.89 +2017-05-30 21:17:00,27.2612,119.7,21.87 +2017-05-30 21:32:00,26.7213,119.93,21.84 +2017-05-30 21:47:00,25.7988,120.04,21.8 +2017-05-30 22:02:00,27.6175,120.345,21.76 +2017-05-30 22:17:00,28.315,120.132,21.75 +2017-05-30 22:32:00,28.2675,120.115,21.72 +2017-05-30 22:47:00,26.875,120.397,21.71 +2017-05-30 23:02:00,26.1825,120.232,21.68 +2017-05-30 23:17:00,28.22,120.307,21.67 +2017-05-30 23:32:00,26.8237,120.567,21.67 +2017-05-30 23:47:00,28.0675,120.827,21.66 +2017-05-31 00:02:00,27.4688,120.673,21.64 +2017-05-31 00:17:00,28.61,120.53,21.64 +2017-05-31 00:32:00,28.0137,120.675,21.6 +2017-05-31 00:47:00,27.6712,120.722,21.59 +2017-05-31 01:02:00,27.3162,120.602,21.58 +2017-05-31 01:17:00,26.8725,120.575,21.53 +2017-05-31 01:32:00,27.1612,120.565,21.47 +2017-05-31 01:47:00,27.67,120.24,21.41 +2017-05-31 02:02:00,25.6937,120.317,21.35 +2017-05-31 02:17:00,27.26,120.427,21.3 +2017-05-31 02:32:00,27.8637,120.28,21.25 +2017-05-31 02:47:00,27.7637,120.492,21.19 +2017-05-31 03:02:00,26.92,120.347,21.16 +2017-05-31 03:17:00,26.8237,120.632,21.12 +2017-05-31 03:32:00,26.325,120.385,21.05 +2017-05-31 03:47:00,27.3138,120.347,21.0 +2017-05-31 04:02:00,27.8138,120.022,20.97 +2017-05-31 04:17:00,26.1813,119.938,20.95 +2017-05-31 04:32:00,26.775,119.822,20.95 +2017-05-31 04:47:00,27.1125,119.802,20.95 +2017-05-31 05:02:00,27.2137,119.755,20.96 +2017-05-31 05:17:00,26.7225,120.162,20.97 +2017-05-31 05:32:00,26.5225,119.905,20.97 +2017-05-31 05:47:00,27.9613,119.533,20.98 +2017-05-31 06:02:00,27.3613,119.74,21.05 +2017-05-31 06:17:00,27.62,119.592,21.1 +2017-05-31 06:32:00,27.1625,119.61,21.13 +2017-05-31 06:47:00,27.0137,119.225,21.16 +2017-05-31 07:02:00,26.3262,119.48,21.18 +2017-05-31 07:17:00,25.7487,119.215,21.19 +2017-05-31 07:32:00,26.5225,118.852,21.2 +2017-05-31 07:47:00,25.94,119.137,21.22 +2017-05-31 08:02:00,27.2588,119.143,21.26 +2017-05-31 08:17:00,26.9662,119.057,21.3 +2017-05-31 08:32:00,26.87,119.25,21.36 +2017-05-31 08:47:00,26.9637,119.065,21.4 +2017-05-31 09:02:00,26.0387,119.393,21.38 +2017-05-31 09:17:00,26.7162,119.37,21.37 +2017-05-31 09:32:00,27.41,119.617,21.34 +2017-05-31 09:47:00,27.0112,119.485,21.35 +2017-05-31 10:02:00,27.7175,119.357,21.36 +2017-05-31 10:17:00,26.6725,119.188,21.35 +2017-05-31 10:32:00,27.6137,119.735,21.42 +2017-05-31 10:47:00,26.4212,119.645,21.5 +2017-05-31 11:02:00,26.8712,120.033,21.53 +2017-05-31 11:17:00,25.6462,120.147,21.53 +2017-05-31 11:32:00,28.2637,120.4,21.6 +2017-05-31 11:47:00,26.0887,120.832,21.56 +2017-05-31 12:02:00,26.67,121.352,21.61 +2017-05-31 12:17:00,26.7225,121.587,21.62 +2017-05-31 12:32:00,27.7175,121.882,21.66 +2017-05-31 12:47:00,26.5737,122.185,21.69 +2017-05-31 13:02:00,26.5238,122.712,21.7 +2017-05-31 13:17:00,26.37,123.165,21.7 +2017-05-31 13:32:00,26.2288,123.525,21.71 +2017-05-31 13:47:00,27.4662,124.23,21.7 +2017-05-31 14:02:00,26.0912,124.675,21.71 +2017-05-31 14:17:00,27.3125,124.777,21.72 +2017-05-31 14:32:00,27.0662,125.225,21.71 +2017-05-31 14:47:00,27.9637,125.435,21.72 +2017-05-31 15:02:00,27.7188,125.658,21.74 +2017-05-31 15:17:00,26.4725,125.84,21.75 +2017-05-31 15:32:00,27.3637,126.03,21.75 +2017-05-31 15:47:00,27.0137,126.205,21.78 +2017-05-31 16:02:00,27.9637,126.32,21.8 +2017-05-31 16:17:00,27.3138,126.442,21.81 +2017-05-31 16:32:00,27.86,126.897,21.86 +2017-05-31 16:47:00,25.5975,127.19,21.87 +2017-05-31 17:02:00,27.0137,127.602,21.88 +2017-05-31 17:17:00,27.7625,127.753,21.89 +2017-05-31 17:32:00,27.16,127.905,21.87 +2017-05-31 17:47:00,27.7637,127.897,21.87 +2017-05-31 18:02:00,27.3625,128.165,21.88 +2017-05-31 18:17:00,25.5963,128.327,21.89 +2017-05-31 18:32:00,27.7612,128.525,21.9 +2017-05-31 18:47:00,25.7937,128.662,21.92 +2017-05-31 19:02:00,26.0387,129.002,21.94 +2017-05-31 19:17:00,26.77,129.147,21.93 +2017-05-31 19:32:00,26.82,129.342,21.95 +2017-05-31 19:47:00,26.4725,129.412,21.96 +2017-05-31 20:02:00,27.565,129.55,21.97 +2017-05-31 20:17:00,27.1637,129.587,21.99 +2017-05-31 20:32:00,26.7725,129.542,21.98 +2017-05-31 20:47:00,24.9613,129.61,21.96 +2017-05-31 21:02:00,27.3662,129.75,21.96 +2017-05-31 21:17:00,27.5638,129.84,21.96 +2017-05-31 21:32:00,26.2787,129.85,21.96 +2017-05-31 21:47:00,29.1987,129.92,21.94 +2017-05-31 22:02:00,27.6162,130.072,21.9 +2017-05-31 22:17:00,26.2275,130.11,21.85 +2017-05-31 22:32:00,28.2137,130.065,21.82 +2017-05-31 22:47:00,26.525,129.938,21.78 +2017-05-31 23:02:00,26.8237,130.01,21.72 +2017-05-31 23:17:00,27.7137,129.932,21.67 +2017-05-31 23:32:00,26.3737,129.915,21.63 +2017-05-31 23:47:00,27.3637,129.93,21.59 +2017-06-01 00:02:00,29.1475,129.952,21.56 +2017-06-01 00:17:00,26.625,130.155,21.51 +2017-06-01 00:32:00,27.0587,130.217,21.47 +2017-06-01 00:47:00,28.0625,130.207,21.41 +2017-06-01 01:02:00,28.6087,130.155,21.33 +2017-06-01 01:17:00,27.4137,130.162,21.27 +2017-06-01 01:32:00,25.7937,130.087,21.21 +2017-06-01 01:47:00,27.4112,129.995,21.16 +2017-06-01 02:02:00,27.21,129.925,21.11 +2017-06-01 02:17:00,26.9175,129.977,21.04 +2017-06-01 02:32:00,27.2562,129.88,20.98 +2017-06-01 02:47:00,26.13,129.952,20.9 +2017-06-01 03:02:00,28.2637,129.967,20.8 +2017-06-01 03:17:00,26.8187,129.975,20.72 +2017-06-01 03:32:00,26.2262,129.962,20.63 +2017-06-01 03:47:00,28.6075,129.957,20.57 +2017-06-01 04:02:00,27.8087,129.732,20.48 +2017-06-01 04:17:00,28.1663,129.67,20.41 +2017-06-01 04:32:00,28.3613,129.605,20.34 +2017-06-01 04:47:00,26.9175,129.46,20.26 +2017-06-01 05:02:00,26.4262,129.44,20.22 +2017-06-01 05:17:00,26.37,129.445,20.19 +2017-06-01 05:32:00,27.1062,129.43,20.16 +2017-06-01 05:47:00,28.905,129.11,20.15 +2017-06-01 06:02:00,26.7712,128.908,20.14 +2017-06-01 06:17:00,27.1062,129.03,20.13 +2017-06-01 06:32:00,27.1075,128.825,20.15 +2017-06-01 06:47:00,27.91,128.757,20.16 +2017-06-01 07:02:00,26.9662,128.673,20.17 +2017-06-01 07:17:00,27.91,128.533,20.19 +2017-06-01 07:32:00,27.5112,128.165,20.21 +2017-06-01 07:47:00,28.2075,128.33,20.25 +2017-06-01 08:02:00,27.9075,128.227,20.28 +2017-06-01 08:17:00,27.6125,128.122,20.32 +2017-06-01 08:32:00,28.6588,128.322,20.36 +2017-06-01 08:47:00,27.6113,127.98,20.41 +2017-06-01 09:02:00,27.7162,128.065,20.45 +2017-06-01 09:17:00,27.81,127.935,20.5 +2017-06-01 09:32:00,26.3262,127.893,20.54 +2017-06-01 09:47:00,27.5137,127.555,20.59 +2017-06-01 10:02:00,27.52,127.732,20.61 +2017-06-01 10:17:00,27.9112,127.465,20.65 +2017-06-01 10:32:00,26.1312,127.63,20.71 +2017-06-01 10:47:00,27.0612,127.57,20.74 +2017-06-01 11:02:00,28.0612,127.53,20.76 +2017-06-01 11:17:00,27.5125,127.635,20.82 +2017-06-01 11:32:00,27.4112,127.423,20.86 +2017-06-01 11:47:00,25.5938,127.507,20.93 +2017-06-01 12:02:00,26.3225,127.235,20.94 +2017-06-01 12:17:00,27.01,127.162,20.96 +2017-06-01 12:32:00,27.01,127.107,21.0 +2017-06-01 12:47:00,26.8725,126.855,21.0 +2017-06-01 13:02:00,26.87,126.745,21.0 +2017-06-01 13:17:00,26.915,126.58,21.0 +2017-06-01 13:32:00,25.8913,126.59,20.98 +2017-06-01 13:47:00,26.1325,126.577,20.97 +2017-06-01 14:02:00,26.8688,126.635,20.96 +2017-06-01 14:17:00,26.8187,126.567,20.93 +2017-06-01 14:32:00,27.4637,126.482,20.91 +2017-06-01 14:47:00,27.31,126.39,20.92 +2017-06-01 15:02:00,26.9163,126.275,20.93 +2017-06-01 15:17:00,27.4137,126.39,20.95 +2017-06-01 15:32:00,26.9175,126.265,20.96 +2017-06-01 15:47:00,27.3637,126.15,20.96 +2017-06-01 16:02:00,27.5112,126.188,20.95 +2017-06-01 16:17:00,26.9625,125.977,20.95 +2017-06-01 16:32:00,25.7925,126.1,20.95 +2017-06-01 16:47:00,28.9538,126.107,20.93 +2017-06-01 17:02:00,27.6137,126.087,20.94 +2017-06-01 17:17:00,28.2162,126.125,20.94 +2017-06-01 17:32:00,28.1137,126.01,20.93 +2017-06-01 17:47:00,26.47,125.768,20.9 +2017-06-01 18:02:00,26.2288,125.757,20.88 +2017-06-01 18:17:00,27.1637,125.7,20.84 +2017-06-01 18:32:00,28.265,125.615,20.81 +2017-06-01 18:47:00,28.705,125.645,20.81 +2017-06-01 19:02:00,26.5225,125.585,20.81 +2017-06-01 19:17:00,27.86,125.552,20.82 +2017-06-01 19:32:00,26.6212,125.595,20.83 +2017-06-01 19:47:00,27.9088,125.542,20.81 +2017-06-01 20:02:00,27.8138,125.43,20.8 +2017-06-01 20:17:00,27.415,125.352,20.81 +2017-06-01 20:32:00,27.765,125.225,20.84 +2017-06-01 20:47:00,27.465,125.097,20.86 +2017-06-01 21:02:00,27.06,125.042,20.9 +2017-06-01 21:17:00,28.1162,124.967,20.93 +2017-06-01 21:32:00,26.8725,124.972,20.93 +2017-06-01 21:47:00,27.515,124.92,20.92 +2017-06-01 22:02:00,27.1612,125.005,20.92 +2017-06-01 22:17:00,27.415,124.98,20.92 +2017-06-01 22:32:00,29.1012,124.94,20.9 +2017-06-01 22:47:00,28.3625,124.915,20.91 +2017-06-01 23:02:00,26.7213,124.887,20.9 +2017-06-01 23:17:00,28.8075,124.725,20.87 +2017-06-01 23:32:00,26.72,124.628,20.87 +2017-06-01 23:47:00,28.5112,124.562,20.85 +2017-06-02 00:02:00,27.3112,124.492,20.84 +2017-06-02 00:17:00,27.2575,124.57,20.85 +2017-06-02 00:32:00,27.51,124.658,20.8 +2017-06-02 00:47:00,26.9662,124.497,20.78 +2017-06-02 01:02:00,26.8187,124.425,20.73 +2017-06-02 01:17:00,27.1062,124.432,20.69 +2017-06-02 01:32:00,27.21,124.327,20.64 +2017-06-02 01:47:00,28.5112,124.175,20.58 +2017-06-02 02:02:00,28.7588,124.072,20.51 +2017-06-02 02:17:00,27.4613,123.885,20.45 +2017-06-02 02:32:00,27.515,123.887,20.36 +2017-06-02 02:47:00,25.845,123.915,20.29 +2017-06-02 03:02:00,28.5587,123.923,20.22 +2017-06-02 03:17:00,28.2137,123.942,20.16 +2017-06-02 03:32:00,27.0137,123.875,20.09 +2017-06-02 03:47:00,26.9175,123.9,20.04 +2017-06-02 04:02:00,27.6162,123.79,20.0 +2017-06-02 04:17:00,27.8125,123.68,19.94 +2017-06-02 04:32:00,29.68,123.575,19.88 +2017-06-02 04:47:00,28.8037,123.48,19.83 +2017-06-02 05:02:00,27.8575,123.465,19.8 +2017-06-02 05:17:00,28.01,123.548,19.77 +2017-06-02 05:32:00,27.2562,123.65,19.75 +2017-06-02 05:47:00,27.8575,123.632,19.74 +2017-06-02 06:02:00,27.205,123.59,19.75 +2017-06-02 06:17:00,28.5587,123.612,19.76 +2017-06-02 06:32:00,27.6663,123.53,19.78 +2017-06-02 06:47:00,28.0587,123.435,19.79 +2017-06-02 07:02:00,27.7188,123.465,19.83 +2017-06-02 07:17:00,26.62,123.408,19.85 +2017-06-02 07:32:00,27.5638,123.435,19.91 +2017-06-02 07:47:00,27.0587,123.505,19.96 +2017-06-02 08:02:00,27.8112,123.535,20.02 +2017-06-02 08:17:00,27.0125,123.655,20.08 +2017-06-02 08:32:00,27.3613,123.725,20.15 +2017-06-02 08:47:00,28.3138,123.835,20.26 +2017-06-02 09:02:00,27.91,124.005,20.4 +2017-06-02 09:17:00,26.67,124.097,20.54 +2017-06-02 09:32:00,27.8587,123.97,20.64 +2017-06-02 09:47:00,28.2125,123.905,20.72 +2017-06-02 10:02:00,27.7637,123.912,20.81 +2017-06-02 10:17:00,28.7537,123.73,20.82 +2017-06-02 10:32:00,28.31,123.697,20.91 +2017-06-02 10:47:00,28.01,123.685,20.97 +2017-06-02 11:02:00,28.2113,123.612,21.01 +2017-06-02 11:17:00,27.8075,123.537,21.01 +2017-06-02 11:32:00,26.52,123.362,21.04 +2017-06-02 11:47:00,29.1,123.19,21.06 +2017-06-02 12:02:00,27.9088,122.95,21.08 +2017-06-02 12:17:00,28.3138,122.812,21.05 +2017-06-02 12:32:00,27.6675,122.635,21.08 +2017-06-02 12:47:00,27.1087,122.408,21.02 +2017-06-02 13:02:00,28.3625,122.253,20.93 +2017-06-02 13:17:00,27.9587,122.037,20.87 +2017-06-02 13:32:00,27.4613,121.985,20.86 +2017-06-02 13:47:00,26.5238,121.923,20.89 +2017-06-02 14:02:00,27.2087,121.84,20.92 +2017-06-02 14:17:00,27.4125,121.662,20.92 +2017-06-02 14:32:00,28.5088,121.37,20.91 +2017-06-02 14:47:00,27.7625,121.13,20.9 +2017-06-02 15:02:00,27.2575,120.755,20.91 +2017-06-02 15:17:00,28.4613,120.195,20.89 +2017-06-02 15:32:00,27.0112,119.902,20.85 +2017-06-02 15:47:00,27.4637,119.39,20.77 +2017-06-02 16:02:00,27.715,118.717,20.75 +2017-06-02 16:17:00,26.825,118.355,20.72 +2017-06-02 16:32:00,28.0125,117.783,20.72 +2017-06-02 16:47:00,28.4125,117.062,20.74 +2017-06-02 17:02:00,27.7162,116.255,20.75 +2017-06-02 17:17:00,26.92,115.477,20.73 +2017-06-02 17:32:00,27.1625,114.69,20.73 +2017-06-02 17:47:00,27.7175,113.837,20.72 +2017-06-02 18:02:00,26.1375,112.93,20.7 +2017-06-02 18:17:00,28.215,112.128,20.68 +2017-06-02 18:32:00,27.065,111.342,20.68 +2017-06-02 18:47:00,26.0912,110.643,20.68 +2017-06-02 19:02:00,26.675,109.945,20.69 +2017-06-02 19:17:00,28.215,109.312,20.71 +2017-06-02 19:32:00,28.0125,108.75,20.73 +2017-06-02 19:47:00,26.9187,108.122,20.74 +2017-06-02 20:02:00,28.5137,107.582,20.74 +2017-06-02 20:17:00,27.815,107.062,20.74 +2017-06-02 20:32:00,28.855,106.503,20.74 +2017-06-02 20:47:00,27.0625,106.037,20.71 +2017-06-02 21:02:00,27.415,105.737,20.66 +2017-06-02 21:17:00,29.25,105.48,20.61 +2017-06-02 21:32:00,28.8562,105.272,20.58 +2017-06-02 21:47:00,28.1663,105.065,20.56 +2017-06-02 22:02:00,29.3875,104.985,20.56 +2017-06-02 22:17:00,27.165,104.952,20.57 +2017-06-02 22:32:00,27.91,104.865,20.55 +2017-06-02 22:47:00,26.4225,104.865,20.55 +2017-06-02 23:02:00,27.9112,104.825,20.56 +2017-06-02 23:17:00,27.0062,104.787,20.54 +2017-06-02 23:32:00,27.0137,104.792,20.53 +2017-06-02 23:47:00,28.3138,104.923,20.56 +2017-06-03 00:02:00,28.4163,105.04,20.56 +2017-06-03 00:17:00,29.0537,105.215,20.58 +2017-06-03 00:32:00,27.365,105.42,20.62 +2017-06-03 00:47:00,28.705,105.692,20.64 +2017-06-03 01:02:00,28.3625,105.957,20.64 +2017-06-03 01:17:00,27.3112,106.215,20.69 +2017-06-03 01:32:00,28.5575,106.347,20.75 +2017-06-03 01:47:00,28.1125,106.557,20.75 +2017-06-03 02:02:00,27.6137,106.72,20.76 +2017-06-03 02:17:00,27.5638,106.938,20.78 +2017-06-03 02:32:00,28.51,107.207,20.78 +2017-06-03 02:47:00,28.71,107.565,20.79 +2017-06-03 03:02:00,27.91,107.815,20.78 +2017-06-03 03:17:00,28.6087,108.125,20.79 +2017-06-03 03:32:00,27.8613,108.362,20.77 +2017-06-03 03:47:00,27.2087,108.592,20.75 +2017-06-03 04:02:00,28.5088,108.785,20.74 +2017-06-03 04:17:00,27.3125,108.908,20.72 +2017-06-03 04:32:00,27.56,109.158,20.68 +2017-06-03 04:47:00,28.4125,109.292,20.63 +2017-06-03 05:02:00,27.9075,109.5,20.59 +2017-06-03 05:17:00,27.7113,109.705,20.54 +2017-06-03 05:32:00,27.665,110.04,20.5 +2017-06-03 05:47:00,27.46,110.305,20.46 +2017-06-03 06:02:00,29.2925,110.535,20.42 +2017-06-03 06:17:00,28.1125,110.775,20.37 +2017-06-03 06:32:00,29.1975,111.055,20.33 +2017-06-03 06:47:00,28.2113,111.2,20.3 +2017-06-03 07:02:00,29.6825,111.455,20.26 +2017-06-03 07:17:00,28.605,111.577,20.22 +2017-06-03 07:32:00,28.3112,111.857,20.16 +2017-06-03 07:47:00,28.655,112.1,20.11 +2017-06-03 08:02:00,27.9587,112.507,20.08 +2017-06-03 08:17:00,27.5137,112.787,20.04 +2017-06-03 08:32:00,28.6062,113.062,20.0 +2017-06-03 08:47:00,29.5812,113.352,19.99 +2017-06-03 09:02:00,29.0,113.595,19.97 +2017-06-03 09:17:00,28.8538,113.845,19.98 +2017-06-03 09:32:00,29.0537,114.165,19.97 +2017-06-03 09:47:00,29.6275,114.355,19.97 +2017-06-03 10:02:00,29.435,114.592,19.96 +2017-06-03 10:17:00,31.0437,114.777,19.96 +2017-06-03 10:32:00,30.1175,114.905,19.96 +2017-06-03 10:47:00,29.7775,115.107,19.97 +2017-06-03 11:02:00,28.655,115.207,20.0 +2017-06-03 11:17:00,30.8025,115.41,20.03 +2017-06-03 11:32:00,28.5587,115.635,20.1 +2017-06-03 11:47:00,30.4112,115.768,20.22 +2017-06-03 12:02:00,30.26,116.147,20.32 +2017-06-03 12:17:00,29.7312,116.245,20.37 +2017-06-03 12:32:00,29.435,116.295,20.36 +2017-06-03 12:47:00,28.055,116.522,20.35 +2017-06-03 13:02:00,28.6075,116.575,20.33 +2017-06-03 13:17:00,27.5125,116.597,20.31 +2017-06-03 13:32:00,28.605,116.67,20.29 +2017-06-03 13:47:00,28.7038,116.785,20.32 +2017-06-03 14:02:00,27.715,116.857,20.33 +2017-06-03 14:17:00,29.0512,116.947,20.34 +2017-06-03 14:32:00,28.2612,117.072,20.31 +2017-06-03 14:47:00,29.2475,117.257,20.29 +2017-06-03 15:02:00,28.655,117.287,20.27 +2017-06-03 15:17:00,29.4375,117.325,20.26 +2017-06-03 15:32:00,28.6062,117.375,20.25 +2017-06-03 15:47:00,27.86,117.37,20.23 +2017-06-03 16:02:00,29.0013,117.38,20.23 +2017-06-03 16:17:00,28.365,117.462,20.23 +2017-06-03 16:32:00,28.7075,117.545,20.18 +2017-06-03 16:47:00,28.9062,117.652,20.12 +2017-06-03 17:02:00,27.4613,117.872,20.07 +2017-06-03 17:17:00,27.9088,117.97,20.02 +2017-06-03 17:32:00,28.5587,118.173,19.95 +2017-06-03 17:47:00,27.86,118.272,19.89 +2017-06-03 18:02:00,28.165,118.362,19.85 +2017-06-03 18:17:00,29.2475,118.465,19.8 +2017-06-03 18:32:00,28.605,118.565,19.75 +2017-06-03 18:47:00,27.6663,118.688,19.7 +2017-06-03 19:02:00,28.605,118.83,19.68 +2017-06-03 19:17:00,27.7625,119.14,19.64 +2017-06-03 19:32:00,29.3425,119.35,19.61 +2017-06-03 19:47:00,28.3125,119.612,19.59 +2017-06-03 20:02:00,29.0512,119.895,19.58 +2017-06-03 20:17:00,28.9525,120.12,19.56 +2017-06-03 20:32:00,29.3375,120.212,19.55 +2017-06-03 20:47:00,29.5812,120.438,19.53 +2017-06-03 21:02:00,28.215,120.592,19.53 +2017-06-03 21:17:00,27.4125,120.807,19.52 +2017-06-03 21:32:00,27.5137,120.992,19.53 +2017-06-03 21:47:00,27.7612,121.268,19.54 +2017-06-03 22:02:00,27.4112,121.438,19.54 +2017-06-03 22:17:00,29.34,121.772,19.55 +2017-06-03 22:32:00,29.2962,122.003,19.57 +2017-06-03 22:47:00,28.8525,122.25,19.61 +2017-06-03 23:02:00,28.4662,122.382,19.63 +2017-06-03 23:17:00,30.3162,122.515,19.64 +2017-06-03 23:32:00,28.4163,122.62,19.65 +2017-06-03 23:47:00,28.165,122.745,19.66 +2017-06-04 00:02:00,27.365,122.93,19.69 +2017-06-04 00:17:00,29.435,123.115,19.7 +2017-06-04 00:32:00,29.5837,123.277,19.7 +2017-06-04 00:47:00,27.2588,123.52,19.72 +2017-06-04 01:02:00,29.15,123.697,19.72 +2017-06-04 01:17:00,27.9613,123.87,19.69 +2017-06-04 01:32:00,29.0025,123.997,19.67 +2017-06-04 01:47:00,28.2637,124.107,19.64 +2017-06-04 02:02:00,28.3138,124.112,19.63 +2017-06-04 02:17:00,27.7125,124.287,19.63 +2017-06-04 02:32:00,28.2637,124.375,19.62 +2017-06-04 02:47:00,27.91,124.527,19.6 +2017-06-04 03:02:00,28.0638,124.635,19.58 +2017-06-04 03:17:00,28.6562,124.827,19.57 +2017-06-04 03:32:00,27.96,124.985,19.56 +2017-06-04 03:47:00,28.7038,125.202,19.54 +2017-06-04 04:02:00,28.7575,125.227,19.51 +2017-06-04 04:17:00,28.0625,125.352,19.48 +2017-06-04 04:32:00,29.0512,125.447,19.44 +2017-06-04 04:47:00,28.605,125.427,19.4 +2017-06-04 05:02:00,27.9112,125.58,19.36 +2017-06-04 05:17:00,28.955,125.817,19.33 +2017-06-04 05:32:00,28.705,126.147,19.29 +2017-06-04 05:47:00,29.2475,127.01,19.23 +2017-06-04 06:02:00,27.21,127.802,19.18 +2017-06-04 06:17:00,28.805,129.415,19.14 +2017-06-04 06:32:00,28.115,130.505,19.1 +2017-06-04 06:47:00,29.4362,133.548,19.08 +2017-06-04 07:02:00,29.53,136.89,19.05 +2017-06-04 07:17:00,28.0662,138.985,19.02 +2017-06-04 07:32:00,29.8288,140.595,18.96 +2017-06-04 07:47:00,28.4662,141.625,18.88 +2017-06-04 08:02:00,28.8538,142.232,18.79 +2017-06-04 08:17:00,29.1488,142.992,18.73 +2017-06-04 08:32:00,29.5325,143.552,18.74 +2017-06-04 08:47:00,29.8275,143.762,18.75 +2017-06-04 09:02:00,30.1175,143.677,18.77 +2017-06-04 09:17:00,28.955,143.762,18.76 +2017-06-04 09:32:00,29.53,144.007,18.76 +2017-06-04 09:47:00,28.655,143.87,18.73 +2017-06-04 10:02:00,29.5812,143.83,18.69 +2017-06-04 10:17:00,30.3162,143.627,18.68 +2017-06-04 10:32:00,29.6287,143.632,18.67 +2017-06-04 10:47:00,28.755,143.548,18.66 +2017-06-04 11:02:00,28.6087,143.425,18.65 +2017-06-04 11:17:00,29.2475,142.977,18.64 +2017-06-04 11:32:00,29.0975,143.05,18.64 +2017-06-04 11:47:00,29.0987,142.852,18.68 +2017-06-04 12:02:00,30.1188,142.605,18.7 +2017-06-04 12:17:00,28.3637,142.692,18.7 +2017-06-04 12:32:00,28.9037,142.44,18.72 +2017-06-04 12:47:00,29.5812,141.945,18.77 +2017-06-04 13:02:00,27.615,141.95,18.81 +2017-06-04 13:17:00,28.06,141.35,18.84 +2017-06-04 13:32:00,29.0025,141.257,18.86 +2017-06-04 13:47:00,29.7812,141.21,18.87 +2017-06-04 14:02:00,29.2975,141.382,18.86 +2017-06-04 14:17:00,27.765,141.587,18.83 +2017-06-04 14:32:00,29.2438,141.177,18.84 +2017-06-04 14:47:00,29.1987,141.535,18.87 +2017-06-04 15:02:00,28.6075,142.295,18.91 +2017-06-04 15:17:00,28.4637,142.54,18.94 +2017-06-04 15:32:00,30.0262,142.86,18.97 +2017-06-04 15:47:00,28.8512,143.432,18.99 +2017-06-04 16:02:00,28.705,143.832,19.0 +2017-06-04 16:17:00,28.2637,144.39,19.0 +2017-06-04 16:32:00,29.2487,144.902,19.0 +2017-06-04 16:47:00,29.1512,145.51,19.0 +2017-06-04 17:02:00,28.2113,146.29,18.99 +2017-06-04 17:17:00,28.6562,146.765,19.0 +2017-06-04 17:32:00,27.3637,147.515,18.99 +2017-06-04 17:47:00,27.76,147.812,18.98 +2017-06-04 18:02:00,29.63,148.32,18.96 +2017-06-04 18:17:00,29.0488,148.8,18.95 +2017-06-04 18:32:00,28.1125,149.185,18.95 +2017-06-04 18:47:00,28.4112,149.522,18.95 +2017-06-04 19:02:00,28.855,150.007,18.95 +2017-06-04 19:17:00,27.9587,150.382,18.96 +2017-06-04 19:32:00,27.1075,150.732,18.98 +2017-06-04 19:47:00,29.1462,151.057,18.99 +2017-06-04 20:02:00,27.0612,151.43,19.01 +2017-06-04 20:17:00,27.86,151.685,19.02 +2017-06-04 20:32:00,28.955,151.945,19.04 +2017-06-04 20:47:00,28.0088,152.13,19.06 +2017-06-04 21:02:00,28.6062,152.33,19.08 +2017-06-04 21:17:00,27.565,152.775,19.09 +2017-06-04 21:32:00,26.3262,152.957,19.11 +2017-06-04 21:47:00,28.2113,153.382,19.11 +2017-06-04 22:02:00,28.515,153.71,19.11 +2017-06-04 22:17:00,27.9613,154.057,19.09 +2017-06-04 22:32:00,28.4625,154.265,19.05 +2017-06-04 22:47:00,26.6725,154.53,19.01 +2017-06-04 23:02:00,28.065,154.8,18.96 +2017-06-04 23:17:00,27.415,155.065,18.9 +2017-06-04 23:32:00,29.0537,155.445,18.84 +2017-06-04 23:47:00,29.0975,155.825,18.79 +2017-06-05 00:02:00,28.2137,156.193,18.73 +2017-06-05 00:17:00,28.8538,156.59,18.67 +2017-06-05 00:32:00,27.6113,156.908,18.6 +2017-06-05 00:47:00,27.6137,157.35,18.55 +2017-06-05 01:02:00,27.4137,157.612,18.48 +2017-06-05 01:17:00,29.0488,157.885,18.42 +2017-06-05 01:32:00,27.7113,158.068,18.35 +2017-06-05 01:47:00,28.21,158.405,18.3 +2017-06-05 02:02:00,28.905,158.515,18.26 +2017-06-05 02:17:00,28.5563,158.872,18.24 +2017-06-05 02:32:00,28.26,159.197,18.23 +2017-06-05 02:47:00,28.31,159.505,18.21 +2017-06-05 03:02:00,26.965,159.78,18.21 +2017-06-05 03:17:00,28.01,160.103,18.2 +2017-06-05 03:32:00,28.4637,160.345,18.18 +2017-06-05 03:47:00,28.7038,160.5,18.18 +2017-06-05 04:02:00,27.7612,160.67,18.14 +2017-06-05 04:17:00,27.465,160.77,18.11 +2017-06-05 04:32:00,28.31,160.82,18.1 +2017-06-05 04:47:00,29.5325,160.957,18.1 +2017-06-05 05:02:00,28.01,161.052,18.1 +2017-06-05 05:17:00,29.2438,161.18,18.11 +2017-06-05 05:32:00,27.9088,161.26,18.11 +2017-06-05 05:47:00,27.9125,161.43,18.12 +2017-06-05 06:02:00,27.6162,161.487,18.13 +2017-06-05 06:17:00,27.3125,161.685,18.14 +2017-06-05 06:32:00,28.3637,161.525,18.15 +2017-06-05 06:47:00,27.7175,161.605,18.13 +2017-06-05 07:02:00,28.2113,161.582,18.1 +2017-06-05 07:17:00,27.7125,161.547,18.08 +2017-06-05 07:32:00,27.8112,161.685,18.1 +2017-06-05 07:47:00,29.435,161.617,18.1 +2017-06-05 08:02:00,28.7025,161.685,18.08 +2017-06-05 08:17:00,28.6525,161.605,18.07 +2017-06-05 08:32:00,27.9112,161.725,18.07 +2017-06-05 08:47:00,27.4112,161.75,18.08 +2017-06-05 09:02:00,28.705,161.783,18.09 +2017-06-05 09:17:00,28.6075,161.917,18.08 +2017-06-05 09:32:00,29.975,161.71,18.11 +2017-06-05 09:47:00,28.755,161.8,18.17 +2017-06-05 10:02:00,27.015,161.675,18.24 +2017-06-05 10:17:00,28.4625,161.557,18.29 +2017-06-05 10:32:00,28.6087,161.35,18.28 +2017-06-05 10:47:00,29.2487,161.07,18.26 +2017-06-05 11:02:00,29.2937,161.05,18.34 +2017-06-05 11:17:00,28.0112,160.897,18.41 +2017-06-05 11:32:00,27.11,160.965,18.45 +2017-06-05 11:47:00,28.5575,160.815,18.49 +2017-06-05 12:02:00,27.8613,160.747,18.49 +2017-06-05 12:17:00,29.39,160.688,18.47 +2017-06-05 12:32:00,28.1675,160.457,18.44 +2017-06-05 12:47:00,29.4863,160.635,18.43 +2017-06-05 13:02:00,27.4137,162.592,18.4 +2017-06-05 13:17:00,28.2637,164.163,18.42 +2017-06-05 13:32:00,29.8288,164.082,18.41 +2017-06-05 13:47:00,28.4175,163.857,18.49 +2017-06-05 14:02:00,29.1488,163.58,18.54 +2017-06-05 14:17:00,29.0025,163.372,18.57 +2017-06-05 14:32:00,28.955,162.892,18.52 +2017-06-05 14:47:00,30.17,162.695,18.46 +2017-06-05 15:02:00,29.53,162.565,18.46 +2017-06-05 15:17:00,29.6338,162.395,18.47 +2017-06-05 15:32:00,29.485,161.917,18.49 +2017-06-05 15:47:00,28.56,161.535,18.51 +2017-06-05 16:02:00,28.1637,161.225,18.54 +2017-06-05 16:17:00,27.8112,160.987,18.58 +2017-06-05 16:32:00,28.9575,160.64,18.59 +2017-06-05 16:47:00,28.3162,160.355,18.59 +2017-06-05 17:02:00,27.7125,160.068,18.6 +2017-06-05 17:17:00,28.655,159.865,18.6 +2017-06-05 17:32:00,28.2125,159.568,18.59 +2017-06-05 17:47:00,28.2125,159.395,18.59 +2017-06-05 18:02:00,28.115,159.052,18.6 +2017-06-05 18:17:00,28.6075,158.8,18.6 +2017-06-05 18:32:00,29.15,158.435,18.6 +2017-06-05 18:47:00,29.8787,158.052,18.59 +2017-06-05 19:02:00,27.3125,157.665,18.57 +2017-06-05 19:17:00,27.21,157.405,18.55 +2017-06-05 19:32:00,29.9238,157.122,18.54 +2017-06-05 19:47:00,28.5125,156.885,18.54 +2017-06-05 20:02:00,28.465,156.517,18.53 +2017-06-05 20:17:00,29.245,156.35,18.52 +2017-06-05 20:32:00,28.4163,156.052,18.52 +2017-06-05 20:47:00,28.7562,155.81,18.54 +2017-06-05 21:02:00,27.9625,155.462,18.52 +2017-06-05 21:17:00,28.2637,155.327,18.52 +2017-06-05 21:32:00,28.8063,154.96,18.52 +2017-06-05 21:47:00,27.5625,154.627,18.54 +2017-06-05 22:02:00,26.0338,154.402,18.53 +2017-06-05 22:17:00,27.365,154.175,18.54 +2017-06-05 22:32:00,28.6087,153.977,18.57 +2017-06-05 22:47:00,29.83,153.855,18.59 +2017-06-05 23:02:00,28.9025,153.64,18.59 +2017-06-05 23:17:00,28.3138,153.332,18.59 +2017-06-05 23:32:00,27.5662,153.115,18.59 +2017-06-05 23:47:00,28.4112,152.902,18.58 +2017-06-06 00:02:00,28.6075,152.575,18.56 +2017-06-06 00:17:00,29.0975,152.367,18.55 +2017-06-06 00:32:00,28.2625,152.072,18.52 +2017-06-06 00:47:00,28.06,151.85,18.49 +2017-06-06 01:02:00,29.1488,151.745,18.45 +2017-06-06 01:17:00,28.4613,151.607,18.42 +2017-06-06 01:32:00,28.555,151.45,18.41 +2017-06-06 01:47:00,29.1987,151.272,18.38 +2017-06-06 02:02:00,28.8037,151.202,18.34 +2017-06-06 02:17:00,28.705,150.985,18.27 +2017-06-06 02:32:00,29.8262,150.757,18.22 +2017-06-06 02:47:00,27.8637,150.525,18.16 +2017-06-06 03:02:00,27.5638,150.285,18.11 +2017-06-06 03:17:00,28.6562,150.25,18.06 +2017-06-06 03:32:00,29.2462,149.902,18.0 +2017-06-06 03:47:00,28.0587,149.742,17.95 +2017-06-06 04:02:00,27.5137,149.585,17.91 +2017-06-06 04:17:00,27.96,149.465,17.86 +2017-06-06 04:32:00,28.36,149.268,17.81 +2017-06-06 04:47:00,27.91,149.26,17.77 +2017-06-06 05:02:00,30.8075,150.143,17.75 +2017-06-06 05:17:00,30.07,149.847,17.74 +2017-06-06 05:32:00,28.215,149.355,17.74 +2017-06-06 05:47:00,27.6625,148.927,17.76 +2017-06-06 06:02:00,29.3412,148.595,17.76 +2017-06-06 06:17:00,28.4637,148.372,17.76 +2017-06-06 06:32:00,29.3862,147.995,17.8 +2017-06-06 06:47:00,28.4625,147.643,17.84 +2017-06-06 07:02:00,28.2175,147.277,17.9 +2017-06-06 07:17:00,28.855,147.082,17.92 +2017-06-06 07:32:00,29.0525,147.045,17.96 +2017-06-06 07:47:00,28.265,146.83,18.0 +2017-06-06 08:02:00,28.9037,146.423,18.05 +2017-06-06 08:17:00,27.86,146.46,18.12 +2017-06-06 08:32:00,29.925,146.34,18.2 +2017-06-06 08:47:00,28.8037,146.272,18.24 +2017-06-06 09:02:00,28.7025,146.012,18.3 +2017-06-06 09:17:00,27.7137,146.045,18.34 +2017-06-06 09:32:00,29.1475,145.705,18.41 +2017-06-06 09:47:00,29.3862,145.662,18.45 +2017-06-06 10:02:00,29.3875,145.11,18.53 +2017-06-06 10:17:00,28.6062,145.042,18.63 +2017-06-06 10:32:00,29.4337,144.597,18.68 +2017-06-06 10:47:00,29.2438,144.135,18.71 +2017-06-06 11:02:00,29.0525,143.86,18.73 +2017-06-06 11:17:00,27.7625,143.557,18.86 +2017-06-06 11:32:00,28.4613,142.955,18.8 +2017-06-06 11:47:00,28.1637,142.49,18.88 +2017-06-06 12:02:00,28.0575,141.962,18.92 +2017-06-06 12:17:00,28.5612,141.685,18.95 +2017-06-06 12:32:00,29.435,140.89,18.93 +2017-06-06 12:47:00,30.025,140.72,18.93 +2017-06-06 13:02:00,29.4825,139.98,18.93 +2017-06-06 13:17:00,29.1462,139.582,18.93 +2017-06-06 13:32:00,27.665,139.342,18.95 +2017-06-06 13:47:00,28.6038,138.747,18.92 +2017-06-06 14:02:00,27.8587,137.905,18.86 +2017-06-06 14:17:00,27.7137,137.56,18.84 +2017-06-06 14:32:00,27.8587,137.067,18.85 +2017-06-06 14:47:00,28.8512,137.06,18.85 +2017-06-06 15:02:00,28.8512,136.835,18.88 +2017-06-06 15:17:00,27.015,136.61,18.91 +2017-06-06 15:32:00,29.1475,136.232,18.94 +2017-06-06 15:47:00,28.265,135.932,18.98 +2017-06-06 16:02:00,28.2137,135.585,19.01 +2017-06-06 16:17:00,26.92,135.447,19.05 +2017-06-06 16:32:00,27.11,135.347,19.08 +2017-06-06 16:47:00,28.6062,135.217,19.08 +2017-06-06 17:02:00,28.3125,135.247,19.08 +2017-06-06 17:17:00,29.9762,134.83,19.06 +2017-06-06 17:32:00,27.5137,134.905,19.03 +2017-06-06 17:47:00,29.4863,134.89,19.01 +2017-06-06 18:02:00,28.51,134.847,19.0 +2017-06-06 18:17:00,28.755,134.905,19.03 +2017-06-06 18:32:00,28.11,134.777,19.05 +2017-06-06 18:47:00,28.3562,134.825,19.06 +2017-06-06 19:02:00,28.46,134.795,19.07 +2017-06-06 19:17:00,28.1637,134.815,19.1 +2017-06-06 19:32:00,26.7213,134.862,19.11 +2017-06-06 19:47:00,28.1637,134.917,19.13 +2017-06-06 20:02:00,28.4613,135.02,19.13 +2017-06-06 20:17:00,29.4825,135.045,19.15 +2017-06-06 20:32:00,29.7775,135.182,19.14 +2017-06-06 20:47:00,28.6062,135.227,19.14 +2017-06-06 21:02:00,27.8562,135.307,19.16 +2017-06-06 21:17:00,28.4163,135.537,19.16 +2017-06-06 21:32:00,29.0025,135.64,19.16 +2017-06-06 21:47:00,28.2113,135.675,19.16 +2017-06-06 22:02:00,27.4112,135.837,19.17 +2017-06-06 22:17:00,28.7062,136.022,19.16 +2017-06-06 22:32:00,27.91,136.207,19.13 +2017-06-06 22:47:00,27.6137,136.217,19.07 +2017-06-06 23:02:00,27.9587,136.43,19.0 +2017-06-06 23:17:00,27.81,136.565,18.92 +2017-06-06 23:32:00,29.34,136.722,18.84 +2017-06-06 23:47:00,28.1612,136.987,18.77 +2017-06-07 00:02:00,28.3613,137.015,18.71 +2017-06-07 00:17:00,27.91,137.317,18.64 +2017-06-07 00:32:00,26.9175,137.283,18.6 +2017-06-07 00:47:00,28.655,137.372,18.56 +2017-06-07 01:02:00,28.165,137.352,18.53 +2017-06-07 01:17:00,28.7513,137.307,18.5 +2017-06-07 01:32:00,28.855,137.482,18.48 +2017-06-07 01:47:00,29.0,137.542,18.42 +2017-06-07 02:02:00,28.5175,137.565,18.41 +2017-06-07 02:17:00,29.2462,137.48,18.38 +2017-06-07 02:32:00,28.4613,137.645,18.34 +2017-06-07 02:47:00,28.2113,137.895,18.3 +2017-06-07 03:02:00,27.8112,137.62,18.31 +2017-06-07 03:17:00,27.8587,137.967,18.29 +2017-06-07 03:32:00,28.9962,137.688,18.26 +2017-06-07 03:47:00,28.6038,137.917,18.26 +2017-06-07 04:02:00,29.0512,138.317,18.26 +2017-06-07 04:17:00,28.7525,138.147,18.21 +2017-06-07 04:32:00,27.3625,138.127,18.16 +2017-06-07 04:47:00,28.6038,138.067,18.16 +2017-06-07 05:02:00,28.2612,138.037,18.14 +2017-06-07 05:17:00,28.7038,137.475,18.14 +2017-06-07 05:32:00,29.0963,136.897,18.13 +2017-06-07 05:47:00,29.0488,136.675,18.11 +2017-06-07 06:02:00,29.1975,136.992,18.12 +2017-06-07 06:17:00,29.9262,136.64,18.12 +2017-06-07 06:32:00,28.4662,136.312,18.15 +2017-06-07 06:47:00,29.4788,136.132,18.13 +2017-06-07 07:02:00,27.5625,136.045,18.09 +2017-06-07 07:17:00,28.7,135.662,18.04 +2017-06-07 07:32:00,29.2462,135.872,17.99 +2017-06-07 07:47:00,28.9012,135.755,17.94 +2017-06-07 08:02:00,28.85,135.65,17.9 +2017-06-07 08:17:00,29.7738,135.802,17.86 +2017-06-07 08:32:00,29.6263,135.857,17.85 +2017-06-07 08:47:00,29.3363,136.022,17.81 +2017-06-07 09:02:00,28.31,135.83,17.78 +2017-06-07 09:17:00,29.05,135.887,17.81 +2017-06-07 09:32:00,28.115,135.18,17.83 +2017-06-07 09:47:00,29.05,136.115,17.82 +2017-06-07 10:02:00,28.9025,135.825,17.84 +2017-06-07 10:17:00,27.6663,135.842,17.88 +2017-06-07 10:32:00,30.0212,135.877,17.89 +2017-06-07 10:47:00,30.4575,135.915,17.95 +2017-06-07 11:02:00,28.41,136.192,18.0 +2017-06-07 11:17:00,29.0488,135.87,17.98 +2017-06-07 11:32:00,29.0925,136.345,18.02 +2017-06-07 11:47:00,30.405,135.955,18.09 +2017-06-07 12:02:00,29.1925,135.885,18.15 +2017-06-07 12:17:00,28.1637,136.235,18.14 +2017-06-07 12:32:00,28.3575,136.16,18.14 +2017-06-07 12:47:00,28.5525,136.295,18.2 +2017-06-07 13:02:00,29.7712,135.967,18.23 +2017-06-07 13:17:00,28.4587,136.175,18.27 +2017-06-07 13:32:00,28.1087,136.072,18.3 +2017-06-07 13:47:00,29.145,136.375,18.37 +2017-06-07 14:02:00,29.9225,135.867,18.39 +2017-06-07 14:17:00,28.7975,135.73,18.39 +2017-06-07 14:32:00,29.2913,135.897,18.37 +2017-06-07 14:47:00,29.5275,136.045,18.36 +2017-06-07 15:02:00,28.1125,135.997,18.35 +2017-06-07 15:17:00,29.145,135.945,18.37 +2017-06-07 15:32:00,29.1012,136.15,18.38 +2017-06-07 15:47:00,30.0238,135.455,18.39 +2017-06-07 16:02:00,29.77,135.67,18.41 +2017-06-07 16:17:00,28.415,135.96,18.44 +2017-06-07 16:32:00,29.2438,136.3,18.45 +2017-06-07 16:47:00,28.8012,136.12,18.4 +2017-06-07 17:02:00,29.3375,135.995,18.38 +2017-06-07 17:17:00,29.0,136.162,18.36 +2017-06-07 17:32:00,29.5287,136.05,18.34 +2017-06-07 17:47:00,27.6125,135.917,18.32 +2017-06-07 18:02:00,29.2937,135.942,18.32 +2017-06-07 18:17:00,29.0488,136.17,18.3 +2017-06-07 18:32:00,28.7513,136.315,18.3 +2017-06-07 18:47:00,28.1125,136.425,18.31 +2017-06-07 19:02:00,29.8763,136.252,18.3 +2017-06-07 19:17:00,28.4613,136.173,18.29 +2017-06-07 19:32:00,29.2425,136.102,18.3 +2017-06-07 19:47:00,28.9037,136.102,18.32 +2017-06-07 20:02:00,29.1925,136.158,18.33 +2017-06-07 20:17:00,29.3387,136.067,18.32 +2017-06-07 20:32:00,28.5088,135.92,18.34 +2017-06-07 20:47:00,29.1462,135.962,18.33 +2017-06-07 21:02:00,29.1425,135.905,18.32 +2017-06-07 21:17:00,28.7025,135.895,18.31 +2017-06-07 21:32:00,29.9737,135.835,18.31 +2017-06-07 21:47:00,30.3075,135.832,18.27 +2017-06-07 22:02:00,29.0975,135.895,18.24 +2017-06-07 22:17:00,29.5775,135.902,18.23 +2017-06-07 22:32:00,28.8037,135.83,18.22 +2017-06-07 22:47:00,29.9225,135.86,18.2 +2017-06-07 23:02:00,29.005,135.775,18.17 +2017-06-07 23:17:00,30.8538,135.857,18.13 +2017-06-07 23:32:00,28.6038,135.765,18.11 +2017-06-07 23:47:00,28.9012,135.715,18.07 +2017-06-08 00:02:00,28.7038,135.725,18.05 +2017-06-08 00:17:00,28.6488,135.582,18.03 +2017-06-08 00:32:00,30.1175,135.592,18.0 +2017-06-08 00:47:00,28.6075,135.505,17.98 +2017-06-08 01:02:00,29.875,135.495,17.96 +2017-06-08 01:17:00,29.9713,135.42,17.94 +2017-06-08 01:32:00,29.7712,135.432,17.9 +2017-06-08 01:47:00,29.9212,135.295,17.84 +2017-06-08 02:02:00,28.8988,135.247,17.8 +2017-06-08 02:17:00,28.9987,135.298,17.79 +2017-06-08 02:32:00,29.5775,135.235,17.76 +2017-06-08 02:47:00,29.045,135.197,17.74 +2017-06-08 03:02:00,30.0687,135.015,17.7 +2017-06-08 03:17:00,29.825,134.952,17.68 +2017-06-08 03:32:00,28.9487,134.877,17.65 +2017-06-08 03:47:00,29.0963,134.83,17.63 +2017-06-08 04:02:00,29.8763,134.707,17.59 +2017-06-08 04:17:00,30.1637,134.58,17.55 +2017-06-08 04:32:00,28.5537,134.44,17.52 +2017-06-08 04:47:00,28.6512,134.298,17.5 +2017-06-08 05:02:00,28.995,134.283,17.48 +2017-06-08 05:17:00,28.8,134.12,17.46 +2017-06-08 05:32:00,30.6075,134.122,17.46 +2017-06-08 05:47:00,27.9075,134.075,17.46 +2017-06-08 06:02:00,30.56,134.087,17.46 +2017-06-08 06:17:00,28.9525,134.035,17.46 +2017-06-08 06:32:00,29.6762,134.045,17.47 +2017-06-08 06:47:00,28.6488,133.847,17.47 +2017-06-08 07:02:00,28.8037,133.872,17.48 +2017-06-08 07:17:00,29.6263,133.707,17.48 +2017-06-08 07:32:00,28.75,133.742,17.47 +2017-06-08 07:47:00,28.46,133.67,17.44 +2017-06-08 08:02:00,27.6625,133.285,17.43 +2017-06-08 08:17:00,29.0462,133.597,17.43 +2017-06-08 08:32:00,29.3862,133.227,17.44 +2017-06-08 08:47:00,29.2425,133.24,17.44 +2017-06-08 09:02:00,30.07,133.387,17.44 +2017-06-08 09:17:00,30.26,133.257,17.45 +2017-06-08 09:32:00,29.9238,133.205,17.47 +2017-06-08 09:47:00,29.7787,133.057,17.46 +2017-06-08 10:02:00,28.9025,133.26,17.45 +2017-06-08 10:17:00,29.335,132.783,17.45 +2017-06-08 10:32:00,29.4788,132.783,17.47 +2017-06-08 10:47:00,29.2913,132.707,17.5 +2017-06-08 11:02:00,28.0563,132.74,17.5 +2017-06-08 11:17:00,30.4587,132.533,17.47 +2017-06-08 11:32:00,28.7038,132.567,17.46 +2017-06-08 11:47:00,29.6775,132.64,17.45 +2017-06-08 12:02:00,28.6038,132.395,17.47 +2017-06-08 12:17:00,30.8512,132.21,17.45 +2017-06-08 12:32:00,29.6263,132.15,17.49 +2017-06-08 12:47:00,29.8262,132.077,17.57 +2017-06-08 13:02:00,27.9075,131.852,17.63 +2017-06-08 13:17:00,29.5737,131.925,17.7 +2017-06-08 13:32:00,29.1,131.692,17.73 +2017-06-08 13:47:00,28.7513,131.673,17.78 +2017-06-08 14:02:00,29.43,131.597,17.81 +2017-06-08 14:17:00,28.9525,131.637,17.83 +2017-06-08 14:32:00,28.75,131.438,17.88 +2017-06-08 14:47:00,30.51,131.247,17.93 +2017-06-08 15:02:00,30.1137,131.29,17.99 +2017-06-08 15:17:00,29.0475,131.173,18.02 +2017-06-08 15:32:00,28.3587,130.905,18.03 +2017-06-08 15:47:00,29.625,131.08,18.0 +2017-06-08 16:02:00,29.3838,130.785,18.0 +2017-06-08 16:17:00,28.7012,130.565,17.99 +2017-06-08 16:32:00,29.8737,130.382,17.99 +2017-06-08 16:47:00,30.5125,130.227,17.99 +2017-06-08 17:02:00,28.3613,130.022,18.0 +2017-06-08 17:17:00,28.2588,129.923,18.01 +2017-06-08 17:32:00,28.8,129.875,18.02 +2017-06-08 17:47:00,28.4112,129.667,18.03 +2017-06-08 18:02:00,28.7038,129.595,18.04 +2017-06-08 18:17:00,28.46,129.37,18.05 +2017-06-08 18:32:00,28.3125,129.32,18.05 +2017-06-08 18:47:00,30.5112,129.165,18.06 +2017-06-08 19:02:00,29.055,129.05,18.07 +2017-06-08 19:17:00,29.6762,129.022,18.08 +2017-06-08 19:32:00,28.5525,128.955,18.09 +2017-06-08 19:47:00,29.5788,128.905,18.09 +2017-06-08 20:02:00,28.8012,128.845,18.09 +2017-06-08 20:17:00,29.5812,128.73,18.09 +2017-06-08 20:32:00,27.5587,128.647,18.08 +2017-06-08 20:47:00,29.3887,128.567,18.07 +2017-06-08 21:02:00,28.2113,128.533,18.06 +2017-06-08 21:17:00,28.1087,128.447,18.05 +2017-06-08 21:32:00,28.9538,128.423,18.04 +2017-06-08 21:47:00,28.3112,128.415,18.05 +2017-06-08 22:02:00,28.165,128.317,18.07 +2017-06-08 22:17:00,30.26,128.298,18.08 +2017-06-08 22:32:00,29.7312,128.283,18.08 +2017-06-08 22:47:00,28.8512,128.317,18.12 +2017-06-08 23:02:00,29.4325,128.197,18.13 +2017-06-08 23:17:00,27.8575,128.167,18.15 +2017-06-08 23:32:00,27.5625,128.12,18.15 +2017-06-08 23:47:00,29.9713,128.155,18.17 +2017-06-09 00:02:00,27.8063,128.158,18.18 +2017-06-09 00:17:00,27.46,128.062,18.19 +2017-06-09 00:32:00,27.6625,127.905,18.2 +2017-06-09 00:47:00,29.1,127.85,18.21 +2017-06-09 01:02:00,29.6275,127.77,18.21 +2017-06-09 01:17:00,28.4088,127.61,18.19 +2017-06-09 01:32:00,29.1475,127.575,18.17 +2017-06-09 01:47:00,27.8063,127.545,18.14 +2017-06-09 02:02:00,29.4812,127.425,18.1 +2017-06-09 02:17:00,29.3425,127.427,18.06 +2017-06-09 02:32:00,28.51,127.33,18.0 +2017-06-09 02:47:00,27.905,127.257,17.93 +2017-06-09 03:02:00,29.4325,127.26,17.86 +2017-06-09 03:17:00,27.855,127.275,17.77 +2017-06-09 03:32:00,29.1937,127.24,17.7 +2017-06-09 03:47:00,29.435,127.152,17.62 +2017-06-09 04:02:00,29.3862,127.272,17.58 +2017-06-09 04:17:00,28.5062,127.23,17.56 +2017-06-09 04:32:00,29.245,127.33,17.53 +2017-06-09 04:47:00,29.4337,127.137,17.51 +2017-06-09 05:02:00,29.2487,127.822,17.51 +2017-06-09 05:17:00,28.555,125.878,17.5 +2017-06-09 05:32:00,28.7525,123.628,17.47 +2017-06-09 05:47:00,28.1137,121.878,17.48 +2017-06-09 06:02:00,29.5287,120.61,17.5 +2017-06-09 06:17:00,30.1625,119.675,17.54 +2017-06-09 06:32:00,29.0975,119.02,17.57 +2017-06-09 06:47:00,28.6038,118.592,17.62 +2017-06-09 07:02:00,28.9975,118.277,17.7 +2017-06-09 07:17:00,29.0,118.262,17.81 +2017-06-09 07:32:00,28.9575,118.215,17.9 +2017-06-09 07:47:00,28.9562,118.367,17.93 +2017-06-09 08:02:00,29.1975,118.51,17.98 +2017-06-09 08:17:00,28.4625,119.015,18.07 +2017-06-09 08:32:00,28.655,119.507,18.13 +2017-06-09 08:47:00,28.8525,120.055,18.23 +2017-06-09 09:02:00,29.245,120.312,18.29 +2017-06-09 09:17:00,29.5312,120.552,18.38 +2017-06-09 09:32:00,29.2925,120.99,18.46 +2017-06-09 09:47:00,29.6787,121.465,18.54 +2017-06-09 10:02:00,29.9725,121.887,18.63 +2017-06-09 10:17:00,29.5825,122.195,18.7 +2017-06-09 10:32:00,28.01,122.475,18.77 +2017-06-09 10:47:00,30.21,123.08,18.85 +2017-06-09 11:02:00,29.1488,123.46,18.84 +2017-06-09 11:17:00,28.9525,124.03,18.9 +2017-06-09 11:32:00,29.8275,124.22,18.85 +2017-06-09 11:47:00,29.1462,124.225,18.84 +2017-06-09 12:02:00,30.115,124.685,18.81 +2017-06-09 12:17:00,29.1987,125.007,18.78 +2017-06-09 12:32:00,28.9525,125.31,18.8 +2017-06-09 12:47:00,28.7975,125.628,18.79 +2017-06-09 13:02:00,28.36,125.96,18.78 +2017-06-09 13:17:00,28.1637,125.992,18.78 +2017-06-09 13:32:00,28.9075,126.242,18.79 +2017-06-09 13:47:00,29.0013,126.628,18.83 +2017-06-09 14:02:00,28.4613,126.902,18.8 +2017-06-09 14:17:00,27.4125,127.207,18.79 +2017-06-09 14:32:00,27.81,127.527,18.76 +2017-06-09 14:47:00,28.755,128.072,18.74 +2017-06-09 15:02:00,28.7012,128.595,18.7 +2017-06-09 15:17:00,28.555,128.385,18.66 +2017-06-09 15:32:00,30.5112,128.805,18.61 +2017-06-09 15:47:00,28.265,129.04,18.57 +2017-06-09 16:02:00,26.8213,128.91,18.54 +2017-06-09 16:17:00,28.95,129.03,18.51 +2017-06-09 16:32:00,28.705,129.542,18.48 +2017-06-09 16:47:00,28.36,129.355,18.44 +2017-06-09 17:02:00,28.7038,129.582,18.42 +2017-06-09 17:17:00,28.9037,129.377,18.41 +2017-06-09 17:32:00,28.4125,129.387,18.4 +2017-06-09 17:47:00,30.215,129.255,18.4 +2017-06-09 18:02:00,28.0112,129.132,18.39 +2017-06-09 18:17:00,29.7787,128.882,18.4 +2017-06-09 18:32:00,27.91,128.68,18.41 +2017-06-09 18:47:00,29.34,128.423,18.41 +2017-06-09 19:02:00,28.4613,128.26,18.4 +2017-06-09 19:17:00,28.3112,128.08,18.4 +2017-06-09 19:32:00,27.4112,128.062,18.4 +2017-06-09 19:47:00,28.06,127.902,18.41 +2017-06-09 20:02:00,28.8525,127.857,18.4 +2017-06-09 20:17:00,28.1625,127.677,18.39 +2017-06-09 20:32:00,28.5088,127.68,18.4 +2017-06-09 20:47:00,28.3087,127.452,18.42 +2017-06-09 21:02:00,27.715,127.36,18.46 +2017-06-09 21:17:00,28.4137,127.197,18.51 +2017-06-09 21:32:00,29.05,127.207,18.52 +2017-06-09 21:47:00,29.0037,127.055,18.55 +2017-06-09 22:02:00,28.9512,127.107,18.55 +2017-06-09 22:17:00,29.0537,127.143,18.55 +2017-06-09 22:32:00,29.2475,127.173,18.57 +2017-06-09 22:47:00,28.2625,127.262,18.59 +2017-06-09 23:02:00,28.8538,127.227,18.57 +2017-06-09 23:17:00,28.515,127.182,18.56 +2017-06-09 23:32:00,27.4637,127.137,18.58 +2017-06-09 23:47:00,28.6575,127.1,18.55 +2017-06-10 00:02:00,28.1137,127.095,18.55 +2017-06-10 00:17:00,28.0625,127.07,18.51 +2017-06-10 00:32:00,27.965,127.13,18.49 +2017-06-10 00:47:00,28.705,127.2,18.47 +2017-06-10 01:02:00,27.11,127.247,18.43 +2017-06-10 01:17:00,28.0137,127.337,18.4 +2017-06-10 01:32:00,27.9637,127.4,18.35 +2017-06-10 01:47:00,29.3363,127.395,18.3 +2017-06-10 02:02:00,29.2913,127.423,18.26 +2017-06-10 02:17:00,28.11,127.395,18.21 +2017-06-10 02:32:00,29.0013,127.387,18.18 +2017-06-10 02:47:00,28.5575,127.367,18.13 +2017-06-10 03:02:00,28.4625,127.497,18.09 +2017-06-10 03:17:00,27.6137,127.503,18.05 +2017-06-10 03:32:00,29.3875,127.617,18.02 +2017-06-10 03:47:00,28.5575,127.75,17.99 +2017-06-10 04:02:00,29.0037,127.817,17.99 +2017-06-10 04:17:00,28.5587,127.908,17.98 +2017-06-10 04:32:00,28.6025,127.975,17.97 +2017-06-10 04:47:00,28.805,127.945,17.96 +2017-06-10 05:02:00,29.8763,127.882,17.98 +2017-06-10 05:17:00,26.9637,127.987,17.99 +2017-06-10 05:32:00,28.7525,127.992,18.02 +2017-06-10 05:47:00,28.7575,128.01,18.06 +2017-06-10 06:02:00,29.0537,128.225,18.1 +2017-06-10 06:17:00,28.1087,128.325,18.14 +2017-06-10 06:32:00,29.1475,128.25,18.19 +2017-06-10 06:47:00,29.2438,128.533,18.25 +2017-06-10 07:02:00,27.7162,128.542,18.31 +2017-06-10 07:17:00,29.295,128.665,18.35 +2017-06-10 07:32:00,29.1987,128.632,18.4 +2017-06-10 07:47:00,27.4625,128.762,18.47 +2017-06-10 08:02:00,29.1462,128.725,18.5 +2017-06-10 08:17:00,28.3125,128.82,18.55 +2017-06-10 08:32:00,28.41,128.835,18.59 +2017-06-10 08:47:00,28.2113,129.06,18.65 +2017-06-10 09:02:00,27.5625,128.89,18.73 +2017-06-10 09:17:00,28.1637,129.135,18.79 +2017-06-10 09:32:00,28.41,129.018,18.83 +2017-06-10 09:47:00,28.955,129.247,18.86 +2017-06-10 10:02:00,28.855,129.197,18.92 +2017-06-10 10:17:00,29.295,129.475,18.98 +2017-06-10 10:32:00,29.245,129.6,18.95 +2017-06-10 10:47:00,29.1488,129.47,18.94 +2017-06-10 11:02:00,28.0612,129.47,18.87 +2017-06-10 11:17:00,28.8037,129.41,18.81 +2017-06-10 11:32:00,28.9512,129.36,18.89 +2017-06-10 11:47:00,27.8625,129.42,18.84 +2017-06-10 12:02:00,27.5125,129.36,18.88 +2017-06-10 12:17:00,28.6537,129.427,18.91 +2017-06-10 12:32:00,29.875,129.55,18.99 +2017-06-10 12:47:00,28.265,129.752,18.94 +2017-06-10 13:02:00,28.8525,129.78,18.98 +2017-06-10 13:17:00,28.6525,129.77,19.0 +2017-06-10 13:32:00,29.0963,129.938,18.99 +2017-06-10 13:47:00,29.5338,129.662,19.0 +2017-06-10 14:02:00,28.9538,129.765,18.96 +2017-06-10 14:17:00,29.095,129.785,18.98 +2017-06-10 14:32:00,28.3138,129.742,18.98 +2017-06-10 14:47:00,28.7012,129.87,18.95 +2017-06-10 15:02:00,27.5088,129.765,18.94 +2017-06-10 15:17:00,26.7162,129.962,18.95 +2017-06-10 15:32:00,28.465,129.862,18.95 +2017-06-10 15:47:00,30.4637,129.935,18.96 +2017-06-10 16:02:00,28.655,129.965,18.96 +2017-06-10 16:17:00,30.46,129.952,18.94 +2017-06-10 16:32:00,27.2588,129.97,18.92 +2017-06-10 16:47:00,29.2937,129.87,18.91 +2017-06-10 17:02:00,28.9525,129.84,18.9 +2017-06-10 17:17:00,27.26,129.895,18.91 +2017-06-10 17:32:00,29.15,129.805,18.91 +2017-06-10 17:47:00,27.3075,129.927,18.92 +2017-06-10 18:02:00,28.1663,130.057,18.93 +2017-06-10 18:17:00,27.9625,130.082,18.95 +2017-06-10 18:32:00,27.4112,130.057,18.97 +2017-06-10 18:47:00,27.37,130.07,18.99 +2017-06-10 19:02:00,28.6087,130.002,19.02 +2017-06-10 19:17:00,28.1113,130.022,19.06 +2017-06-10 19:32:00,27.86,129.875,19.08 +2017-06-10 19:47:00,27.9587,129.862,19.09 +2017-06-10 20:02:00,27.0112,129.877,19.13 +2017-06-10 20:17:00,27.4112,129.855,19.12 +2017-06-10 20:32:00,28.1137,129.9,19.12 +2017-06-10 20:47:00,29.0037,129.932,19.11 +2017-06-10 21:02:00,27.4613,129.98,19.18 +2017-06-10 21:17:00,28.515,130.005,19.19 +2017-06-10 21:32:00,28.36,129.987,19.21 +2017-06-10 21:47:00,27.0587,129.932,19.24 +2017-06-10 22:02:00,28.3613,129.85,19.25 +2017-06-10 22:17:00,27.4112,129.795,19.26 +2017-06-10 22:32:00,27.7575,129.765,19.27 +2017-06-10 22:47:00,27.4125,129.78,19.29 +2017-06-10 23:02:00,27.3625,129.752,19.31 +2017-06-10 23:17:00,27.4637,129.765,19.35 +2017-06-10 23:32:00,28.8025,129.845,19.37 +2017-06-10 23:47:00,27.81,129.908,19.39 +2017-06-11 00:02:00,28.6087,129.88,19.38 +2017-06-11 00:17:00,27.8125,129.857,19.4 +2017-06-11 00:32:00,28.31,129.812,19.42 +2017-06-11 00:47:00,28.1137,129.732,19.43 +2017-06-11 01:02:00,28.0625,129.635,19.43 +2017-06-11 01:17:00,27.615,129.567,19.41 +2017-06-11 01:32:00,26.915,129.53,19.41 +2017-06-11 01:47:00,28.3138,129.507,19.4 +2017-06-11 02:02:00,27.3625,129.467,19.38 +2017-06-11 02:17:00,27.8075,129.502,19.36 +2017-06-11 02:32:00,28.3613,129.515,19.32 +2017-06-11 02:47:00,28.5037,129.495,19.3 +2017-06-11 03:02:00,28.5112,129.472,19.25 +2017-06-11 03:17:00,28.4125,129.5,19.2 +2017-06-11 03:32:00,28.3063,129.39,19.14 +2017-06-11 03:47:00,27.81,129.355,19.09 +2017-06-11 04:02:00,28.7525,129.27,19.04 +2017-06-11 04:17:00,27.76,129.235,19.0 +2017-06-11 04:32:00,29.2937,129.207,18.96 +2017-06-11 04:47:00,29.3825,129.25,18.93 +2017-06-11 05:02:00,27.5137,129.195,18.91 +2017-06-11 05:17:00,26.7687,129.275,18.91 +2017-06-11 05:32:00,28.4112,129.302,18.92 +2017-06-11 05:47:00,27.46,129.337,18.94 +2017-06-11 06:02:00,28.0587,129.257,18.97 +2017-06-11 06:17:00,28.6062,129.202,19.01 +2017-06-11 06:32:00,28.2663,129.087,19.06 +2017-06-11 06:47:00,27.4625,128.99,19.11 +2017-06-11 07:02:00,27.9037,128.88,19.18 +2017-06-11 07:17:00,28.0025,128.837,19.24 +2017-06-11 07:32:00,28.46,128.76,19.31 +2017-06-11 07:47:00,28.11,128.735,19.39 +2017-06-11 08:02:00,29.045,128.817,19.5 +2017-06-11 08:17:00,29.195,128.717,19.56 +2017-06-11 08:32:00,29.4788,128.923,19.62 +2017-06-11 08:47:00,27.9562,128.815,19.71 +2017-06-11 09:02:00,27.4088,128.895,19.82 +2017-06-11 09:17:00,29.1963,128.9,19.88 +2017-06-11 09:32:00,27.3637,128.697,19.96 +2017-06-11 09:47:00,28.4613,128.59,20.03 +2017-06-11 10:02:00,28.3587,128.455,20.1 +2017-06-11 10:17:00,28.41,128.455,20.17 +2017-06-11 10:32:00,28.36,128.555,20.27 +2017-06-11 10:47:00,29.4325,128.367,20.37 +2017-06-11 11:02:00,27.9088,128.28,20.43 +2017-06-11 11:17:00,27.4088,128.152,20.47 +2017-06-11 11:32:00,27.7137,128.542,20.54 +2017-06-11 11:47:00,28.6038,128.372,20.57 +2017-06-11 12:02:00,28.9062,128.175,20.67 +2017-06-11 12:17:00,28.3125,127.995,20.63 +2017-06-11 12:32:00,29.245,127.878,20.67 +2017-06-11 12:47:00,29.0963,127.805,20.65 +2017-06-11 13:02:00,27.6625,127.775,20.67 +2017-06-11 13:17:00,27.1575,127.902,20.66 +2017-06-11 13:32:00,27.8087,127.587,20.61 +2017-06-11 13:47:00,28.3063,127.605,20.6 +2017-06-11 14:02:00,27.31,127.73,20.62 +2017-06-11 14:17:00,27.8112,127.945,20.61 +2017-06-11 14:32:00,28.26,127.665,20.56 +2017-06-11 14:47:00,27.5638,127.51,20.53 +2017-06-11 15:02:00,28.2113,127.655,20.49 +2017-06-11 15:17:00,29.0512,127.522,20.44 +2017-06-11 15:32:00,28.605,127.367,20.41 +2017-06-11 15:47:00,28.2612,127.173,20.38 +2017-06-11 16:02:00,28.7513,127.408,20.33 +2017-06-11 16:17:00,28.8525,127.322,20.33 +2017-06-11 16:32:00,28.0575,127.367,20.29 +2017-06-11 16:47:00,28.8525,127.47,20.25 +2017-06-11 17:02:00,26.8675,127.492,20.19 +2017-06-11 17:17:00,28.9062,127.52,20.17 +2017-06-11 17:32:00,29.3412,127.417,20.17 +2017-06-11 17:47:00,26.2725,127.315,20.16 +2017-06-11 18:02:00,29.05,127.322,20.15 +2017-06-11 18:17:00,28.905,127.305,20.14 +2017-06-11 18:32:00,27.9613,127.242,20.14 +2017-06-11 18:47:00,27.9625,127.332,20.15 +2017-06-11 19:02:00,27.3587,127.372,20.16 +2017-06-11 19:17:00,27.6113,127.423,20.18 +2017-06-11 19:32:00,28.21,127.522,20.2 +2017-06-11 19:47:00,28.7075,127.503,20.22 +2017-06-11 20:02:00,27.9088,127.592,20.26 +2017-06-11 20:17:00,29.4337,127.572,20.28 +2017-06-11 20:32:00,27.91,127.48,20.34 +2017-06-11 20:47:00,27.1588,127.412,20.39 +2017-06-11 21:02:00,27.415,127.315,20.45 +2017-06-11 21:17:00,27.8112,127.372,20.52 +2017-06-11 21:32:00,27.96,127.37,20.58 +2017-06-11 21:47:00,28.26,127.362,20.63 +2017-06-11 22:02:00,28.36,127.492,20.68 +2017-06-11 22:17:00,29.0488,127.507,20.73 +2017-06-11 22:32:00,25.5887,127.565,20.75 +2017-06-11 22:47:00,29.2462,127.518,20.8 +2017-06-11 23:02:00,28.655,127.455,20.84 +2017-06-11 23:17:00,26.67,127.4,20.87 +2017-06-11 23:32:00,29.3875,127.415,20.95 +2017-06-11 23:47:00,28.7988,127.397,20.98 +2017-06-12 00:02:00,27.06,127.417,21.02 +2017-06-12 00:17:00,29.4362,127.342,21.06 +2017-06-12 00:32:00,28.1663,127.425,21.09 +2017-06-12 00:47:00,28.1612,127.41,21.12 +2017-06-12 01:02:00,28.4137,127.442,21.12 +2017-06-12 01:17:00,29.685,127.415,21.13 +2017-06-12 01:32:00,27.3625,127.393,21.12 +2017-06-12 01:47:00,28.1663,127.38,21.1 +2017-06-12 02:02:00,26.7175,127.268,21.07 +2017-06-12 02:17:00,28.5137,127.222,21.03 +2017-06-12 02:32:00,26.825,127.14,21.0 +2017-06-12 02:47:00,29.2012,127.253,20.96 +2017-06-12 03:02:00,25.9412,127.283,20.92 +2017-06-12 03:17:00,27.6712,127.607,20.87 +2017-06-12 03:32:00,27.715,127.442,20.83 +2017-06-12 03:47:00,27.415,127.307,20.82 +2017-06-12 04:02:00,28.2663,127.582,20.8 +2017-06-12 04:17:00,28.4637,127.253,20.78 +2017-06-12 04:32:00,28.515,127.37,20.77 +2017-06-12 04:47:00,27.11,127.102,20.75 +2017-06-12 05:02:00,27.72,127.14,20.73 +2017-06-12 05:17:00,28.2625,127.182,20.74 +2017-06-12 05:32:00,28.415,127.097,20.72 +2017-06-12 05:47:00,28.8525,127.378,20.73 +2017-06-12 06:02:00,26.9637,127.26,20.69 +2017-06-12 06:17:00,28.2625,127.62,20.69 +2017-06-12 06:32:00,28.9562,127.512,20.67 +2017-06-12 06:47:00,27.515,127.602,20.65 +2017-06-12 07:02:00,28.0612,127.665,20.67 +2017-06-12 07:17:00,27.4137,127.423,20.7 +2017-06-12 07:32:00,27.5112,127.567,20.75 +2017-06-12 07:47:00,27.6663,127.408,20.81 +2017-06-12 08:02:00,28.5137,127.02,20.88 +2017-06-12 08:17:00,28.6537,127.27,20.95 +2017-06-12 08:32:00,28.06,127.128,21.03 +2017-06-12 08:47:00,29.2975,127.312,21.11 +2017-06-12 09:02:00,29.2988,127.382,21.17 +2017-06-12 09:17:00,26.7675,127.015,21.24 +2017-06-12 09:32:00,28.4112,127.185,21.31 +2017-06-12 09:47:00,28.1113,127.76,21.39 +2017-06-12 10:02:00,27.67,127.387,21.45 +2017-06-12 10:17:00,28.6562,127.34,21.52 +2017-06-12 10:32:00,27.1612,127.335,21.52 +2017-06-12 10:47:00,28.3613,127.227,21.6 +2017-06-12 11:02:00,28.315,127.612,21.61 +2017-06-12 11:17:00,27.96,127.205,21.7 +2017-06-12 11:32:00,28.065,127.35,21.67 +2017-06-12 11:47:00,28.06,127.322,21.68 +2017-06-12 12:02:00,29.7325,127.087,21.7 +2017-06-12 12:17:00,29.8275,127.055,21.65 +2017-06-12 12:32:00,28.8037,127.22,21.62 +2017-06-12 12:47:00,28.655,127.277,21.54 +2017-06-12 13:02:00,27.515,127.0,21.51 +2017-06-12 13:17:00,28.0175,127.128,21.5 +2017-06-12 13:32:00,28.265,126.975,21.47 +2017-06-12 13:47:00,28.215,126.745,21.49 +2017-06-12 14:02:00,26.5725,126.8,21.49 +2017-06-12 14:17:00,27.0137,126.977,21.51 +2017-06-12 14:32:00,28.56,126.582,21.48 +2017-06-12 14:47:00,29.0525,126.31,21.45 +2017-06-12 15:02:00,27.2087,126.23,21.43 +2017-06-12 15:17:00,27.5187,126.265,21.39 +2017-06-12 15:32:00,28.7513,125.947,21.36 +2017-06-12 15:47:00,28.1162,126.022,21.28 +2017-06-12 16:02:00,29.0987,125.607,21.21 +2017-06-12 16:17:00,29.0062,125.86,21.14 +2017-06-12 16:32:00,26.9137,125.197,21.06 +2017-06-12 16:47:00,27.8587,125.115,21.0 +2017-06-12 17:02:00,27.7612,124.995,20.93 +2017-06-12 17:17:00,28.465,124.875,20.85 +2017-06-12 17:32:00,28.9088,124.817,20.78 +2017-06-12 17:47:00,28.8037,124.83,20.73 +2017-06-12 18:02:00,29.0512,124.897,20.71 +2017-06-12 18:17:00,27.86,124.82,20.66 +2017-06-12 18:32:00,27.9625,124.84,20.63 +2017-06-12 18:47:00,29.0037,124.697,20.61 +2017-06-12 19:02:00,28.605,124.515,20.59 +2017-06-12 19:17:00,28.0125,124.66,20.56 +2017-06-12 19:32:00,29.2487,124.537,20.52 +2017-06-12 19:47:00,28.115,124.55,20.51 +2017-06-12 20:02:00,28.41,124.492,20.51 +2017-06-12 20:17:00,26.4688,124.43,20.54 +2017-06-12 20:32:00,28.56,124.58,20.52 +2017-06-12 20:47:00,28.8538,124.753,20.53 +2017-06-12 21:02:00,29.2012,124.837,20.54 +2017-06-12 21:17:00,28.365,124.925,20.55 +2017-06-12 21:32:00,27.5125,124.91,20.56 +2017-06-12 21:47:00,28.3625,125.035,20.57 +2017-06-12 22:02:00,27.7675,125.097,20.59 +2017-06-12 22:17:00,27.2575,124.912,20.59 +2017-06-12 22:32:00,28.4637,124.98,20.58 +2017-06-12 22:47:00,29.6325,124.982,20.62 +2017-06-12 23:02:00,27.8613,125.048,20.62 +2017-06-12 23:17:00,28.4625,125.105,20.61 +2017-06-12 23:32:00,27.41,125.265,20.62 +2017-06-12 23:47:00,28.2637,125.24,20.65 +2017-06-13 00:02:00,28.3613,125.295,20.68 +2017-06-13 00:17:00,28.7,125.505,20.67 +2017-06-13 00:32:00,27.7137,125.47,20.66 +2017-06-13 00:47:00,29.925,125.452,20.66 +2017-06-13 01:02:00,27.86,125.512,20.68 +2017-06-13 01:17:00,29.435,125.457,20.71 +2017-06-13 01:32:00,28.2125,125.628,20.74 +2017-06-13 01:47:00,28.06,125.617,20.77 +2017-06-13 02:02:00,28.4112,125.682,20.75 +2017-06-13 02:17:00,29.05,125.697,20.76 +2017-06-13 02:32:00,28.5537,125.805,20.79 +2017-06-13 02:47:00,28.3613,125.862,20.79 +2017-06-13 03:02:00,27.7087,125.915,20.79 +2017-06-13 03:17:00,28.5563,125.9,20.76 +2017-06-13 03:32:00,26.47,125.882,20.73 +2017-06-13 03:47:00,28.8988,125.75,20.68 +2017-06-13 04:02:00,27.3087,125.807,20.64 +2017-06-13 04:17:00,27.3625,125.715,20.57 +2017-06-13 04:32:00,27.46,125.772,20.49 +2017-06-13 04:47:00,28.4625,125.768,20.41 +2017-06-13 05:02:00,28.555,125.94,20.34 +2017-06-13 05:17:00,28.1612,126.065,20.29 +2017-06-13 05:32:00,28.9012,126.355,20.25 +2017-06-13 05:47:00,29.1963,126.462,20.19 +2017-06-13 06:02:00,28.1612,126.577,20.15 +2017-06-13 06:17:00,28.8025,126.65,20.1 +2017-06-13 06:32:00,29.0975,126.635,20.06 +2017-06-13 06:47:00,28.46,126.747,20.03 +2017-06-13 07:02:00,28.7,126.7,20.03 +2017-06-13 07:17:00,27.9587,126.71,20.02 +2017-06-13 07:32:00,28.9987,126.725,20.01 +2017-06-13 07:47:00,29.245,126.61,20.0 +2017-06-13 08:02:00,28.165,126.982,20.02 +2017-06-13 08:17:00,27.2537,127.018,20.02 +2017-06-13 08:32:00,27.0587,126.95,19.98 +2017-06-13 08:47:00,28.06,127.042,19.93 +2017-06-13 09:02:00,28.4613,127.412,19.89 +2017-06-13 09:17:00,29.0525,127.465,19.89 +2017-06-13 09:32:00,29.34,127.65,19.89 +2017-06-13 09:47:00,29.2887,127.762,19.88 +2017-06-13 10:02:00,29.2925,127.637,19.83 +2017-06-13 10:17:00,28.9525,127.908,19.81 +2017-06-13 10:32:00,29.5762,127.712,19.79 +2017-06-13 10:47:00,28.4587,128.085,19.77 +2017-06-13 11:02:00,28.5112,127.995,19.75 +2017-06-13 11:17:00,28.0587,127.765,19.74 +2017-06-13 11:32:00,26.5713,127.865,19.75 +2017-06-13 11:47:00,29.195,127.742,19.75 +2017-06-13 12:02:00,29.7275,128.26,19.74 +2017-06-13 12:17:00,28.16,127.917,19.77 +2017-06-13 12:32:00,28.8487,128.12,19.85 +2017-06-13 12:47:00,29.2438,128.52,19.88 +2017-06-13 13:02:00,28.1113,128.41,19.91 +2017-06-13 13:17:00,28.1125,127.95,19.92 +2017-06-13 13:32:00,29.0975,128.475,19.92 +2017-06-13 13:47:00,28.5112,128.42,19.92 +2017-06-13 14:02:00,27.96,128.555,19.9 +2017-06-13 14:17:00,29.6312,128.455,19.87 +2017-06-13 14:32:00,29.6263,128.395,19.85 +2017-06-13 14:47:00,29.1937,128.067,19.83 +2017-06-13 15:02:00,27.1087,128.507,19.81 +2017-06-13 15:17:00,29.2438,128.345,19.8 +2017-06-13 15:32:00,28.4125,128.575,19.78 +2017-06-13 15:47:00,28.955,128.455,19.74 +2017-06-13 16:02:00,29.0512,128.595,19.7 +2017-06-13 16:17:00,27.9587,128.747,19.66 +2017-06-13 16:32:00,29.0,128.7,19.62 +2017-06-13 16:47:00,28.2637,128.722,19.58 +2017-06-13 17:02:00,28.9575,128.7,19.51 +2017-06-13 17:17:00,28.3637,128.587,19.43 +2017-06-13 17:32:00,28.51,128.712,19.39 +2017-06-13 17:47:00,29.58,128.842,19.33 +2017-06-13 18:02:00,29.345,128.367,19.25 +2017-06-13 18:17:00,29.0512,128.432,19.19 +2017-06-13 18:32:00,30.1675,128.64,19.15 +2017-06-13 18:47:00,29.8275,128.485,19.11 +2017-06-13 19:02:00,28.31,128.452,19.07 +2017-06-13 19:17:00,28.4137,128.607,19.04 +2017-06-13 19:32:00,27.3112,128.542,19.0 +2017-06-13 19:47:00,29.8275,128.635,18.98 +2017-06-13 20:02:00,28.8037,128.675,18.96 +2017-06-13 20:17:00,29.4812,128.768,18.96 +2017-06-13 20:32:00,28.9062,128.815,18.93 +2017-06-13 20:47:00,28.3637,128.85,18.9 +2017-06-13 21:02:00,28.4125,129.02,18.87 +2017-06-13 21:17:00,29.4313,128.935,18.87 +2017-06-13 21:32:00,28.4137,128.96,18.85 +2017-06-13 21:47:00,27.9112,128.957,18.82 +2017-06-13 22:02:00,28.3613,129.107,18.81 +2017-06-13 22:17:00,28.1612,129.158,18.81 +2017-06-13 22:32:00,29.0,129.262,18.8 +2017-06-13 22:47:00,28.3613,129.342,18.8 +2017-06-13 23:02:00,28.0612,129.475,18.78 +2017-06-13 23:17:00,27.8613,129.537,18.75 +2017-06-13 23:32:00,28.165,129.65,18.74 +2017-06-13 23:47:00,28.905,129.72,18.72 +2017-06-14 00:02:00,30.1263,129.78,18.72 +2017-06-14 00:17:00,27.4088,129.807,18.72 +2017-06-14 00:32:00,26.9175,129.702,18.69 +2017-06-14 00:47:00,29.24,129.635,18.7 +2017-06-14 01:02:00,28.7537,129.565,18.7 +2017-06-14 01:17:00,29.6263,129.52,18.71 +2017-06-14 01:32:00,28.5537,129.43,18.68 +2017-06-14 01:47:00,28.555,129.37,18.67 +2017-06-14 02:02:00,28.5125,129.347,18.65 +2017-06-14 02:17:00,29.3375,129.277,18.67 +2017-06-14 02:32:00,27.6625,129.275,18.64 +2017-06-14 02:47:00,30.165,129.205,18.64 +2017-06-14 03:02:00,29.0512,129.205,18.63 +2017-06-14 03:17:00,28.2113,129.162,18.62 +2017-06-14 03:32:00,28.8012,129.01,18.61 +2017-06-14 03:47:00,27.6637,128.875,18.61 +2017-06-14 04:02:00,27.8112,128.685,18.61 +2017-06-14 04:17:00,29.9788,128.457,18.59 +2017-06-14 04:32:00,28.0112,128.342,18.58 +2017-06-14 04:47:00,29.8775,128.268,18.55 +2017-06-14 05:02:00,28.7025,128.077,18.55 +2017-06-14 05:17:00,29.34,127.93,18.56 +2017-06-14 05:32:00,29.1475,127.955,18.59 +2017-06-14 05:47:00,28.0088,127.9,18.62 +2017-06-14 06:02:00,29.2925,127.9,18.65 +2017-06-14 06:17:00,29.5788,127.78,18.67 +2017-06-14 06:32:00,29.1025,127.637,18.69 +2017-06-14 06:47:00,29.5825,127.425,18.69 +2017-06-14 07:02:00,28.3575,127.533,18.7 +2017-06-14 07:17:00,29.1963,127.253,18.75 +2017-06-14 07:32:00,28.1125,127.2,18.77 +2017-06-14 07:47:00,28.3175,127.128,18.78 +2017-06-14 08:02:00,27.9562,126.772,18.81 +2017-06-14 08:17:00,28.3637,126.78,18.88 +2017-06-14 08:32:00,27.8562,126.58,18.94 +2017-06-14 08:47:00,29.1975,126.395,18.99 +2017-06-14 09:02:00,18.685,126.402,15.5 +2017-06-14 09:17:00,24.8787,126.452,19.17 +2017-06-14 09:32:00,24.7325,126.102,19.25 +2017-06-14 09:47:00,26.2562,126.265,19.32 +2017-06-14 10:02:00,24.79,125.99,19.39 +2017-06-14 10:17:00,22.3475,125.97,19.45 +2017-06-14 10:32:00,25.6663,125.665,19.5 +2017-06-14 10:47:00,26.9962,125.58,19.58 +2017-06-14 11:02:00,26.0125,125.365,19.67 +2017-06-14 11:17:00,23.3075,125.137,19.72 +2017-06-14 11:32:00,23.5088,125.022,19.8 +2017-06-14 11:47:00,26.7988,124.935,19.84 +2017-06-14 12:02:00,24.3887,124.88,19.88 +2017-06-14 12:17:00,28.5387,124.557,19.97 +2017-06-14 12:32:00,23.26,124.67,20.02 +2017-06-14 12:47:00,26.7975,124.57,20.05 +2017-06-14 13:02:00,27.09,124.385,20.1 +2017-06-14 13:17:00,28.6862,124.337,20.14 +2017-06-14 13:32:00,26.3087,124.24,20.17 +2017-06-14 13:47:00,27.0938,124.11,20.16 +2017-06-14 14:02:00,25.8737,123.76,20.17 +2017-06-14 14:17:00,25.3375,123.6,20.21 +2017-06-14 14:32:00,22.3475,123.355,20.19 +2017-06-14 14:47:00,26.8412,123.327,20.2 +2017-06-14 15:02:00,25.075,123.062,20.15 +2017-06-14 15:17:00,24.4238,123.033,20.14 +2017-06-14 15:32:00,23.8262,122.855,20.1 +2017-06-14 15:47:00,27.675,122.697,20.08 +2017-06-14 16:02:00,25.6562,122.56,20.04 +2017-06-14 16:17:00,24.7188,122.345,20.03 +2017-06-14 16:32:00,28.0225,122.102,20.01 +2017-06-14 16:47:00,26.88,121.92,19.98 +2017-06-14 17:02:00,25.7012,121.605,19.92 +2017-06-14 17:17:00,26.0912,121.327,19.89 +2017-06-14 17:32:00,26.3775,121.033,19.85 +2017-06-14 17:47:00,24.7625,120.705,19.82 +2017-06-14 18:02:00,24.3213,120.577,19.75 +2017-06-14 18:17:00,26.6312,120.302,19.68 +2017-06-14 18:32:00,26.775,120.17,19.63 +2017-06-14 18:47:00,26.925,119.997,19.57 +2017-06-14 19:02:00,24.5212,119.802,19.54 +2017-06-14 19:17:00,25.215,119.72,19.51 +2017-06-14 19:32:00,24.47,119.512,19.48 +2017-06-14 19:47:00,27.27,119.283,19.47 +2017-06-14 20:02:00,25.8988,119.092,19.46 +2017-06-14 20:17:00,26.045,118.815,19.44 +2017-06-14 20:32:00,26.2787,118.673,19.43 +2017-06-14 20:47:00,25.405,118.5,19.4 +2017-06-14 21:02:00,26.4762,118.4,19.38 +2017-06-14 21:17:00,26.1837,118.257,19.37 +2017-06-14 21:32:00,25.6488,118.195,19.37 +2017-06-14 21:47:00,24.4262,118.155,19.36 +2017-06-14 22:02:00,24.82,118.155,19.35 +2017-06-14 22:17:00,25.065,118.122,19.35 +2017-06-14 22:32:00,24.865,118.075,19.37 +2017-06-14 22:47:00,24.52,117.962,19.38 +2017-06-14 23:02:00,23.6312,117.845,19.38 +2017-06-14 23:17:00,25.265,117.82,19.37 +2017-06-14 23:32:00,25.6512,117.81,19.37 +2017-06-14 23:47:00,29.0587,117.837,19.36 +2017-06-15 00:02:00,23.2913,117.872,19.36 +2017-06-15 00:17:00,24.0163,117.952,19.39 +2017-06-15 00:32:00,26.095,118.007,19.4 +2017-06-15 00:47:00,27.265,118.125,19.41 +2017-06-15 01:02:00,24.6175,118.175,19.45 +2017-06-15 01:17:00,27.1637,118.202,19.47 +2017-06-15 01:32:00,24.9725,118.137,19.49 +2017-06-15 01:47:00,25.02,118.165,19.54 +2017-06-15 02:02:00,24.1663,118.23,19.55 +2017-06-15 02:17:00,27.62,118.255,19.57 +2017-06-15 02:32:00,25.75,118.345,19.64 +2017-06-15 02:47:00,27.1637,118.522,19.66 +2017-06-15 03:02:00,25.8475,118.665,19.69 +2017-06-15 03:17:00,25.9938,118.83,19.7 +2017-06-15 03:32:00,23.3375,118.957,19.71 +2017-06-15 03:47:00,25.605,118.952,19.7 +2017-06-15 04:02:00,25.7475,119.082,19.72 +2017-06-15 04:17:00,25.8962,119.09,19.73 +2017-06-15 04:32:00,25.5475,119.202,19.76 +2017-06-15 04:47:00,25.1125,119.285,19.77 +2017-06-15 05:02:00,23.6813,119.482,19.79 +2017-06-15 05:17:00,26.3325,119.675,19.82 +2017-06-15 05:32:00,27.375,119.908,19.87 +2017-06-15 05:47:00,27.1625,120.17,19.92 +2017-06-15 06:02:00,24.415,120.335,19.96 +2017-06-15 06:17:00,28.5675,120.49,19.98 +2017-06-15 06:32:00,27.4187,120.665,20.02 +2017-06-15 06:47:00,25.0163,120.75,20.13 +2017-06-15 07:02:00,25.8463,120.845,20.24 +2017-06-15 07:17:00,24.7188,120.908,20.32 +2017-06-15 07:32:00,24.8162,121.235,20.4 +2017-06-15 07:47:00,26.2775,121.31,20.46 +2017-06-15 08:02:00,24.8138,121.08,20.52 +2017-06-15 08:17:00,26.325,121.503,20.58 +2017-06-15 08:32:00,24.4212,121.628,20.64 +2017-06-15 08:47:00,24.5238,121.785,20.71 +2017-06-15 09:02:00,25.9912,122.21,20.75 +2017-06-15 09:17:00,27.3187,122.417,20.83 +2017-06-15 09:32:00,26.725,122.35,20.88 +2017-06-15 09:47:00,26.9688,122.525,20.94 +2017-06-15 10:02:00,24.6113,122.302,21.02 +2017-06-15 10:17:00,24.765,122.475,21.07 +2017-06-15 10:32:00,26.7262,122.503,21.14 +2017-06-15 10:47:00,23.5325,122.533,21.19 +2017-06-15 11:02:00,25.75,122.795,21.22 +2017-06-15 11:17:00,23.8262,122.765,21.29 +2017-06-15 11:32:00,24.7162,123.087,21.32 +2017-06-15 11:47:00,26.2787,123.217,21.39 +2017-06-15 12:02:00,25.8463,123.32,21.43 +2017-06-15 12:17:00,22.9025,123.6,21.46 +2017-06-15 12:32:00,24.9713,123.545,21.52 +2017-06-15 12:47:00,25.65,123.438,21.54 +2017-06-15 13:02:00,24.3187,123.533,21.58 +2017-06-15 13:17:00,24.1162,123.535,21.6 +2017-06-15 13:32:00,26.6237,123.497,21.56 +2017-06-15 13:47:00,24.8138,123.702,21.61 +2017-06-15 14:02:00,24.9137,123.658,21.59 +2017-06-15 14:17:00,27.2125,123.772,21.58 +2017-06-15 14:32:00,26.5775,123.842,21.59 +2017-06-15 14:47:00,25.9975,123.825,21.57 +2017-06-15 15:02:00,23.7337,124.035,21.58 +2017-06-15 15:17:00,25.065,124.262,21.63 +2017-06-15 15:32:00,25.2625,124.2,21.64 +2017-06-15 15:47:00,26.0462,124.107,21.65 +2017-06-15 16:02:00,28.1175,124.14,21.61 +2017-06-15 16:17:00,27.915,124.102,21.58 +2017-06-15 16:32:00,27.6225,124.128,21.54 +2017-06-15 16:47:00,23.3925,124.195,21.5 +2017-06-15 17:02:00,25.5062,124.33,21.47 +2017-06-15 17:17:00,24.2162,124.395,21.45 +2017-06-15 17:32:00,25.9475,124.457,21.45 +2017-06-15 17:47:00,26.4262,124.512,21.45 +2017-06-15 18:02:00,25.4538,124.612,21.44 +2017-06-15 18:17:00,27.2137,124.727,21.43 +2017-06-15 18:32:00,27.52,124.662,21.42 +2017-06-15 18:47:00,25.655,124.63,21.39 +2017-06-15 19:02:00,26.3363,124.647,21.37 +2017-06-15 19:17:00,28.1712,124.615,21.33 +2017-06-15 19:32:00,24.765,124.635,21.3 +2017-06-15 19:47:00,25.65,124.697,21.28 +2017-06-15 20:02:00,26.9713,124.91,21.23 +2017-06-15 20:17:00,24.0662,125.13,21.2 +2017-06-15 20:32:00,24.325,125.345,21.17 +2017-06-15 20:47:00,25.8025,125.48,21.14 +2017-06-15 21:02:00,24.5713,125.842,21.1 +2017-06-15 21:17:00,26.28,125.987,21.03 +2017-06-15 21:32:00,25.5025,126.085,20.99 +2017-06-15 21:47:00,24.9175,126.152,20.96 +2017-06-15 22:02:00,28.5175,126.105,20.94 +2017-06-15 22:17:00,25.1125,126.11,20.9 +2017-06-15 22:32:00,29.2087,126.117,20.82 +2017-06-15 22:47:00,26.58,126.145,20.73 +2017-06-15 23:02:00,27.6725,126.185,20.66 +2017-06-15 23:17:00,26.4812,126.202,20.58 +2017-06-15 23:32:00,26.6275,126.265,20.5 +2017-06-15 23:47:00,27.4688,126.365,20.44 +2017-06-16 00:02:00,26.33,126.372,20.41 +2017-06-16 00:17:00,27.9225,126.35,20.39 +2017-06-16 00:32:00,27.27,126.29,20.4 +2017-06-16 00:47:00,28.1712,126.27,20.4 +2017-06-16 01:02:00,27.315,126.215,20.39 +2017-06-16 01:17:00,27.865,126.317,20.41 +2017-06-16 01:32:00,27.32,126.255,20.43 +2017-06-16 01:47:00,25.8,126.262,20.47 +2017-06-16 02:02:00,26.1425,126.472,20.48 +2017-06-16 02:17:00,26.2838,126.312,20.5 +2017-06-16 02:32:00,27.625,126.477,20.48 +2017-06-16 02:47:00,26.2337,126.485,20.48 +2017-06-16 03:02:00,26.28,126.415,20.49 +2017-06-16 03:17:00,26.235,126.4,20.5 +2017-06-16 03:32:00,26.9737,126.29,20.48 +2017-06-16 03:47:00,27.5687,126.192,20.49 +2017-06-16 04:02:00,25.6025,126.26,20.48 +2017-06-16 04:17:00,26.685,126.262,20.49 +2017-06-16 04:32:00,27.3725,126.227,20.5 +2017-06-16 04:47:00,27.2637,126.255,20.51 +2017-06-16 05:02:00,25.9,126.268,20.53 +2017-06-16 05:17:00,26.2812,126.43,20.54 +2017-06-16 05:32:00,25.0687,126.272,20.54 +2017-06-16 05:47:00,26.1837,126.43,20.54 +2017-06-16 06:02:00,26.15,126.515,20.5 +2017-06-16 06:17:00,27.1687,127.66,20.44 +2017-06-16 06:32:00,27.2612,128.197,20.41 +2017-06-16 06:47:00,27.2113,128.57,20.38 +2017-06-16 07:02:00,26.9262,128.34,20.38 +2017-06-16 07:17:00,27.315,128.545,20.41 +2017-06-16 07:32:00,25.8412,128.192,20.48 +2017-06-16 07:47:00,27.115,128.06,20.53 +2017-06-16 08:02:00,27.57,128.475,20.6 +2017-06-16 08:17:00,26.2825,128.245,20.64 +2017-06-16 08:32:00,27.415,128.277,20.62 +2017-06-16 08:47:00,27.1625,128.32,20.57 +2017-06-16 09:02:00,27.765,128.717,20.57 +2017-06-16 09:17:00,27.3125,128.628,20.63 +2017-06-16 09:32:00,27.6162,128.697,20.7 +2017-06-16 09:47:00,26.825,128.73,20.74 +2017-06-16 10:02:00,25.5975,128.345,20.76 +2017-06-16 10:17:00,27.3675,128.923,20.84 +2017-06-16 10:32:00,27.5163,128.42,20.95 +2017-06-16 10:47:00,26.4238,128.825,20.95 +2017-06-16 11:02:00,26.0375,128.667,20.94 +2017-06-16 11:17:00,27.1612,128.9,20.93 +2017-06-16 11:32:00,27.465,128.85,20.99 +2017-06-16 11:47:00,26.33,129.417,21.07 +2017-06-16 12:02:00,26.475,129.408,21.06 +2017-06-16 12:17:00,26.8213,129.688,21.02 +2017-06-16 12:32:00,25.4487,129.597,20.95 +2017-06-16 12:47:00,27.615,129.71,20.99 +2017-06-16 13:02:00,25.5987,129.722,21.09 +2017-06-16 13:17:00,26.0413,129.86,21.04 +2017-06-16 13:32:00,26.3237,130.062,21.01 +2017-06-16 13:47:00,25.99,130.188,21.0 +2017-06-16 14:02:00,25.8962,130.3,20.98 +2017-06-16 14:17:00,25.1125,130.635,21.0 +2017-06-16 14:32:00,27.4625,130.48,20.97 +2017-06-16 14:47:00,25.4025,130.872,20.94 +2017-06-16 15:02:00,24.7625,131.24,20.93 +2017-06-16 15:17:00,26.0887,131.48,20.9 +2017-06-16 15:32:00,26.4275,131.752,20.88 +2017-06-16 15:47:00,26.425,131.522,20.85 +2017-06-16 16:02:00,26.5225,131.487,20.8 +2017-06-16 16:17:00,24.6588,131.355,20.74 +2017-06-16 16:32:00,25.6925,132.237,20.67 +2017-06-16 16:47:00,25.5963,132.145,20.56 +2017-06-16 17:02:00,26.5725,132.44,20.47 +2017-06-16 17:17:00,26.9637,132.92,20.38 +2017-06-16 17:32:00,25.8475,133.117,20.31 +2017-06-16 17:47:00,25.995,132.932,20.22 +2017-06-16 18:02:00,26.9212,133.31,20.14 +2017-06-16 18:17:00,26.775,133.938,20.07 +2017-06-16 18:32:00,26.7725,134.055,19.99 +2017-06-16 18:47:00,27.8112,134.277,19.89 +2017-06-16 19:02:00,25.8937,134.387,19.82 +2017-06-16 19:17:00,27.5175,134.75,19.74 +2017-06-16 19:32:00,26.8262,134.872,19.67 +2017-06-16 19:47:00,26.8688,135.272,19.61 +2017-06-16 20:02:00,25.6425,135.507,19.55 +2017-06-16 20:17:00,25.89,135.887,19.48 +2017-06-16 20:32:00,26.2275,135.97,19.41 +2017-06-16 20:47:00,26.6225,136.307,19.37 +2017-06-16 21:02:00,27.1087,136.56,19.31 +2017-06-16 21:17:00,26.5762,137.012,19.28 +2017-06-16 21:32:00,25.75,137.185,19.26 +2017-06-16 21:47:00,26.7237,137.21,19.22 +2017-06-16 22:02:00,26.4662,137.552,19.18 +2017-06-16 22:17:00,27.7588,137.615,19.15 +2017-06-16 22:32:00,25.8387,137.942,19.15 +2017-06-16 22:47:00,26.425,138.005,19.13 +2017-06-16 23:02:00,25.94,138.185,19.13 +2017-06-16 23:17:00,26.23,138.197,19.14 +2017-06-16 23:32:00,26.525,138.622,19.15 +2017-06-16 23:47:00,26.7225,138.783,19.14 +2017-06-17 00:02:00,25.3538,138.682,19.18 +2017-06-17 00:17:00,27.4112,138.827,19.2 +2017-06-17 00:32:00,27.4125,138.992,19.24 +2017-06-17 00:47:00,27.2062,138.887,19.26 +2017-06-17 01:02:00,26.2825,138.935,19.26 +2017-06-17 01:17:00,24.9112,138.935,19.28 +2017-06-17 01:32:00,26.5737,138.825,19.28 +2017-06-17 01:47:00,26.4713,138.79,19.3 +2017-06-17 02:02:00,27.1125,139.112,19.26 +2017-06-17 02:17:00,27.7188,139.19,19.25 +2017-06-17 02:32:00,26.6237,139.092,19.26 +2017-06-17 02:47:00,27.6162,138.74,19.23 +2017-06-17 03:02:00,25.8463,139.217,19.23 +2017-06-17 03:17:00,27.4637,139.1,19.22 +2017-06-17 03:32:00,26.5762,138.908,19.21 +2017-06-17 03:47:00,27.16,139.002,19.17 +2017-06-17 04:02:00,26.52,138.647,19.17 +2017-06-17 04:17:00,26.3213,138.427,19.13 +2017-06-17 04:32:00,25.7925,138.6,19.14 +2017-06-17 04:47:00,25.84,138.457,19.11 +2017-06-17 05:02:00,26.7237,138.408,19.09 +2017-06-17 05:17:00,27.465,138.387,19.11 +2017-06-17 05:32:00,26.4688,138.393,19.08 +2017-06-17 05:47:00,27.3637,138.237,19.06 +2017-06-17 06:02:00,27.3087,138.292,19.02 +2017-06-17 06:17:00,25.5425,137.947,19.0 +2017-06-17 06:32:00,25.5437,137.612,18.97 +2017-06-17 06:47:00,25.0625,137.482,18.95 +2017-06-17 07:02:00,25.205,137.44,18.93 +2017-06-17 07:17:00,26.2725,136.91,18.91 +2017-06-17 07:32:00,26.7175,137.502,18.89 +2017-06-17 07:47:00,26.0362,137.175,18.92 +2017-06-17 08:02:00,26.0863,137.28,18.96 +2017-06-17 08:17:00,25.8937,137.092,18.98 +2017-06-17 08:32:00,26.6712,136.805,18.99 +2017-06-17 08:47:00,26.4725,137.268,18.97 +2017-06-17 09:02:00,24.9637,137.372,19.0 +2017-06-17 09:17:00,26.57,137.41,19.06 +2017-06-17 09:32:00,26.085,137.147,19.05 +2017-06-17 09:47:00,26.57,136.94,19.08 +2017-06-17 10:02:00,26.3712,136.992,19.17 +2017-06-17 10:17:00,26.2262,136.515,19.23 +2017-06-17 10:32:00,26.575,136.235,19.31 +2017-06-17 10:47:00,26.3262,136.268,19.28 +2017-06-17 11:02:00,27.7137,135.997,19.3 +2017-06-17 11:17:00,25.74,136.35,19.35 +2017-06-17 11:32:00,27.6637,135.555,19.35 +2017-06-17 11:47:00,25.8887,135.647,19.4 +2017-06-17 12:02:00,26.82,135.707,19.41 +2017-06-17 12:17:00,26.1775,135.322,19.37 +2017-06-17 12:32:00,25.5975,135.285,19.33 +2017-06-17 12:47:00,26.2762,134.902,19.35 +2017-06-17 13:02:00,27.3637,134.812,19.4 +2017-06-17 13:17:00,26.225,134.58,19.39 +2017-06-17 13:32:00,27.26,134.227,19.38 +2017-06-17 13:47:00,25.5925,134.38,19.41 +2017-06-17 14:02:00,27.11,134.09,19.43 +2017-06-17 14:17:00,27.5137,134.292,19.42 +2017-06-17 14:32:00,25.7962,134.0,19.42 +2017-06-17 14:47:00,27.1625,134.01,19.45 +2017-06-17 15:02:00,26.0887,133.37,19.46 +2017-06-17 15:17:00,26.18,133.605,19.45 +2017-06-17 15:32:00,27.2562,133.315,19.41 +2017-06-17 15:47:00,27.4125,132.927,19.38 +2017-06-17 16:02:00,25.8887,133.0,19.34 +2017-06-17 16:17:00,26.135,132.737,19.27 +2017-06-17 16:32:00,25.4512,132.27,19.23 +2017-06-17 16:47:00,26.6725,132.117,19.18 +2017-06-17 17:02:00,25.8875,131.857,19.14 +2017-06-17 17:17:00,27.2562,131.815,19.1 +2017-06-17 17:32:00,26.3737,131.505,19.04 +2017-06-17 17:47:00,26.9187,131.685,19.01 +2017-06-17 18:02:00,27.31,131.542,18.97 +2017-06-17 18:17:00,26.8237,131.192,18.95 +2017-06-17 18:32:00,25.45,130.985,18.93 +2017-06-17 18:47:00,25.9388,130.785,18.88 +2017-06-17 19:02:00,26.18,130.752,18.86 +2017-06-17 19:17:00,26.4187,130.27,18.86 +2017-06-17 19:32:00,26.4688,129.955,18.87 +2017-06-17 19:47:00,27.41,129.82,18.89 +2017-06-17 20:02:00,26.5238,129.697,18.92 +2017-06-17 20:17:00,28.0112,129.617,18.94 +2017-06-17 20:32:00,26.9637,129.367,18.94 +2017-06-17 20:47:00,25.9863,129.342,18.95 +2017-06-17 21:02:00,26.1787,129.137,18.99 +2017-06-17 21:17:00,27.76,128.85,18.98 +2017-06-17 21:32:00,26.965,128.895,19.01 +2017-06-17 21:47:00,26.2288,128.647,19.01 +2017-06-17 22:02:00,26.92,128.475,19.06 +2017-06-17 22:17:00,26.2762,128.33,19.05 +2017-06-17 22:32:00,26.1312,128.262,19.08 +2017-06-17 22:47:00,27.4625,128.048,19.09 +2017-06-17 23:02:00,27.0112,127.982,19.09 +2017-06-17 23:17:00,27.6188,128.007,19.12 +2017-06-17 23:32:00,27.16,127.783,19.14 +2017-06-17 23:47:00,26.2738,127.802,19.19 +2017-06-18 00:02:00,27.2087,127.755,19.23 +2017-06-18 00:17:00,25.355,127.61,19.24 +2017-06-18 00:32:00,27.1038,127.542,19.3 +2017-06-18 00:47:00,27.7575,127.372,19.33 +2017-06-18 01:02:00,27.0112,127.242,19.38 +2017-06-18 01:17:00,26.4675,127.158,19.41 +2017-06-18 01:32:00,26.8688,127.087,19.44 +2017-06-18 01:47:00,27.4137,127.087,19.46 +2017-06-18 02:02:00,27.26,127.027,19.51 +2017-06-18 02:17:00,27.46,127.035,19.52 +2017-06-18 02:32:00,27.3625,127.077,19.53 +2017-06-18 02:47:00,27.66,127.07,19.57 +2017-06-18 03:02:00,26.3213,126.987,19.58 +2017-06-18 03:17:00,25.8913,126.952,19.61 +2017-06-18 03:32:00,26.6663,126.855,19.63 +2017-06-18 03:47:00,26.2262,126.742,19.63 +2017-06-18 04:02:00,26.135,126.69,19.65 +2017-06-18 04:17:00,25.1125,126.7,19.64 +2017-06-18 04:32:00,25.4463,126.707,19.65 +2017-06-18 04:47:00,26.6188,126.7,19.64 +2017-06-18 05:02:00,26.0375,126.722,19.64 +2017-06-18 05:17:00,27.2562,126.71,19.65 +2017-06-18 05:32:00,27.2612,126.722,19.67 +2017-06-18 05:47:00,27.0137,126.702,19.66 +2017-06-18 06:02:00,27.5612,126.67,19.64 +2017-06-18 06:17:00,28.4125,126.66,19.62 +2017-06-18 06:32:00,27.8587,126.535,19.6 +2017-06-18 06:47:00,26.5225,126.632,19.58 +2017-06-18 07:02:00,25.8887,126.54,19.58 +2017-06-18 07:17:00,27.3625,126.67,19.56 +2017-06-18 07:32:00,26.525,126.715,19.54 +2017-06-18 07:47:00,26.0887,126.722,19.51 +2017-06-18 08:02:00,26.0863,126.822,19.55 +2017-06-18 08:17:00,27.4625,126.87,19.57 +2017-06-18 08:32:00,28.2113,126.822,19.59 +2017-06-18 08:47:00,27.3613,126.635,19.58 +2017-06-18 09:02:00,24.9575,126.555,19.57 +2017-06-18 09:17:00,27.91,126.455,19.57 +2017-06-18 09:32:00,25.9912,126.47,19.65 +2017-06-18 09:47:00,26.7712,126.435,19.72 +2017-06-18 10:02:00,27.3575,126.495,19.8 +2017-06-18 10:17:00,27.315,126.577,19.77 +2017-06-18 10:32:00,27.0625,126.438,19.76 +2017-06-18 10:47:00,27.1113,126.61,19.83 +2017-06-18 11:02:00,27.7137,126.762,19.88 +2017-06-18 11:17:00,27.62,126.507,19.96 +2017-06-18 11:32:00,25.6963,126.612,20.11 +2017-06-18 11:47:00,26.3763,126.592,20.21 +2017-06-18 12:02:00,28.0612,126.45,20.35 +2017-06-18 12:17:00,25.3538,126.37,20.49 +2017-06-18 12:32:00,25.8887,126.393,20.6 +2017-06-18 12:47:00,27.1663,126.375,20.68 +2017-06-18 13:02:00,26.62,126.545,20.68 +2017-06-18 13:17:00,27.2087,126.525,20.73 +2017-06-18 13:32:00,26.375,126.61,20.77 +2017-06-18 13:47:00,28.115,126.625,20.76 +2017-06-18 14:02:00,26.3237,126.438,20.73 +2017-06-18 14:17:00,26.2762,126.482,20.71 +2017-06-18 14:32:00,25.305,126.277,20.69 +2017-06-18 14:47:00,26.6188,126.337,20.69 +2017-06-18 15:02:00,27.0612,126.237,20.67 +2017-06-18 15:17:00,25.2612,126.242,20.71 +2017-06-18 15:32:00,27.1575,126.18,20.75 +2017-06-18 15:47:00,26.0912,126.335,20.78 +2017-06-18 16:02:00,27.5125,126.345,20.81 +2017-06-18 16:17:00,27.1612,126.325,20.79 +2017-06-18 16:32:00,26.965,126.42,20.81 +2017-06-18 16:47:00,26.5225,126.177,20.79 +2017-06-18 17:02:00,25.845,126.195,20.76 +2017-06-18 17:17:00,27.6212,126.097,20.74 +2017-06-18 17:32:00,27.0612,126.115,20.72 +2017-06-18 17:47:00,28.015,126.075,20.68 +2017-06-18 18:02:00,26.4713,125.992,20.66 +2017-06-18 18:17:00,26.9212,126.097,20.64 +2017-06-18 18:32:00,27.01,126.122,20.61 +2017-06-18 18:47:00,25.5975,126.1,20.57 +2017-06-18 19:02:00,26.6762,126.145,20.54 +2017-06-18 19:17:00,26.1387,126.125,20.52 +2017-06-18 19:32:00,25.7487,126.135,20.5 +2017-06-18 19:47:00,26.42,126.087,20.48 +2017-06-18 20:02:00,27.81,125.997,20.46 +2017-06-18 20:17:00,25.9875,125.965,20.45 +2017-06-18 20:32:00,25.5938,125.865,20.42 +2017-06-18 20:47:00,25.9875,125.885,20.4 +2017-06-18 21:02:00,26.7725,125.905,20.38 +2017-06-18 21:17:00,26.67,125.938,20.38 +2017-06-18 21:32:00,25.8913,125.975,20.38 +2017-06-18 21:47:00,25.7937,125.975,20.38 +2017-06-18 22:02:00,26.4713,125.92,20.38 +2017-06-18 22:17:00,25.2588,125.87,20.39 +2017-06-18 22:32:00,27.6137,125.757,20.39 +2017-06-18 22:47:00,25.4962,125.647,20.39 +2017-06-18 23:02:00,25.5013,125.595,20.39 +2017-06-18 23:17:00,26.2762,125.555,20.39 +2017-06-18 23:32:00,26.7188,125.512,20.38 +2017-06-18 23:47:00,26.92,125.565,20.38 +2017-06-19 00:02:00,25.2062,125.535,20.36 +2017-06-19 00:17:00,26.2725,125.562,20.36 +2017-06-19 00:32:00,26.6762,125.52,20.36 +2017-06-19 00:47:00,25.6488,125.447,20.35 +2017-06-19 01:02:00,27.0112,125.36,20.37 +2017-06-19 01:17:00,26.525,125.312,20.36 +2017-06-19 01:32:00,26.3725,125.215,20.37 +2017-06-19 01:47:00,27.6162,125.162,20.36 +2017-06-19 02:02:00,25.4,125.075,20.34 +2017-06-19 02:17:00,26.6225,125.077,20.34 +2017-06-19 02:32:00,27.0625,125.125,20.35 +2017-06-19 02:47:00,27.365,125.173,20.34 +2017-06-19 03:02:00,27.3087,125.07,20.34 +2017-06-19 03:17:00,26.8675,125.027,20.38 +2017-06-19 03:32:00,26.5238,124.938,20.38 +2017-06-19 03:47:00,26.7687,124.832,20.38 +2017-06-19 04:02:00,25.845,124.695,20.4 +2017-06-19 04:17:00,26.525,124.62,20.41 +2017-06-19 04:32:00,27.8138,124.58,20.44 +2017-06-19 04:47:00,26.1375,124.555,20.45 +2017-06-19 05:02:00,26.52,124.545,20.49 +2017-06-19 05:17:00,26.7213,124.572,20.53 +2017-06-19 05:32:00,25.89,124.552,20.58 +2017-06-19 05:47:00,27.515,124.548,20.62 +2017-06-19 06:02:00,26.0887,124.452,20.67 +2017-06-19 06:17:00,25.4025,124.415,20.72 +2017-06-19 06:32:00,25.9887,124.307,20.76 +2017-06-19 06:47:00,26.1362,124.335,20.8 +2017-06-19 07:02:00,27.5687,124.242,20.85 +2017-06-19 07:17:00,25.2075,124.215,20.9 +2017-06-19 07:32:00,25.3512,124.11,20.96 +2017-06-19 07:47:00,25.7937,124.0,21.01 +2017-06-19 08:02:00,26.275,123.955,21.1 +2017-06-19 08:17:00,25.3112,124.005,21.15 +2017-06-19 08:32:00,25.8425,123.975,21.23 +2017-06-19 08:47:00,27.1588,123.852,21.29 +2017-06-19 09:02:00,25.74,124.042,21.35 +2017-06-19 09:17:00,27.36,123.842,21.44 +2017-06-19 09:32:00,27.5137,123.99,21.51 +2017-06-19 09:47:00,27.4613,123.97,21.62 +2017-06-19 10:02:00,26.6725,123.805,21.68 +2017-06-19 10:17:00,26.5275,123.697,21.78 +2017-06-19 10:32:00,27.0625,123.682,21.89 +2017-06-19 10:47:00,27.5163,123.355,21.99 +2017-06-19 11:02:00,26.72,123.715,22.06 +2017-06-19 11:17:00,26.0362,123.45,22.11 +2017-06-19 11:32:00,25.985,123.6,22.17 +2017-06-19 11:47:00,27.1612,123.47,22.2 +2017-06-19 12:02:00,27.72,123.567,22.21 +2017-06-19 12:17:00,26.97,123.587,22.26 +2017-06-19 12:32:00,26.525,123.503,22.32 +2017-06-19 12:47:00,26.1338,123.367,22.38 +2017-06-19 13:02:00,27.4137,123.177,22.44 +2017-06-19 13:17:00,26.3725,122.897,22.47 +2017-06-19 13:32:00,27.1113,123.287,22.52 +2017-06-19 13:47:00,26.8237,122.945,22.51 +2017-06-19 14:02:00,28.0662,123.06,22.54 +2017-06-19 14:17:00,26.5775,123.015,22.57 +2017-06-19 14:32:00,28.0638,123.035,22.57 +2017-06-19 14:47:00,27.1637,123.048,22.59 +2017-06-19 15:02:00,27.7637,123.09,22.59 +2017-06-19 15:17:00,26.4737,122.965,22.58 +2017-06-19 15:32:00,25.8913,122.902,22.6 +2017-06-19 15:47:00,26.14,122.96,22.59 +2017-06-19 16:02:00,28.4187,122.747,22.6 +2017-06-19 16:17:00,26.2312,122.682,22.59 +2017-06-19 16:32:00,25.595,122.872,22.57 +2017-06-19 16:47:00,26.6237,122.732,22.55 +2017-06-19 17:02:00,26.375,122.812,22.54 +2017-06-19 17:17:00,26.6237,122.895,22.52 +2017-06-19 17:32:00,25.695,122.837,22.5 +2017-06-19 17:47:00,27.0662,122.82,22.46 +2017-06-19 18:02:00,26.1413,122.772,22.41 +2017-06-19 18:17:00,27.6725,122.628,22.36 +2017-06-19 18:32:00,26.4212,122.565,22.32 +2017-06-19 18:47:00,26.9625,122.512,22.28 +2017-06-19 19:02:00,26.6712,122.472,22.23 +2017-06-19 19:17:00,27.5125,122.467,22.17 +2017-06-19 19:32:00,25.9437,122.465,22.13 +2017-06-19 19:47:00,27.0163,122.465,22.1 +2017-06-19 20:02:00,26.2762,122.515,22.07 +2017-06-19 20:17:00,26.1387,122.46,22.04 +2017-06-19 20:32:00,26.1837,122.378,22.01 +2017-06-19 20:47:00,26.5212,122.247,21.97 +2017-06-19 21:02:00,25.4975,122.162,21.95 +2017-06-19 21:17:00,28.3187,121.977,21.92 +2017-06-19 21:32:00,27.415,121.96,21.88 +2017-06-19 21:47:00,26.725,121.905,21.87 +2017-06-19 22:02:00,25.5938,121.787,21.85 +2017-06-19 22:17:00,27.0687,121.805,21.84 +2017-06-19 22:32:00,25.2612,121.79,21.83 +2017-06-19 22:47:00,26.475,121.64,21.81 +2017-06-19 23:02:00,26.575,121.492,21.8 +2017-06-19 23:17:00,25.9925,121.375,21.79 +2017-06-19 23:32:00,27.0187,121.265,21.79 +2017-06-19 23:47:00,27.9688,121.087,21.78 +2017-06-20 00:02:00,26.8725,120.98,21.78 +2017-06-20 00:17:00,25.6462,120.887,21.76 +2017-06-20 00:32:00,26.0912,120.84,21.76 +2017-06-20 00:47:00,27.765,120.802,21.74 +2017-06-20 01:02:00,26.4313,120.765,21.74 +2017-06-20 01:17:00,27.3712,120.745,21.76 +2017-06-20 01:32:00,25.995,120.658,21.75 +2017-06-20 01:47:00,27.5638,120.61,21.75 +2017-06-20 02:02:00,27.765,120.477,21.75 +2017-06-20 02:17:00,26.275,120.357,21.77 +2017-06-20 02:32:00,27.415,120.205,21.78 +2017-06-20 02:47:00,28.2637,120.082,21.79 +2017-06-20 03:02:00,28.0625,119.975,21.79 +2017-06-20 03:17:00,27.215,119.87,21.83 +2017-06-20 03:32:00,27.8637,119.842,21.85 +2017-06-20 03:47:00,26.09,119.827,21.88 +2017-06-20 04:02:00,28.8063,119.78,21.9 +2017-06-20 04:17:00,25.7962,119.74,21.95 +2017-06-20 04:32:00,26.28,119.658,21.98 +2017-06-20 04:47:00,27.115,119.622,22.03 +2017-06-20 05:02:00,27.47,119.57,22.08 +2017-06-20 05:17:00,26.6225,119.47,22.12 +2017-06-20 05:32:00,25.1137,119.395,22.18 +2017-06-20 05:47:00,27.1125,119.378,22.22 +2017-06-20 06:02:00,25.4987,119.355,22.29 +2017-06-20 06:17:00,26.675,119.41,22.37 +2017-06-20 06:32:00,27.0137,119.445,22.44 +2017-06-20 06:47:00,25.8925,119.432,22.52 +2017-06-20 07:02:00,25.5987,119.4,22.6 +2017-06-20 07:17:00,26.875,119.287,22.68 +2017-06-20 07:32:00,27.6663,119.29,22.75 +2017-06-20 07:47:00,26.135,119.307,22.81 +2017-06-20 08:02:00,26.3225,119.152,22.87 +2017-06-20 08:17:00,26.6237,119.067,22.95 +2017-06-20 08:32:00,25.9912,118.99,23.0 +2017-06-20 08:47:00,26.775,118.798,23.08 +2017-06-20 09:02:00,27.1625,118.67,23.12 +2017-06-20 09:17:00,27.265,118.695,23.19 +2017-06-20 09:32:00,26.6738,118.575,23.25 +2017-06-20 09:47:00,28.115,118.787,23.33 +2017-06-20 10:02:00,26.7712,118.643,23.36 +2017-06-20 10:17:00,25.455,118.855,23.45 +2017-06-20 10:32:00,27.415,118.645,23.53 +2017-06-20 10:47:00,27.6725,118.45,23.63 +2017-06-20 11:02:00,26.775,118.35,23.66 +2017-06-20 11:17:00,26.4725,118.117,23.72 +2017-06-20 11:32:00,26.4225,118.222,23.78 +2017-06-20 11:47:00,26.9662,118.005,23.85 +2017-06-20 12:02:00,25.3063,118.197,23.84 +2017-06-20 12:17:00,26.6725,118.062,23.86 +2017-06-20 12:32:00,26.1387,118.04,23.9 +2017-06-20 12:47:00,27.5163,118.143,23.97 +2017-06-20 13:02:00,27.0163,118.01,24.02 +2017-06-20 13:17:00,26.87,117.925,24.04 +2017-06-20 13:32:00,26.965,117.747,24.08 +2017-06-20 13:47:00,26.04,117.51,24.1 +2017-06-20 14:02:00,26.6712,117.63,24.15 +2017-06-20 14:17:00,25.8438,117.66,24.15 +2017-06-20 14:32:00,26.4313,117.572,24.13 +2017-06-20 14:47:00,26.33,117.66,24.14 +2017-06-20 15:02:00,25.745,117.557,24.14 +2017-06-20 15:17:00,27.2125,117.555,24.13 +2017-06-20 15:32:00,26.4737,117.675,24.09 +2017-06-20 15:47:00,26.6738,117.822,24.07 +2017-06-20 16:02:00,27.9163,117.577,24.05 +2017-06-20 16:17:00,26.3275,117.38,24.02 +2017-06-20 16:32:00,26.0925,117.29,23.98 +2017-06-20 16:47:00,25.75,117.055,23.93 +2017-06-20 17:02:00,27.8637,117.2,23.89 +2017-06-20 17:17:00,28.265,116.917,23.85 +2017-06-20 17:32:00,26.825,116.977,23.79 +2017-06-20 17:47:00,26.2775,117.03,23.74 +2017-06-20 18:02:00,26.33,117.033,23.68 +2017-06-20 18:17:00,26.7237,116.885,23.61 +2017-06-20 18:32:00,25.7475,116.862,23.56 +2017-06-20 18:47:00,27.7213,116.86,23.51 +2017-06-20 19:02:00,25.5475,116.762,23.46 +2017-06-20 19:17:00,28.1675,116.755,23.41 +2017-06-20 19:32:00,26.1813,116.725,23.34 +2017-06-20 19:47:00,26.5762,116.585,23.3 +2017-06-20 20:02:00,26.97,116.505,23.26 +2017-06-20 20:17:00,26.4313,116.525,23.2 +2017-06-20 20:32:00,26.3763,116.393,23.15 +2017-06-20 20:47:00,26.9187,116.352,23.13 +2017-06-20 21:02:00,26.7237,116.427,23.14 +2017-06-20 21:17:00,26.825,116.105,23.12 +2017-06-20 21:32:00,26.7213,116.107,23.03 +2017-06-20 21:47:00,26.5225,116.07,22.93 +2017-06-20 22:02:00,26.28,116.012,22.82 +2017-06-20 22:17:00,25.9425,115.982,22.73 +2017-06-20 22:32:00,27.02,115.798,22.66 +2017-06-20 22:47:00,26.8237,115.688,22.61 +2017-06-20 23:02:00,27.5675,115.798,22.56 +2017-06-20 23:17:00,26.5737,115.72,22.53 +2017-06-20 23:32:00,26.1362,115.805,22.52 +2017-06-20 23:47:00,21.5375,115.673,22.47 +2017-06-21 00:02:00,27.5225,115.602,22.45 +2017-06-21 00:17:00,25.1612,115.55,22.42 +2017-06-21 00:32:00,26.9662,115.402,22.35 +2017-06-21 00:47:00,27.3625,115.402,22.32 +2017-06-21 01:02:00,26.7237,115.265,22.27 +2017-06-21 01:17:00,26.4275,115.315,22.24 +2017-06-21 01:32:00,28.4187,115.212,22.22 +2017-06-21 01:47:00,26.135,115.215,22.18 +2017-06-21 02:02:00,27.6188,115.117,22.16 +2017-06-21 02:17:00,27.6738,115.125,22.15 +2017-06-21 02:32:00,26.625,115.092,22.12 +2017-06-21 02:47:00,26.3737,115.022,22.11 +2017-06-21 03:02:00,26.23,114.997,22.08 +2017-06-21 03:17:00,26.88,114.942,22.08 +2017-06-21 03:32:00,25.9925,114.865,22.04 +2017-06-21 03:47:00,27.9112,114.815,22.02 +2017-06-21 04:02:00,26.5275,114.847,22.0 +2017-06-21 04:17:00,27.5713,114.985,22.01 +2017-06-21 04:32:00,26.8262,114.94,22.02 +2017-06-21 04:47:00,28.015,115.05,22.05 +2017-06-21 05:02:00,27.3138,115.01,22.08 +2017-06-21 05:17:00,28.76,115.143,22.14 +2017-06-21 05:32:00,26.7237,115.1,22.19 +2017-06-21 05:47:00,26.1862,115.057,22.23 +2017-06-21 06:02:00,27.2625,115.143,22.29 +2017-06-21 06:17:00,25.4487,115.08,22.34 +2017-06-21 06:32:00,27.4662,115.045,22.38 +2017-06-21 06:47:00,26.8737,115.0,22.42 +2017-06-21 07:02:00,25.8438,115.055,22.47 +2017-06-21 07:17:00,27.0125,115.055,22.5 +2017-06-21 07:32:00,26.4688,115.052,22.53 +2017-06-21 07:47:00,26.7775,115.23,22.57 +2017-06-21 08:02:00,26.9238,115.245,22.62 +2017-06-21 08:17:00,27.9112,115.412,22.67 +2017-06-21 08:32:00,26.1375,115.315,22.74 +2017-06-21 08:47:00,26.23,115.5,22.83 +2017-06-21 09:02:00,27.2612,115.575,22.92 +2017-06-21 09:17:00,27.2087,115.615,23.0 +2017-06-21 09:32:00,26.7762,115.59,23.09 +2017-06-21 09:47:00,25.6488,115.42,23.15 +2017-06-21 10:02:00,26.675,115.53,23.25 +2017-06-21 10:17:00,27.565,115.395,23.32 +2017-06-21 10:32:00,27.8175,115.425,23.39 +2017-06-21 10:47:00,25.5488,115.533,23.44 +2017-06-21 11:02:00,26.1837,115.597,23.5 +2017-06-21 11:17:00,27.46,115.817,23.55 +2017-06-21 11:32:00,26.68,115.817,23.59 +2017-06-21 11:47:00,27.815,116.143,23.64 +2017-06-21 12:02:00,27.4637,116.577,23.64 +2017-06-21 12:17:00,24.8125,116.68,23.68 +2017-06-21 12:32:00,28.6087,116.985,23.69 +2017-06-21 12:47:00,25.55,117.115,23.68 +2017-06-21 13:02:00,27.21,117.25,23.69 +2017-06-21 13:17:00,27.1663,117.477,23.67 +2017-06-21 13:32:00,26.1862,117.825,23.67 +2017-06-21 13:47:00,26.1413,117.78,23.63 +2017-06-21 14:02:00,26.4212,118.22,23.6 +2017-06-21 14:17:00,25.5975,118.36,23.6 +2017-06-21 14:32:00,27.1625,118.685,23.63 +2017-06-21 14:47:00,27.4662,118.592,23.65 +2017-06-21 15:02:00,24.11,118.795,23.66 +2017-06-21 15:17:00,25.8962,118.837,23.67 +2017-06-21 15:32:00,28.3213,118.802,23.67 +2017-06-21 15:47:00,26.6738,118.792,23.68 +2017-06-21 16:02:00,26.275,118.82,23.65 +2017-06-21 16:17:00,26.6725,118.847,23.63 +2017-06-21 16:32:00,26.7262,118.9,23.62 +2017-06-21 16:47:00,26.23,118.917,23.57 +2017-06-21 17:02:00,26.5262,118.985,23.53 +2017-06-21 17:17:00,26.7262,118.912,23.47 +2017-06-21 17:32:00,25.7462,118.967,23.42 +2017-06-21 17:47:00,28.4675,118.917,23.36 +2017-06-21 18:02:00,27.315,118.76,23.29 +2017-06-21 18:17:00,26.6237,118.562,23.22 +2017-06-21 18:32:00,25.2588,118.438,23.15 +2017-06-21 18:47:00,27.2125,118.39,23.07 +2017-06-21 19:02:00,26.3775,118.28,23.0 +2017-06-21 19:17:00,25.7988,118.237,22.94 +2017-06-21 19:32:00,26.7225,118.235,22.9 +2017-06-21 19:47:00,27.115,118.192,22.85 +2017-06-21 20:02:00,27.115,118.15,22.8 +2017-06-21 20:17:00,25.9938,118.012,22.76 +2017-06-21 20:32:00,27.965,117.902,22.7 +2017-06-21 20:47:00,27.8162,117.707,22.66 +2017-06-21 21:02:00,26.1413,117.572,22.61 +2017-06-21 21:17:00,27.1137,117.457,22.56 +2017-06-21 21:32:00,26.6738,117.34,22.51 +2017-06-21 21:47:00,28.27,117.257,22.46 +2017-06-21 22:02:00,26.0425,117.253,22.42 +2017-06-21 22:17:00,27.6212,117.177,22.39 +2017-06-21 22:30:59,28.265,117.15,22.35 +2017-06-21 22:47:00,26.1837,117.082,22.31 +2017-06-21 23:02:00,27.4163,116.935,22.27 +2017-06-21 23:17:00,26.6287,116.83,22.23 +2017-06-21 23:32:00,26.6225,116.685,22.19 +2017-06-21 23:47:00,25.5462,116.537,22.15 +2017-06-22 00:02:00,26.68,116.42,22.11 +2017-06-22 00:17:00,26.2312,116.365,22.06 +2017-06-22 00:32:00,26.7262,116.345,22.02 +2017-06-22 00:47:00,26.425,116.285,21.99 +2017-06-22 01:02:00,27.62,116.287,21.95 +2017-06-22 01:17:00,26.8237,116.28,21.91 +2017-06-22 01:32:00,25.8487,116.185,21.87 +2017-06-22 01:47:00,28.52,116.105,21.84 +2017-06-22 02:02:00,27.3675,115.975,21.8 +2017-06-22 02:17:00,25.3075,115.837,21.77 +2017-06-22 02:32:00,28.2162,115.727,21.73 +2017-06-22 02:47:00,28.0625,115.675,21.7 +2017-06-22 03:02:00,26.5275,115.63,21.68 +2017-06-22 03:17:00,24.9613,115.575,21.64 +2017-06-22 03:32:00,27.265,115.607,21.62 +2017-06-22 03:47:00,25.7513,115.585,21.63 +2017-06-22 04:02:00,24.5175,115.622,21.62 +2017-06-22 04:17:00,26.6725,115.503,21.62 +2017-06-22 04:32:00,25.5987,115.432,21.61 +2017-06-22 04:47:00,27.67,115.325,21.61 +2017-06-22 05:02:00,27.3138,115.247,21.64 +2017-06-22 05:17:00,28.0612,115.125,21.67 +2017-06-22 05:32:00,26.4262,115.012,21.71 +2017-06-22 05:47:00,28.3213,115.003,21.75 +2017-06-22 06:02:00,27.1675,115.005,21.81 +2017-06-22 06:17:00,26.4725,114.947,21.88 +2017-06-22 06:32:00,27.8112,115.045,21.94 +2017-06-22 06:47:00,26.3262,114.74,22.0 +2017-06-22 07:02:00,26.575,114.74,22.08 +2017-06-22 07:17:00,27.6663,114.692,22.15 +2017-06-22 07:32:00,27.0163,114.695,22.23 +2017-06-22 07:47:00,26.9675,114.605,22.32 +2017-06-22 08:02:00,27.6687,114.425,22.42 +2017-06-22 08:17:00,26.5225,114.357,22.52 +2017-06-22 08:32:00,26.4713,114.277,22.62 +2017-06-22 08:47:00,25.5488,114.265,22.73 +2017-06-22 09:02:00,27.315,114.397,22.85 +2017-06-22 09:17:00,26.5275,114.165,22.96 +2017-06-22 09:32:00,27.3175,114.205,23.08 +2017-06-22 09:47:00,26.045,114.307,23.18 +2017-06-22 10:02:00,27.5163,114.438,23.32 +2017-06-22 10:17:00,27.1125,114.173,23.4 +2017-06-22 10:32:00,26.0425,113.947,23.49 +2017-06-22 10:47:00,27.5175,114.03,23.59 +2017-06-22 11:02:00,24.3112,113.65,23.66 +2017-06-22 11:17:00,27.115,113.675,23.73 +2017-06-22 11:32:00,27.57,113.705,23.76 +2017-06-22 11:47:00,26.9675,113.565,23.78 +2017-06-22 12:02:00,27.4163,113.492,23.79 +2017-06-22 12:17:00,26.9225,113.61,23.8 +2017-06-22 12:32:00,26.0912,113.64,23.84 +2017-06-22 12:47:00,26.92,113.592,23.74 +2017-06-22 13:02:00,27.865,113.427,23.66 +2017-06-22 13:17:00,27.265,113.432,23.59 +2017-06-22 13:32:00,27.0687,113.055,23.45 +2017-06-22 13:47:00,26.4225,113.16,23.39 +2017-06-22 14:02:00,26.9212,112.97,23.31 +2017-06-22 14:17:00,26.97,112.705,23.2 +2017-06-22 14:32:00,27.2162,112.622,23.12 +2017-06-22 14:47:00,27.315,114.512,23.02 +2017-06-22 15:02:00,29.5863,119.987,22.93 +2017-06-22 15:17:00,29.8825,122.04,22.59 +2017-06-22 15:32:00,31.1475,122.472,22.52 +2017-06-22 15:47:00,29.1012,122.63,22.63 +2017-06-22 16:02:00,28.6113,122.425,22.71 +2017-06-22 16:17:00,30.165,122.262,22.66 +2017-06-22 16:32:00,27.515,121.96,22.64 +2017-06-22 16:47:00,27.4175,121.867,22.67 +2017-06-22 17:02:00,30.415,121.505,22.58 +2017-06-22 17:17:00,31.005,121.19,22.5 +2017-06-22 17:32:00,31.9938,121.207,22.47 +2017-06-22 17:47:00,31.3512,120.932,22.47 +2017-06-22 18:02:00,30.8587,120.807,22.48 +2017-06-22 18:17:00,29.8325,120.65,22.46 +2017-06-22 18:32:00,29.93,120.607,22.43 +2017-06-22 18:47:00,30.3125,120.435,22.4 +2017-06-22 19:02:00,29.4375,120.367,22.41 +2017-06-22 19:17:00,28.1687,120.292,22.42 +2017-06-22 19:32:00,28.3175,120.31,22.41 +2017-06-22 19:47:00,30.2213,120.272,22.4 +2017-06-22 20:02:00,28.2675,120.515,22.39 +2017-06-22 20:17:00,28.7087,120.722,22.36 +2017-06-22 20:32:00,28.7575,121.018,22.32 +2017-06-22 20:47:00,27.7213,121.007,22.26 +2017-06-22 21:02:00,28.6637,120.938,22.2 +2017-06-22 21:17:00,29.5362,120.935,22.15 +2017-06-22 21:32:00,27.9137,121.307,22.1 +2017-06-22 21:47:00,28.365,122.092,22.04 +2017-06-22 22:02:00,30.03,122.97,21.99 +2017-06-22 22:17:00,27.37,123.552,21.95 +2017-06-22 22:32:00,28.015,123.81,21.92 +2017-06-22 22:47:00,28.0662,123.97,21.89 +2017-06-22 23:02:00,29.1525,124.087,21.87 +2017-06-22 23:17:00,28.3162,124.003,21.86 +2017-06-22 23:32:00,29.005,124.05,21.87 +2017-06-22 23:47:00,28.3637,124.018,21.83 +2017-06-23 00:02:00,29.055,124.067,21.78 +2017-06-23 00:17:00,30.025,123.912,21.77 +2017-06-23 00:32:00,29.105,123.923,21.78 +2017-06-23 00:47:00,30.1712,123.75,21.76 +2017-06-23 01:02:00,29.9287,123.867,21.74 +2017-06-23 01:17:00,27.7175,124.02,21.74 +2017-06-23 01:32:00,29.44,124.01,21.73 +2017-06-23 01:47:00,28.8087,123.872,21.71 +2017-06-23 02:02:00,28.5625,123.875,21.68 +2017-06-23 02:17:00,29.1525,123.815,21.67 +2017-06-23 02:32:00,28.1687,123.55,21.64 +2017-06-23 02:47:00,29.88,123.342,21.62 +2017-06-23 03:02:00,27.8162,123.152,21.59 +2017-06-23 03:17:00,28.8575,122.982,21.56 +2017-06-23 03:32:00,27.9175,122.87,21.55 +2017-06-23 03:47:00,29.3412,122.58,21.53 +2017-06-23 04:02:00,28.5125,122.415,21.51 +2017-06-23 04:17:00,30.0287,122.397,21.49 +2017-06-23 04:32:00,29.1537,122.122,21.44 +2017-06-23 04:47:00,29.0062,121.917,21.41 +2017-06-23 05:02:00,29.4837,121.802,21.38 +2017-06-23 05:17:00,28.3675,121.567,21.35 +2017-06-23 05:32:00,28.4662,121.54,21.32 +2017-06-23 05:47:00,29.3875,121.492,21.31 +2017-06-23 06:02:00,27.26,121.52,21.29 +2017-06-23 06:17:00,28.7612,121.58,21.27 +2017-06-23 06:32:00,28.3688,121.735,21.25 +2017-06-23 06:47:00,29.1488,121.755,21.22 +2017-06-23 07:02:00,27.1113,121.835,21.2 +2017-06-23 07:17:00,27.9137,122.075,21.17 +2017-06-23 07:32:00,27.31,122.527,21.15 +2017-06-23 07:47:00,28.315,122.842,21.14 +2017-06-23 08:02:00,27.2612,123.408,21.18 +2017-06-23 08:17:00,27.9662,123.95,21.25 +2017-06-23 08:32:00,28.3712,124.615,21.3 +2017-06-23 08:47:00,26.9662,125.387,21.38 +2017-06-23 09:02:00,28.215,126.132,21.48 +2017-06-23 09:17:00,28.5125,126.97,21.59 +2017-06-23 09:32:00,27.8138,128.23,21.69 +2017-06-23 09:47:00,27.1125,128.862,21.77 +2017-06-23 10:02:00,28.1162,130.173,21.84 +2017-06-23 10:17:00,28.3675,131.355,21.95 +2017-06-23 10:32:00,26.9662,133.28,22.03 +2017-06-23 10:47:00,27.9137,135.622,22.04 +2017-06-23 11:02:00,26.9688,138.802,22.11 +2017-06-23 11:17:00,28.2137,141.295,22.24 +2017-06-23 11:32:00,27.5675,143.747,22.26 +2017-06-23 11:47:00,28.5625,145.357,22.28 +2017-06-23 12:02:00,28.91,146.957,22.24 +2017-06-23 12:17:00,30.1712,148.587,22.23 +2017-06-23 12:32:00,27.3662,149.85,22.21 +2017-06-23 12:47:00,26.23,150.6,22.19 +2017-06-23 13:02:00,27.0638,151.855,22.18 +2017-06-23 13:17:00,26.8262,152.84,22.17 +2017-06-23 13:32:00,27.5137,153.3,22.16 +2017-06-23 13:47:00,27.4662,153.932,22.18 +2017-06-23 14:02:00,27.8637,154.652,22.2 +2017-06-23 14:17:00,28.6625,155.097,22.17 +2017-06-23 14:32:00,27.6687,155.723,22.15 +2017-06-23 14:47:00,25.5488,156.075,22.1 +2017-06-23 15:02:00,27.67,157.022,22.05 +2017-06-23 15:17:00,27.2625,157.147,22.04 +2017-06-23 15:32:00,27.1625,157.405,22.0 +2017-06-23 15:47:00,27.2637,157.955,21.95 +2017-06-23 16:02:00,29.7862,157.775,21.91 +2017-06-23 16:17:00,27.4137,158.387,21.88 +2017-06-23 16:32:00,28.5638,158.675,21.86 +2017-06-23 16:47:00,28.2137,158.818,21.84 +2017-06-23 17:02:00,27.4662,159.085,21.82 +2017-06-23 17:17:00,30.2188,159.587,21.8 +2017-06-23 17:32:00,27.515,159.837,21.78 +2017-06-23 17:47:00,27.4688,159.742,21.76 +2017-06-23 18:02:00,27.8675,160.03,21.74 +2017-06-23 18:17:00,28.3675,160.172,21.71 +2017-06-23 18:32:00,28.4163,160.207,21.72 +2017-06-23 18:47:00,26.8712,160.29,21.73 +2017-06-23 19:02:00,28.8063,160.372,21.77 +2017-06-23 19:17:00,27.1663,160.565,21.79 +2017-06-23 19:32:00,28.3187,160.642,21.83 +2017-06-23 19:47:00,27.865,160.75,21.88 +2017-06-23 20:02:00,27.9637,160.835,21.94 +2017-06-23 20:17:00,29.39,160.9,21.99 +2017-06-23 20:32:00,28.0638,160.96,22.03 +2017-06-23 20:47:00,27.015,160.947,22.06 +2017-06-23 21:02:00,29.2025,160.915,22.09 +2017-06-23 21:17:00,28.7588,160.772,22.1 +2017-06-23 21:32:00,28.0175,160.825,22.11 +2017-06-23 21:47:00,26.2787,160.73,22.11 +2017-06-23 22:02:00,26.2288,160.68,22.1 +2017-06-23 22:17:00,28.9587,160.55,22.11 +2017-06-23 22:32:00,27.26,160.535,22.1 +2017-06-23 22:47:00,28.2162,160.485,22.09 +2017-06-23 23:02:00,29.98,160.417,22.08 +2017-06-23 23:17:00,26.9212,160.255,22.06 +2017-06-23 23:32:00,27.77,160.322,22.03 +2017-06-23 23:47:00,27.72,160.207,21.99 +2017-06-24 00:02:00,28.0638,159.967,21.94 +2017-06-24 00:17:00,27.8625,159.91,21.9 +2017-06-24 00:32:00,28.115,159.542,21.84 +2017-06-24 00:47:00,28.5125,159.457,21.78 +2017-06-24 01:02:00,28.12,159.283,21.74 +2017-06-24 01:17:00,26.7275,159.12,21.68 +2017-06-24 01:32:00,27.2188,158.917,21.62 +2017-06-24 01:47:00,26.7225,158.717,21.56 +2017-06-24 02:02:00,28.4675,158.552,21.5 +2017-06-24 02:17:00,28.4187,158.355,21.44 +2017-06-24 02:32:00,28.66,158.175,21.4 +2017-06-24 02:47:00,28.56,157.917,21.36 +2017-06-24 03:02:00,28.365,157.57,21.31 +2017-06-24 03:17:00,29.0075,157.247,21.28 +2017-06-24 03:32:00,28.2687,156.902,21.25 +2017-06-24 03:47:00,26.9675,156.57,21.22 +2017-06-24 04:02:00,27.4637,156.247,21.19 +2017-06-24 04:17:00,28.8037,156.012,21.17 +2017-06-24 04:32:00,28.4675,155.745,21.14 +2017-06-24 04:47:00,26.72,155.423,21.14 +2017-06-24 05:02:00,27.725,155.107,21.13 +2017-06-24 05:17:00,27.42,154.85,21.13 +2017-06-24 05:32:00,27.1137,153.99,21.13 +2017-06-24 05:47:00,27.9125,153.102,21.12 +2017-06-24 06:02:00,28.61,152.44,21.11 +2017-06-24 06:17:00,27.6725,151.822,21.11 +2017-06-24 06:32:00,26.3787,151.212,21.11 +2017-06-24 06:47:00,27.0638,150.522,21.12 +2017-06-24 07:02:00,27.9662,150.222,21.15 +2017-06-24 07:17:00,26.9713,149.867,21.19 +2017-06-24 07:32:00,23.1837,149.485,21.26 +2017-06-24 07:47:00,28.2162,149.062,21.27 +2017-06-24 08:02:00,27.7637,148.957,21.28 +2017-06-24 08:17:00,27.315,148.612,21.29 +2017-06-24 08:32:00,28.6113,148.345,21.31 +2017-06-24 08:47:00,27.5662,148.075,21.35 +2017-06-24 09:02:00,26.7237,147.55,21.36 +2017-06-24 09:17:00,28.2188,147.3,21.42 +2017-06-24 09:32:00,27.2087,147.182,21.48 +2017-06-24 09:47:00,28.61,146.857,21.51 +2017-06-24 10:02:00,28.2137,146.49,21.51 +2017-06-24 10:17:00,27.7162,146.087,21.53 +2017-06-24 10:32:00,26.8725,145.777,21.55 +2017-06-24 10:47:00,26.7775,145.52,21.56 +2017-06-24 11:02:00,27.215,145.572,21.55 +2017-06-24 11:17:00,28.9037,145.067,21.62 +2017-06-24 11:32:00,28.2162,144.692,21.66 +2017-06-24 11:47:00,27.91,144.652,21.73 +2017-06-24 12:02:00,27.0638,144.195,21.73 +2017-06-24 12:17:00,28.1687,143.882,21.72 +2017-06-24 12:32:00,27.26,143.627,21.72 +2017-06-24 12:47:00,29.395,142.815,21.72 +2017-06-24 13:02:00,27.815,142.783,21.77 +2017-06-24 13:17:00,27.9675,142.412,21.84 +2017-06-24 13:32:00,31.195,142.107,21.83 +2017-06-24 13:47:00,28.215,142.002,21.85 +2017-06-24 14:02:00,27.52,141.747,21.87 +2017-06-24 14:17:00,28.71,141.68,21.84 +2017-06-24 14:32:00,26.7738,141.265,21.84 +2017-06-24 14:47:00,27.2162,141.062,21.83 +2017-06-24 15:02:00,26.375,140.89,21.79 +2017-06-24 15:17:00,27.7225,140.322,21.78 +2017-06-24 15:32:00,27.6188,140.1,21.78 +2017-06-24 15:47:00,29.2038,139.775,21.78 +2017-06-24 16:02:00,28.0638,139.737,21.79 +2017-06-24 16:17:00,28.66,139.3,21.81 +2017-06-24 16:32:00,27.8187,139.255,21.8 +2017-06-24 16:47:00,27.9713,139.002,21.8 +2017-06-24 17:02:00,27.5675,138.807,21.8 +2017-06-24 17:17:00,27.3162,138.682,21.78 +2017-06-24 17:32:00,28.0638,138.37,21.77 +2017-06-24 17:47:00,27.62,138.072,21.76 +2017-06-24 18:02:00,28.5612,137.92,21.78 +2017-06-24 18:17:00,28.5137,137.658,21.77 +2017-06-24 18:32:00,27.965,137.495,21.79 +2017-06-24 18:47:00,29.5362,137.22,21.81 +2017-06-24 19:02:00,27.1625,137.0,21.83 +2017-06-24 19:17:00,26.9625,136.82,21.86 +2017-06-24 19:32:00,30.6113,136.562,21.87 +2017-06-24 19:47:00,27.6175,136.393,21.86 +2017-06-24 20:02:00,27.3613,136.212,21.86 +2017-06-24 20:17:00,27.4675,136.042,21.84 +2017-06-24 20:32:00,27.5175,135.807,21.83 +2017-06-24 20:47:00,29.0075,135.52,21.85 +2017-06-24 21:02:00,28.4163,135.257,21.85 +2017-06-24 21:17:00,27.165,134.95,21.85 +2017-06-24 21:32:00,28.7038,134.745,21.86 +2017-06-24 21:47:00,26.375,134.467,21.88 +2017-06-24 22:02:00,26.4725,134.257,21.89 +2017-06-24 22:17:00,27.6212,134.147,21.92 +2017-06-24 22:32:00,28.5187,133.923,21.92 +2017-06-24 22:47:00,27.7162,133.772,21.91 +2017-06-24 23:02:00,28.4163,133.518,21.91 +2017-06-24 23:17:00,29.3913,133.375,21.89 +2017-06-24 23:32:00,28.2637,133.205,21.88 +2017-06-24 23:47:00,27.62,132.927,21.87 +2017-06-25 00:02:00,28.6137,132.7,21.84 +2017-06-25 00:17:00,28.2175,132.425,21.81 +2017-06-25 00:32:00,29.2525,132.212,21.78 +2017-06-25 00:47:00,28.0137,132.007,21.75 +2017-06-25 01:02:00,27.8112,131.81,21.72 +2017-06-25 01:17:00,27.9112,131.627,21.7 +2017-06-25 01:32:00,27.7188,131.447,21.66 +2017-06-25 01:47:00,27.415,131.397,21.63 +2017-06-25 02:02:00,28.565,131.15,21.6 +2017-06-25 02:17:00,28.3712,130.947,21.56 +2017-06-25 02:32:00,28.1663,130.785,21.52 +2017-06-25 02:47:00,30.0287,130.625,21.49 +2017-06-25 03:02:00,29.2487,130.372,21.45 +2017-06-25 03:17:00,27.8138,130.115,21.41 +2017-06-25 03:32:00,27.4637,129.98,21.37 +2017-06-25 03:47:00,28.8063,129.807,21.34 +2017-06-25 04:02:00,27.8675,129.56,21.31 +2017-06-25 04:17:00,27.5687,129.475,21.29 +2017-06-25 04:32:00,29.5825,129.387,21.29 +2017-06-25 04:47:00,29.585,129.227,21.28 +2017-06-25 05:02:00,27.8125,133.417,21.29 +2017-06-25 05:17:00,29.15,130.752,21.29 +2017-06-25 05:32:00,28.5163,128.195,21.27 +2017-06-25 05:47:00,28.3712,126.125,21.28 +2017-06-25 06:02:00,28.8112,124.572,21.31 +2017-06-25 06:17:00,27.8637,123.412,21.31 +2017-06-25 06:32:00,28.315,122.29,21.27 +2017-06-25 06:47:00,28.8575,121.755,21.22 +2017-06-25 07:02:00,29.2513,121.045,21.2 +2017-06-25 07:17:00,27.6712,120.905,21.25 +2017-06-25 07:32:00,33.2262,120.63,21.32 +2017-06-25 07:47:00,28.96,120.5,21.35 +2017-06-25 08:02:00,28.1738,120.355,21.37 +2017-06-25 08:17:00,29.295,120.53,21.37 +2017-06-25 08:32:00,28.365,120.64,21.36 +2017-06-25 08:47:00,29.1038,120.617,21.36 +2017-06-25 09:02:00,29.3925,120.59,21.38 +2017-06-25 09:17:00,28.8063,120.685,21.38 +2017-06-25 09:32:00,27.5687,120.765,21.4 +2017-06-25 09:47:00,28.86,120.762,21.43 +2017-06-25 10:02:00,28.7562,120.807,21.49 +2017-06-25 10:17:00,28.265,120.432,21.54 +2017-06-25 10:32:00,28.6113,120.612,21.66 +2017-06-25 10:47:00,29.5825,120.882,21.74 +2017-06-25 11:02:00,28.9575,120.62,21.8 +2017-06-25 11:17:00,29.055,120.977,21.9 +2017-06-25 11:32:00,28.4688,120.96,22.01 +2017-06-25 11:47:00,28.22,120.84,22.11 +2017-06-25 12:02:00,29.78,120.783,22.15 +2017-06-25 12:17:00,28.4613,120.945,22.19 +2017-06-25 12:32:00,28.0625,120.882,22.27 +2017-06-25 12:47:00,29.205,120.837,22.27 +2017-06-25 13:02:00,28.3162,120.825,22.2 +2017-06-25 13:17:00,29.1025,120.997,22.11 +2017-06-25 13:32:00,28.6637,120.987,22.05 +2017-06-25 13:47:00,28.5625,121.14,22.06 +2017-06-25 14:02:00,28.6588,121.262,22.09 +2017-06-25 14:17:00,28.165,121.247,22.08 +2017-06-25 14:32:00,28.5612,121.492,22.03 +2017-06-25 14:47:00,27.9625,121.222,21.98 +2017-06-25 15:02:00,29.0587,121.012,21.93 +2017-06-25 15:17:00,28.4187,121.082,21.85 +2017-06-25 15:32:00,29.0062,121.112,21.76 +2017-06-25 15:47:00,29.345,121.13,21.69 +2017-06-25 16:02:00,28.7062,121.298,21.65 +2017-06-25 16:17:00,29.9313,121.255,21.61 +2017-06-25 16:32:00,27.6687,121.167,21.6 +2017-06-25 16:47:00,28.2125,121.033,21.59 +2017-06-25 17:02:00,28.1675,120.78,21.59 +2017-06-25 17:17:00,28.6087,120.565,21.57 +2017-06-25 17:32:00,30.3662,120.322,21.56 +2017-06-25 17:47:00,29.0025,120.117,21.55 +2017-06-25 18:02:00,28.9037,119.867,21.52 +2017-06-25 18:17:00,29.4388,119.667,21.49 +2017-06-25 18:32:00,27.9613,119.487,21.46 +2017-06-25 18:47:00,29.44,119.372,21.44 +2017-06-25 19:02:00,28.52,119.29,21.42 +2017-06-25 19:17:00,28.9613,118.985,21.4 +2017-06-25 19:32:00,31.845,118.677,21.38 +2017-06-25 19:47:00,28.7537,118.605,21.34 +2017-06-25 20:02:00,30.12,118.185,21.32 +2017-06-25 20:17:00,29.2937,117.962,21.29 +2017-06-25 20:32:00,28.5125,117.602,21.28 +2017-06-25 20:47:00,30.1212,117.462,21.25 +2017-06-25 21:02:00,30.0287,117.257,21.23 +2017-06-25 21:17:00,30.125,117.26,21.22 +2017-06-25 21:32:00,29.0475,117.125,21.2 +2017-06-25 21:47:00,28.9575,117.03,21.18 +2017-06-25 22:02:00,28.6562,116.915,21.18 +2017-06-25 22:17:00,30.8125,116.755,21.17 +2017-06-25 22:32:00,30.6588,116.652,21.16 +2017-06-25 22:47:00,28.96,116.378,21.15 +2017-06-25 23:02:00,29.835,116.152,21.15 +2017-06-25 23:17:00,30.9088,116.005,21.15 +2017-06-25 23:32:00,29.005,115.93,21.16 +2017-06-25 23:47:00,29.3862,115.867,21.18 +2017-06-26 00:02:00,30.215,115.857,21.18 +2017-06-26 00:17:00,31.1437,115.925,21.21 +2017-06-26 00:32:00,30.7062,115.862,21.2 +2017-06-26 00:47:00,30.0788,115.902,21.25 +2017-06-26 01:02:00,30.6162,115.802,21.25 +2017-06-26 01:17:00,30.1663,115.717,21.28 +2017-06-26 01:32:00,30.4637,115.61,21.27 +2017-06-26 01:47:00,28.3175,115.46,21.26 +2017-06-26 02:02:00,31.0963,115.375,21.25 +2017-06-26 02:17:00,31.1937,115.393,21.25 +2017-06-26 02:32:00,28.8575,115.337,21.23 +2017-06-26 02:47:00,29.5837,115.423,21.2 +2017-06-26 03:02:00,30.6588,115.477,21.15 +2017-06-26 03:17:00,29.3387,115.537,21.11 +2017-06-26 03:32:00,30.5125,115.482,21.07 +2017-06-26 03:47:00,29.5312,115.44,21.05 +2017-06-26 04:02:00,29.73,115.372,21.03 +2017-06-26 04:17:00,30.025,115.38,21.01 +2017-06-26 04:32:00,27.0625,115.447,20.98 +2017-06-26 04:47:00,31.5037,115.397,20.95 +2017-06-26 05:02:00,29.6862,115.447,20.94 +2017-06-26 05:17:00,30.41,115.402,20.94 +2017-06-26 05:32:00,30.9487,115.695,20.95 +2017-06-26 05:47:00,30.3125,115.775,20.92 +2017-06-26 06:02:00,30.4575,115.612,20.88 +2017-06-26 06:17:00,31.3463,116.05,20.84 +2017-06-26 06:32:00,30.0788,115.882,20.81 +2017-06-26 06:47:00,30.1225,115.99,20.79 +2017-06-26 07:02:00,30.41,116.112,20.8 +2017-06-26 07:17:00,28.7562,116.182,20.82 +2017-06-26 07:32:00,28.1137,116.335,20.84 +2017-06-26 07:47:00,29.2925,116.607,20.84 +2017-06-26 08:02:00,30.755,116.68,20.85 +2017-06-26 08:17:00,30.36,116.798,20.84 +2017-06-26 08:32:00,29.5837,116.97,20.83 +2017-06-26 08:47:00,30.41,116.825,20.82 +2017-06-26 09:02:00,31.3937,116.787,20.86 +2017-06-26 09:17:00,32.4825,116.805,20.95 +2017-06-26 09:32:00,31.8937,116.84,21.03 +2017-06-26 09:47:00,29.6837,117.012,21.1 +2017-06-26 10:02:00,30.9025,117.212,21.16 +2017-06-26 10:17:00,31.945,117.207,21.21 +2017-06-26 10:32:00,27.4688,117.64,21.28 +2017-06-26 10:47:00,30.4112,117.475,21.3 +2017-06-26 11:02:00,31.5488,117.712,21.3 +2017-06-26 11:17:00,31.0462,117.64,21.3 +2017-06-26 11:32:00,32.3412,117.57,21.27 +2017-06-26 11:47:00,30.165,117.37,21.26 +2017-06-26 12:02:00,30.3613,117.355,21.26 +2017-06-26 12:17:00,29.3463,117.58,21.28 +2017-06-26 12:32:00,29.8838,117.487,21.31 +2017-06-26 12:47:00,30.1663,117.45,21.36 +2017-06-26 13:02:00,29.9262,117.647,21.38 +2017-06-26 13:17:00,29.78,117.665,21.39 +2017-06-26 13:32:00,33.3138,117.737,21.39 +2017-06-26 13:47:00,29.5362,117.745,21.38 +2017-06-26 14:02:00,30.8112,117.822,21.4 +2017-06-26 14:17:00,30.2188,117.737,21.46 +2017-06-26 14:32:00,29.8325,117.647,21.48 +2017-06-26 14:47:00,30.9975,117.73,21.45 +2017-06-26 15:02:00,30.86,117.607,21.43 +2017-06-26 15:17:00,31.445,117.732,21.4 +2017-06-26 15:32:00,29.3438,117.612,21.37 +2017-06-26 15:47:00,30.6612,117.75,21.38 +2017-06-26 16:02:00,31.6525,117.503,21.39 +2017-06-26 16:17:00,30.6162,117.63,21.37 +2017-06-26 16:32:00,30.465,117.592,21.33 +2017-06-26 16:47:00,29.2962,117.57,21.31 +2017-06-26 17:02:00,29.6813,117.49,21.31 +2017-06-26 17:17:00,31.45,117.465,21.27 +2017-06-26 17:32:00,30.61,117.292,21.18 +2017-06-26 17:47:00,29.8763,117.262,21.1 +2017-06-26 18:02:00,30.5175,117.18,21.01 +2017-06-26 18:17:00,29.7363,117.285,20.98 +2017-06-26 18:32:00,29.4825,117.122,20.96 +2017-06-26 18:47:00,31.0488,117.147,20.94 +2017-06-26 19:02:00,28.9562,117.175,20.91 +2017-06-26 19:17:00,29.5837,117.16,20.87 +2017-06-26 19:32:00,30.0262,117.217,20.82 +2017-06-26 19:47:00,28.9575,117.262,20.78 +2017-06-26 20:02:00,31.6987,117.227,20.74 +2017-06-26 20:17:00,29.2475,117.22,20.68 +2017-06-26 20:32:00,31.0475,117.143,20.62 +2017-06-26 20:47:00,29.8775,117.05,20.59 +2017-06-26 21:02:00,32.3913,116.99,20.57 +2017-06-26 21:17:00,31.745,116.927,20.55 +2017-06-26 21:32:00,29.8787,116.957,20.53 +2017-06-26 21:47:00,31.05,116.925,20.52 +2017-06-26 22:02:00,30.8125,116.93,20.53 +2017-06-26 22:17:00,29.295,116.955,20.54 +2017-06-26 22:32:00,31.1925,116.942,20.53 +2017-06-26 22:47:00,30.7075,117.007,20.51 +2017-06-26 23:02:00,30.7625,116.912,20.5 +2017-06-26 23:17:00,30.6113,116.695,20.52 +2017-06-26 23:32:00,31.0037,116.597,20.55 +2017-06-26 23:47:00,30.955,116.503,20.54 +2017-06-27 00:02:00,31.8962,116.357,20.53 +2017-06-27 00:17:00,30.4112,116.382,20.52 +2017-06-27 00:32:00,31.6,116.367,20.49 +2017-06-27 00:47:00,30.1175,116.39,20.46 +2017-06-27 01:02:00,31.6937,116.393,20.42 +2017-06-27 01:17:00,32.3412,116.385,20.42 +2017-06-27 01:32:00,30.71,116.222,20.41 +2017-06-27 01:47:00,30.215,116.15,20.4 +2017-06-27 02:02:00,30.0762,115.992,20.38 +2017-06-27 02:17:00,31.55,115.81,20.37 +2017-06-27 02:32:00,29.635,115.682,20.36 +2017-06-27 02:47:00,29.3438,115.545,20.33 +2017-06-27 03:02:00,32.0437,115.577,20.31 +2017-06-27 03:17:00,31.145,115.507,20.29 +2017-06-27 03:32:00,31.1987,115.467,20.25 +2017-06-27 03:47:00,30.0725,115.402,20.21 +2017-06-27 04:02:00,31.0963,115.347,20.17 +2017-06-27 04:17:00,30.8538,115.195,20.15 +2017-06-27 04:32:00,30.315,115.107,20.12 +2017-06-27 04:47:00,30.3112,114.952,20.11 +2017-06-27 05:02:00,30.3125,114.717,20.1 +2017-06-27 05:17:00,29.78,114.66,20.1 +2017-06-27 05:32:00,29.6287,114.592,20.11 +2017-06-27 05:47:00,30.165,114.525,20.12 +2017-06-27 06:02:00,29.4837,114.552,20.13 +2017-06-27 06:17:00,32.3875,114.283,20.12 +2017-06-27 06:32:00,30.755,114.28,20.13 +2017-06-27 06:47:00,32.5737,114.242,20.13 +2017-06-27 07:02:00,31.3937,114.025,20.14 +2017-06-27 07:17:00,31.0013,113.88,20.14 +2017-06-27 07:32:00,30.7637,113.852,20.15 +2017-06-27 07:47:00,30.1675,113.798,20.2 +2017-06-27 08:02:00,26.62,113.727,15.65 +2017-06-27 08:17:00,26.82,113.625,20.26 +2017-06-27 08:28:30,26.8187,113.56,20.28 +2017-06-27 08:32:00,24.8187,113.6,20.28 +2017-06-27 08:47:00,26.0887,113.575,20.28 +2017-06-27 09:02:00,27.4137,113.577,20.28 +2017-06-27 09:17:00,27.5687,113.477,20.26 +2017-06-27 09:32:00,28.2675,113.518,20.25 +2017-06-27 09:47:00,26.0362,113.432,20.23 +2017-06-27 10:02:00,28.1637,113.375,20.25 +2017-06-27 10:17:00,27.3637,113.29,20.27 +2017-06-27 10:32:00,27.41,113.062,20.33 +2017-06-27 10:47:00,26.6712,112.985,20.39 +2017-06-27 11:02:00,27.265,113.015,20.44 +2017-06-27 11:17:00,26.8262,112.917,20.51 +2017-06-27 11:32:00,27.46,112.912,20.58 +2017-06-27 11:47:00,27.7612,112.962,20.64 +2017-06-27 12:02:00,26.47,112.887,20.73 +2017-06-27 12:17:00,27.1612,112.902,20.79 +2017-06-27 12:32:00,27.3125,113.015,20.82 +2017-06-27 12:47:00,26.9637,113.072,20.89 +2017-06-27 13:02:00,26.5238,112.927,20.93 +2017-06-27 13:17:00,27.015,112.927,20.98 +2017-06-27 13:32:00,28.855,112.925,20.96 +2017-06-27 13:47:00,27.0612,112.707,20.96 +2017-06-27 14:02:00,26.87,112.73,21.02 +2017-06-27 14:17:00,27.3625,112.65,21.04 +2017-06-27 14:32:00,27.3613,112.482,21.06 +2017-06-27 14:47:00,27.315,112.42,21.08 +2017-06-27 15:02:00,27.165,112.535,21.1 +2017-06-27 15:17:00,26.6212,112.545,21.08 +2017-06-27 15:32:00,26.575,112.515,21.06 +2017-06-27 15:47:00,25.9863,112.5,21.02 +2017-06-27 16:02:00,27.6675,112.497,20.96 +2017-06-27 16:17:00,27.0612,112.507,20.93 +2017-06-27 16:32:00,27.915,112.512,20.87 +2017-06-27 16:47:00,26.7725,112.415,20.83 +2017-06-27 17:02:00,27.72,112.337,20.79 +2017-06-27 17:17:00,25.9875,112.305,20.77 +2017-06-27 17:32:00,26.7675,112.337,20.76 +2017-06-27 17:47:00,26.3725,112.365,20.72 +2017-06-27 18:02:00,26.8712,112.36,20.69 +2017-06-27 18:17:00,27.1612,112.378,20.67 +2017-06-27 18:32:00,27.3187,112.417,20.66 +2017-06-27 18:47:00,27.1625,112.42,20.63 +2017-06-27 19:02:00,26.475,112.44,20.6 +2017-06-27 19:17:00,27.6162,112.427,20.57 +2017-06-27 19:32:00,26.275,112.37,20.54 +2017-06-27 19:47:00,27.16,112.262,20.52 +2017-06-27 20:02:00,26.67,112.2,20.5 +2017-06-27 20:17:00,27.0612,112.15,20.47 +2017-06-27 20:32:00,28.0662,112.075,20.44 +2017-06-27 20:47:00,28.2175,112.08,20.4 +2017-06-27 21:02:00,26.4713,112.09,20.38 +2017-06-27 21:17:00,25.6937,112.067,20.36 +2017-06-27 21:32:00,28.165,112.155,20.34 +2017-06-27 21:47:00,28.2663,112.097,20.32 +2017-06-27 22:02:00,27.2612,112.128,20.28 +2017-06-27 22:17:00,25.7462,112.037,20.26 +2017-06-27 22:32:00,27.965,111.942,20.23 +2017-06-27 22:47:00,27.2637,111.815,20.21 +2017-06-27 23:02:00,26.0387,111.787,20.18 +2017-06-27 23:17:00,27.5125,111.855,20.16 +2017-06-27 23:32:00,27.465,111.825,20.16 +2017-06-27 23:47:00,27.0187,111.847,20.17 +2017-06-28 00:02:00,26.6225,111.862,20.17 +2017-06-28 00:17:00,28.015,111.902,20.18 +2017-06-28 00:32:00,27.0175,111.957,20.17 +2017-06-28 00:47:00,27.3662,111.952,20.17 +2017-06-28 01:02:00,27.26,111.895,20.17 +2017-06-28 01:17:00,26.9625,111.812,20.19 +2017-06-28 01:32:00,26.7237,111.64,20.18 +2017-06-28 01:47:00,27.0625,111.645,20.17 +2017-06-28 02:02:00,27.5163,111.587,20.15 +2017-06-28 02:17:00,26.3787,111.555,20.16 +2017-06-28 02:32:00,28.365,111.54,20.15 +2017-06-28 02:47:00,28.265,111.597,20.18 +2017-06-28 03:02:00,27.9125,111.587,20.18 +2017-06-28 03:17:00,27.3125,111.58,20.18 +2017-06-28 03:32:00,27.62,111.645,20.19 +2017-06-28 03:47:00,27.9112,111.665,20.19 +2017-06-28 04:02:00,26.425,111.64,20.2 +2017-06-28 04:17:00,27.67,111.555,20.22 +2017-06-28 04:32:00,27.5163,111.515,20.22 +2017-06-28 04:47:00,27.6675,111.365,20.25 +2017-06-28 05:02:00,27.0112,111.283,20.29 +2017-06-28 05:17:00,26.5238,111.317,20.33 +2017-06-28 05:32:00,26.8237,111.2,20.36 +2017-06-28 05:47:00,26.5212,111.147,20.39 +2017-06-28 06:02:00,26.5775,110.967,20.43 +2017-06-28 06:17:00,27.2625,111.075,20.47 +2017-06-28 06:32:00,28.9975,111.147,20.51 +2017-06-28 06:47:00,26.6188,111.065,20.55 +2017-06-28 07:02:00,27.665,111.077,20.59 +2017-06-28 07:17:00,26.3213,110.965,20.62 +2017-06-28 07:32:00,27.265,111.04,20.67 +2017-06-28 07:47:00,27.5662,111.117,20.72 +2017-06-28 08:02:00,25.94,111.21,20.78 +2017-06-28 08:17:00,27.7175,111.283,20.83 +2017-06-28 08:32:00,27.6137,111.412,20.89 +2017-06-28 08:47:00,25.1575,111.408,20.95 +2017-06-28 09:02:00,27.3637,111.393,21.05 +2017-06-28 09:17:00,25.5912,111.375,21.07 +2017-06-28 09:32:00,26.1375,111.257,21.07 +2017-06-28 09:47:00,28.0125,111.327,21.05 +2017-06-28 10:02:00,27.3138,111.275,21.06 +2017-06-28 10:17:00,27.4112,111.042,21.09 +2017-06-28 10:32:00,27.6675,111.05,21.15 +2017-06-28 10:47:00,26.7175,111.265,21.15 +2017-06-28 11:02:00,27.5625,111.217,21.14 +2017-06-28 11:17:00,28.705,111.335,21.12 +2017-06-28 11:32:00,28.5112,111.41,21.08 +2017-06-28 11:47:00,26.7237,111.195,21.06 +2017-06-28 12:02:00,26.9225,111.24,21.02 +2017-06-28 12:17:00,26.2275,111.255,20.99 +2017-06-28 12:32:00,26.87,111.283,20.98 +2017-06-28 12:47:00,27.6637,111.385,21.0 +2017-06-28 13:02:00,25.9412,111.393,21.05 +2017-06-28 13:17:00,28.955,111.527,21.08 +2017-06-28 13:32:00,28.7562,111.455,21.19 +2017-06-28 13:47:00,27.7188,111.507,21.24 +2017-06-28 14:02:00,26.8225,111.57,21.32 +2017-06-28 14:17:00,26.9662,111.555,21.39 +2017-06-28 14:32:00,27.0137,111.597,21.43 +2017-06-28 14:47:00,26.965,111.562,21.41 +2017-06-28 15:02:00,28.4637,111.65,21.42 +2017-06-28 15:17:00,26.7675,111.64,21.4 +2017-06-28 15:32:00,28.1188,111.635,21.4 +2017-06-28 15:47:00,27.4675,111.768,21.43 +2017-06-28 16:02:00,27.5163,111.682,21.44 +2017-06-28 16:17:00,27.9613,111.79,21.46 +2017-06-28 16:32:00,26.6738,111.75,21.48 +2017-06-28 16:47:00,28.8538,111.857,21.49 +2017-06-28 17:02:00,26.5737,111.82,21.49 +2017-06-28 17:17:00,27.0638,111.867,21.48 +2017-06-28 17:32:00,27.765,111.815,21.43 +2017-06-28 17:47:00,27.72,111.862,21.4 +2017-06-28 18:02:00,27.86,112.02,21.37 +2017-06-28 18:17:00,26.1825,111.997,21.33 +2017-06-28 18:32:00,28.36,111.965,21.29 +2017-06-28 18:47:00,26.5725,112.035,21.26 +2017-06-28 19:02:00,27.415,111.995,21.22 +2017-06-28 19:17:00,26.9713,111.98,21.18 +2017-06-28 19:32:00,27.0175,112.025,21.14 +2017-06-28 19:47:00,28.0625,111.97,21.1 +2017-06-28 20:02:00,26.6725,111.975,21.07 +2017-06-28 20:17:00,26.7712,111.965,21.03 +2017-06-28 20:32:00,27.8138,111.995,21.0 +2017-06-28 20:47:00,25.94,111.99,20.97 +2017-06-28 21:02:00,28.265,112.018,20.95 +2017-06-28 21:17:00,27.165,112.048,20.93 +2017-06-28 21:32:00,28.9562,112.06,20.9 +2017-06-28 21:47:00,27.5675,112.077,20.88 +2017-06-28 22:02:00,27.0612,112.16,20.87 +2017-06-28 22:17:00,27.16,112.197,20.86 +2017-06-28 22:32:00,26.4238,112.242,20.84 +2017-06-28 22:47:00,26.2787,112.347,20.82 +2017-06-28 23:02:00,27.9112,112.415,20.8 +2017-06-28 23:17:00,26.3775,112.51,20.78 +2017-06-28 23:32:00,27.9163,112.68,20.75 +2017-06-28 23:47:00,27.265,112.775,20.73 +2017-06-29 00:02:00,26.9175,112.827,20.69 +2017-06-29 00:17:00,27.0163,112.96,20.66 +2017-06-29 00:32:00,28.4137,113.085,20.61 +2017-06-29 00:47:00,28.56,113.217,20.59 +2017-06-29 01:02:00,26.3787,113.372,20.55 +2017-06-29 01:17:00,26.475,113.46,20.51 +2017-06-29 01:32:00,26.9688,113.585,20.47 +2017-06-29 01:47:00,27.8138,113.81,20.44 +2017-06-29 02:02:00,27.965,113.865,20.39 +2017-06-29 02:17:00,27.8125,113.992,20.36 +2017-06-29 02:32:00,27.6687,114.102,20.32 +2017-06-29 02:47:00,26.8237,114.188,20.28 +2017-06-29 03:02:00,27.72,114.355,20.27 +2017-06-29 03:17:00,27.1137,114.485,20.25 +2017-06-29 03:32:00,25.2637,114.585,20.22 +2017-06-29 03:47:00,27.1588,114.69,20.2 +2017-06-29 04:02:00,26.6212,114.765,20.18 +2017-06-29 04:17:00,27.0137,114.847,20.18 +2017-06-29 04:32:00,26.6212,114.88,20.19 +2017-06-29 04:47:00,27.615,115.1,20.2 +2017-06-29 05:02:00,27.965,115.27,20.21 +2017-06-29 05:17:00,26.4688,115.53,20.23 +2017-06-29 05:32:00,25.2562,115.63,20.27 +2017-06-29 05:47:00,27.72,115.753,20.32 +2017-06-29 06:02:00,26.2775,115.677,20.36 +2017-06-29 06:17:00,27.7675,115.732,20.4 +2017-06-29 06:32:00,27.3662,115.745,20.44 +2017-06-29 06:47:00,25.6975,115.785,20.49 +2017-06-29 07:02:00,26.4238,115.815,20.54 +2017-06-29 07:17:00,27.0587,115.9,20.6 +2017-06-29 07:32:00,26.6712,115.927,20.67 +2017-06-29 07:47:00,27.1087,115.887,20.73 +2017-06-29 08:02:00,26.825,116.005,20.79 +2017-06-29 08:17:00,26.6712,116.062,20.83 +2017-06-29 08:32:00,27.9112,116.01,20.89 +2017-06-29 08:47:00,27.2137,116.022,20.92 +2017-06-29 09:02:00,27.9125,116.01,20.93 +2017-06-29 09:17:00,27.5125,116.092,20.93 +2017-06-29 09:32:00,26.3737,115.887,20.95 +2017-06-29 09:47:00,25.8887,116.152,20.98 +2017-06-29 10:02:00,27.4662,116.092,21.01 +2017-06-29 10:17:00,28.3637,116.29,21.04 +2017-06-29 10:32:00,26.825,116.227,21.06 +2017-06-29 10:47:00,27.4662,116.247,21.09 +2017-06-29 11:02:00,28.0125,116.26,21.1 +2017-06-29 11:17:00,26.6712,116.237,21.09 +2017-06-29 11:32:00,27.1125,116.107,21.08 +2017-06-29 11:47:00,27.315,116.315,21.08 +2017-06-29 12:02:00,26.9675,116.188,21.09 +2017-06-29 12:17:00,27.5163,116.42,21.07 +2017-06-29 12:32:00,27.72,116.54,21.06 +2017-06-29 12:47:00,27.1663,116.595,21.05 +2017-06-29 13:02:00,26.7237,116.64,21.04 +2017-06-29 13:17:00,27.6137,116.688,21.04 +2017-06-29 13:32:00,26.9688,116.76,21.05 +2017-06-29 13:47:00,27.4112,116.852,21.05 +2017-06-29 14:02:00,26.1362,116.76,21.04 +2017-06-29 14:17:00,26.4225,116.74,21.03 +2017-06-29 14:32:00,26.5788,116.992,21.02 +2017-06-29 14:47:00,26.625,116.84,21.01 +2017-06-29 15:02:00,25.8412,117.045,20.99 +2017-06-29 15:17:00,26.4238,117.035,20.98 +2017-06-29 15:32:00,26.5225,117.13,20.95 +2017-06-29 15:47:00,26.2288,117.262,20.93 +2017-06-29 16:02:00,26.3262,116.935,20.91 +2017-06-29 16:17:00,26.0912,117.035,20.87 +2017-06-29 16:32:00,26.0425,117.26,20.84 +2017-06-29 16:47:00,24.6562,117.07,20.8 +2017-06-29 17:02:00,26.0875,117.378,20.77 +2017-06-29 17:17:00,26.2288,117.425,20.73 +2017-06-29 17:32:00,27.3637,117.47,20.69 +2017-06-29 17:47:00,27.8125,117.402,20.66 +2017-06-29 18:02:00,26.2262,117.54,20.6 +2017-06-29 18:17:00,27.3125,117.732,20.53 +2017-06-29 18:32:00,27.6188,117.762,20.48 +2017-06-29 18:47:00,25.9362,117.697,20.45 +2017-06-29 19:02:00,27.1637,117.837,20.41 +2017-06-29 19:17:00,26.4688,118.132,20.38 +2017-06-29 19:32:00,27.0137,118.32,20.35 +2017-06-29 19:47:00,26.3213,118.447,20.32 +2017-06-29 20:02:00,27.1125,118.427,20.29 +2017-06-29 20:17:00,25.015,118.557,20.26 +2017-06-29 20:32:00,27.4112,118.53,20.23 +2017-06-29 20:47:00,28.51,118.717,20.2 +2017-06-29 21:02:00,26.7188,118.805,20.17 +2017-06-29 21:17:00,27.5612,119.042,20.15 +2017-06-29 21:32:00,27.1075,119.152,20.12 +2017-06-29 21:47:00,27.4137,119.302,20.09 +2017-06-29 22:02:00,25.8887,119.295,20.04 +2017-06-29 22:17:00,27.4662,119.425,20.02 +2017-06-29 22:32:00,27.96,119.408,19.99 +2017-06-29 22:47:00,26.67,119.39,19.95 +2017-06-29 23:02:00,27.665,119.597,19.91 +2017-06-29 23:17:00,25.8412,119.985,19.88 +2017-06-29 23:32:00,25.4962,119.987,19.86 +2017-06-29 23:47:00,26.5775,120.34,19.83 +2017-06-30 00:02:00,27.4187,120.232,19.8 +2017-06-30 00:17:00,28.265,120.4,19.76 +2017-06-30 00:32:00,27.0625,120.597,19.73 +2017-06-30 00:47:00,28.21,120.737,19.71 +2017-06-30 01:02:00,26.6188,120.783,19.68 +2017-06-30 01:17:00,26.9637,120.817,19.66 +2017-06-30 01:32:00,27.31,120.74,19.62 +2017-06-30 01:47:00,26.8737,120.827,19.55 +2017-06-30 02:02:00,26.9675,120.71,19.52 +2017-06-30 02:17:00,26.7712,121.065,19.51 +2017-06-30 02:32:00,27.6125,120.925,19.5 +2017-06-30 02:47:00,27.1087,120.95,19.46 +2017-06-30 03:02:00,27.3613,121.102,19.43 +2017-06-30 03:17:00,26.8675,121.097,19.41 +2017-06-30 03:32:00,26.3237,120.985,19.4 +2017-06-30 03:47:00,27.9125,121.1,19.39 +2017-06-30 04:02:00,27.1663,121.072,19.38 +2017-06-30 04:17:00,27.5638,120.98,19.38 +2017-06-30 04:32:00,26.1787,120.947,19.34 +2017-06-30 04:47:00,26.6188,120.997,19.33 +2017-06-30 05:02:00,27.0137,121.12,19.35 +2017-06-30 05:17:00,26.525,121.137,19.37 +2017-06-30 05:32:00,26.5762,121.175,19.39 +2017-06-30 05:47:00,28.2137,121.225,19.41 +2017-06-30 06:02:00,27.56,121.24,19.43 +2017-06-30 06:17:00,27.4613,121.415,19.47 +2017-06-30 06:32:00,27.46,121.395,19.51 +2017-06-30 06:47:00,26.2725,121.33,19.55 +2017-06-30 07:02:00,27.0563,121.39,19.59 +2017-06-30 07:17:00,26.135,121.41,19.62 +2017-06-30 07:32:00,27.26,121.325,19.65 +2017-06-30 07:47:00,26.8712,121.357,19.7 +2017-06-30 08:02:00,27.9088,121.165,19.71 +2017-06-30 08:17:00,27.0075,121.512,19.71 +2017-06-30 08:32:00,26.6175,121.217,19.72 +2017-06-30 08:47:00,26.18,121.45,19.76 +2017-06-30 09:02:00,26.3688,121.037,19.81 +2017-06-30 09:17:00,26.7237,121.135,19.88 +2017-06-30 09:32:00,26.5737,121.102,19.95 +2017-06-30 09:47:00,27.7612,121.26,20.03 +2017-06-30 10:02:00,27.7612,120.908,20.07 +2017-06-30 10:17:00,27.76,120.815,20.13 +2017-06-30 10:32:00,27.1588,120.53,20.19 +2017-06-30 10:47:00,28.115,120.515,20.27 +2017-06-30 11:02:00,27.465,120.452,20.28 +2017-06-30 11:17:00,26.4725,120.707,20.26 +2017-06-30 11:32:00,26.6225,120.592,20.23 +2017-06-30 11:47:00,27.1087,120.677,20.21 +2017-06-30 12:02:00,27.0137,120.815,20.18 +2017-06-30 12:17:00,27.0125,120.545,20.14 +2017-06-30 12:32:00,27.1612,120.462,20.12 +2017-06-30 12:47:00,28.2612,120.832,20.1 +2017-06-30 13:02:00,27.16,120.6,20.13 +2017-06-30 13:17:00,26.8237,120.467,20.16 +2017-06-30 13:32:00,25.5462,120.475,20.16 +2017-06-30 13:47:00,27.5638,120.227,20.13 +2017-06-30 14:02:00,26.3262,120.292,20.12 +2017-06-30 14:17:00,27.0125,120.117,20.1 +2017-06-30 14:32:00,27.4637,120.01,20.09 +2017-06-30 14:47:00,27.0612,120.065,20.08 +2017-06-30 15:02:00,26.7213,119.92,20.05 +2017-06-30 15:17:00,26.775,120.065,20.01 +2017-06-30 15:32:00,28.26,119.857,19.99 +2017-06-30 15:47:00,27.2075,119.845,20.0 +2017-06-30 16:02:00,26.3737,119.85,19.99 +2017-06-30 16:17:00,25.7475,119.81,19.95 +2017-06-30 16:32:00,27.8087,119.785,19.91 +2017-06-30 16:47:00,27.255,119.625,19.87 +2017-06-30 17:02:00,26.4713,119.385,19.83 +2017-06-30 17:17:00,26.4737,119.26,19.79 +2017-06-30 17:32:00,27.7137,119.21,19.75 +2017-06-30 17:47:00,27.4112,119.125,19.72 +2017-06-30 18:02:00,26.27,119.155,19.68 +2017-06-30 18:17:00,27.715,119.185,19.65 +2017-06-30 18:32:00,27.0088,119.067,19.62 +2017-06-30 18:47:00,25.6937,119.158,19.59 +2017-06-30 19:02:00,27.31,119.102,19.55 +2017-06-30 19:17:00,27.0612,119.092,19.53 +2017-06-30 19:32:00,26.3237,119.065,19.51 +2017-06-30 19:47:00,27.3625,118.982,19.48 +2017-06-30 20:02:00,28.165,118.917,19.45 +2017-06-30 20:17:00,27.315,118.86,19.42 +2017-06-30 20:32:00,27.8112,118.867,19.38 +2017-06-30 20:47:00,26.4225,118.852,19.35 +2017-06-30 21:02:00,27.0163,119.003,19.35 +2017-06-30 21:17:00,28.1612,119.037,19.36 +2017-06-30 21:32:00,27.7125,119.062,19.35 +2017-06-30 21:47:00,25.69,119.07,19.33 +2017-06-30 22:02:00,27.565,119.15,19.31 +2017-06-30 22:17:00,28.4625,119.24,19.3 +2017-06-30 22:32:00,25.4962,119.25,19.28 +2017-06-30 22:47:00,27.815,119.315,19.24 +2017-06-30 23:02:00,26.92,119.312,19.22 +2017-06-30 23:17:00,27.3675,119.265,19.2 +2017-06-30 23:32:00,27.515,119.305,19.19 +2017-06-30 23:47:00,26.0362,119.365,19.18 +2017-07-01 00:02:00,27.7125,119.45,19.18 +2017-07-01 00:17:00,27.36,119.533,19.2 +2017-07-01 00:32:00,27.5137,119.635,19.23 +2017-07-01 00:47:00,27.2663,119.725,19.23 +2017-07-01 01:02:00,28.2137,119.74,19.23 +2017-07-01 01:17:00,27.0587,119.95,19.21 +2017-07-01 01:32:00,26.1312,119.997,19.2 +2017-07-01 01:47:00,26.8675,120.01,19.17 +2017-07-01 02:02:00,25.79,119.98,19.15 +2017-07-01 02:17:00,26.6687,119.925,19.12 +2017-07-01 02:32:00,27.6663,119.9,19.11 +2017-07-01 02:47:00,26.3737,119.872,19.09 +2017-07-01 03:02:00,27.4613,119.945,19.06 +2017-07-01 03:17:00,26.8162,120.075,19.04 +2017-07-01 03:32:00,27.955,120.018,19.02 +2017-07-01 03:47:00,25.305,120.07,19.0 +2017-07-01 04:02:00,26.9613,120.125,18.98 +2017-07-01 04:17:00,28.4187,120.155,18.97 +2017-07-01 04:32:00,25.9388,120.285,18.96 +2017-07-01 04:47:00,26.3213,120.165,18.95 +2017-07-01 05:02:00,27.255,120.147,18.94 +2017-07-01 05:17:00,28.2125,119.985,18.93 +2017-07-01 05:32:00,26.465,119.878,18.93 +2017-07-01 05:47:00,27.6663,119.932,18.93 +2017-07-01 06:02:00,27.715,119.862,18.93 +2017-07-01 06:17:00,27.3138,119.88,18.92 +2017-07-01 06:32:00,28.7513,120.015,18.9 +2017-07-01 06:47:00,27.4625,119.995,18.88 +2017-07-01 07:02:00,27.6625,119.902,18.9 +2017-07-01 07:17:00,25.5413,119.84,18.93 +2017-07-01 07:32:00,26.715,119.845,18.95 +2017-07-01 07:47:00,26.67,119.622,18.97 +2017-07-01 08:02:00,25.255,119.755,18.99 +2017-07-01 08:17:00,27.9625,119.622,19.0 +2017-07-01 08:32:00,26.28,119.525,19.01 +2017-07-01 08:47:00,26.6237,119.622,19.01 +2017-07-01 09:02:00,28.6038,119.557,19.01 +2017-07-01 09:17:00,25.9812,119.432,19.0 +2017-07-01 09:32:00,25.54,119.423,19.03 +2017-07-01 09:47:00,27.255,119.222,19.07 +2017-07-01 10:02:00,26.4212,119.385,19.1 +2017-07-01 10:17:00,27.16,119.382,19.11 +2017-07-01 10:32:00,25.3025,119.182,19.11 +2017-07-01 10:47:00,26.9613,119.19,19.12 +2017-07-01 11:02:00,26.035,118.857,19.12 +2017-07-01 11:17:00,25.9375,118.805,19.1 +2017-07-01 11:32:00,27.7137,118.617,19.1 +2017-07-01 11:47:00,26.9625,118.612,19.1 +2017-07-01 12:02:00,26.7675,118.71,19.14 +2017-07-01 12:17:00,27.0125,118.59,19.18 +2017-07-01 12:32:00,27.0088,118.617,19.2 +2017-07-01 12:47:00,26.52,118.567,19.19 +2017-07-01 13:02:00,25.9337,118.41,19.18 +2017-07-01 13:17:00,27.66,118.393,19.16 +2017-07-01 13:32:00,26.415,118.417,19.14 +2017-07-01 13:47:00,26.275,118.16,19.11 +2017-07-01 14:02:00,28.0612,118.08,19.1 +2017-07-01 14:17:00,27.7137,118.065,19.1 +2017-07-01 14:32:00,27.7562,117.827,19.08 +2017-07-01 14:47:00,26.0362,117.84,19.08 +2017-07-01 15:02:00,26.8162,117.617,19.07 +2017-07-01 15:17:00,27.255,117.802,19.05 +2017-07-01 15:32:00,28.1087,117.58,19.03 +2017-07-01 15:47:00,27.3587,117.702,19.03 +2017-07-01 16:02:00,28.9088,117.595,19.01 +2017-07-01 16:17:00,26.275,117.533,19.0 +2017-07-01 16:32:00,26.9163,117.665,18.97 +2017-07-01 16:47:00,25.9375,117.455,18.94 +2017-07-01 17:02:00,28.1125,117.408,18.91 +2017-07-01 17:17:00,27.0625,117.272,18.89 +2017-07-01 17:32:00,27.6663,117.217,18.87 +2017-07-01 17:47:00,25.4487,117.16,18.86 +2017-07-01 18:02:00,27.0187,117.105,18.84 +2017-07-01 18:17:00,26.52,117.11,18.81 +2017-07-01 18:32:00,27.055,117.025,18.78 +2017-07-01 18:47:00,26.57,117.167,18.75 +2017-07-01 19:02:00,26.3213,117.117,18.72 +2017-07-01 19:17:00,26.9613,117.167,18.68 +2017-07-01 19:32:00,26.5762,117.23,18.65 +2017-07-01 19:47:00,26.23,117.075,18.63 +2017-07-01 20:02:00,27.31,117.07,18.61 +2017-07-01 20:17:00,25.935,116.787,18.59 +2017-07-01 20:32:00,26.0837,116.885,18.57 +2017-07-01 20:47:00,27.2075,116.582,18.54 +2017-07-01 21:02:00,28.4125,116.612,18.51 +2017-07-01 21:17:00,26.72,116.612,18.49 +2017-07-01 21:32:00,26.72,116.6,18.48 +2017-07-01 21:47:00,27.1113,116.65,18.46 +2017-07-01 22:02:00,25.5425,116.625,18.45 +2017-07-01 22:17:00,27.2575,116.69,18.44 +2017-07-01 22:32:00,28.3625,116.63,18.43 +2017-07-01 22:47:00,27.6637,116.622,18.43 +2017-07-01 23:02:00,26.4725,116.515,18.42 +2017-07-01 23:17:00,27.4637,116.427,18.4 +2017-07-01 23:32:00,27.47,116.452,18.39 +2017-07-01 23:47:00,27.4137,116.298,18.37 +2017-07-02 00:02:00,27.3138,116.018,18.36 +2017-07-02 00:17:00,27.7113,116.312,18.36 +2017-07-02 00:32:00,25.74,116.105,18.36 +2017-07-02 00:47:00,27.9613,116.13,18.36 +2017-07-02 01:02:00,27.3087,116.235,18.35 +2017-07-02 01:17:00,27.7588,116.247,18.31 +2017-07-02 01:32:00,26.625,116.34,18.28 +2017-07-02 01:47:00,26.6188,116.352,18.23 +2017-07-02 02:02:00,26.415,116.345,18.2 +2017-07-02 02:17:00,27.1588,116.327,18.17 +2017-07-02 02:32:00,27.0088,116.045,18.14 +2017-07-02 02:47:00,27.4088,116.122,18.12 +2017-07-02 03:02:00,27.3587,116.125,18.09 +2017-07-02 03:17:00,-51.9162,116.247,18.05 +2017-07-02 03:32:00,-51.9162,116.317,18.01 +2017-07-02 03:47:00,-51.9162,116.177,17.99 +2017-07-02 04:02:00,-51.92,116.257,17.99 +2017-07-02 04:17:00,-51.9175,116.152,17.99 +2017-07-02 04:32:00,27.8312,116.152,17.99 +2017-07-02 04:47:00,28.9375,116.022,18.02 +2017-07-02 05:02:00,28.2988,116.217,18.05 +2017-07-02 05:17:00,26.955,115.935,18.07 +2017-07-02 05:32:00,27.305,115.902,18.07 +2017-07-02 05:47:00,26.7125,115.882,18.09 +2017-07-02 06:02:00,26.7612,115.745,18.12 +2017-07-02 06:17:00,25.2025,115.792,18.15 +2017-07-02 06:32:00,27.6075,115.765,18.19 +2017-07-02 06:47:00,27.2525,115.585,18.21 +2017-07-02 07:02:00,27.0088,115.562,18.23 +2017-07-02 07:17:00,27.1588,115.465,18.25 +2017-07-02 07:32:00,26.2225,115.42,18.27 +2017-07-02 07:47:00,27.155,115.298,18.32 +2017-07-02 08:02:00,26.8187,115.41,18.38 +2017-07-02 08:17:00,26.6188,115.423,18.41 +2017-07-02 08:32:00,29.1937,115.417,18.51 +2017-07-02 08:47:00,26.67,115.832,18.62 +2017-07-02 09:02:00,27.51,115.827,18.67 +2017-07-02 09:17:00,27.0563,115.54,18.7 +2017-07-02 09:32:00,27.2075,115.792,18.75 +2017-07-02 09:47:00,27.6625,115.792,18.81 +2017-07-02 10:02:00,27.1562,115.438,18.84 +2017-07-02 10:17:00,28.2612,115.822,18.83 +2017-07-02 10:32:00,26.4688,115.55,18.85 +2017-07-02 10:47:00,27.5612,115.44,18.86 +2017-07-02 11:02:00,26.7175,115.635,18.82 +2017-07-02 11:17:00,27.0563,115.565,18.79 +2017-07-02 11:32:00,26.3225,115.635,18.78 +2017-07-02 11:47:00,27.1075,115.777,18.78 +2017-07-02 12:02:00,28.3112,115.52,18.8 +2017-07-02 12:17:00,28.1087,115.552,18.81 +2017-07-02 12:32:00,26.2725,115.617,18.79 +2017-07-02 12:47:00,28.2588,115.518,18.78 +2017-07-02 13:02:00,27.76,115.253,18.76 +2017-07-02 13:17:00,26.7675,115.075,18.73 +2017-07-02 13:32:00,26.815,115.182,18.7 +2017-07-02 13:47:00,25.985,115.102,18.67 +2017-07-02 14:02:00,27.2525,115.275,18.65 +2017-07-02 14:17:00,26.57,115.302,18.64 +2017-07-02 14:32:00,27.305,115.287,18.62 +2017-07-02 14:47:00,27.205,115.327,18.6 +2017-07-02 15:02:00,27.0075,115.03,18.56 +2017-07-02 15:17:00,26.96,115.38,18.53 +2017-07-02 15:32:00,28.5537,115.402,18.51 +2017-07-02 15:47:00,27.2525,115.253,18.5 +2017-07-02 16:02:00,25.885,115.167,18.51 +2017-07-02 16:17:00,27.8525,115.145,18.51 +2017-07-02 16:32:00,27.855,115.005,18.49 +2017-07-02 16:47:00,26.465,115.122,18.47 +2017-07-02 17:02:00,28.16,115.102,18.43 +2017-07-02 17:17:00,28.3063,115.337,18.44 +2017-07-02 17:32:00,27.5062,115.4,18.43 +2017-07-02 17:47:00,26.4688,115.225,18.42 +2017-07-02 18:02:00,27.1562,115.36,18.4 +2017-07-02 18:17:00,26.715,115.315,18.38 +2017-07-02 18:32:00,27.71,115.355,18.35 +2017-07-02 18:47:00,26.7213,115.315,18.31 +2017-07-02 19:02:00,25.8375,115.257,18.27 +2017-07-02 19:17:00,28.1075,115.132,18.25 +2017-07-02 19:32:00,28.1113,115.112,18.21 +2017-07-02 19:47:00,27.51,115.188,18.18 +2017-07-02 20:02:00,26.3712,115.158,18.16 +2017-07-02 20:17:00,28.2075,115.07,18.14 +2017-07-02 20:32:00,27.6637,115.192,18.1 +2017-07-02 20:47:00,26.3712,115.3,18.09 +2017-07-02 21:02:00,25.84,115.253,18.09 +2017-07-02 21:17:00,27.6625,115.37,18.09 +2017-07-02 21:32:00,28.01,115.3,18.09 +2017-07-02 21:47:00,26.42,115.305,18.07 +2017-07-02 22:02:00,28.0075,115.17,18.07 +2017-07-02 22:17:00,27.9062,115.155,18.05 +2017-07-02 22:32:00,27.5062,115.13,18.07 +2017-07-02 22:47:00,26.4662,115.12,18.09 +2017-07-02 23:02:00,27.6137,115.173,18.08 +2017-07-02 23:17:00,27.0563,115.177,18.07 +2017-07-02 23:32:00,27.6625,115.197,18.07 +2017-07-02 23:47:00,28.41,115.155,18.06 +2017-07-03 00:02:00,27.4613,115.29,18.04 +2017-07-03 00:17:00,25.8862,115.362,18.02 +2017-07-03 00:32:00,27.1062,115.285,18.0 +2017-07-03 00:47:00,27.2062,115.295,17.98 +2017-07-03 01:02:00,26.5163,115.167,17.95 +2017-07-03 01:17:00,27.01,115.075,17.92 +2017-07-03 01:32:00,26.5175,115.027,17.91 +2017-07-03 01:47:00,27.5088,115.003,17.9 +2017-07-03 02:02:00,26.0362,115.042,17.87 +2017-07-03 02:17:00,26.1762,114.982,17.84 +2017-07-03 02:32:00,27.6625,115.097,17.81 +2017-07-03 02:47:00,28.11,115.117,17.79 +2017-07-03 03:02:00,26.32,115.165,17.76 +2017-07-03 03:17:00,27.5638,115.26,17.73 +2017-07-03 03:32:00,27.51,115.28,17.7 +2017-07-03 03:47:00,26.8175,115.215,17.68 +2017-07-03 04:02:00,26.565,115.143,17.65 +2017-07-03 04:17:00,27.56,115.11,17.64 +2017-07-03 04:32:00,27.0062,115.055,17.62 +2017-07-03 04:47:00,26.4175,114.965,17.61 +2017-07-03 05:02:00,28.3587,114.952,17.61 +2017-07-03 05:17:00,26.4187,115.135,17.66 +2017-07-03 05:32:00,26.3662,115.167,17.69 +2017-07-03 05:47:00,26.9637,115.165,17.73 +2017-07-03 06:02:00,26.22,115.082,17.77 +2017-07-03 06:17:00,28.3587,115.022,17.81 +2017-07-03 06:32:00,27.66,115.03,17.88 +2017-07-03 06:47:00,28.3575,114.947,17.93 +2017-07-03 07:02:00,26.865,114.927,17.96 +2017-07-03 07:17:00,26.5662,114.89,18.02 +2017-07-03 07:32:00,27.3562,114.457,18.08 +2017-07-03 07:47:00,27.2038,114.92,18.17 +2017-07-03 08:02:00,27.46,114.77,18.26 +2017-07-03 08:17:00,26.6663,114.878,18.33 +2017-07-03 08:32:00,27.1562,114.71,18.39 +2017-07-03 08:47:00,28.6975,114.97,18.45 +2017-07-03 09:02:00,26.1287,114.872,18.48 +2017-07-03 09:17:00,26.5675,114.985,18.51 +2017-07-03 09:32:00,27.56,114.9,18.54 +2017-07-03 09:47:00,27.7575,114.88,18.54 +2017-07-03 10:02:00,26.5687,114.827,18.59 +2017-07-03 10:17:00,27.3087,114.783,18.65 +2017-07-03 10:32:00,25.985,114.5,18.76 +2017-07-03 10:47:00,28.41,114.905,18.85 +2017-07-03 11:02:00,27.46,114.893,18.96 +2017-07-03 11:17:00,27.5125,114.957,19.01 +2017-07-03 11:32:00,26.0837,115.16,19.08 +2017-07-03 11:47:00,26.2237,115.677,19.14 +2017-07-03 12:02:00,28.6012,115.807,19.17 +2017-07-03 12:17:00,26.715,115.955,19.2 +2017-07-03 12:32:00,26.2712,116.402,19.23 +2017-07-03 12:47:00,26.6712,116.692,19.22 +2017-07-03 13:02:00,27.3087,116.695,19.29 +2017-07-03 13:17:00,26.6675,117.115,19.26 +2017-07-03 13:32:00,26.6175,117.147,19.32 +2017-07-03 13:47:00,27.5075,117.287,19.34 +2017-07-03 14:02:00,27.9538,117.59,19.39 +2017-07-03 14:17:00,26.5212,117.735,19.43 +2017-07-03 14:32:00,26.6687,117.677,19.45 +2017-07-03 14:47:00,26.9137,118.025,19.46 +2017-07-03 15:02:00,26.8688,117.865,19.46 +2017-07-03 15:17:00,26.57,118.165,19.46 +2017-07-03 15:32:00,27.255,118.322,19.5 +2017-07-03 15:47:00,27.3087,118.04,19.49 +2017-07-03 16:02:00,26.8175,117.91,19.45 +2017-07-03 16:17:00,27.1562,118.067,19.4 +2017-07-03 16:32:00,27.3575,117.77,19.36 +2017-07-03 16:47:00,27.5563,117.77,19.3 +2017-07-03 17:02:00,28.7975,117.735,19.27 +2017-07-03 17:17:00,27.7113,117.548,19.25 +2017-07-03 17:32:00,25.98,117.495,19.21 +2017-07-03 17:47:00,26.1287,117.367,19.17 +2017-07-03 18:02:00,27.255,117.25,19.14 +2017-07-03 18:17:00,27.8075,117.132,19.12 +2017-07-03 18:32:00,26.9137,117.06,19.1 +2017-07-03 18:47:00,28.2087,116.955,19.07 +2017-07-03 19:02:00,25.3512,116.81,19.04 +2017-07-03 19:17:00,27.4538,116.54,19.01 +2017-07-03 19:32:00,27.1562,116.352,19.0 +2017-07-03 19:47:00,26.7175,116.057,18.98 +2017-07-03 20:02:00,26.175,115.99,18.96 +2017-07-03 20:17:00,24.905,115.792,18.96 +2017-07-03 20:32:00,26.225,115.685,18.95 +2017-07-03 20:47:00,27.1575,115.572,18.95 +2017-07-03 21:02:00,27.61,115.455,18.96 +2017-07-03 21:17:00,25.5387,115.375,18.97 +2017-07-03 21:32:00,26.7162,115.26,18.97 +2017-07-03 21:47:00,27.5587,115.222,18.96 +2017-07-03 22:02:00,26.7637,115.12,18.96 +2017-07-03 22:17:00,27.0088,114.878,18.97 +2017-07-03 22:32:00,26.3213,114.825,18.98 +2017-07-03 22:47:00,27.41,114.595,18.99 +2017-07-03 23:02:00,27.0575,114.482,18.97 +2017-07-03 23:17:00,27.665,114.482,18.94 +2017-07-03 23:32:00,26.4175,114.527,18.95 +2017-07-03 23:47:00,28.31,114.285,18.93 +2017-07-04 00:02:00,26.1775,114.277,18.94 +2017-07-04 00:17:00,27.5112,114.277,18.94 +2017-07-04 00:32:00,26.5225,114.305,18.95 +2017-07-04 00:47:00,26.5187,114.143,18.94 +2017-07-04 01:02:00,26.9613,114.177,18.93 +2017-07-04 01:17:00,26.8675,114.095,18.91 +2017-07-04 01:32:00,27.9613,113.712,18.89 +2017-07-04 01:47:00,28.0112,113.615,18.88 +2017-07-04 02:02:00,27.76,113.622,18.88 +2017-07-04 02:17:00,27.6125,113.658,18.87 +2017-07-04 02:32:00,26.52,113.565,18.88 +2017-07-04 02:47:00,27.5575,113.505,18.92 +2017-07-04 03:02:00,28.2588,113.525,18.97 +2017-07-04 03:17:00,26.8688,113.612,19.01 +2017-07-04 03:32:00,25.3012,113.548,19.02 +2017-07-04 03:47:00,27.4613,113.417,19.03 +2017-07-04 04:02:00,27.5112,113.587,19.05 +2017-07-04 04:17:00,26.8712,113.332,19.05 +2017-07-04 04:32:00,26.6162,113.173,19.04 +2017-07-04 04:47:00,25.7387,113.188,19.06 +2017-07-04 05:02:00,26.7663,113.09,19.07 +2017-07-04 05:17:00,27.36,113.202,19.12 +2017-07-04 05:32:00,27.7562,113.155,19.16 +2017-07-04 05:47:00,27.905,112.982,19.19 +2017-07-04 06:02:00,27.9062,113.11,19.21 +2017-07-04 06:17:00,27.2038,113.09,19.24 +2017-07-04 06:32:00,26.3175,113.02,19.25 +2017-07-04 06:47:00,26.7675,112.795,19.27 +2017-07-04 07:02:00,27.8562,112.825,19.27 +2017-07-04 07:17:00,26.7663,112.717,19.27 +2017-07-04 07:32:00,26.8637,113.018,19.29 +2017-07-04 07:47:00,27.6625,112.96,19.31 +2017-07-04 08:02:00,27.4587,112.942,19.32 +2017-07-04 08:17:00,27.9575,112.977,19.32 +2017-07-04 08:32:00,26.2725,112.822,19.33 +2017-07-04 08:47:00,27.1038,112.872,19.38 +2017-07-04 09:02:00,27.305,112.605,19.42 +2017-07-04 09:17:00,27.4587,112.438,19.47 +2017-07-04 09:32:00,28.75,112.423,19.52 +2017-07-04 09:47:00,27.6612,112.412,19.57 +2017-07-04 10:02:00,26.9625,112.355,19.64 +2017-07-04 10:17:00,26.225,112.605,19.69 +2017-07-04 10:32:00,26.9137,112.35,19.78 +2017-07-04 10:47:00,26.7162,112.58,19.85 +2017-07-04 11:02:00,26.815,112.365,19.93 +2017-07-04 11:17:00,26.7162,112.342,19.97 +2017-07-04 11:32:00,28.26,112.155,20.05 +2017-07-04 11:47:00,28.3587,112.217,20.09 +2017-07-04 12:02:00,26.465,112.192,20.14 +2017-07-04 12:17:00,26.5713,111.932,20.18 +2017-07-04 12:32:00,27.1562,111.85,20.21 +2017-07-04 12:47:00,26.8662,111.7,20.26 +2017-07-04 13:02:00,25.6888,112.09,20.29 +2017-07-04 13:17:00,25.2025,111.842,20.32 +2017-07-04 13:32:00,27.11,111.977,20.34 +2017-07-04 13:47:00,26.72,111.88,20.37 +2017-07-04 14:02:00,27.06,111.662,20.41 +2017-07-04 14:17:00,27.31,111.985,20.43 +2017-07-04 14:32:00,26.1813,112.11,20.45 +2017-07-04 14:47:00,26.6687,112.055,20.47 +2017-07-04 15:02:00,28.5088,112.112,20.46 +2017-07-04 15:17:00,26.7637,111.82,20.44 +2017-07-04 15:32:00,27.0563,111.342,20.41 +2017-07-04 15:47:00,25.9362,111.605,20.4 +2017-07-04 16:02:00,27.4587,111.565,20.37 +2017-07-04 16:17:00,27.5112,111.188,20.35 +2017-07-04 16:32:00,25.2537,111.09,20.32 +2017-07-04 16:47:00,26.8125,111.268,20.27 +2017-07-04 17:02:00,26.6175,111.393,20.24 +2017-07-04 17:17:00,26.96,111.115,20.21 +2017-07-04 17:32:00,27.11,111.152,20.18 +2017-07-04 17:47:00,27.1087,111.05,20.12 +2017-07-04 18:02:00,26.3213,110.96,20.07 +2017-07-04 18:17:00,27.0563,110.867,20.04 +2017-07-04 18:32:00,27.8538,110.66,20.01 +2017-07-04 18:47:00,27.3587,110.56,19.97 +2017-07-04 19:02:00,25.8862,110.577,19.92 +2017-07-04 19:17:00,26.6125,110.518,19.88 +2017-07-04 19:32:00,26.67,110.507,19.85 +2017-07-04 19:47:00,26.9137,110.438,19.81 +2017-07-04 20:02:00,26.9613,110.495,19.79 +2017-07-04 20:17:00,27.4575,110.47,19.77 +2017-07-04 20:32:00,27.9088,110.482,19.74 +2017-07-04 20:47:00,25.74,110.487,19.71 +2017-07-04 21:02:00,27.905,110.482,19.66 +2017-07-04 21:17:00,26.52,110.345,19.64 +2017-07-04 21:32:00,27.06,110.322,19.62 +2017-07-04 21:47:00,26.2775,110.217,19.6 +2017-07-04 22:02:00,25.9863,110.312,19.58 +2017-07-04 22:17:00,26.2237,110.31,19.57 +2017-07-04 22:32:00,26.27,110.298,19.58 +2017-07-04 22:47:00,28.9962,110.33,19.55 +2017-07-04 23:02:00,26.3187,110.45,19.54 +2017-07-04 23:17:00,27.0537,110.455,19.51 +2017-07-04 23:32:00,27.4587,110.562,19.51 +2017-07-04 23:47:00,26.27,110.477,19.51 +2017-07-05 00:02:00,26.6725,110.475,19.52 +2017-07-05 00:17:00,26.865,110.41,19.5 +2017-07-05 00:32:00,27.9062,110.36,19.47 +2017-07-05 00:47:00,26.4175,110.415,19.47 +2017-07-05 01:02:00,27.4075,110.402,19.48 +2017-07-05 01:17:00,27.7075,110.507,19.47 +2017-07-05 01:32:00,26.7663,110.535,19.47 +2017-07-05 01:47:00,27.3625,110.585,19.45 +2017-07-05 02:02:00,28.6012,110.667,19.45 +2017-07-05 02:17:00,27.3087,110.722,19.46 +2017-07-05 02:32:00,27.3075,110.792,19.46 +2017-07-05 02:47:00,26.9187,110.795,19.46 +2017-07-05 03:02:00,28.6025,110.747,19.46 +2017-07-05 03:17:00,26.5675,110.71,19.46 +2017-07-05 03:32:00,27.155,110.665,19.46 +2017-07-05 03:47:00,26.8662,110.63,19.47 +2017-07-05 04:02:00,26.9163,110.69,19.48 +2017-07-05 04:17:00,26.865,110.705,19.48 +2017-07-05 04:32:00,27.0575,110.792,19.49 +2017-07-05 04:47:00,27.1562,110.83,19.5 +2017-07-05 05:02:00,27.8025,110.89,19.53 +2017-07-05 05:17:00,26.3712,110.915,19.55 +2017-07-05 05:32:00,26.1312,110.975,19.56 +2017-07-05 05:47:00,26.27,110.985,19.57 +2017-07-05 06:02:00,27.5075,110.98,19.59 +2017-07-05 06:17:00,27.6612,110.902,19.61 +2017-07-05 06:32:00,26.0325,110.965,19.62 +2017-07-05 06:47:00,27.2062,110.897,19.62 +2017-07-05 07:02:00,26.5175,110.857,19.62 +2017-07-05 07:17:00,26.7162,110.945,19.63 +2017-07-05 07:32:00,25.9337,110.895,19.67 +2017-07-05 07:47:00,26.7637,110.947,19.71 +2017-07-05 08:02:00,28.1137,110.985,19.77 +2017-07-05 08:17:00,26.5662,111.102,19.79 +2017-07-05 08:32:00,27.255,111.173,19.83 +2017-07-05 08:47:00,26.4187,111.312,19.88 +2017-07-05 09:02:00,26.4625,111.205,19.92 +2017-07-05 09:17:00,27.255,111.165,19.98 +2017-07-05 09:32:00,27.9088,111.177,20.03 +2017-07-05 09:47:00,27.5112,111.227,20.09 +2017-07-05 10:02:00,27.8538,111.065,20.18 +2017-07-05 10:17:00,26.8675,111.13,20.23 +2017-07-05 10:32:00,27.4088,111.32,20.31 +2017-07-05 10:47:00,27.255,111.2,20.41 +2017-07-05 11:02:00,26.8662,111.6,20.5 +2017-07-05 11:17:00,26.8162,111.57,20.56 +2017-07-05 11:32:00,27.7575,111.61,20.62 +2017-07-05 11:47:00,26.8175,111.745,20.7 +2017-07-05 12:02:00,26.5163,111.587,20.72 +2017-07-05 12:17:00,25.105,111.85,20.81 +2017-07-05 12:32:00,27.8012,111.753,20.88 +2017-07-05 12:47:00,27.055,111.837,20.87 +2017-07-05 13:02:00,26.765,111.7,20.86 +2017-07-05 13:17:00,26.715,111.735,20.87 +2017-07-05 13:32:00,26.7675,111.757,20.97 +2017-07-05 13:47:00,28.1637,111.787,21.1 +2017-07-05 14:02:00,25.9325,111.825,21.22 +2017-07-05 14:17:00,27.405,111.992,21.22 +2017-07-05 14:32:00,27.16,112.01,21.18 +2017-07-05 14:47:00,28.7025,111.938,21.13 +2017-07-05 15:02:00,26.8125,112.155,21.1 +2017-07-05 15:17:00,26.96,112.17,21.04 +2017-07-05 15:32:00,26.8175,112.01,20.98 +2017-07-05 15:47:00,27.7137,111.895,20.93 +2017-07-05 16:02:00,28.36,111.945,20.89 +2017-07-05 16:17:00,25.5413,111.91,20.89 +2017-07-05 16:32:00,28.0125,112.065,20.88 +2017-07-05 16:47:00,26.4187,112.005,20.86 +2017-07-05 17:02:00,26.275,112.055,20.85 +2017-07-05 17:17:00,27.3625,112.173,20.87 +2017-07-05 17:32:00,25.35,112.207,20.9 +2017-07-05 17:47:00,27.6663,112.2,20.9 +2017-07-05 18:02:00,27.11,112.075,20.9 +2017-07-05 18:17:00,26.6687,112.015,20.9 +2017-07-05 18:32:00,26.6162,111.997,20.9 +2017-07-05 18:47:00,25.01,112.05,20.89 +2017-07-05 19:02:00,27.91,112.04,20.88 +2017-07-05 19:17:00,27.6137,112.115,20.86 +2017-07-05 19:32:00,25.4925,112.165,20.84 +2017-07-05 19:47:00,26.9625,112.222,20.82 +2017-07-05 20:02:00,24.9075,112.185,20.8 +2017-07-05 20:17:00,25.3988,112.177,20.79 +2017-07-05 20:32:00,27.715,112.165,20.76 +2017-07-05 20:47:00,26.2725,112.122,20.73 +2017-07-05 21:02:00,28.2113,112.025,20.71 +2017-07-05 21:17:00,25.2075,112.048,20.69 +2017-07-05 21:32:00,27.9613,112.105,20.66 +2017-07-05 21:47:00,26.87,112.112,20.63 +2017-07-05 22:02:00,26.8737,112.162,20.6 +2017-07-05 22:17:00,27.11,112.255,20.58 +2017-07-05 22:32:00,25.9863,112.327,20.56 +2017-07-05 22:47:00,27.0587,112.3,20.54 +2017-07-05 23:02:00,27.8125,112.287,20.52 +2017-07-05 23:17:00,27.3637,112.257,20.5 +2017-07-05 23:32:00,26.3688,112.128,20.5 +2017-07-05 23:47:00,27.3637,112.13,20.48 +2017-07-06 00:02:00,26.8213,112.085,20.47 +2017-07-06 00:17:00,26.6212,112.147,20.46 +2017-07-06 00:32:00,27.5112,112.122,20.42 +2017-07-06 00:47:00,27.8625,112.24,20.39 +2017-07-06 01:02:00,27.665,112.298,20.35 +2017-07-06 01:17:00,25.3538,112.29,20.34 +2017-07-06 01:32:00,28.0587,112.325,20.34 +2017-07-06 01:47:00,27.5612,112.268,20.36 +2017-07-06 02:02:00,26.32,112.192,20.36 +2017-07-06 02:17:00,27.1588,112.1,20.35 +2017-07-06 02:32:00,25.795,112.112,20.33 +2017-07-06 02:47:00,26.8187,112.102,20.31 +2017-07-06 03:02:00,27.0125,112.097,20.27 +2017-07-06 03:17:00,28.8512,112.102,20.24 +2017-07-06 03:32:00,26.1338,112.182,20.22 +2017-07-06 03:47:00,25.545,112.242,20.2 +2017-07-06 04:02:00,26.4713,112.255,20.18 +2017-07-06 04:17:00,25.59,112.19,20.16 +2017-07-06 04:32:00,27.5125,112.102,20.15 +2017-07-06 04:47:00,28.1612,112.05,20.13 +2017-07-06 05:02:00,27.6637,112.007,20.11 +2017-07-06 05:17:00,27.0612,111.955,20.11 +2017-07-06 05:32:00,25.84,111.947,20.11 +2017-07-06 05:47:00,26.5175,111.86,20.14 +2017-07-06 06:02:00,26.8662,111.842,20.17 +2017-07-06 06:17:00,27.51,111.807,20.2 +2017-07-06 06:32:00,27.71,111.825,20.24 +2017-07-06 06:47:00,25.3512,111.882,20.3 +2017-07-06 07:02:00,26.6687,111.947,20.35 +2017-07-06 07:17:00,27.205,111.98,20.4 +2017-07-06 07:32:00,27.36,112.107,20.45 +2017-07-06 07:47:00,25.84,112.092,20.5 +2017-07-06 08:02:00,25.9362,112.132,20.56 +2017-07-06 08:17:00,26.365,112.185,20.61 +2017-07-06 08:32:00,25.3037,112.057,20.64 +2017-07-06 08:47:00,27.9037,111.962,20.69 +2017-07-06 09:02:00,26.1287,111.882,20.73 +2017-07-06 09:17:00,26.1312,111.897,20.81 +2017-07-06 09:32:00,26.32,111.872,20.88 +2017-07-06 09:47:00,27.205,111.935,20.97 +2017-07-06 10:02:00,27.1612,112.035,21.05 +2017-07-06 10:17:00,27.3613,112.007,21.13 +2017-07-06 10:32:00,25.985,111.893,21.22 +2017-07-06 10:47:00,26.27,112.145,21.3 +2017-07-06 11:02:00,25.7875,112.03,21.39 +2017-07-06 11:17:00,27.21,111.985,21.41 +2017-07-06 11:32:00,27.16,111.885,21.47 +2017-07-06 11:47:00,26.5187,111.768,21.5 +2017-07-06 12:02:00,25.5963,111.67,21.59 +2017-07-06 12:17:00,26.6188,111.705,21.64 +2017-07-06 12:32:00,27.1075,111.637,21.68 +2017-07-06 12:47:00,25.7425,111.84,21.71 +2017-07-06 13:02:00,27.0587,112.092,21.79 +2017-07-06 13:17:00,26.715,111.98,21.79 +2017-07-06 13:32:00,27.3112,111.992,21.73 +2017-07-06 13:47:00,28.26,111.962,21.71 +2017-07-06 14:02:00,26.915,112.182,21.73 +2017-07-06 14:17:00,28.1087,111.975,21.71 +2017-07-06 14:32:00,27.6625,112.052,21.7 +2017-07-06 14:47:00,25.6912,112.143,21.71 +2017-07-06 15:02:00,24.7575,112.137,21.75 +2017-07-06 15:17:00,25.94,112.012,21.74 +2017-07-06 15:32:00,28.36,112.097,21.71 +2017-07-06 15:47:00,25.79,112.02,21.73 +2017-07-06 16:02:00,27.5112,112.128,21.76 +2017-07-06 16:17:00,27.1588,112.035,21.78 +2017-07-06 16:32:00,27.9062,111.975,21.79 +2017-07-06 16:47:00,27.86,112.027,21.76 +2017-07-06 17:02:00,27.2537,111.992,21.74 +2017-07-06 17:17:00,26.8688,112.03,21.73 +2017-07-06 17:32:00,26.6175,112.01,21.73 +2017-07-06 17:47:00,25.1525,112.067,21.73 +2017-07-06 18:02:00,25.255,112.1,21.7 +2017-07-06 18:17:00,26.3175,112.097,21.68 +2017-07-06 18:32:00,27.6625,112.135,21.66 +2017-07-06 18:47:00,26.3712,112.15,21.64 +2017-07-06 19:02:00,28.2113,112.128,21.63 +2017-07-06 19:17:00,26.0375,112.09,21.61 +2017-07-06 19:32:00,25.69,112.102,21.59 +2017-07-06 19:47:00,27.9075,112.122,21.57 +2017-07-06 20:02:00,27.4112,112.132,21.55 +2017-07-06 20:17:00,25.935,112.107,21.53 +2017-07-06 20:32:00,27.9587,112.045,21.49 +2017-07-06 20:47:00,25.4487,112.02,21.45 +2017-07-06 21:02:00,27.0125,111.992,21.42 +2017-07-06 21:17:00,26.8688,111.992,21.4 +2017-07-06 21:32:00,25.5925,111.91,21.4 +2017-07-06 21:47:00,26.37,111.882,21.39 +2017-07-06 22:02:00,28.3112,111.845,21.38 +2017-07-06 22:17:00,27.76,111.81,21.38 +2017-07-06 22:32:00,25.89,111.805,21.37 +2017-07-06 22:47:00,26.3712,111.79,21.37 +2017-07-06 23:02:00,27.56,111.76,21.35 +2017-07-06 23:17:00,26.2262,111.747,21.35 +2017-07-06 23:32:00,28.6075,111.688,21.35 +2017-07-06 23:47:00,26.82,111.637,21.36 +2017-07-07 00:02:00,26.2288,111.6,21.36 +2017-07-07 00:17:00,26.3725,111.587,21.36 +2017-07-07 00:32:00,27.2588,111.575,21.36 +2017-07-07 00:47:00,26.7225,111.552,21.36 +2017-07-07 01:02:00,27.0625,111.537,21.37 +2017-07-07 01:17:00,27.5125,111.525,21.36 +2017-07-07 01:32:00,27.86,111.52,21.35 +2017-07-07 01:47:00,25.3525,111.545,21.36 +2017-07-07 02:02:00,26.9175,111.515,21.35 +2017-07-07 02:17:00,27.3637,111.537,21.34 +2017-07-07 02:32:00,26.6712,111.585,21.34 +2017-07-07 02:47:00,26.6762,111.54,21.33 +2017-07-07 03:02:00,27.1625,111.53,21.34 +2017-07-07 03:17:00,25.7962,111.58,21.33 +2017-07-07 03:32:00,26.8688,111.542,21.34 +2017-07-07 03:47:00,26.2275,111.537,21.33 +2017-07-07 04:02:00,27.2075,111.545,21.32 +2017-07-07 04:17:00,25.4475,111.572,21.31 +2017-07-07 04:32:00,26.32,111.562,21.3 +2017-07-07 04:47:00,26.3237,111.542,21.28 +2017-07-07 05:02:00,27.3075,111.592,21.26 +2017-07-07 05:17:00,26.9125,111.56,21.26 +2017-07-07 05:32:00,27.2075,111.542,21.24 +2017-07-07 05:47:00,26.96,111.405,21.23 +2017-07-07 06:02:00,27.255,111.425,21.24 +2017-07-07 06:17:00,27.8587,111.325,21.25 +2017-07-07 06:32:00,27.11,111.295,21.29 +2017-07-07 06:47:00,27.2575,111.32,21.3 +2017-07-07 07:02:00,26.2237,111.227,21.36 +2017-07-07 07:17:00,28.36,111.245,21.37 +2017-07-07 07:32:00,27.91,111.257,21.36 +2017-07-07 07:47:00,27.3613,111.202,21.34 +2017-07-07 08:02:00,27.8562,111.185,21.34 +2017-07-07 08:17:00,28.3162,111.215,21.35 +2017-07-07 08:32:00,27.5112,111.225,21.39 +2017-07-07 08:47:00,27.5112,111.232,21.43 +2017-07-07 09:02:00,27.9125,111.202,21.54 +2017-07-07 09:17:00,26.7175,111.217,21.61 +2017-07-07 09:32:00,26.62,111.207,21.68 +2017-07-07 09:47:00,27.7625,111.227,21.82 +2017-07-07 10:02:00,26.4662,111.253,21.96 +2017-07-07 10:17:00,26.1338,111.12,22.09 +2017-07-07 10:32:00,27.7125,111.352,22.16 +2017-07-07 10:47:00,27.81,111.165,22.24 +2017-07-07 11:02:00,27.7612,111.285,22.33 +2017-07-07 11:17:00,26.72,111.322,22.34 +2017-07-07 11:32:00,27.6675,111.29,22.42 +2017-07-07 11:47:00,27.6175,111.337,22.51 +2017-07-07 12:02:00,28.1675,111.365,22.62 +2017-07-07 12:17:00,25.8875,111.332,22.69 +2017-07-07 12:32:00,26.6687,111.447,22.81 +2017-07-07 12:47:00,27.2113,111.077,22.85 +2017-07-07 13:02:00,26.18,111.272,22.85 +2017-07-07 13:17:00,26.6188,111.24,22.86 +2017-07-07 13:32:00,27.7125,111.17,22.81 +2017-07-07 13:47:00,26.0387,111.105,22.8 +2017-07-07 14:02:00,28.905,110.74,22.76 +2017-07-07 14:17:00,27.7125,110.895,22.74 +2017-07-07 14:32:00,26.6712,110.972,22.76 +2017-07-07 14:47:00,26.3237,110.69,22.79 +2017-07-07 15:02:00,26.87,110.512,22.84 +2017-07-07 15:17:00,27.1575,110.497,22.85 +2017-07-07 15:32:00,27.2575,110.327,22.87 +2017-07-07 15:47:00,28.1137,110.597,22.9 +2017-07-07 16:02:00,26.5238,110.162,22.89 +2017-07-07 16:17:00,25.9887,110.438,22.89 +2017-07-07 16:32:00,25.9887,110.173,22.87 +2017-07-07 16:47:00,27.415,110.052,22.85 +2017-07-07 17:02:00,28.7062,109.985,22.82 +2017-07-07 17:17:00,27.2087,109.908,22.8 +2017-07-07 17:32:00,29.0987,109.815,22.78 +2017-07-07 17:47:00,27.2588,109.757,22.75 +2017-07-07 18:02:00,27.5137,109.595,22.72 +2017-07-07 18:17:00,27.6675,109.492,22.7 +2017-07-07 18:32:00,27.6188,109.367,22.68 +2017-07-07 18:47:00,25.7988,109.202,22.68 +2017-07-07 19:02:00,27.5187,109.003,22.68 +2017-07-07 19:17:00,27.86,108.88,22.67 +2017-07-07 19:32:00,26.82,108.765,22.66 +2017-07-07 19:47:00,27.1588,108.622,22.65 +2017-07-07 20:02:00,28.2625,108.507,22.65 +2017-07-07 20:17:00,27.6162,108.332,22.64 +2017-07-07 20:32:00,27.4137,108.225,22.63 +2017-07-07 20:47:00,27.5638,108.06,22.61 +2017-07-07 21:02:00,26.9613,107.942,22.61 +2017-07-07 21:17:00,28.9062,107.77,22.6 +2017-07-07 21:32:00,27.3138,107.732,22.6 +2017-07-07 21:47:00,27.21,107.635,22.59 +2017-07-07 22:02:00,26.9688,107.482,22.57 +2017-07-07 22:17:00,26.5725,107.592,22.55 +2017-07-07 22:32:00,28.36,107.845,22.53 +2017-07-07 22:47:00,26.92,107.872,22.5 +2017-07-07 23:02:00,28.265,107.82,22.49 +2017-07-07 23:17:00,27.5662,107.79,22.46 +2017-07-07 23:32:00,25.4975,107.762,22.44 +2017-07-07 23:47:00,27.3125,107.69,22.43 +2017-07-08 00:02:00,27.0638,107.635,22.41 +2017-07-08 00:17:00,29.2975,107.545,22.43 +2017-07-08 00:32:00,26.7762,107.515,22.38 +2017-07-08 00:47:00,28.215,107.43,22.33 +2017-07-08 01:02:00,29.1025,107.43,22.3 +2017-07-08 01:17:00,28.955,107.378,22.27 +2017-07-08 01:32:00,27.465,107.35,22.25 +2017-07-08 01:47:00,28.5137,107.408,22.23 +2017-07-08 02:02:00,26.52,107.415,22.2 +2017-07-08 02:17:00,27.3662,107.44,22.18 +2017-07-08 02:32:00,28.365,107.49,22.18 +2017-07-08 02:47:00,28.0638,107.527,22.17 +2017-07-08 03:02:00,27.6175,107.637,22.17 +2017-07-08 03:17:00,27.9613,107.702,22.17 +2017-07-08 03:32:00,29.0575,107.798,22.18 +2017-07-08 03:47:00,28.3187,107.82,22.18 +2017-07-08 04:02:00,28.0125,107.878,22.18 +2017-07-08 04:17:00,28.51,107.995,22.19 +2017-07-08 04:32:00,27.96,108.007,22.18 +2017-07-08 04:47:00,29.1,108.05,22.18 +2017-07-08 05:02:00,28.8063,108.155,22.18 +2017-07-08 05:17:00,26.9175,108.255,22.18 +2017-07-08 05:32:00,28.115,108.182,22.18 +2017-07-08 05:47:00,29.0525,108.372,22.18 +2017-07-08 06:02:00,29.435,108.292,22.19 +2017-07-08 06:17:00,28.605,108.355,22.19 +2017-07-08 06:32:00,27.1087,108.44,22.19 +2017-07-08 06:47:00,28.3138,108.327,22.19 +2017-07-08 07:02:00,27.5675,108.185,22.2 +2017-07-08 07:17:00,28.2162,108.393,22.24 +2017-07-08 07:32:00,27.7175,108.395,22.29 +2017-07-08 07:47:00,26.9163,108.2,22.31 +2017-07-08 08:02:00,28.22,108.24,22.36 +2017-07-08 08:17:00,27.765,108.435,22.37 +2017-07-08 08:32:00,27.815,108.405,22.39 +2017-07-08 08:47:00,29.0088,108.54,22.4 +2017-07-08 09:02:00,27.1612,108.673,22.39 +2017-07-08 09:17:00,27.315,108.795,22.4 +2017-07-08 09:32:00,28.3662,108.832,22.4 +2017-07-08 09:47:00,29.4863,108.775,22.39 +2017-07-08 10:02:00,27.565,108.927,22.39 +2017-07-08 10:17:00,26.8213,109.055,22.42 +2017-07-08 10:32:00,28.01,108.925,22.47 +2017-07-08 10:47:00,29.0525,109.14,22.55 +2017-07-08 11:02:00,27.3662,109.335,22.67 +2017-07-08 11:17:00,29.295,109.195,22.76 +2017-07-08 11:32:00,27.62,109.347,22.87 +2017-07-08 11:47:00,27.91,109.4,22.97 +2017-07-08 12:02:00,27.6188,109.692,23.07 +2017-07-08 12:17:00,26.3763,109.62,23.13 +2017-07-08 12:32:00,27.9112,109.74,23.21 +2017-07-08 12:47:00,27.4125,109.78,23.26 +2017-07-08 13:02:00,26.2775,109.975,23.3 +2017-07-08 13:17:00,29.9788,109.98,23.34 +2017-07-08 13:32:00,28.9037,110.1,23.38 +2017-07-08 13:47:00,29.0037,110.245,23.41 +2017-07-08 14:02:00,27.2075,110.135,23.44 +2017-07-08 14:17:00,28.5125,110.47,23.47 +2017-07-08 14:32:00,27.11,110.447,23.51 +2017-07-08 14:47:00,28.0137,110.65,23.51 +2017-07-08 15:02:00,28.7038,110.622,23.53 +2017-07-08 15:17:00,27.7637,110.658,23.54 +2017-07-08 15:32:00,27.2075,110.695,23.52 +2017-07-08 15:47:00,26.7675,110.697,23.5 +2017-07-08 16:02:00,28.5638,110.967,23.49 +2017-07-08 16:17:00,27.4625,110.887,23.48 +2017-07-08 16:32:00,28.7562,111.182,23.46 +2017-07-08 16:47:00,27.665,111.2,23.43 +2017-07-08 17:02:00,27.0112,111.375,23.4 +2017-07-08 17:17:00,27.8613,111.415,23.38 +2017-07-08 17:32:00,26.9225,111.585,23.34 +2017-07-08 17:47:00,27.3138,111.643,23.31 +2017-07-08 18:02:00,27.67,111.86,23.29 +2017-07-08 18:17:00,26.2787,111.795,23.25 +2017-07-08 18:32:00,28.1637,111.857,23.22 +2017-07-08 18:47:00,28.3662,112.075,23.19 +2017-07-08 19:02:00,27.3637,112.082,23.16 +2017-07-08 19:17:00,26.62,112.205,23.15 +2017-07-08 19:32:00,28.655,112.25,23.13 +2017-07-08 19:47:00,28.8037,112.35,23.1 +2017-07-08 20:02:00,28.7537,112.39,23.07 +2017-07-08 20:17:00,26.72,112.48,23.06 +2017-07-08 20:32:00,27.6175,112.53,23.05 +2017-07-08 20:47:00,27.2113,112.622,23.05 +2017-07-08 21:02:00,26.5737,112.69,23.03 +2017-07-08 21:17:00,27.6625,112.737,23.02 +2017-07-08 21:32:00,27.565,112.777,23.02 +2017-07-08 21:47:00,27.8112,112.862,23.02 +2017-07-08 22:02:00,27.0137,112.912,23.01 +2017-07-08 22:17:00,26.6687,112.895,23.02 +2017-07-08 22:32:00,26.0863,112.975,23.01 +2017-07-08 22:47:00,28.165,112.997,23.01 +2017-07-08 23:02:00,27.9125,113.005,23.01 +2017-07-08 23:17:00,27.4625,113.07,23.01 +2017-07-08 23:32:00,26.4688,113.057,23.0 +2017-07-08 23:47:00,28.705,113.082,22.99 +2017-07-09 00:02:00,28.9575,113.085,22.99 +2017-07-09 00:17:00,28.26,113.065,22.98 +2017-07-09 00:32:00,27.865,113.085,22.99 +2017-07-09 00:47:00,28.1637,113.082,22.97 +2017-07-09 01:02:00,28.2625,113.08,22.98 +2017-07-09 01:17:00,28.755,113.062,22.95 +2017-07-09 01:32:00,27.5137,113.005,22.91 +2017-07-09 01:47:00,27.6687,112.992,22.87 +2017-07-09 02:02:00,27.3075,113.015,22.81 +2017-07-09 02:17:00,28.2113,112.98,22.78 +2017-07-09 02:32:00,30.1212,113.033,22.76 +2017-07-09 02:47:00,28.8037,112.822,22.76 +2017-07-09 03:02:00,28.8063,112.9,22.76 +2017-07-09 03:17:00,26.965,112.857,22.75 +2017-07-09 03:32:00,27.2087,112.867,22.75 +2017-07-09 03:47:00,28.7012,112.837,22.73 +2017-07-09 04:02:00,27.91,112.81,22.73 +2017-07-09 04:17:00,26.9613,112.785,22.74 +2017-07-09 04:32:00,27.615,112.705,22.74 +2017-07-09 04:47:00,28.0112,112.68,22.71 +2017-07-09 05:02:00,27.2075,112.712,22.7 +2017-07-09 05:17:00,28.215,112.827,22.67 +2017-07-09 05:32:00,28.36,112.812,22.66 +2017-07-09 05:47:00,27.5125,113.003,22.62 +2017-07-09 06:02:00,29.8288,113.152,22.59 +2017-07-09 06:17:00,27.91,113.2,22.56 +2017-07-09 06:32:00,27.2113,113.232,22.52 +2017-07-09 06:47:00,28.8525,113.195,22.5 +2017-07-09 07:02:00,29.2462,113.087,22.49 +2017-07-09 07:17:00,-51.9162,113.205,22.47 +2017-07-09 07:32:00,-51.92,113.167,22.45 +2017-07-09 07:47:00,-51.9188,113.097,22.45 +2017-07-09 08:02:00,-51.92,113.003,22.46 +2017-07-09 08:17:00,27.4487,112.732,22.46 +2017-07-09 08:32:00,28.4062,112.628,22.48 +2017-07-09 08:47:00,29.0938,112.667,22.49 +2017-07-09 09:02:00,27.555,112.617,22.49 +2017-07-09 09:17:00,27.5563,112.643,22.48 +2017-07-09 09:32:00,28.6488,112.628,22.52 +2017-07-09 09:47:00,29.525,112.58,22.55 +2017-07-09 10:02:00,30.02,112.6,22.61 +2017-07-09 10:17:00,28.3087,112.452,22.68 +2017-07-09 10:32:00,26.5175,112.515,22.76 +2017-07-09 10:47:00,27.4625,112.477,22.82 +2017-07-09 11:02:00,28.0587,112.487,22.85 +2017-07-09 11:17:00,27.46,112.52,22.83 +2017-07-09 11:32:00,27.6125,112.387,22.82 +2017-07-09 11:47:00,30.0725,112.27,22.91 +2017-07-09 12:02:00,29.975,112.305,22.95 +2017-07-09 12:17:00,30.0737,112.362,23.0 +2017-07-09 12:32:00,27.0112,112.352,23.02 +2017-07-09 12:47:00,27.0088,112.38,23.13 +2017-07-09 13:02:00,28.9025,112.29,23.14 +2017-07-09 13:17:00,28.56,112.298,23.13 +2017-07-09 13:32:00,28.805,112.222,23.08 +2017-07-09 13:47:00,29.5325,112.227,23.04 +2017-07-09 14:02:00,28.65,112.12,23.05 +2017-07-09 14:17:00,30.5587,112.152,23.07 +2017-07-09 14:32:00,28.3613,112.06,23.13 +2017-07-09 14:47:00,27.3613,112.082,23.17 +2017-07-09 15:02:00,28.9538,112.08,23.22 +2017-07-09 15:17:00,28.8525,111.895,23.26 +2017-07-09 15:32:00,27.2612,112.003,23.29 +2017-07-09 15:47:00,27.3613,111.882,23.29 +2017-07-09 16:02:00,28.2637,111.852,23.28 +2017-07-09 16:17:00,28.46,111.84,23.27 +2017-07-09 16:32:00,28.8063,111.785,23.25 +2017-07-09 16:47:00,28.5575,111.798,23.24 +2017-07-09 17:02:00,29.7787,111.742,23.24 +2017-07-09 17:17:00,29.2025,111.772,23.21 +2017-07-09 17:32:00,28.4125,111.73,23.2 +2017-07-09 17:47:00,28.5638,111.66,23.18 +2017-07-09 18:02:00,30.1188,111.695,23.18 +2017-07-09 18:17:00,28.0625,111.655,23.16 +2017-07-09 18:32:00,29.735,111.63,23.14 +2017-07-09 18:47:00,29.0525,111.56,23.13 +2017-07-09 19:02:00,27.11,111.552,23.11 +2017-07-09 19:17:00,28.315,111.512,23.1 +2017-07-09 19:32:00,27.3675,111.527,23.09 +2017-07-09 19:47:00,27.465,111.462,23.08 +2017-07-09 20:02:00,29.8262,111.485,23.07 +2017-07-09 20:17:00,28.1125,111.355,23.05 +2017-07-09 20:32:00,28.1137,111.385,23.04 +2017-07-09 20:47:00,29.6287,111.367,23.02 +2017-07-09 21:02:00,28.3138,111.367,22.98 +2017-07-09 21:17:00,28.4137,111.262,22.98 +2017-07-09 21:32:00,28.16,111.245,22.95 +2017-07-09 21:47:00,26.3725,111.202,22.92 +2017-07-09 22:02:00,28.2625,111.24,22.9 +2017-07-09 22:17:00,29.0013,111.2,22.89 +2017-07-09 22:32:00,27.9088,111.212,22.88 +2017-07-09 22:47:00,29.1462,111.14,22.86 +2017-07-09 23:02:00,28.6025,111.112,22.85 +2017-07-09 23:17:00,29.2475,111.055,22.83 +2017-07-09 23:32:00,28.0088,110.972,22.83 +2017-07-09 23:47:00,26.1375,110.942,22.81 +2017-07-10 00:02:00,28.5563,110.897,22.79 +2017-07-10 00:17:00,28.2625,110.897,22.77 +2017-07-10 00:32:00,29.6263,110.847,22.74 +2017-07-10 00:47:00,29.1488,110.78,22.69 +2017-07-10 01:02:00,27.01,110.765,22.66 +2017-07-10 01:17:00,28.9,110.692,22.62 +2017-07-10 01:32:00,30.6075,110.645,22.58 +2017-07-10 01:47:00,29.1963,110.592,22.52 +2017-07-10 02:02:00,28.9012,110.572,22.49 +2017-07-10 02:17:00,27.7637,110.55,22.46 +2017-07-10 02:32:00,29.0975,110.555,22.46 +2017-07-10 02:47:00,29.4812,110.472,22.44 +2017-07-10 03:02:00,26.8187,110.47,22.43 +2017-07-10 03:17:00,28.6075,110.447,22.42 +2017-07-10 03:32:00,29.4337,110.405,22.4 +2017-07-10 03:47:00,30.2113,110.378,22.41 +2017-07-10 04:02:00,27.1087,110.365,22.39 +2017-07-10 04:17:00,29.8763,110.345,22.38 +2017-07-10 04:32:00,28.0112,110.307,22.38 +2017-07-10 04:47:00,27.3125,110.295,22.37 +2017-07-10 05:02:00,28.9025,110.285,22.36 +2017-07-10 05:17:00,29.4362,110.19,22.35 +2017-07-10 05:32:00,29.7762,110.188,22.33 +2017-07-10 05:47:00,28.555,110.195,22.31 +2017-07-10 06:02:00,29.6263,110.19,22.28 +2017-07-10 06:17:00,29.4313,110.232,22.25 +2017-07-10 06:32:00,28.1637,110.242,22.22 +2017-07-10 06:47:00,29.195,110.065,22.2 +2017-07-10 07:02:00,29.0037,109.997,22.19 +2017-07-10 07:17:00,30.41,109.908,22.19 +2017-07-10 07:32:00,-51.9162,110.06,22.19 +2017-07-10 07:47:00,-51.9188,110.005,22.2 +2017-07-10 08:02:00,-51.9175,109.977,22.21 +2017-07-10 08:17:00,-51.92,110.065,22.24 +2017-07-10 08:32:00,30.73,110.06,22.25 +2017-07-10 08:47:00,28.9412,110.217,22.24 +2017-07-10 09:02:00,28.155,110.235,22.22 +2017-07-10 09:17:00,29.6175,110.395,22.19 +2017-07-10 09:32:00,29.1387,110.41,22.2 +2017-07-10 09:47:00,29.6212,110.412,22.23 +2017-07-10 10:02:00,28.845,110.423,22.34 +2017-07-10 10:17:00,29.1925,110.385,22.36 +2017-07-10 10:32:00,29.48,110.485,22.35 +2017-07-10 10:47:00,28.0088,110.335,22.33 +2017-07-10 11:02:00,30.5088,110.143,22.35 +2017-07-10 11:17:00,28.555,110.122,22.32 +2017-07-10 11:32:00,28.5062,110.1,22.35 +2017-07-10 11:47:00,30.7588,110.158,22.37 +2017-07-10 12:02:00,29.0488,110.27,22.39 +2017-07-10 12:17:00,29.6287,110.16,22.34 +2017-07-10 12:32:00,28.605,110.24,22.32 +2017-07-10 12:47:00,30.16,110.325,22.26 +2017-07-10 13:02:00,29.435,110.292,22.24 +2017-07-10 13:17:00,29.5325,110.53,22.2 +2017-07-10 13:32:00,30.4062,110.385,22.16 +2017-07-10 13:47:00,30.0238,110.537,22.14 +2017-07-10 14:02:00,28.9525,110.65,22.13 +2017-07-10 14:17:00,28.9987,110.6,22.18 +2017-07-10 14:32:00,29.2438,110.582,22.22 +2017-07-10 14:47:00,29.4775,110.622,22.31 +2017-07-10 15:02:00,29.68,110.673,22.35 +2017-07-10 15:17:00,29.6813,110.732,22.36 +2017-07-10 15:32:00,30.5137,110.912,22.38 +2017-07-10 15:47:00,28.85,111.022,22.39 +2017-07-10 16:02:00,28.5112,110.932,22.42 +2017-07-10 16:17:00,28.8025,110.855,22.42 +2017-07-10 16:32:00,29.195,111.007,22.42 +2017-07-10 16:47:00,29.5312,111.003,22.42 +2017-07-10 17:02:00,28.41,111.018,22.43 +2017-07-10 17:17:00,27.91,111.122,22.43 +2017-07-10 17:32:00,29.78,111.42,22.41 +2017-07-10 17:47:00,28.9525,111.26,22.43 +2017-07-10 18:02:00,28.655,111.128,22.48 +2017-07-10 18:17:00,27.7588,111.235,22.54 +2017-07-10 18:32:00,28.4613,110.965,22.54 +2017-07-10 18:47:00,28.4625,111.227,22.49 +2017-07-10 19:02:00,28.7537,110.835,22.5 +2017-07-10 19:17:00,27.5625,110.658,22.56 +2017-07-10 19:32:00,29.7325,110.747,22.55 +2017-07-10 19:47:00,27.9625,110.73,22.49 +2017-07-10 20:02:00,30.7075,110.682,22.42 +2017-07-10 20:17:00,29.5312,110.673,22.36 +2017-07-10 20:32:00,29.295,110.542,22.31 +2017-07-10 20:47:00,28.7,110.662,22.26 +2017-07-10 21:02:00,28.0125,110.562,22.24 +2017-07-10 21:17:00,30.61,110.44,22.21 +2017-07-10 21:32:00,28.7562,110.372,22.19 +2017-07-10 21:47:00,27.515,110.24,22.16 +2017-07-10 22:02:00,28.8538,110.105,22.15 +2017-07-10 22:17:00,27.8087,109.947,22.14 +2017-07-10 22:32:00,30.0725,109.783,22.13 +2017-07-10 22:47:00,29.7312,109.662,22.17 +2017-07-10 23:02:00,29.7787,109.548,22.2 +2017-07-10 23:17:00,29.1512,109.535,22.21 +2017-07-10 23:32:00,26.3725,109.427,22.21 +2017-07-10 23:47:00,28.46,109.35,22.18 +2017-07-11 00:02:00,27.1588,109.287,22.15 +2017-07-11 00:17:00,27.4625,109.158,22.13 +2017-07-11 00:32:00,29.2438,109.007,22.11 +2017-07-11 00:47:00,29.0987,108.855,22.1 +2017-07-11 01:02:00,28.4112,108.685,22.09 +2017-07-11 01:17:00,27.1562,108.482,22.07 +2017-07-11 01:32:00,29.1475,108.372,22.07 +2017-07-11 01:47:00,28.165,108.265,22.06 +2017-07-11 02:02:00,29.2962,108.145,22.05 +2017-07-11 02:17:00,30.2125,108.055,22.03 +2017-07-11 02:32:00,26.9163,107.96,22.03 +2017-07-11 02:47:00,28.2625,107.952,22.02 +2017-07-11 03:02:00,30.0225,107.775,22.02 +2017-07-11 03:17:00,30.3587,107.58,22.0 +2017-07-11 03:32:00,29.2937,107.415,21.99 +2017-07-11 03:47:00,27.8613,107.21,21.97 +2017-07-11 04:02:00,28.705,107.045,21.93 +2017-07-11 04:17:00,29.5775,106.835,21.91 +2017-07-11 04:32:00,28.9987,106.645,21.88 +2017-07-11 04:47:00,30.0713,106.467,21.84 +2017-07-11 05:02:00,28.7012,106.332,21.8 +2017-07-11 05:17:00,29.4825,106.175,21.78 +2017-07-11 05:32:00,27.5625,105.997,21.75 +2017-07-11 05:47:00,30.81,105.852,21.75 +2017-07-11 06:02:00,29.7775,105.697,21.74 +2017-07-11 06:17:00,29.2988,105.612,21.73 +2017-07-11 06:32:00,28.3625,105.427,21.72 +2017-07-11 06:47:00,29.73,105.287,21.72 +2017-07-11 07:02:00,30.8063,105.192,21.71 +2017-07-11 07:17:00,27.7612,105.082,21.7 +2017-07-11 07:32:00,28.6087,105.003,21.71 +2017-07-11 07:47:00,30.0675,104.867,21.74 +2017-07-11 08:02:00,30.2663,104.78,21.76 +2017-07-11 08:17:00,29.1975,104.715,21.8 +2017-07-11 08:32:00,30.2625,104.533,21.84 +2017-07-11 08:47:00,29.0025,104.695,21.88 +2017-07-11 09:02:00,30.2612,104.345,21.92 +2017-07-11 09:17:00,29.7787,104.5,21.98 +2017-07-11 09:32:00,29.9262,104.497,22.02 +2017-07-11 09:47:00,26.8688,104.55,22.08 +2017-07-11 10:02:00,28.36,104.432,22.1 +2017-07-11 10:17:00,29.525,104.522,22.15 +2017-07-11 10:32:00,28.51,104.622,22.22 +2017-07-11 10:47:00,29.0475,104.737,22.35 +2017-07-11 11:02:00,29.2937,104.55,22.36 +2017-07-11 11:17:00,29.775,104.507,22.43 +2017-07-11 11:32:00,29.385,104.612,22.44 +2017-07-11 11:47:00,28.31,104.345,22.5 +2017-07-11 12:02:00,29.8787,104.247,22.48 +2017-07-11 12:17:00,28.165,104.482,22.46 +2017-07-11 12:32:00,29.6275,104.17,22.46 +2017-07-11 12:47:00,29.68,104.295,22.39 +2017-07-11 13:02:00,29.9225,104.425,22.37 +2017-07-11 13:17:00,29.3387,104.347,22.34 +2017-07-11 13:32:00,28.9,104.74,22.29 +2017-07-11 13:47:00,30.5575,104.707,22.25 +2017-07-11 14:02:00,31.095,104.82,22.21 +2017-07-11 14:17:00,30.2125,104.69,22.18 +2017-07-11 14:32:00,29.7312,104.712,22.19 +2017-07-11 14:47:00,28.5088,104.965,22.19 +2017-07-11 15:02:00,29.9238,104.945,22.19 +2017-07-11 15:17:00,28.3112,104.965,22.22 +2017-07-11 15:32:00,28.1612,105.292,22.23 +2017-07-11 15:47:00,29.8288,105.42,22.22 +2017-07-11 16:02:00,29.8312,105.908,22.19 +2017-07-11 16:17:00,28.4112,105.947,22.13 +2017-07-11 16:32:00,29.5287,106.02,22.07 +2017-07-11 16:47:00,28.9025,106.425,22.03 +2017-07-11 17:02:00,28.6537,106.71,21.98 +2017-07-11 17:17:00,30.36,106.93,21.97 +2017-07-11 17:32:00,28.46,106.972,21.95 +2017-07-11 17:47:00,30.0725,107.205,21.95 +2017-07-11 18:02:00,29.3862,107.515,21.97 +2017-07-11 18:17:00,29.53,107.717,21.97 +2017-07-11 18:32:00,29.2925,108.045,22.02 +2017-07-11 18:47:00,28.6025,108.298,22.11 +2017-07-11 19:02:00,28.9062,108.705,22.16 +2017-07-11 19:17:00,29.1,108.982,22.19 +2017-07-11 19:32:00,28.2113,109.287,22.24 +2017-07-11 19:47:00,28.21,109.55,22.29 +2017-07-11 20:02:00,29.3375,109.7,22.33 +2017-07-11 20:17:00,30.7062,109.938,22.35 +2017-07-11 20:32:00,29.58,110.247,22.35 +2017-07-11 20:47:00,29.73,110.567,22.35 +2017-07-11 21:02:00,29.2475,110.777,22.34 +2017-07-11 21:17:00,27.9587,111.14,22.31 +2017-07-11 21:32:00,30.9475,111.427,22.31 +2017-07-11 21:47:00,29.0525,111.755,22.28 +2017-07-11 22:02:00,29.43,111.95,22.27 +2017-07-11 22:17:00,27.7612,112.15,22.26 +2017-07-11 22:32:00,28.555,112.322,22.26 +2017-07-11 22:47:00,30.6075,112.46,22.24 +2017-07-11 23:02:00,29.4788,112.637,22.21 +2017-07-11 23:17:00,29.0975,112.815,22.2 +2017-07-11 23:32:00,28.0088,112.982,22.19 +2017-07-11 23:47:00,28.5088,113.197,22.17 +2017-07-12 00:02:00,29.1437,113.405,22.13 +2017-07-12 00:17:00,30.31,113.607,22.14 +2017-07-12 00:32:00,28.2125,113.735,22.13 +2017-07-12 00:47:00,28.7012,113.855,22.11 +2017-07-12 01:02:00,29.48,113.982,22.09 +2017-07-12 01:17:00,30.705,114.037,22.06 +2017-07-12 01:32:00,30.0275,114.12,22.04 +2017-07-12 01:47:00,28.1637,114.162,22.03 +2017-07-12 02:02:00,29.335,114.225,22.01 +2017-07-12 02:17:00,29.8275,114.365,21.99 +2017-07-12 02:32:00,30.6562,114.49,21.98 +2017-07-12 02:47:00,31.3937,114.652,21.95 +2017-07-12 03:02:00,29.0462,114.765,21.93 +2017-07-12 03:17:00,29.8763,114.732,21.9 +2017-07-12 03:32:00,29.9225,114.783,21.88 +2017-07-12 03:47:00,30.26,114.745,21.85 +2017-07-12 04:02:00,30.9525,114.717,21.82 +2017-07-12 04:17:00,31.4463,114.737,21.78 +2017-07-12 04:32:00,29.7337,114.62,21.74 +2017-07-12 04:47:00,30.995,114.655,21.69 +2017-07-12 05:02:00,31.8412,114.722,21.65 +2017-07-12 05:17:00,28.8525,114.73,21.62 +2017-07-12 05:32:00,28.7513,114.775,21.57 +2017-07-12 05:47:00,30.2612,114.74,21.56 +2017-07-12 06:02:00,29.6263,114.715,21.57 +2017-07-12 06:17:00,29.5287,114.605,21.59 +2017-07-12 06:32:00,30.6062,114.49,21.61 +2017-07-12 06:47:00,30.3587,114.345,21.59 +2017-07-12 07:02:00,29.7787,114.365,21.57 +2017-07-12 07:17:00,28.7475,114.155,21.55 +2017-07-12 07:32:00,29.925,113.942,21.53 +2017-07-12 07:47:00,29.0025,113.79,21.5 +2017-07-12 08:02:00,29.58,113.645,21.48 +2017-07-12 08:17:00,28.9037,113.59,21.47 +2017-07-12 08:32:00,29.1937,113.587,21.46 +2017-07-12 08:47:00,30.7562,113.562,21.44 +2017-07-12 09:02:00,29.245,113.438,21.42 +2017-07-12 09:17:00,28.7487,113.325,21.38 +2017-07-12 09:32:00,30.0725,113.207,21.32 +2017-07-12 09:47:00,29.3862,113.25,21.27 +2017-07-12 10:02:00,28.3112,113.537,21.23 +2017-07-12 10:17:00,31.0437,113.952,21.19 +2017-07-12 10:32:00,31.3412,114.512,21.17 +2017-07-12 10:47:00,29.4837,115.402,21.15 +2017-07-12 11:02:00,31.69,116.235,21.13 +2017-07-12 11:17:00,29.9737,116.692,21.14 +2017-07-12 11:32:00,29.6762,116.7,21.18 +2017-07-12 11:47:00,30.21,116.615,21.21 +2017-07-12 12:02:00,29.6287,116.575,21.18 +2017-07-12 12:17:00,29.4775,116.173,21.15 +2017-07-12 12:32:00,30.7537,115.965,21.13 +2017-07-12 12:47:00,31.79,115.837,21.11 +2017-07-12 13:02:00,30.9475,115.692,21.06 +2017-07-12 13:17:00,31.245,115.622,21.07 +2017-07-12 13:32:00,32.5762,115.647,21.09 +2017-07-12 13:47:00,30.2588,115.673,21.11 +2017-07-12 14:02:00,30.6575,115.602,21.15 +2017-07-12 14:17:00,30.2162,115.607,21.23 +2017-07-12 14:32:00,30.165,115.322,21.32 +2017-07-12 14:47:00,29.6287,115.327,21.36 +2017-07-12 15:02:00,28.7012,115.268,21.37 +2017-07-12 15:17:00,29.4337,115.167,21.38 +2017-07-12 15:32:00,30.9012,115.122,21.37 +2017-07-12 15:47:00,29.9238,116.2,21.3 +2017-07-12 16:02:00,29.4825,120.825,21.23 +2017-07-12 16:17:00,32.0938,121.67,20.86 +2017-07-12 16:32:00,31.2962,122.52,21.01 +2017-07-12 16:47:00,32.2375,124.56,21.07 +2017-07-12 17:02:00,30.115,127.592,21.04 +2017-07-12 17:17:00,31.3937,129.355,20.76 +2017-07-12 17:32:00,30.56,130.417,20.9 +2017-07-12 17:47:00,31.5963,131.3,20.78 +2017-07-12 18:02:00,33.7562,131.73,20.78 +2017-07-12 18:17:00,32.1888,131.872,20.76 +2017-07-12 18:32:00,32.5775,131.805,20.69 +2017-07-12 18:47:00,31.4962,131.682,20.6 +2017-07-12 19:02:00,29.1012,131.197,20.53 +2017-07-12 19:17:00,31.0912,130.947,20.48 +2017-07-12 19:32:00,31.5963,130.505,20.41 +2017-07-12 19:47:00,31.3937,130.057,20.36 +2017-07-12 20:02:00,29.2913,129.59,20.34 +2017-07-12 20:17:00,30.3587,128.955,20.29 +2017-07-12 20:32:00,30.31,128.45,20.26 +2017-07-12 20:47:00,30.5575,128.062,20.25 +2017-07-12 21:02:00,31.1413,127.555,20.21 +2017-07-12 21:17:00,30.9938,127.35,20.18 +2017-07-12 21:32:00,29.4825,127.037,20.15 +2017-07-12 21:47:00,31.7862,126.402,20.1 +2017-07-12 22:02:00,32.14,126.307,20.08 +2017-07-12 22:17:00,32.1875,125.707,20.05 +2017-07-12 22:32:00,31.74,125.56,20.03 +2017-07-12 22:47:00,30.1175,125.165,19.97 +2017-07-12 23:02:00,32.6762,124.912,19.9 +2017-07-12 23:17:00,32.5238,124.37,19.86 +2017-07-12 23:32:00,32.0912,124.03,19.81 +2017-07-12 23:47:00,29.6787,123.857,19.76 +2017-07-13 00:02:00,31.79,123.487,19.72 +2017-07-13 00:17:00,31.79,123.32,19.64 +2017-07-13 00:32:00,32.0925,122.952,19.6 +2017-07-13 00:47:00,31.5963,122.83,19.54 +2017-07-13 01:02:00,31.0437,122.42,19.49 +2017-07-13 01:17:00,30.71,121.792,19.4 +2017-07-13 01:32:00,31.295,121.725,19.31 +2017-07-13 01:47:00,31.0938,121.277,19.22 +2017-07-13 02:02:00,31.4938,120.97,19.16 +2017-07-13 02:17:00,31.7438,120.83,19.09 +2017-07-13 02:32:00,31.0425,120.552,19.02 +2017-07-13 02:47:00,29.8275,120.58,18.98 +2017-07-13 03:02:00,30.0212,120.212,18.95 +2017-07-13 03:17:00,30.9925,119.787,18.91 +2017-07-13 03:32:00,30.805,119.475,18.87 +2017-07-13 03:47:00,29.4325,119.245,18.84 +2017-07-13 04:02:00,31.34,118.875,18.8 +2017-07-13 04:17:00,31.3425,118.552,18.77 +2017-07-13 04:32:00,30.7038,118.173,18.75 +2017-07-13 04:47:00,32.5713,117.985,18.73 +2017-07-13 05:02:00,30.805,117.847,18.72 +2017-07-13 05:17:00,30.655,117.59,18.71 +2017-07-13 05:32:00,29.8288,117.425,18.7 +2017-07-13 05:47:00,29.2412,117.13,18.7 +2017-07-13 06:02:00,28.75,116.93,18.72 +2017-07-13 06:17:00,30.0187,116.805,18.74 +2017-07-13 06:32:00,29.5762,116.57,18.74 +2017-07-13 06:47:00,30.1588,116.548,18.76 +2017-07-13 07:02:00,30.9463,116.477,18.79 +2017-07-13 07:17:00,31.29,116.425,18.82 +2017-07-13 07:32:00,29.5287,116.185,18.82 +2017-07-13 07:47:00,30.7513,115.917,18.82 +2017-07-13 08:02:00,31.2412,115.997,18.83 +2017-07-13 08:17:00,29.2875,116.03,18.83 +2017-07-13 08:32:00,29.6225,116.107,18.84 +2017-07-13 08:47:00,30.7038,116.423,18.83 +2017-07-13 09:02:00,31.3463,116.802,18.84 +2017-07-13 09:17:00,31.6413,117.753,18.86 +2017-07-13 09:32:00,29.6225,118.742,18.88 +2017-07-13 09:47:00,30.7038,120.035,18.93 +2017-07-13 10:02:00,31.0875,121.287,18.94 +2017-07-13 10:17:00,31.0912,122.722,18.96 +2017-07-13 10:32:00,31.7387,124.857,18.97 +2017-07-13 10:47:00,30.5563,127.995,18.97 +2017-07-13 11:02:00,31.4938,131.137,18.99 +2017-07-13 11:17:00,30.1113,133.242,19.02 +2017-07-13 11:32:00,29.9187,135.485,19.0 +2017-07-13 11:47:00,31.0925,136.78,18.98 +2017-07-13 12:02:00,31.3913,138.143,19.01 +2017-07-13 12:17:00,30.5037,139.34,19.07 +2017-07-13 12:32:00,31.1875,140.575,19.04 +2017-07-13 12:47:00,30.7513,141.137,19.07 +2017-07-13 13:02:00,29.9175,141.772,19.05 +2017-07-13 13:17:00,31.1387,142.495,19.02 +2017-07-13 13:32:00,32.1325,142.737,19.0 +2017-07-13 13:47:00,30.3037,143.188,18.98 +2017-07-13 14:02:00,30.3575,143.402,18.99 +2017-07-13 14:17:00,28.95,143.58,18.93 +2017-07-13 14:32:00,31.4412,143.362,18.89 +2017-07-13 14:47:00,30.605,143.852,18.84 +2017-07-13 15:02:00,29.3812,143.64,18.83 +2017-07-13 15:17:00,29.7738,143.005,18.86 +2017-07-13 15:32:00,29.335,142.847,18.91 +2017-07-13 15:47:00,29.62,142.607,18.92 +2017-07-13 16:02:00,30.3063,142.092,18.92 +2017-07-13 16:17:00,31.0875,141.727,18.87 +2017-07-13 16:32:00,29.9713,141.212,18.84 +2017-07-13 16:47:00,31.0887,140.912,18.84 +2017-07-13 17:02:00,30.65,140.285,18.79 +2017-07-13 17:17:00,31.6888,139.75,18.74 +2017-07-13 17:32:00,30.655,139.18,18.72 +2017-07-13 17:47:00,29.575,138.802,18.7 +2017-07-13 18:02:00,29.97,138.192,18.69 +2017-07-13 18:17:00,29.1925,137.518,18.68 +2017-07-13 18:32:00,30.1612,137.007,18.65 +2017-07-13 18:47:00,30.4012,136.495,18.65 +2017-07-13 19:02:00,28.6488,135.96,18.65 +2017-07-13 19:17:00,30.8538,135.577,18.67 +2017-07-13 19:32:00,30.5512,135.175,18.68 +2017-07-13 19:47:00,29.8213,134.772,18.68 +2017-07-13 20:02:00,30.0163,134.317,18.68 +2017-07-13 20:17:00,30.4575,133.895,18.67 +2017-07-13 20:32:00,30.8988,133.462,18.66 +2017-07-13 20:47:00,30.6525,133.057,18.66 +2017-07-13 21:02:00,30.9887,132.645,18.67 +2017-07-13 21:17:00,31.4925,132.28,18.69 +2017-07-13 21:32:00,29.8213,132.077,18.72 +2017-07-13 21:47:00,29.675,131.762,18.74 +2017-07-13 22:02:00,28.4562,131.432,18.76 +2017-07-13 22:17:00,30.99,131.185,18.79 +2017-07-13 22:32:00,30.8012,131.007,18.82 +2017-07-13 22:47:00,29.6275,130.627,18.82 +2017-07-13 23:02:00,30.8538,130.367,18.85 +2017-07-13 23:17:00,29.045,130.097,18.84 +2017-07-13 23:32:00,32.04,129.732,18.86 +2017-07-13 23:47:00,29.4275,129.487,18.83 +2017-07-14 00:02:00,30.1637,129.3,18.85 +2017-07-14 00:17:00,29.8237,129.11,18.83 +2017-07-14 00:32:00,31.3412,128.94,18.83 +2017-07-14 00:47:00,29.095,128.82,18.81 +2017-07-14 01:02:00,28.7487,128.59,18.77 +2017-07-14 01:17:00,29.2913,128.45,18.75 +2017-07-14 01:32:00,31.4938,128.302,18.72 +2017-07-14 01:47:00,31.0413,128.0,18.69 +2017-07-14 02:02:00,30.6062,127.742,18.63 +2017-07-14 02:17:00,30.555,127.552,18.58 +2017-07-14 02:32:00,31.2925,127.435,18.53 +2017-07-14 02:47:00,29.9675,127.217,18.46 +2017-07-14 03:02:00,31.3975,127.052,18.4 +2017-07-14 03:17:00,30.9925,126.952,18.33 +2017-07-14 03:32:00,30.1113,126.893,18.27 +2017-07-14 03:47:00,30.2087,126.705,18.2 +2017-07-14 04:02:00,30.705,126.582,18.14 +2017-07-14 04:17:00,32.4762,126.397,18.1 +2017-07-14 04:32:00,31.04,126.28,18.06 +2017-07-14 04:47:00,30.455,126.205,18.02 +2017-07-14 05:02:00,29.2425,125.427,18.02 +2017-07-14 05:17:00,31.5413,123.005,18.01 +2017-07-14 05:32:00,31.6888,121.057,18.01 +2017-07-14 05:47:00,29.195,119.715,18.02 +2017-07-14 06:02:00,31.9887,118.792,17.98 +2017-07-14 06:17:00,30.6062,118.268,17.95 +2017-07-14 06:32:00,30.1612,117.99,18.0 +2017-07-14 06:47:00,32.2838,117.852,18.11 +2017-07-14 07:02:00,31.495,117.753,18.24 +2017-07-14 07:17:00,31.3412,117.762,18.33 +2017-07-14 07:32:00,30.8962,117.798,18.41 +2017-07-14 07:47:00,31.44,117.92,18.44 +2017-07-14 08:02:00,30.3538,118.14,18.48 +2017-07-14 08:17:00,28.1087,118.18,18.51 +2017-07-14 08:32:00,30.3075,118.55,18.58 +2017-07-14 08:47:00,32.525,118.742,18.65 +2017-07-14 09:02:00,30.75,118.957,18.66 +2017-07-14 09:17:00,31.0413,119.048,18.62 +2017-07-14 09:32:00,31.6462,119.095,18.67 +2017-07-14 09:47:00,31.885,119.117,18.73 +2017-07-14 10:02:00,31.2925,119.128,18.75 +2017-07-14 10:17:00,31.64,119.225,18.78 +2017-07-14 10:32:00,31.19,119.25,18.79 +2017-07-14 10:47:00,31.1362,119.315,18.78 +2017-07-14 11:02:00,31.24,119.378,18.82 +2017-07-14 11:17:00,29.8213,119.505,18.84 +2017-07-14 11:32:00,29.1925,119.557,18.83 +2017-07-14 11:47:00,30.9412,119.535,18.84 +2017-07-14 12:02:00,30.5075,119.505,18.93 +2017-07-14 12:17:00,30.0187,119.417,19.1 +2017-07-14 12:32:00,29.1912,119.255,19.2 +2017-07-14 12:47:00,30.8463,119.17,19.32 +2017-07-14 13:02:00,29.5262,119.07,19.34 +2017-07-14 13:17:00,29.3825,119.022,19.34 +2017-07-14 13:32:00,30.6038,118.97,19.3 +2017-07-14 13:47:00,31.3913,118.97,19.27 +2017-07-14 14:02:00,31.1413,118.867,19.24 +2017-07-14 14:17:00,30.655,118.908,19.22 +2017-07-14 14:32:00,29.8712,118.842,19.18 +2017-07-14 14:47:00,29.4287,118.77,19.15 +2017-07-14 15:02:00,29.82,118.527,19.11 +2017-07-14 15:17:00,31.9375,118.285,19.08 +2017-07-14 15:32:00,29.4275,118.16,19.05 +2017-07-14 15:47:00,29.7275,118.025,19.08 +2017-07-14 16:02:00,29.3812,117.887,19.08 +2017-07-14 16:17:00,29.8213,117.938,19.03 +2017-07-14 16:32:00,29.0437,117.88,18.98 +2017-07-14 16:47:00,30.1588,117.855,18.94 +2017-07-14 17:02:00,29.4775,117.878,18.88 +2017-07-14 17:17:00,30.5075,117.737,18.85 +2017-07-14 17:32:00,30.8037,117.755,18.83 +2017-07-14 17:47:00,28.7988,117.572,18.83 +2017-07-14 18:02:00,29.3825,117.41,18.86 +2017-07-14 18:17:00,28.9512,117.312,18.89 +2017-07-14 18:32:00,30.5062,117.192,18.9 +2017-07-14 18:47:00,30.3575,117.115,18.9 +2017-07-14 19:02:00,28.8975,116.97,18.9 +2017-07-14 19:17:00,29.625,116.872,18.9 +2017-07-14 19:32:00,29.53,116.712,18.92 +2017-07-14 19:47:00,29.575,116.452,18.89 +2017-07-14 20:02:00,30.0675,116.295,18.88 +2017-07-14 20:17:00,29.3337,115.87,18.86 +2017-07-14 20:32:00,30.7038,115.43,18.85 +2017-07-14 20:47:00,29.625,115.08,18.84 +2017-07-14 21:02:00,29.9225,114.755,18.83 +2017-07-14 21:17:00,30.4062,114.355,18.82 +2017-07-14 21:32:00,30.3562,114.1,18.82 +2017-07-14 21:47:00,30.7612,113.68,18.83 +2017-07-14 22:02:00,29.3812,113.447,18.82 +2017-07-14 22:17:00,30.3562,113.042,18.81 +2017-07-14 22:32:00,32.0375,112.732,18.81 +2017-07-14 22:47:00,30.9912,112.3,18.8 +2017-07-14 23:02:00,30.5563,112.005,18.8 +2017-07-14 23:17:00,29.9725,111.71,18.8 +2017-07-14 23:32:00,28.8975,111.465,18.81 +2017-07-14 23:47:00,30.16,111.202,18.8 +2017-07-15 00:02:00,29.095,110.895,18.81 +2017-07-15 00:17:00,29.4337,110.647,18.83 +2017-07-15 00:32:00,31.5437,110.487,18.84 +2017-07-15 00:47:00,31.2438,110.212,18.84 +2017-07-15 01:02:00,31.1925,109.992,18.82 +2017-07-15 01:17:00,30.0225,109.807,18.8 +2017-07-15 01:32:00,29.2438,109.47,18.77 +2017-07-15 01:47:00,32.1862,109.215,18.76 +2017-07-15 02:02:00,29.43,108.915,18.75 +2017-07-15 02:17:00,30.1637,108.825,18.74 +2017-07-15 02:32:00,31.3913,108.675,18.73 +2017-07-15 02:47:00,30.5537,108.552,18.71 +2017-07-15 03:02:00,30.5075,108.45,18.71 +2017-07-15 03:17:00,29.9725,108.525,18.71 +2017-07-15 03:32:00,30.9425,108.587,18.68 +2017-07-15 03:47:00,30.2588,108.378,18.66 +2017-07-15 04:02:00,30.0187,108.31,18.65 +2017-07-15 04:17:00,32.4313,108.242,18.65 +2017-07-15 04:32:00,32.2812,108.022,18.65 +2017-07-15 04:47:00,29.525,107.91,18.63 +2017-07-15 05:02:00,30.21,108.025,18.62 +2017-07-15 05:17:00,31.1875,108.007,18.62 +2017-07-15 05:32:00,31.4437,107.925,18.62 +2017-07-15 05:47:00,29.475,107.96,18.62 +2017-07-15 06:02:00,31.3412,108.26,18.65 +2017-07-15 06:17:00,30.1588,108.003,18.66 +2017-07-15 06:32:00,30.7012,108.035,18.67 +2017-07-15 06:47:00,30.805,108.005,18.67 +2017-07-15 07:02:00,31.6912,107.955,18.68 +2017-07-15 07:17:00,30.115,108.175,18.68 +2017-07-15 07:32:00,30.85,108.015,18.72 +2017-07-15 07:47:00,32.1338,107.902,18.8 +2017-07-15 08:02:00,30.505,107.99,18.89 +2017-07-15 08:17:00,29.725,107.835,18.97 +2017-07-15 08:32:00,30.4062,108.04,19.03 +2017-07-15 08:47:00,30.4562,107.92,19.09 +2017-07-15 09:02:00,32.0875,108.003,19.09 +2017-07-15 09:17:00,29.8237,108.195,19.16 +2017-07-15 09:32:00,29.1925,108.195,19.16 +2017-07-15 09:47:00,30.6537,108.425,19.21 +2017-07-15 10:02:00,30.355,108.33,19.21 +2017-07-15 10:17:00,30.405,108.255,19.19 +2017-07-15 10:32:00,29.9163,108.577,19.15 +2017-07-15 10:47:00,29.725,108.68,19.17 +2017-07-15 11:02:00,31.6862,108.702,19.28 +2017-07-15 11:17:00,31.3412,108.587,19.27 +2017-07-15 11:32:00,32.7225,108.402,19.32 +2017-07-15 11:47:00,32.3325,108.41,19.35 +2017-07-15 12:02:00,30.9912,108.645,19.4 +2017-07-15 12:17:00,31.0425,108.527,19.47 +2017-07-15 12:32:00,31.8375,108.625,19.53 +2017-07-15 12:47:00,29.6237,108.79,19.6 +2017-07-15 13:02:00,32.0362,108.82,19.58 +2017-07-15 13:17:00,30.2087,108.887,19.59 +2017-07-15 13:32:00,31.4925,108.945,19.54 +2017-07-15 13:47:00,31.6888,108.75,19.48 +2017-07-15 14:02:00,31.2375,108.69,19.42 +2017-07-15 14:17:00,31.8363,108.77,19.43 +2017-07-15 14:32:00,30.9925,108.74,19.44 +2017-07-15 14:47:00,31.19,108.815,19.45 +2017-07-15 15:02:00,29.2887,108.655,19.44 +2017-07-15 15:17:00,32.1375,108.692,19.39 +2017-07-15 15:32:00,31.39,108.995,19.28 +2017-07-15 15:47:00,31.7363,108.952,19.18 +2017-07-15 16:02:00,30.2075,108.882,19.13 +2017-07-15 16:17:00,29.9175,108.81,19.1 +2017-07-15 16:32:00,31.4425,108.847,19.11 +2017-07-15 16:47:00,30.3075,108.912,19.13 +2017-07-15 17:02:00,29.5262,108.862,19.12 +2017-07-15 17:17:00,29.4775,108.862,19.12 +2017-07-15 17:32:00,30.505,108.902,19.1 +2017-07-15 17:47:00,29.575,108.95,19.05 +2017-07-15 18:02:00,31.6425,109.062,19.01 +2017-07-15 18:17:00,31.6425,109.048,18.96 +2017-07-15 18:32:00,29.9225,109.025,18.9 +2017-07-15 18:47:00,29.7725,108.917,18.86 +2017-07-15 19:02:00,30.4075,109.087,18.83 +2017-07-15 19:17:00,29.7275,108.915,18.8 +2017-07-15 19:32:00,29.6725,108.885,18.78 +2017-07-15 19:47:00,30.2575,108.857,18.77 +2017-07-15 20:02:00,30.9938,108.923,18.78 +2017-07-15 20:17:00,30.1625,108.92,18.76 +2017-07-15 20:32:00,30.3075,109.018,18.77 +2017-07-15 20:47:00,31.835,109.005,18.77 +2017-07-15 21:02:00,29.5287,108.995,18.8 +2017-07-15 21:17:00,29.9187,108.932,18.84 +2017-07-15 21:32:00,29.575,108.837,18.87 +2017-07-15 21:47:00,29.675,108.775,18.89 +2017-07-15 22:02:00,30.85,108.73,18.87 +2017-07-15 22:17:00,31.8312,108.747,18.86 +2017-07-15 22:32:00,30.9425,108.82,18.85 +2017-07-15 22:47:00,30.555,108.917,18.84 +2017-07-15 23:02:00,31.1875,108.995,18.85 +2017-07-15 23:17:00,30.7038,109.007,18.87 +2017-07-15 23:32:00,30.2087,108.952,18.89 +2017-07-15 23:47:00,29.4762,109.005,18.93 +2017-07-16 00:02:00,30.8025,108.852,18.97 +2017-07-16 00:17:00,30.0662,108.817,19.01 +2017-07-16 00:32:00,30.4575,108.637,19.04 +2017-07-16 00:47:00,29.3337,108.753,19.05 +2017-07-16 01:02:00,29.38,108.802,19.06 +2017-07-16 01:17:00,30.305,108.815,19.06 +2017-07-16 01:32:00,30.85,108.845,19.05 +2017-07-16 01:47:00,31.785,108.915,19.05 +2017-07-16 02:02:00,30.705,108.935,19.05 +2017-07-16 02:17:00,30.5575,108.942,19.05 +2017-07-16 02:32:00,30.4587,108.895,19.05 +2017-07-16 02:47:00,32.2812,108.807,19.04 +2017-07-16 03:02:00,29.7762,108.732,19.02 +2017-07-16 03:17:00,30.3562,108.753,18.98 +2017-07-16 03:32:00,30.6537,108.725,18.91 +2017-07-16 03:47:00,31.09,108.837,18.85 +2017-07-16 04:02:00,30.9437,108.908,18.81 +2017-07-16 04:17:00,32.0375,109.025,18.79 +2017-07-16 04:32:00,30.8012,108.982,18.78 +2017-07-16 04:47:00,31.785,108.992,18.78 +2017-07-16 05:02:00,28.8512,108.938,18.81 +2017-07-16 05:17:00,29.335,108.917,18.87 +2017-07-16 05:32:00,30.7,108.99,18.93 +2017-07-16 05:47:00,31.3925,109.057,18.96 +2017-07-16 06:02:00,28.8475,109.005,18.99 +2017-07-16 06:17:00,29.8725,108.997,19.02 +2017-07-16 06:32:00,30.2575,109.033,19.04 +2017-07-16 06:47:00,31.8875,108.96,19.05 +2017-07-16 07:02:00,31.4388,109.033,19.09 +2017-07-16 07:17:00,30.4575,109.025,19.12 +2017-07-16 07:32:00,31.19,108.975,19.13 +2017-07-16 07:47:00,30.2575,108.955,19.15 +2017-07-16 08:02:00,30.9,108.96,19.21 +2017-07-16 08:17:00,30.7525,108.987,19.27 +2017-07-16 08:32:00,32.5225,109.052,19.35 +2017-07-16 08:47:00,30.2113,108.947,19.47 +2017-07-16 09:02:00,32.4375,108.707,19.56 +2017-07-16 09:17:00,30.5075,108.542,19.6 +2017-07-16 09:32:00,30.2087,108.712,19.62 +2017-07-16 09:47:00,30.8025,108.772,19.67 +2017-07-16 10:02:00,32.3838,108.812,19.71 +2017-07-16 10:17:00,32.1862,108.415,19.74 +2017-07-16 10:32:00,32.0413,108.7,19.77 +2017-07-16 10:47:00,32.3363,108.682,19.78 +2017-07-16 11:02:00,28.7513,108.505,19.78 +2017-07-16 11:17:00,32.09,108.665,19.79 +2017-07-16 11:32:00,31.5938,108.405,19.78 +2017-07-16 11:47:00,31.9375,108.312,19.79 +2017-07-16 12:02:00,31.04,108.415,19.79 +2017-07-16 12:17:00,30.9475,108.46,19.81 +2017-07-16 12:32:00,31.89,108.44,19.84 +2017-07-16 12:47:00,30.7537,108.572,19.83 +2017-07-16 13:02:00,30.705,108.467,19.81 +2017-07-16 13:17:00,30.2113,108.442,19.81 +2017-07-16 13:32:00,30.4075,108.555,19.82 +2017-07-16 13:47:00,30.7562,108.71,19.84 +2017-07-16 14:02:00,30.4062,108.467,19.83 +2017-07-16 14:17:00,31.8363,108.372,19.81 +2017-07-16 14:32:00,30.3087,108.342,19.78 +2017-07-16 14:47:00,30.805,108.317,19.76 +2017-07-16 15:02:00,32.4325,108.522,19.74 +2017-07-16 15:17:00,30.36,108.285,19.72 +2017-07-16 15:32:00,30.1175,108.28,19.69 +2017-07-16 15:47:00,30.85,108.462,19.68 +2017-07-16 16:02:00,32.575,108.345,19.66 +2017-07-16 16:17:00,30.755,108.45,19.63 +2017-07-16 16:32:00,30.8525,108.442,19.6 +2017-07-16 16:47:00,31.8887,108.302,19.58 +2017-07-16 17:02:00,31.79,108.155,19.55 +2017-07-16 17:17:00,29.8275,108.11,19.54 +2017-07-16 17:32:00,31.79,108.105,19.53 +2017-07-16 17:47:00,31.9375,108.033,19.51 +2017-07-16 18:02:00,31.0925,108.035,19.47 +2017-07-16 18:17:00,32.2363,108.08,19.44 +2017-07-16 18:32:00,31.4425,108.132,19.42 +2017-07-16 18:47:00,30.9,108.165,19.4 +2017-07-16 19:02:00,31.4437,108.162,19.38 +2017-07-16 19:17:00,32.2812,108.057,19.36 +2017-07-16 19:32:00,33.6075,107.93,19.35 +2017-07-16 19:47:00,31.39,107.882,19.34 +2017-07-16 20:02:00,32.0912,107.755,19.33 +2017-07-16 20:17:00,33.6062,107.792,19.33 +2017-07-16 20:32:00,32.2887,107.722,19.33 +2017-07-16 20:47:00,30.2625,107.755,19.33 +2017-07-16 21:02:00,31.2412,107.817,19.33 +2017-07-16 21:17:00,31.395,107.822,19.33 +2017-07-16 21:32:00,32.9212,107.817,19.33 +2017-07-16 21:47:00,33.0175,107.71,19.32 +2017-07-16 22:02:00,32.5737,107.688,19.3 +2017-07-16 22:17:00,32.1912,107.58,19.3 +2017-07-16 22:32:00,30.6562,107.37,19.31 +2017-07-16 22:47:00,32.2862,107.487,19.32 +2017-07-16 23:02:00,31.1413,107.397,19.32 +2017-07-16 23:17:00,29.675,107.412,19.32 +2017-07-16 23:32:00,30.6062,107.397,19.33 +2017-07-16 23:47:00,31.8887,107.452,19.33 +2017-07-17 00:02:00,30.26,107.408,19.33 +2017-07-17 00:17:00,32.575,107.405,19.33 +2017-07-17 00:32:00,32.0425,107.195,19.33 +2017-07-17 00:47:00,30.9912,107.03,19.33 +2017-07-17 01:02:00,32.575,106.917,19.33 +2017-07-17 01:17:00,30.945,106.927,19.35 +2017-07-17 01:32:00,31.095,106.807,19.35 +2017-07-17 01:47:00,32.8737,106.772,19.35 +2017-07-17 02:02:00,31.8425,106.745,19.35 +2017-07-17 02:17:00,32.2887,106.757,19.36 +2017-07-17 02:32:00,30.655,106.76,19.37 +2017-07-17 02:47:00,31.6425,106.827,19.37 +2017-07-17 03:02:00,30.1137,106.527,19.38 +2017-07-17 03:17:00,30.5075,106.46,19.39 +2017-07-17 03:32:00,30.8037,106.28,19.38 +2017-07-17 03:47:00,30.3575,106.16,19.39 +2017-07-17 04:02:00,33.165,106.137,19.39 +2017-07-17 04:17:00,29.4788,106.045,19.39 +2017-07-17 04:32:00,32.4762,106.048,19.4 +2017-07-17 04:47:00,33.0187,106.062,19.4 +2017-07-17 05:02:00,30.26,106.007,19.41 +2017-07-17 05:17:00,30.2575,105.942,19.4 +2017-07-17 05:32:00,32.1375,105.905,19.41 +2017-07-17 05:47:00,30.2075,105.795,19.42 +2017-07-17 06:02:00,30.8025,105.705,19.42 +2017-07-17 06:17:00,30.0225,105.64,19.43 +2017-07-17 06:32:00,32.1362,105.535,19.45 +2017-07-17 06:47:00,31.1888,105.375,19.45 +2017-07-17 07:02:00,32.1362,105.31,19.46 +2017-07-17 07:17:00,33.3075,105.087,19.47 +2017-07-17 07:32:00,29.4788,105.145,19.49 +2017-07-17 07:47:00,32.0387,105.033,19.5 +2017-07-17 08:02:00,32.09,105.117,19.49 +2017-07-17 08:17:00,31.4938,105.057,19.49 +2017-07-17 08:32:00,32.7675,105.135,19.5 +2017-07-17 08:47:00,30.02,105.105,19.5 +2017-07-17 09:02:00,31.495,105.122,19.53 +2017-07-17 09:17:00,32.9175,105.147,19.57 +2017-07-17 09:32:00,32.3838,105.137,19.62 +2017-07-17 09:47:00,31.8862,104.977,19.6 +2017-07-17 10:02:00,29.7725,104.938,19.59 +2017-07-17 10:17:00,32.6687,104.805,19.6 +2017-07-17 10:32:00,32.3325,104.757,19.64 +2017-07-17 10:47:00,33.7012,104.902,19.7 +2017-07-17 11:02:00,31.5437,104.76,19.75 +2017-07-17 11:17:00,30.3075,104.772,19.85 +2017-07-17 11:32:00,32.285,104.79,19.91 +2017-07-17 11:47:00,29.825,104.775,19.95 +2017-07-17 12:02:00,31.7862,104.675,19.95 +2017-07-17 12:17:00,31.5413,104.625,19.92 +2017-07-17 12:32:00,31.0387,104.487,19.9 +2017-07-17 12:47:00,30.8962,104.37,19.9 +2017-07-17 13:02:00,31.5387,104.257,19.91 +2017-07-17 13:17:00,33.215,104.452,19.99 +2017-07-17 13:32:00,33.0187,104.462,20.05 +2017-07-17 13:47:00,32.14,104.53,20.13 +2017-07-17 14:02:00,32.6237,104.452,20.24 +2017-07-17 14:17:00,33.0187,104.485,20.3 +2017-07-17 14:32:00,31.3925,104.25,20.24 +2017-07-17 14:47:00,31.7875,104.285,20.19 +2017-07-17 15:02:00,31.6425,104.325,20.19 +2017-07-17 15:17:00,30.6562,104.195,20.15 +2017-07-17 15:32:00,32.48,104.315,20.12 +2017-07-17 15:47:00,31.4962,104.128,20.14 +2017-07-17 16:02:00,30.115,104.255,20.14 +2017-07-17 16:17:00,31.8387,104.365,20.12 +2017-07-17 16:32:00,30.4575,104.305,20.09 +2017-07-17 16:47:00,31.7412,104.412,20.04 +2017-07-17 17:02:00,29.145,104.512,19.98 +2017-07-17 17:17:00,30.9412,104.25,19.93 +2017-07-17 17:32:00,30.9962,104.36,19.86 +2017-07-17 17:47:00,30.705,104.268,19.79 +2017-07-17 18:02:00,31.7412,104.337,19.69 +2017-07-17 18:17:00,30.9962,104.46,19.61 +2017-07-17 18:30:59,31.4437,104.41,19.54 +2017-07-17 18:47:00,31.9362,104.54,19.51 +2017-07-17 19:02:00,32.7663,104.68,19.5 +2017-07-17 19:17:00,32.0413,104.727,19.49 +2017-07-17 19:32:00,33.2612,104.77,19.47 +2017-07-17 19:47:00,33.26,104.72,19.45 +2017-07-17 20:02:00,31.7412,104.685,19.43 +2017-07-17 20:17:00,31.1925,104.67,19.42 +2017-07-17 20:32:00,31.4437,104.747,19.38 +2017-07-17 20:47:00,31.74,104.785,19.35 +2017-07-17 21:02:00,32.67,104.945,19.32 +2017-07-17 21:17:00,31.14,105.045,19.29 +2017-07-17 21:32:00,31.1912,105.17,19.27 +2017-07-17 21:47:00,30.405,105.302,19.25 +2017-07-17 22:02:00,30.1625,105.283,19.22 +2017-07-17 22:17:00,30.505,105.3,19.19 +2017-07-17 22:32:00,32.1375,105.237,19.18 +2017-07-17 22:47:00,32.6212,105.217,19.19 +2017-07-17 23:02:00,30.4587,105.247,19.19 +2017-07-17 23:17:00,30.0687,105.298,19.2 +2017-07-17 23:32:00,31.0437,105.357,19.21 +2017-07-17 23:47:00,31.3463,105.457,19.21 +2017-07-18 00:02:00,31.445,105.557,19.23 +2017-07-18 00:17:00,31.2925,105.585,19.22 +2017-07-18 00:32:00,30.0675,105.617,19.23 +2017-07-18 00:47:00,31.9887,105.643,19.23 +2017-07-18 01:02:00,32.2875,105.628,19.25 +2017-07-18 01:17:00,32.7213,105.49,19.23 +2017-07-18 01:32:00,29.1462,105.52,19.21 +2017-07-18 01:47:00,31.99,105.575,19.19 +2017-07-18 02:02:00,30.9475,105.63,19.15 +2017-07-18 02:17:00,30.2113,105.677,19.11 +2017-07-18 02:32:00,31.0425,105.842,19.07 +2017-07-18 02:47:00,30.6525,105.87,19.05 +2017-07-18 03:02:00,32.0413,105.867,19.04 +2017-07-18 03:17:00,31.9412,105.862,19.02 +2017-07-18 03:32:00,31.4938,105.825,19.0 +2017-07-18 03:47:00,30.7038,105.762,18.98 +2017-07-18 04:02:00,30.2575,105.74,18.96 +2017-07-18 04:17:00,29.8712,105.795,18.97 +2017-07-18 04:32:00,29.245,105.847,18.98 +2017-07-18 04:47:00,31.1875,105.955,19.0 +2017-07-18 05:02:00,30.9425,106.03,19.02 +2017-07-18 05:17:00,30.7525,106.037,19.06 +2017-07-18 05:32:00,30.9912,106.122,19.09 +2017-07-18 05:47:00,32.4287,106.19,19.14 +2017-07-18 06:02:00,30.8512,106.165,19.17 +2017-07-18 06:17:00,31.0925,106.22,19.19 +2017-07-18 06:32:00,30.115,106.253,19.21 +2017-07-18 06:47:00,30.46,106.26,19.23 +2017-07-18 07:02:00,31.2425,106.268,19.26 +2017-07-18 07:17:00,29.3337,106.27,19.31 +2017-07-18 07:32:00,31.55,106.272,19.35 +2017-07-18 07:47:00,30.2575,106.327,19.38 +2017-07-18 08:02:00,30.8075,106.385,19.43 +2017-07-18 08:17:00,29.9737,106.57,19.48 +2017-07-18 08:32:00,30.995,106.617,19.53 +2017-07-18 08:47:00,30.8988,106.817,19.59 +2017-07-18 09:02:00,32.0413,106.795,19.65 +2017-07-18 09:17:00,29.5275,106.825,19.71 +2017-07-18 09:32:00,31.9912,106.857,19.79 +2017-07-18 09:47:00,30.7525,106.832,19.92 +2017-07-18 10:02:00,31.89,106.8,19.97 +2017-07-18 10:17:00,28.7988,106.855,20.03 +2017-07-18 10:32:00,30.9475,106.753,20.12 +2017-07-18 10:47:00,30.8937,106.92,20.2 +2017-07-18 11:02:00,31.1925,106.878,20.25 +2017-07-18 11:17:00,30.3613,107.097,20.33 +2017-07-18 11:32:00,32.1387,107.18,20.37 +2017-07-18 11:47:00,30.1125,107.237,20.42 +2017-07-18 12:02:00,30.4137,107.215,20.48 +2017-07-18 12:17:00,31.295,107.165,20.5 +2017-07-18 12:32:00,31.89,107.31,20.56 +2017-07-18 12:47:00,31.7887,107.102,20.59 +2017-07-18 13:02:00,30.8063,107.042,20.64 +2017-07-18 13:17:00,30.3087,107.147,20.65 +2017-07-18 13:32:00,31.04,107.17,20.67 +2017-07-18 13:47:00,29.9713,107.372,20.71 +2017-07-18 14:02:00,29.5275,107.435,20.74 +2017-07-18 14:17:00,30.7025,107.5,20.76 +2017-07-18 14:32:00,29.7712,107.65,20.75 +2017-07-18 14:47:00,30.6537,107.5,20.77 +2017-07-18 15:02:00,30.6562,107.47,20.78 +2017-07-18 15:17:00,30.805,107.555,20.77 +2017-07-18 15:32:00,31.4437,107.46,20.75 +2017-07-18 15:47:00,30.7588,107.5,20.73 +2017-07-18 16:02:00,29.3862,107.597,20.71 +2017-07-18 16:17:00,28.605,107.673,20.69 +2017-07-18 16:32:00,30.8975,107.705,20.66 +2017-07-18 16:47:00,28.0075,107.882,20.64 +2017-07-18 17:02:00,31.1387,107.997,20.59 +2017-07-18 17:17:00,29.8275,107.925,20.56 +2017-07-18 17:32:00,30.61,107.83,20.53 +2017-07-18 17:47:00,29.68,107.82,20.49 +2017-07-18 18:02:00,30.6562,107.98,20.46 +2017-07-18 18:17:00,29.9725,107.815,20.41 +2017-07-18 18:32:00,28.8,107.902,20.38 +2017-07-18 18:47:00,30.5587,107.915,20.34 +2017-07-18 19:02:00,31.19,108.007,20.33 +2017-07-18 19:17:00,31.2438,108.14,20.32 +2017-07-18 19:32:00,30.4575,108.122,20.3 +2017-07-18 19:47:00,30.6562,108.143,20.29 +2017-07-18 20:02:00,29.83,108.072,20.27 +2017-07-18 20:17:00,30.9925,108.033,20.25 +2017-07-18 20:32:00,30.6588,107.98,20.25 +2017-07-18 20:47:00,30.4587,107.852,20.24 +2017-07-18 21:02:00,28.0575,107.897,20.25 +2017-07-18 21:17:00,31.1937,107.865,20.25 +2017-07-18 21:32:00,30.2625,107.945,20.26 +2017-07-18 21:47:00,31.89,108.057,20.27 +2017-07-18 22:02:00,30.1663,108.08,20.28 +2017-07-18 22:17:00,29.7288,108.055,20.29 +2017-07-18 22:32:00,30.115,107.965,20.28 +2017-07-18 22:47:00,31.0963,107.942,20.29 +2017-07-18 23:02:00,30.215,107.832,20.3 +2017-07-18 23:17:00,32.925,107.73,20.29 +2017-07-18 23:32:00,29.095,107.71,20.29 +2017-07-18 23:47:00,30.07,107.69,20.26 +2017-07-19 00:02:00,30.6087,107.71,20.26 +2017-07-19 00:17:00,31.8875,107.69,20.25 +2017-07-19 00:32:00,32.0912,107.79,20.25 +2017-07-19 00:47:00,30.9,107.79,20.26 +2017-07-19 01:02:00,29.9775,107.865,20.27 +2017-07-19 01:17:00,29.8775,107.732,20.27 +2017-07-19 01:32:00,30.1637,107.628,20.26 +2017-07-19 01:47:00,30.8988,107.515,20.27 +2017-07-19 02:02:00,29.9238,107.393,20.26 +2017-07-19 02:17:00,30.2588,107.408,20.25 +2017-07-19 02:32:00,31.195,107.385,20.28 +2017-07-19 02:47:00,31.0488,107.442,20.29 +2017-07-19 03:02:00,30.2625,107.42,20.3 +2017-07-19 03:17:00,28.9962,107.495,20.31 +2017-07-19 03:32:00,30.4575,107.447,20.31 +2017-07-19 03:47:00,30.1612,107.435,20.31 +2017-07-19 04:02:00,31.2975,107.347,20.32 +2017-07-19 04:17:00,30.3575,107.24,20.31 +2017-07-19 04:32:00,29.9737,107.227,20.31 +2017-07-19 04:47:00,30.3625,107.155,20.3 +2017-07-19 05:02:00,32.1387,107.085,20.3 +2017-07-19 05:17:00,31.1413,107.135,20.31 +2017-07-19 05:32:00,30.9037,107.122,20.32 +2017-07-19 05:47:00,30.3112,107.152,20.33 +2017-07-19 06:02:00,29.4325,107.17,20.33 +2017-07-19 06:17:00,31.3438,107.082,20.34 +2017-07-19 06:32:00,31.0425,107.042,20.36 +2017-07-19 06:47:00,30.26,106.947,20.38 +2017-07-19 07:02:00,31.7387,106.882,20.41 +2017-07-19 07:17:00,29.825,106.855,20.45 +2017-07-19 07:32:00,30.855,106.88,20.49 +2017-07-19 07:47:00,30.7062,106.825,20.54 +2017-07-19 08:02:00,29.68,106.75,20.59 +2017-07-19 08:17:00,30.5112,106.878,20.62 +2017-07-19 08:32:00,29.875,106.902,20.65 +2017-07-19 08:47:00,30.8063,106.862,20.66 +2017-07-19 09:02:00,31.3438,106.607,20.71 +2017-07-19 09:17:00,30.7525,106.637,20.77 +2017-07-19 09:32:00,28.0062,106.637,20.82 +2017-07-19 09:47:00,29.4325,106.625,20.89 +2017-07-19 10:02:00,31.3937,106.545,21.0 +2017-07-19 10:17:00,30.995,106.29,21.11 +2017-07-19 10:32:00,29.53,106.272,21.23 +2017-07-19 10:47:00,29.5287,106.305,21.32 +2017-07-19 11:02:00,27.6137,106.262,21.38 +2017-07-19 11:17:00,31.4463,106.315,21.43 +2017-07-19 11:32:00,30.805,106.382,21.52 +2017-07-19 11:47:00,29.97,106.44,21.6 +2017-07-19 12:02:00,32.14,106.402,21.65 +2017-07-19 12:17:00,30.7038,106.347,21.73 +2017-07-19 12:32:00,30.6087,106.202,21.8 +2017-07-19 12:47:00,30.3575,106.072,21.86 +2017-07-19 13:02:00,29.9762,106.247,21.88 +2017-07-19 13:17:00,28.8512,106.435,21.88 +2017-07-19 13:32:00,29.58,106.395,21.9 +2017-07-19 13:47:00,29.2425,106.607,21.93 +2017-07-19 14:02:00,30.0225,106.652,21.9 +2017-07-19 14:17:00,31.3463,106.628,21.88 +2017-07-19 14:32:00,29.195,106.735,21.93 +2017-07-19 14:47:00,32.3838,106.862,21.96 +2017-07-19 15:02:00,29.5812,106.677,21.98 +2017-07-19 15:17:00,29.1475,106.837,21.99 +2017-07-19 15:32:00,30.3575,106.777,22.02 +2017-07-19 15:47:00,29.2425,106.717,22.03 +2017-07-19 16:02:00,29.925,106.947,22.02 +2017-07-19 16:17:00,30.4088,107.02,22.0 +2017-07-19 16:32:00,31.5987,107.092,21.98 +2017-07-19 16:47:00,29.53,107.197,21.95 +2017-07-19 17:02:00,29.6775,107.283,21.91 +2017-07-19 17:17:00,31.545,107.13,21.87 +2017-07-19 17:32:00,29.6212,107.24,21.83 +2017-07-19 17:47:00,29.5325,107.137,21.77 +2017-07-19 18:02:00,29.875,107.033,21.73 +2017-07-19 18:17:00,31.0413,107.188,21.7 +2017-07-19 18:32:00,31.295,107.143,21.67 +2017-07-19 18:47:00,30.6062,107.132,21.65 +2017-07-19 19:02:00,30.3613,107.173,21.62 +2017-07-19 19:17:00,31.0437,107.257,21.58 +2017-07-19 19:32:00,31.0,107.247,21.55 +2017-07-19 19:47:00,29.9737,107.087,21.52 +2017-07-19 20:02:00,29.825,107.0,21.47 +2017-07-19 20:17:00,29.4825,107.487,21.42 +2017-07-19 20:32:00,31.4425,108.832,21.38 +2017-07-19 20:47:00,30.995,111.347,21.36 +2017-07-19 21:02:00,31.0462,112.577,21.33 +2017-07-19 21:17:00,32.1413,113.122,21.35 +2017-07-19 21:32:00,31.1462,113.88,21.36 +2017-07-19 21:47:00,30.61,114.753,21.35 +2017-07-19 22:02:00,31.4475,115.783,21.36 +2017-07-19 22:17:00,31.0975,116.298,21.31 +2017-07-19 22:32:00,31.2975,116.335,21.33 +2017-07-19 22:47:00,31.7925,116.143,21.33 +2017-07-19 23:02:00,33.6075,115.655,21.33 +2017-07-19 23:17:00,32.0938,115.305,21.32 +2017-07-19 23:32:00,32.04,114.96,21.3 +2017-07-19 23:47:00,31.2937,114.63,21.28 +2017-07-20 00:02:00,30.6588,114.225,21.25 +2017-07-20 00:17:00,31.4487,113.942,21.26 +2017-07-20 00:32:00,31.7412,113.652,21.25 +2017-07-20 00:47:00,33.2612,113.427,21.25 +2017-07-20 01:02:00,30.3125,113.115,21.24 +2017-07-20 01:17:00,30.26,112.82,21.25 +2017-07-20 01:32:00,30.2113,112.548,21.25 +2017-07-20 01:47:00,31.3962,112.295,21.24 +2017-07-20 02:02:00,29.8737,112.0,21.22 +2017-07-20 02:17:00,30.1175,111.755,21.21 +2017-07-20 02:32:00,30.9,111.52,21.25 +2017-07-20 02:47:00,30.17,111.42,21.29 +2017-07-20 03:02:00,30.6575,111.217,21.31 +2017-07-20 03:17:00,31.1937,111.15,21.32 +2017-07-20 03:32:00,30.6562,110.98,21.32 +2017-07-20 03:47:00,30.8538,110.81,21.32 +2017-07-20 04:02:00,29.9775,110.688,21.32 +2017-07-20 04:17:00,32.1387,110.525,21.32 +2017-07-20 04:32:00,30.9475,110.287,21.33 +2017-07-20 04:47:00,31.1437,109.985,21.34 +2017-07-20 05:02:00,29.1937,109.75,21.37 +2017-07-20 05:17:00,30.8975,109.548,21.39 +2017-07-20 05:32:00,29.8763,109.425,21.43 +2017-07-20 05:47:00,30.31,109.265,21.47 +2017-07-20 06:02:00,30.805,109.0,21.5 +2017-07-20 06:17:00,31.7425,108.783,21.55 +2017-07-20 06:32:00,30.4613,108.572,21.59 +2017-07-20 06:47:00,30.6075,108.475,21.63 +2017-07-20 07:02:00,31.895,108.207,21.68 +2017-07-20 07:17:00,30.6588,107.977,21.71 +2017-07-20 07:32:00,30.0725,107.802,21.76 +2017-07-20 07:47:00,29.8763,107.53,21.83 +2017-07-20 08:02:00,29.775,107.38,21.92 +2017-07-20 08:17:00,31.5488,107.07,22.0 +2017-07-20 08:32:00,30.2625,106.787,22.07 +2017-07-20 08:47:00,30.655,106.655,22.09 +2017-07-20 09:02:00,30.3637,106.4,22.08 +2017-07-20 09:17:00,30.9487,106.137,22.08 +2017-07-20 09:32:00,31.19,105.902,22.13 +2017-07-20 09:47:00,29.68,105.567,22.2 +2017-07-20 10:02:00,30.5137,105.158,22.24 +2017-07-20 10:17:00,31.995,104.917,22.27 +2017-07-20 10:32:00,29.3887,104.58,22.27 +2017-07-20 10:47:00,29.39,104.43,22.29 +2017-07-20 11:02:00,31.9412,103.977,22.23 +2017-07-20 11:17:00,32.1425,103.94,22.18 +2017-07-20 11:32:00,29.05,103.622,22.13 +2017-07-20 11:47:00,31.35,103.408,22.08 +2017-07-20 12:02:00,29.6787,103.26,22.1 +2017-07-20 12:17:00,28.0612,103.13,22.09 +2017-07-20 12:32:00,31.94,102.875,22.1 +2017-07-20 12:47:00,30.9938,102.607,22.12 +2017-07-20 13:02:00,31.045,102.408,22.12 +2017-07-20 13:17:00,29.4375,102.2,22.1 +2017-07-20 13:32:00,29.2462,102.03,22.07 +2017-07-20 13:47:00,29.2462,101.938,22.06 +2017-07-20 14:02:00,29.2475,101.832,22.04 +2017-07-20 14:17:00,30.9,101.692,22.03 +2017-07-20 14:32:00,29.05,101.692,22.1 +2017-07-20 14:47:00,30.9,101.75,22.17 +2017-07-20 15:02:00,30.1675,101.91,22.22 +2017-07-20 15:17:00,31.1925,101.977,22.31 +2017-07-20 15:32:00,29.6787,102.137,22.38 +2017-07-20 15:47:00,30.025,102.14,22.42 +2017-07-20 16:02:00,31.35,102.438,22.42 +2017-07-20 16:17:00,29.1012,102.497,22.39 +2017-07-20 16:32:00,29.78,102.747,22.36 +2017-07-20 16:47:00,30.81,102.98,22.34 +2017-07-20 17:02:00,30.8562,103.277,22.37 +2017-07-20 17:17:00,29.6287,103.625,22.41 +2017-07-20 17:32:00,30.4625,104.225,22.46 +2017-07-20 17:47:00,29.3463,104.628,22.45 +2017-07-20 18:02:00,30.5638,105.128,22.38 +2017-07-20 18:17:00,28.3138,105.652,22.31 +2017-07-20 18:32:00,29.2,106.14,22.21 +2017-07-20 18:47:00,28.9088,106.533,22.12 +2017-07-20 19:02:00,32.63,107.042,22.01 +2017-07-20 19:17:00,31.1975,107.535,21.95 +2017-07-20 19:32:00,31.6012,108.055,21.9 +2017-07-20 19:47:00,30.5163,108.667,21.85 +2017-07-20 20:02:00,29.6862,109.292,21.81 +2017-07-20 20:17:00,31.1488,109.882,21.77 +2017-07-20 20:32:00,29.6813,110.592,21.73 +2017-07-20 20:47:00,30.075,111.205,21.69 +2017-07-20 21:02:00,30.27,111.655,21.67 +2017-07-20 21:17:00,31.2,112.107,21.67 +2017-07-20 21:32:00,28.6612,112.497,21.67 +2017-07-20 21:47:00,30.7625,112.86,21.65 +2017-07-20 22:02:00,29.88,113.242,21.62 +2017-07-20 22:17:00,31.1,113.652,21.58 +2017-07-20 22:32:00,31.1,114.055,21.53 +2017-07-20 22:47:00,30.5625,114.505,21.47 +2017-07-20 23:02:00,30.8575,114.897,21.44 +2017-07-20 23:17:00,29.4375,115.35,21.43 +2017-07-20 23:32:00,27.565,115.722,21.4 +2017-07-20 23:47:00,29.8812,115.912,21.36 +2017-07-21 00:02:00,29.3887,116.097,21.32 +2017-07-21 00:17:00,30.6137,116.35,21.27 +2017-07-21 00:32:00,30.6637,116.552,21.22 +2017-07-21 00:47:00,30.8575,116.665,21.18 +2017-07-21 01:02:00,29.6325,116.94,21.15 +2017-07-21 01:17:00,31.65,117.022,21.15 +2017-07-21 01:32:00,29.3463,117.408,21.15 +2017-07-21 01:47:00,31.6963,117.617,21.14 +2017-07-21 02:02:00,31.3075,117.935,21.12 +2017-07-21 02:17:00,31.6025,117.982,21.09 +2017-07-21 02:32:00,30.7087,118.11,21.08 +2017-07-21 02:47:00,31.55,118.225,21.06 +2017-07-21 03:02:00,30.9037,118.125,21.04 +2017-07-21 03:17:00,28.705,118.298,21.01 +2017-07-21 03:32:00,29.9275,118.26,21.0 +2017-07-21 03:47:00,31.4487,118.272,21.01 +2017-07-21 04:02:00,31.5975,118.307,21.02 +2017-07-21 04:17:00,28.905,118.587,21.05 +2017-07-21 04:32:00,30.81,118.8,21.07 +2017-07-21 04:47:00,31.0475,118.83,21.12 +2017-07-21 05:02:00,29.63,118.815,21.17 +2017-07-21 05:17:00,30.9475,118.73,21.21 +2017-07-21 05:32:00,30.6562,118.753,21.25 +2017-07-21 05:47:00,30.1212,118.695,21.26 +2017-07-21 06:02:00,30.5587,118.652,21.27 +2017-07-21 06:17:00,30.8112,118.545,21.26 +2017-07-21 06:32:00,31.0462,118.53,21.27 +2017-07-21 06:47:00,31.9962,118.602,21.3 +2017-07-21 07:02:00,31.4463,118.565,21.34 +2017-07-21 07:17:00,30.7075,118.427,21.36 +2017-07-21 07:32:00,31.94,118.155,21.38 +2017-07-21 07:47:00,30.4587,118.205,21.41 +2017-07-21 08:02:00,30.4075,118.04,21.47 +2017-07-21 08:17:00,30.5112,117.923,21.53 +2017-07-21 08:32:00,30.515,117.8,21.58 +2017-07-21 08:47:00,31.3475,117.957,21.61 +2017-07-21 09:02:00,29.39,117.857,21.65 +2017-07-21 09:17:00,32.1925,117.68,21.68 +2017-07-21 09:32:00,30.265,117.61,21.77 +2017-07-21 09:47:00,32.0425,117.487,21.84 +2017-07-21 10:02:00,30.8087,117.387,21.92 +2017-07-21 10:17:00,29.0512,117.175,21.97 +2017-07-21 10:32:00,31.2462,117.177,22.05 +2017-07-21 10:47:00,29.9287,117.045,22.08 +2017-07-21 11:02:00,30.3587,117.102,22.13 +2017-07-21 11:17:00,31.3988,117.075,22.18 +2017-07-21 11:32:00,31.1975,117.055,22.18 +2017-07-21 11:47:00,31.7462,116.893,22.17 +2017-07-21 12:02:00,30.95,116.817,22.19 +2017-07-21 12:17:00,30.9487,116.71,22.24 +2017-07-21 12:32:00,30.76,116.712,22.32 +2017-07-21 12:47:00,30.8525,116.533,22.38 +2017-07-21 13:02:00,29.245,116.52,22.34 +2017-07-21 13:17:00,31.7438,116.622,22.34 +2017-07-21 13:32:00,31.095,116.798,22.34 +2017-07-21 13:47:00,32.7225,116.847,22.27 +2017-07-21 14:02:00,29.3887,117.015,22.26 +2017-07-21 14:17:00,32.575,117.158,22.29 +2017-07-21 14:32:00,30.9088,117.165,22.31 +2017-07-21 14:47:00,30.6125,117.292,22.31 +2017-07-21 15:02:00,31.2475,117.332,22.31 +2017-07-21 15:17:00,31.0488,117.355,22.29 +2017-07-21 15:32:00,30.3613,117.352,22.22 +2017-07-21 15:47:00,30.5137,117.417,22.16 +2017-07-21 16:02:00,30.3125,117.46,22.11 +2017-07-21 16:17:00,31.0963,117.515,22.04 +2017-07-21 16:32:00,32.1963,117.505,22.02 +2017-07-21 16:47:00,32.0425,117.665,22.03 +2017-07-21 17:02:00,30.465,117.625,22.04 +2017-07-21 17:17:00,29.98,117.525,22.03 +2017-07-21 17:32:00,29.8288,117.482,22.02 +2017-07-21 17:47:00,32.2425,117.347,22.0 +2017-07-21 18:02:00,31.745,117.232,21.98 +2017-07-21 18:17:00,30.5137,117.158,21.97 +2017-07-21 18:32:00,31.6963,117.152,21.96 +2017-07-21 18:47:00,30.9012,117.202,21.95 +2017-07-21 19:02:00,31.7925,117.27,21.96 +2017-07-21 19:17:00,31.5488,117.312,21.97 +2017-07-21 19:32:00,30.075,117.332,21.99 +2017-07-21 19:47:00,29.6813,117.317,22.01 +2017-07-21 20:02:00,30.5612,117.3,22.05 +2017-07-21 20:17:00,31.1963,117.253,22.04 +2017-07-21 20:32:00,31.795,117.2,22.07 +2017-07-21 20:47:00,30.6625,117.048,22.1 +2017-07-21 21:02:00,31.345,116.975,22.14 +2017-07-21 21:17:00,29.4337,116.945,22.14 +2017-07-21 21:32:00,29.2462,116.845,22.16 +2017-07-21 21:47:00,30.56,116.89,22.19 +2017-07-21 22:02:00,30.9012,116.917,22.23 +2017-07-21 22:17:00,31.0975,116.897,22.25 +2017-07-21 22:32:00,29.7812,116.925,22.26 +2017-07-21 22:47:00,30.805,116.825,22.27 +2017-07-21 23:02:00,30.9975,116.712,22.27 +2017-07-21 23:17:00,32.825,116.607,22.27 +2017-07-21 23:32:00,31.145,116.467,22.28 +2017-07-21 23:47:00,31.35,116.275,22.28 +2017-07-22 00:02:00,32.3412,116.28,22.27 +2017-07-22 00:17:00,29.2988,116.17,22.27 +2017-07-22 00:32:00,30.5163,116.21,22.26 +2017-07-22 00:47:00,31.9425,116.202,22.23 +2017-07-22 01:02:00,28.3112,116.235,22.22 +2017-07-22 01:17:00,32.5762,116.182,22.22 +2017-07-22 01:32:00,30.8587,116.077,22.23 +2017-07-22 01:47:00,30.76,115.89,22.24 +2017-07-22 02:02:00,31.7438,115.807,22.26 +2017-07-22 02:17:00,31.5963,115.712,22.28 +2017-07-22 02:32:00,33.36,115.58,22.29 +2017-07-22 02:47:00,30.36,115.447,22.28 +2017-07-22 03:02:00,31.9925,115.3,22.3 +2017-07-22 03:17:00,30.4075,115.237,22.29 +2017-07-22 03:32:00,31.2962,115.245,22.29 +2017-07-22 03:47:00,31.145,115.262,22.29 +2017-07-22 04:02:00,32.9238,115.117,22.27 +2017-07-22 04:17:00,31.84,115.072,22.25 +2017-07-22 04:32:00,31.4,114.915,22.22 +2017-07-22 04:47:00,30.5612,114.84,22.2 +2017-07-22 05:02:00,30.4088,114.643,22.18 +2017-07-22 05:17:00,30.1663,114.482,22.16 +2017-07-22 05:32:00,29.4337,114.315,22.14 +2017-07-22 05:47:00,32.1912,114.268,22.13 +2017-07-22 06:02:00,33.0687,114.085,22.11 +2017-07-22 06:17:00,29.1,114.07,22.08 +2017-07-22 06:32:00,29.3387,113.952,22.06 +2017-07-22 06:47:00,30.805,114.0,22.06 +2017-07-22 07:02:00,30.5125,113.805,22.07 +2017-07-22 07:17:00,30.2188,113.837,22.06 +2017-07-22 07:32:00,31.3463,113.742,22.05 +2017-07-22 07:47:00,32.2412,113.762,22.04 +2017-07-22 08:02:00,33.26,113.76,22.01 +2017-07-22 08:17:00,31.545,113.628,21.99 +2017-07-22 08:32:00,29.6275,113.635,21.95 +2017-07-22 08:47:00,31.9925,113.59,21.9 +2017-07-22 09:02:00,30.7075,113.552,21.88 +2017-07-22 09:17:00,30.4112,113.375,21.89 +2017-07-22 09:32:00,30.9475,113.29,21.93 +2017-07-22 09:47:00,30.66,113.15,21.94 +2017-07-22 10:02:00,32.39,112.992,21.97 +2017-07-22 10:17:00,30.2612,112.88,21.98 +2017-07-22 10:32:00,30.7087,112.757,22.0 +2017-07-22 10:47:00,30.6588,112.725,22.01 +2017-07-22 11:02:00,31.1937,112.745,22.02 +2017-07-22 11:17:00,33.4062,112.757,22.04 +2017-07-22 11:32:00,31.79,112.72,22.11 +2017-07-22 11:47:00,32.3375,112.557,22.19 +2017-07-22 12:02:00,31.0413,112.53,22.22 +2017-07-22 12:17:00,30.9975,112.357,22.27 +2017-07-22 12:32:00,30.9962,112.225,22.31 +2017-07-22 12:47:00,32.0413,112.08,22.36 +2017-07-22 13:02:00,30.3613,111.867,22.39 +2017-07-22 13:17:00,29.1937,111.717,22.45 +2017-07-22 13:32:00,31.1912,111.465,22.51 +2017-07-22 13:47:00,30.5575,111.472,22.57 +2017-07-22 14:02:00,32.2375,111.295,22.56 +2017-07-22 14:17:00,29.4825,111.052,22.54 +2017-07-22 14:32:00,31.74,110.8,22.58 +2017-07-22 14:47:00,30.8975,110.552,22.58 +2017-07-22 15:02:00,31.545,110.26,22.6 +2017-07-22 15:17:00,32.82,109.982,22.63 +2017-07-22 15:32:00,30.95,109.585,22.65 +2017-07-22 15:47:00,29.385,109.292,22.65 +2017-07-22 16:02:00,30.5575,108.997,22.59 +2017-07-22 16:17:00,32.0925,108.655,22.55 +2017-07-22 16:32:00,30.7062,108.503,22.52 +2017-07-22 16:47:00,30.6537,108.26,22.52 +2017-07-22 17:02:00,30.4613,107.95,22.49 +2017-07-22 17:17:00,32.6725,107.622,22.47 +2017-07-22 17:32:00,30.0275,107.265,22.44 +2017-07-22 17:47:00,29.63,106.938,22.4 +2017-07-22 18:02:00,31.5938,106.617,22.36 +2017-07-22 18:17:00,31.1413,106.242,22.32 +2017-07-22 18:32:00,32.5275,105.967,22.28 +2017-07-22 18:47:00,31.0938,105.755,22.24 +2017-07-22 19:02:00,30.5137,105.592,22.21 +2017-07-22 19:17:00,33.1188,105.43,22.18 +2017-07-22 19:32:00,30.7612,105.222,22.16 +2017-07-22 19:47:00,30.9962,105.06,22.13 +2017-07-22 20:02:00,32.39,104.893,22.1 +2017-07-22 20:17:00,30.4075,104.712,22.07 +2017-07-22 20:32:00,31.9938,104.447,22.05 +2017-07-22 20:47:00,31.3475,104.365,22.02 +2017-07-22 21:02:00,32.6237,104.265,21.99 +2017-07-22 21:17:00,32.8262,104.25,21.97 +2017-07-22 21:32:00,31.4487,104.22,21.95 +2017-07-22 21:47:00,31.2475,104.283,21.93 +2017-07-22 22:02:00,32.095,104.32,21.91 +2017-07-22 22:17:00,33.315,104.298,21.88 +2017-07-22 22:32:00,29.58,104.205,21.86 +2017-07-22 22:47:00,33.17,104.237,21.85 +2017-07-22 23:02:00,30.4625,104.197,21.82 +2017-07-22 23:17:00,30.1637,104.212,21.8 +2017-07-22 23:32:00,31.84,104.165,21.8 +2017-07-22 23:47:00,31.8925,104.19,21.77 +2017-07-23 00:02:00,31.6475,104.305,21.78 +2017-07-23 00:17:00,30.265,104.467,21.78 +2017-07-23 00:32:00,31.8425,104.582,21.78 +2017-07-23 00:47:00,30.1663,104.685,21.79 +2017-07-23 01:02:00,31.0987,104.737,21.81 +2017-07-23 01:17:00,32.2887,104.81,21.79 +2017-07-23 01:32:00,31.2962,104.832,21.83 +2017-07-23 01:47:00,32.0437,104.827,21.83 +2017-07-23 02:02:00,32.825,104.965,21.84 +2017-07-23 02:17:00,31.5987,105.077,21.85 +2017-07-23 02:32:00,31.4475,105.21,21.87 +2017-07-23 02:47:00,29.63,105.347,21.89 +2017-07-23 03:02:00,31.7425,105.522,21.9 +2017-07-23 03:17:00,32.5325,105.727,21.91 +2017-07-23 03:32:00,31.8387,105.768,21.93 +2017-07-23 03:47:00,30.4613,107.775,21.83 +2017-07-23 04:02:00,33.2213,112.99,21.78 +2017-07-23 04:17:00,32.92,114.753,21.16 +2017-07-23 04:32:00,32.1937,115.387,21.58 +2017-07-23 04:47:00,33.51,115.342,21.79 +2017-07-23 05:02:00,33.22,115.112,21.84 +2017-07-23 05:17:00,30.12,114.835,21.89 +2017-07-23 05:32:00,34.9625,114.61,21.66 +2017-07-23 05:47:00,33.9987,114.302,21.59 +2017-07-23 06:02:00,34.0425,114.107,21.61 +2017-07-23 06:17:00,34.3838,113.915,21.68 +2017-07-23 06:32:00,33.3138,113.78,21.72 +2017-07-23 06:47:00,32.0462,113.725,21.72 +2017-07-23 07:02:00,32.095,113.725,21.71 +2017-07-23 07:17:00,31.6963,113.54,21.71 +2017-07-23 07:32:00,31.6963,113.655,21.72 +2017-07-23 07:47:00,32.3425,113.617,21.77 +2017-07-23 08:02:00,32.6787,113.862,21.77 +2017-07-23 08:17:00,33.17,114.17,21.77 +2017-07-23 08:32:00,32.0975,114.165,21.74 +2017-07-23 08:47:00,31.0462,114.582,21.73 +2017-07-23 09:02:00,32.0475,114.762,21.76 +2017-07-23 09:17:00,30.8562,115.012,21.83 +2017-07-23 09:32:00,30.5612,115.197,21.86 +2017-07-23 09:47:00,31.745,115.092,21.92 +2017-07-23 10:02:00,34.3337,115.317,21.94 +2017-07-23 10:17:00,33.0725,115.53,21.96 +2017-07-23 10:32:00,34.7237,115.857,21.99 +2017-07-23 10:47:00,33.3112,116.105,21.97 +2017-07-23 11:02:00,32.0462,116.305,21.98 +2017-07-23 11:17:00,31.9912,116.542,22.05 +2017-07-23 11:32:00,30.4125,116.81,22.05 +2017-07-23 11:47:00,33.025,117.052,22.12 +2017-07-23 12:02:00,32.6275,116.985,22.15 +2017-07-23 12:17:00,33.2663,117.112,22.15 +2017-07-23 12:32:00,33.1712,117.375,22.21 +2017-07-23 12:47:00,32.4375,117.46,22.18 +2017-07-23 13:02:00,32.485,117.682,22.21 +2017-07-23 13:17:00,32.4362,117.712,22.24 +2017-07-23 13:32:00,31.8913,117.925,22.26 +2017-07-23 13:47:00,35.1062,118.115,22.23 +2017-07-23 14:02:00,33.315,118.197,22.23 +2017-07-23 14:17:00,32.1925,118.372,22.23 +2017-07-23 14:32:00,32.0462,118.415,22.24 +2017-07-23 14:47:00,32.675,118.485,22.23 +2017-07-23 15:02:00,32.8275,118.452,22.19 +2017-07-23 15:17:00,32.5325,118.425,22.2 +2017-07-23 15:32:00,34.2875,118.467,22.16 +2017-07-23 15:47:00,34.0,118.51,22.16 +2017-07-23 16:02:00,32.7262,118.61,22.16 +2017-07-23 16:17:00,31.0975,118.652,22.17 +2017-07-23 16:32:00,31.7913,118.785,22.13 +2017-07-23 16:47:00,31.35,118.772,22.1 +2017-07-23 17:02:00,32.7275,118.86,22.06 +2017-07-23 17:17:00,31.5488,118.932,22.02 +2017-07-23 17:32:00,32.0987,118.88,22.0 +2017-07-23 17:47:00,32.4825,118.817,21.97 +2017-07-23 18:02:00,32.485,118.75,21.93 +2017-07-23 18:17:00,32.9762,118.755,21.9 +2017-07-23 18:32:00,33.5112,118.622,21.88 +2017-07-23 18:47:00,31.9437,118.66,21.86 +2017-07-23 19:02:00,34.0887,118.798,21.85 +2017-07-23 19:17:00,31.25,118.925,21.83 +2017-07-23 19:32:00,32.7262,118.885,21.81 +2017-07-23 19:47:00,34.0013,118.885,21.79 +2017-07-23 20:02:00,32.0938,118.86,21.77 +2017-07-23 20:17:00,32.5312,118.74,21.76 +2017-07-23 20:32:00,32.0963,118.68,21.73 +2017-07-23 20:47:00,32.8763,118.673,21.72 +2017-07-23 21:02:00,31.795,118.58,21.7 +2017-07-23 21:17:00,31.145,118.61,21.7 +2017-07-23 21:32:00,32.1937,118.715,21.68 +2017-07-23 21:47:00,29.88,118.695,21.67 +2017-07-23 22:02:00,31.2975,118.67,21.65 +2017-07-23 22:17:00,32.24,118.69,21.64 +2017-07-23 22:32:00,31.2988,118.61,21.64 +2017-07-23 22:47:00,31.5488,118.557,21.64 +2017-07-23 23:02:00,33.7075,118.465,21.64 +2017-07-23 23:17:00,30.8988,118.47,21.64 +2017-07-23 23:32:00,32.3412,118.425,21.63 +2017-07-23 23:47:00,29.8775,118.548,21.63 +2017-07-24 00:02:00,33.2675,118.57,21.64 +2017-07-24 00:17:00,31.3975,118.597,21.64 +2017-07-24 00:32:00,33.17,118.83,21.63 +2017-07-24 00:47:00,33.1212,118.792,21.63 +2017-07-24 01:02:00,31.2962,118.84,21.61 +2017-07-24 01:17:00,33.8012,118.893,21.59 +2017-07-24 01:32:00,33.3175,118.827,21.56 +2017-07-24 01:47:00,31.395,118.837,21.52 +2017-07-24 02:02:00,29.9238,118.878,21.48 +2017-07-24 02:17:00,31.7962,119.062,21.45 +2017-07-24 02:32:00,31.3512,119.225,21.43 +2017-07-24 02:47:00,32.3387,119.355,21.37 +2017-07-24 03:02:00,29.5762,119.54,21.34 +2017-07-24 03:17:00,31.6437,119.852,21.3 +2017-07-24 03:32:00,33.315,119.975,21.25 +2017-07-24 03:47:00,32.9725,120.135,21.2 +2017-07-24 04:02:00,31.2975,120.165,21.15 +2017-07-24 04:17:00,32.6275,120.26,21.1 +2017-07-24 04:32:00,31.6475,120.332,21.05 +2017-07-24 04:47:00,33.4112,120.565,21.02 +2017-07-24 05:02:00,31.8412,120.757,20.99 +2017-07-24 05:17:00,32.4812,120.995,20.96 +2017-07-24 05:32:00,30.7562,121.188,20.94 +2017-07-24 05:47:00,33.6062,121.375,20.9 +2017-07-24 06:02:00,30.805,121.527,20.89 +2017-07-24 06:17:00,32.6263,121.675,20.88 +2017-07-24 06:32:00,30.9475,121.798,20.87 +2017-07-24 06:47:00,33.3637,121.947,20.86 +2017-07-24 07:02:00,32.3887,122.027,20.87 +2017-07-24 07:17:00,30.4112,122.14,20.88 +2017-07-24 07:32:00,31.7462,122.277,20.91 +2017-07-24 07:47:00,32.9212,122.378,20.95 +2017-07-24 08:02:00,33.2188,122.542,20.99 +2017-07-24 08:17:00,32.1862,122.775,21.03 +2017-07-24 08:56:44,27.5762,123.022,21.09 +2017-07-24 09:02:00,29.0,123.045,21.1 +2017-07-24 09:17:00,29.4337,123.01,21.1 +2017-07-24 09:32:00,28.365,123.007,21.11 +2017-07-24 09:47:00,29.5812,122.875,21.13 +2017-07-24 10:02:00,26.325,122.942,21.18 +2017-07-24 10:17:00,27.7588,122.902,21.17 +2017-07-24 10:32:00,27.8587,122.957,21.14 +2017-07-24 10:47:00,28.6025,122.992,21.08 +2017-07-24 11:02:00,28.0062,123.152,21.03 +2017-07-24 11:17:00,28.9025,123.092,21.0 +2017-07-24 11:32:00,29.15,123.022,20.98 +2017-07-24 11:47:00,28.6025,122.872,20.97 +2017-07-24 12:02:00,27.3613,122.765,20.95 +2017-07-24 12:17:00,29.1,122.605,20.92 +2017-07-24 12:32:00,27.01,122.46,20.89 +2017-07-24 12:47:00,27.6113,122.397,20.87 +2017-07-24 13:02:00,28.06,122.32,20.83 +2017-07-24 13:17:00,27.5612,122.345,20.78 +2017-07-24 13:32:00,26.6663,122.4,20.75 +2017-07-24 13:47:00,28.5062,122.577,20.73 +2017-07-24 14:02:00,28.4088,122.675,20.69 +2017-07-24 14:17:00,26.225,122.895,20.65 +2017-07-24 14:32:00,28.21,123.137,20.61 +2017-07-24 14:47:00,27.1075,123.24,20.58 +2017-07-24 15:02:00,28.5088,123.247,20.55 +2017-07-24 15:17:00,29.9238,123.12,20.53 +2017-07-24 15:32:00,28.2137,123.147,20.52 +2017-07-24 15:47:00,27.665,123.185,20.51 +2017-07-24 16:02:00,29.9737,123.12,20.5 +2017-07-24 16:17:00,26.8213,123.1,20.48 +2017-07-24 16:32:00,29.4375,123.087,20.47 +2017-07-24 16:47:00,29.58,123.07,20.48 +2017-07-24 17:02:00,28.0612,122.847,20.48 +2017-07-24 17:17:00,28.0625,122.742,20.5 +2017-07-24 17:32:00,26.3237,122.417,20.51 +2017-07-24 17:47:00,29.3913,122.185,20.52 +2017-07-24 18:02:00,28.2637,121.908,20.55 +2017-07-24 18:17:00,28.6562,121.732,20.57 +2017-07-24 18:32:00,27.4163,121.503,20.57 +2017-07-24 18:47:00,26.6725,121.325,20.58 +2017-07-24 19:02:00,28.6075,121.197,20.58 +2017-07-24 19:17:00,27.6162,120.923,20.58 +2017-07-24 19:32:00,29.1,120.66,20.59 +2017-07-24 19:47:00,26.27,120.357,20.58 +2017-07-24 20:02:00,25.9875,120.067,20.57 +2017-07-24 20:17:00,27.715,119.785,20.55 +2017-07-24 20:32:00,27.6663,119.495,20.48 +2017-07-24 20:47:00,28.4112,119.247,20.42 +2017-07-24 21:02:00,29.1488,118.992,20.41 +2017-07-24 21:17:00,28.5125,118.872,20.42 +2017-07-24 21:32:00,28.1125,118.74,20.43 +2017-07-24 21:47:00,27.9075,118.652,20.46 +2017-07-24 22:02:00,28.705,118.533,20.47 +2017-07-24 22:17:00,27.9125,118.332,20.47 +2017-07-24 22:32:00,29.3862,118.135,20.48 +2017-07-24 22:47:00,27.4637,117.915,20.49 +2017-07-24 23:02:00,29.055,117.632,20.48 +2017-07-24 23:17:00,28.06,117.477,20.48 +2017-07-24 23:32:00,28.2125,117.29,20.47 +2017-07-24 23:47:00,29.9262,117.18,20.47 +2017-07-25 00:02:00,27.0612,117.107,20.45 +2017-07-25 00:17:00,28.06,117.062,20.43 +2017-07-25 00:32:00,27.8575,116.942,20.41 +2017-07-25 00:47:00,27.0125,116.807,20.39 +2017-07-25 01:02:00,28.7525,116.705,20.38 +2017-07-25 01:17:00,29.0,116.533,20.38 +2017-07-25 01:32:00,26.7188,116.387,20.36 +2017-07-25 01:47:00,28.9987,116.222,20.34 +2017-07-25 02:02:00,28.7537,116.065,20.32 +2017-07-25 02:17:00,29.0938,115.895,20.3 +2017-07-25 02:32:00,27.9625,115.83,20.28 +2017-07-25 02:47:00,27.9088,115.707,20.24 +2017-07-25 03:02:00,28.0112,115.587,20.17 +2017-07-25 03:17:00,28.1137,115.562,20.11 +2017-07-25 03:32:00,29.58,115.505,20.05 +2017-07-25 03:47:00,28.6062,115.372,20.02 +2017-07-25 04:02:00,29.1475,115.36,19.96 +2017-07-25 04:17:00,27.615,115.82,19.92 +2017-07-25 04:32:00,27.5638,116.812,19.88 +2017-07-25 04:47:00,26.6675,118.057,19.8 +2017-07-25 05:02:00,27.81,118.798,19.77 +2017-07-25 05:17:00,27.96,119.215,19.76 +2017-07-25 05:32:00,28.8512,119.71,19.77 +2017-07-25 05:47:00,28.95,119.908,19.68 +2017-07-25 06:02:00,27.81,120.188,19.58 +2017-07-25 06:17:00,30.3075,120.195,19.52 +2017-07-25 06:32:00,29.1912,120.352,19.5 +2017-07-25 06:47:00,27.8037,120.452,19.45 +2017-07-25 07:02:00,28.4112,120.615,19.4 +2017-07-25 07:17:00,28.7513,120.885,19.38 +2017-07-25 07:32:00,28.8512,121.042,19.37 +2017-07-25 07:47:00,28.4637,121.257,19.37 +2017-07-25 08:02:00,29.9713,121.452,19.37 +2017-07-25 08:17:00,29.675,121.55,19.35 +2017-07-25 08:32:00,28.0062,124.332,19.36 +2017-07-25 08:47:00,29.6775,127.253,19.37 +2017-07-25 09:02:00,29.4362,129.372,19.36 +2017-07-25 09:17:00,28.6025,130.75,19.31 +2017-07-25 09:32:00,29.73,131.65,19.26 +2017-07-25 09:47:00,28.36,132.548,19.23 +2017-07-25 10:02:00,29.675,133.567,19.22 +2017-07-25 10:17:00,29.0488,134.322,19.17 +2017-07-25 10:32:00,30.2125,135.057,19.11 +2017-07-25 10:47:00,28.9525,135.265,19.09 +2017-07-25 11:02:00,29.3862,135.025,19.07 +2017-07-25 11:17:00,28.85,134.712,19.04 +2017-07-25 11:32:00,29.2425,134.45,19.02 +2017-07-25 11:47:00,26.8662,134.215,18.98 +2017-07-25 12:02:00,29.0013,134.07,18.95 +2017-07-25 12:17:00,29.5775,133.375,18.92 +2017-07-25 12:32:00,27.2575,132.322,18.92 +2017-07-25 12:47:00,29.1937,131.522,18.95 +2017-07-25 13:02:00,27.1087,131.042,18.95 +2017-07-25 13:17:00,28.555,130.867,18.93 +2017-07-25 13:32:00,29.5312,130.742,18.94 +2017-07-25 13:47:00,29.7762,130.537,18.95 +2017-07-25 14:02:00,28.8512,130.37,18.94 +2017-07-25 14:17:00,28.31,130.375,18.95 +2017-07-25 14:32:00,28.6537,130.78,18.93 +2017-07-25 14:47:00,29.385,132.075,18.91 +2017-07-25 15:02:00,28.11,134.627,18.91 +2017-07-25 15:17:00,31.2438,138.122,18.92 +2017-07-25 15:32:00,29.6263,142.47,18.93 +2017-07-25 15:47:00,24.6087,153.91,18.94 +2017-07-25 16:02:00,29.3375,162.508,18.94 +2017-07-25 16:17:00,29.8275,168.562,18.91 +2017-07-25 16:32:00,30.2087,172.982,18.91 +2017-07-25 16:47:00,29.8737,176.22,18.9 +2017-07-25 17:02:00,31.4437,178.66,18.88 +2017-07-25 17:17:00,29.0462,180.655,18.86 +2017-07-25 17:32:00,31.2937,182.415,18.84 +2017-07-25 17:47:00,29.7262,183.927,18.79 +2017-07-25 18:02:00,31.345,185.128,18.74 +2017-07-25 18:17:00,31.69,186.342,18.68 +2017-07-25 18:32:00,30.8538,187.492,18.63 +2017-07-25 18:47:00,33.9512,188.702,18.57 +2017-07-25 19:02:00,29.63,189.53,18.52 +2017-07-25 19:17:00,30.0225,190.367,18.47 +2017-07-25 19:32:00,29.7775,191.545,18.44 +2017-07-25 19:47:00,29.6237,192.3,18.39 +2017-07-25 20:02:00,30.4613,192.98,18.35 +2017-07-25 20:17:00,31.2412,194.645,18.33 +2017-07-25 20:32:00,30.3087,196.202,18.31 +2017-07-25 20:47:00,31.24,197.572,18.29 +2017-07-25 21:02:00,30.2625,198.83,18.26 +2017-07-25 21:17:00,31.3913,201.422,18.24 +2017-07-25 21:32:00,32.3825,203.767,18.21 +2017-07-25 21:47:00,27.7562,206.297,18.17 +2017-07-25 22:02:00,31.0413,207.965,18.13 +2017-07-25 22:17:00,30.8538,209.96,18.09 +2017-07-25 22:32:00,30.265,211.607,18.05 +2017-07-25 22:47:00,31.9912,213.25,18.01 +2017-07-25 23:02:00,31.5437,214.975,17.97 +2017-07-25 23:17:00,30.8988,216.265,17.91 +2017-07-25 23:32:00,30.9,217.503,17.85 +2017-07-25 23:47:00,29.7762,219.09,17.78 +2017-07-26 00:02:00,31.6912,221.285,17.7 +2017-07-26 00:17:00,30.21,222.475,17.61 +2017-07-26 00:32:00,31.6912,223.473,17.52 +2017-07-26 00:47:00,33.4088,224.652,17.41 +2017-07-26 01:02:00,32.1413,225.1,17.28 +2017-07-26 01:17:00,37.12,225.688,17.09 +2017-07-26 01:32:00,44.7612,226.637,16.9 +2017-07-26 01:47:00,52.3925,227.117,16.65 +2017-07-26 02:02:00,60.1987,227.827,16.41 +2017-07-26 02:17:00,68.2038,228.56,16.19 +2017-07-26 02:32:00,75.4725,229.205,16.0 +2017-07-26 02:47:00,80.1775,229.805,15.85 +2017-07-26 03:02:00,84.2375,230.17,15.73 +2017-07-26 03:17:00,84.475,230.75,15.61 +2017-07-26 03:32:00,84.9725,231.24,15.55 +2017-07-26 03:47:00,81.94,232.322,15.5 +2017-07-26 04:02:00,79.9312,232.557,15.48 +2017-07-26 04:17:00,78.5663,232.987,15.47 +2017-07-26 04:32:00,75.705,234.892,15.48 +2017-07-26 04:47:00,73.9562,235.805,15.51 +2017-07-26 05:02:00,69.695,236.205,15.53 +2017-07-26 05:17:00,68.7075,236.512,15.56 +2017-07-26 05:32:00,66.5212,236.857,15.58 +2017-07-26 05:47:00,65.2,237.072,15.58 +2017-07-26 06:02:00,63.9375,237.525,15.58 +2017-07-26 06:17:00,63.4437,237.715,15.57 +2017-07-26 06:32:00,65.1012,238.467,15.55 +2017-07-26 06:47:00,65.4412,239.05,15.54 +2017-07-26 07:02:00,65.4837,239.172,15.53 +2017-07-26 07:17:00,66.32,239.602,15.51 +2017-07-26 07:32:00,66.42,239.967,15.48 +2017-07-26 07:47:00,67.3162,240.577,15.44 +2017-07-26 08:02:00,66.1287,241.08,15.42 +2017-07-26 08:17:00,69.005,241.767,15.41 +2017-07-26 08:32:00,68.3625,243.025,15.43 +2017-07-26 08:47:00,68.4625,243.435,15.39 +2017-07-26 09:02:00,70.7837,243.745,15.37 +2017-07-26 09:17:00,70.785,244.193,15.34 +2017-07-26 09:32:00,70.3875,244.385,15.32 +2017-07-26 09:47:00,70.49,244.795,15.31 +2017-07-26 10:02:00,74.5,245.055,15.3 +2017-07-26 10:17:00,76.0462,245.477,15.28 +2017-07-26 10:32:00,78.8062,245.625,15.28 +2017-07-26 10:47:00,77.9238,245.997,15.28 +2017-07-26 11:02:00,79.4462,246.505,15.29 +2017-07-26 11:17:00,79.78,246.842,15.32 +2017-07-26 11:32:00,80.2787,247.1,15.32 +2017-07-26 11:47:00,81.4037,247.51,15.32 +2017-07-26 12:02:00,78.9512,247.837,15.34 +2017-07-26 12:17:00,82.5762,248.107,15.37 +2017-07-26 12:32:00,79.6312,248.727,15.38 +2017-07-26 12:47:00,78.4675,249.22,15.39 +2017-07-26 13:02:00,80.2762,249.575,15.41 +2017-07-26 13:17:00,78.6113,249.96,15.42 +2017-07-26 13:32:00,75.52,250.427,15.44 +2017-07-26 13:47:00,77.5762,250.68,15.45 +2017-07-26 14:02:00,76.8337,251.195,15.46 +2017-07-26 14:17:00,75.805,251.405,15.48 +2017-07-26 14:32:00,74.7425,251.658,15.51 +2017-07-26 14:47:00,75.325,252.003,15.52 +2017-07-26 15:02:00,74.0537,252.318,15.52 +2017-07-26 15:17:00,72.12,252.725,15.52 +2017-07-26 15:32:00,72.2675,253.11,15.53 +2017-07-26 15:47:00,70.1437,253.38,15.53 +2017-07-26 16:02:00,68.7588,253.637,15.54 +2017-07-26 16:17:00,69.3037,254.055,15.54 +2017-07-26 16:32:00,70.6888,254.027,15.54 +2017-07-26 16:47:00,68.81,254.497,15.55 +2017-07-26 17:02:00,69.3962,254.645,15.54 +2017-07-26 17:17:00,68.46,255.2,15.54 +2017-07-26 17:32:00,67.3612,255.48,15.54 +2017-07-26 17:47:00,67.9512,255.73,15.54 +2017-07-26 18:02:00,67.3063,256.035,15.54 +2017-07-26 18:17:00,67.8,256.37,15.54 +2017-07-26 18:32:00,66.37,256.7,15.54 +2017-07-26 18:47:00,69.7462,256.885,15.53 +2017-07-26 19:02:00,67.2575,257.137,15.51 +2017-07-26 19:17:00,66.5225,257.39,15.5 +2017-07-26 19:32:00,65.5863,257.677,15.48 +2017-07-26 19:47:00,63.9375,257.865,15.46 +2017-07-26 20:02:00,66.5225,258.11,15.45 +2017-07-26 20:17:00,65.6813,258.367,15.43 +2017-07-26 20:32:00,64.7962,258.632,15.41 +2017-07-26 20:47:00,64.7012,258.86,15.4 +2017-07-26 21:02:00,64.4987,259.045,15.38 +2017-07-26 21:17:00,63.94,259.335,15.36 +2017-07-26 21:32:00,63.39,259.602,15.35 +2017-07-26 21:47:00,64.3988,259.835,15.34 +2017-07-26 22:02:00,63.1862,260.175,15.34 +2017-07-26 22:17:00,63.1387,260.432,15.34 +2017-07-26 22:32:00,63.4975,260.755,15.34 +2017-07-26 22:47:00,62.745,261.0,15.35 +2017-07-26 23:02:00,63.2363,261.09,15.35 +2017-07-26 23:17:00,62.6525,261.295,15.35 +2017-07-26 23:32:00,62.7475,261.405,15.35 +2017-07-26 23:47:00,62.9463,261.645,15.35 +2017-07-27 00:02:00,63.6475,261.732,15.35 +2017-07-27 00:17:00,62.9938,261.96,15.34 +2017-07-27 00:32:00,62.9912,262.147,15.32 +2017-07-27 00:47:00,60.4975,262.438,15.31 +2017-07-27 01:02:00,63.7462,262.667,15.29 +2017-07-27 01:17:00,63.94,262.915,15.28 +2017-07-27 01:32:00,64.0387,263.098,15.26 +2017-07-27 01:47:00,66.035,263.307,15.25 +2017-07-27 02:02:00,65.2475,263.475,15.23 +2017-07-27 02:17:00,66.3213,263.647,15.22 +2017-07-27 02:32:00,66.8187,263.837,15.2 +2017-07-27 02:47:00,69.3937,263.952,15.19 +2017-07-27 03:02:00,67.0125,264.237,15.18 +2017-07-27 03:17:00,70.7362,264.482,15.16 +2017-07-27 03:32:00,72.475,264.682,15.15 +2017-07-27 03:47:00,75.995,264.875,15.15 +2017-07-27 04:02:00,72.17,265.09,15.14 +2017-07-27 04:17:00,72.3213,265.29,15.14 +2017-07-27 04:32:00,75.2275,265.445,15.14 +2017-07-27 04:47:00,74.005,265.65,15.14 +2017-07-27 05:02:00,78.855,265.837,15.16 +2017-07-27 05:17:00,76.145,265.985,15.18 +2017-07-27 05:32:00,77.68,266.11,15.2 +2017-07-27 05:47:00,78.0675,266.257,15.21 +2017-07-27 06:02:00,76.2937,266.285,15.23 +2017-07-27 06:17:00,76.73,266.562,15.26 +2017-07-27 06:32:00,79.0513,266.78,15.28 +2017-07-27 06:47:00,76.935,266.952,15.3 +2017-07-27 07:02:00,78.3212,267.095,15.31 +2017-07-27 07:17:00,79.0,267.247,15.33 +2017-07-27 07:32:00,77.0825,267.445,15.34 +2017-07-27 07:47:00,79.1962,267.672,15.36 +2017-07-27 08:02:00,78.565,267.84,15.37 +2017-07-27 08:17:00,74.195,268.022,15.4 +2017-07-27 08:32:00,75.1762,268.195,15.41 +2017-07-27 08:47:00,74.3875,268.39,15.43 +2017-07-27 09:02:00,76.6812,268.522,15.45 +2017-07-27 09:17:00,74.195,268.555,15.46 +2017-07-27 09:32:00,74.2412,268.635,15.47 +2017-07-27 09:47:00,73.7087,268.67,15.49 +2017-07-27 10:02:00,74.4412,268.785,15.49 +2017-07-27 10:17:00,74.93,268.913,15.5 +2017-07-27 10:32:00,72.2237,269.035,15.52 +2017-07-27 10:47:00,73.3587,269.23,15.54 +2017-07-27 11:02:00,72.6112,269.315,15.56 +2017-07-27 11:17:00,74.05,269.42,15.57 +2017-07-27 11:32:00,73.0187,269.525,15.59 +2017-07-27 11:47:00,71.52,269.632,15.6 +2017-07-27 12:02:00,71.565,269.75,15.61 +2017-07-27 12:17:00,72.665,269.885,15.62 +2017-07-27 12:32:00,72.2687,270.0,15.64 +2017-07-27 12:47:00,72.4725,270.132,15.66 +2017-07-27 13:02:00,71.4712,270.335,15.72 +2017-07-27 13:17:00,70.6375,270.517,15.73 +2017-07-27 13:32:00,71.0212,270.605,15.76 +2017-07-27 13:47:00,70.0,270.8,15.79 +2017-07-27 14:02:00,69.3975,270.985,15.79 +2017-07-27 14:17:00,68.86,271.195,15.81 +2017-07-27 14:32:00,69.5412,271.285,15.84 +2017-07-27 14:47:00,66.2262,271.447,15.83 +2017-07-27 15:02:00,66.97,271.625,15.84 +2017-07-27 15:17:00,66.3725,271.87,15.86 +2017-07-27 15:32:00,67.0638,272.085,15.87 +2017-07-27 15:47:00,66.77,272.267,15.87 +2017-07-27 16:02:00,67.1612,272.503,15.87 +2017-07-27 16:17:00,65.5863,272.747,15.88 +2017-07-27 16:32:00,65.2,272.947,15.88 +2017-07-27 16:47:00,65.2475,273.19,15.88 +2017-07-27 17:02:00,63.9863,273.497,15.87 +2017-07-27 17:17:00,65.485,273.973,15.85 +2017-07-27 17:32:00,64.6512,274.277,15.95 +2017-07-27 17:47:00,63.7912,274.32,15.87 +2017-07-27 18:02:00,63.4388,274.445,15.82 +2017-07-27 18:17:00,62.9938,274.64,15.81 +2017-07-27 18:32:00,62.9463,274.705,15.8 +2017-07-27 18:47:00,62.95,274.827,15.78 +2017-07-27 19:02:00,62.4463,274.992,15.77 +2017-07-27 19:17:00,62.3462,275.182,15.75 +2017-07-27 19:32:00,62.4463,275.253,15.73 +2017-07-27 19:47:00,61.805,275.492,15.72 +2017-07-27 20:02:00,61.0762,275.647,15.71 +2017-07-27 20:17:00,60.69,275.732,15.7 +2017-07-27 20:32:00,61.0812,275.913,15.68 +2017-07-27 20:47:00,59.4637,275.97,15.67 +2017-07-27 21:02:00,61.0312,276.085,15.66 +2017-07-27 21:17:00,60.3012,276.21,15.64 +2017-07-27 21:32:00,59.5112,276.31,15.62 +2017-07-27 21:47:00,59.7012,276.435,15.61 +2017-07-27 22:02:00,59.6587,276.507,15.6 +2017-07-27 22:17:00,59.4125,276.642,15.58 +2017-07-27 22:32:00,58.5812,276.712,15.58 +2017-07-27 22:47:00,59.0675,276.827,15.6 +2017-07-27 23:02:00,58.6825,276.915,15.59 +2017-07-27 23:17:00,58.0387,276.943,15.59 +2017-07-27 23:32:00,57.7912,277.092,15.58 +2017-07-27 23:47:00,58.4863,277.24,15.56 +2017-07-28 00:02:00,58.0362,277.378,15.54 +2017-07-28 00:17:00,57.6462,277.467,15.54 +2017-07-28 00:32:00,57.6837,277.517,15.53 +2017-07-28 00:47:00,57.4938,277.62,15.53 +2017-07-28 01:02:00,56.65,277.707,15.54 +2017-07-28 01:17:00,56.6,277.753,15.55 +2017-07-28 01:32:00,57.045,277.832,15.57 +2017-07-28 01:47:00,57.1437,277.88,15.59 +2017-07-28 02:02:00,57.04,277.975,15.6 +2017-07-28 02:17:00,56.5987,278.033,15.61 +2017-07-28 02:32:00,56.0,278.112,15.62 +2017-07-28 02:47:00,56.7425,278.205,15.63 +2017-07-28 03:02:00,56.895,278.262,15.64 +2017-07-28 03:17:00,55.5125,278.38,15.65 +2017-07-28 03:32:00,56.0488,278.465,15.65 +2017-07-28 03:47:00,55.9487,278.538,15.66 +2017-07-28 04:02:00,55.6575,278.632,15.67 +2017-07-28 04:17:00,54.8725,278.757,15.67 +2017-07-28 04:32:00,54.5775,278.792,15.68 +2017-07-28 04:47:00,54.9212,278.87,15.69 +2017-07-28 05:02:00,54.9238,278.922,15.7 +2017-07-28 05:17:00,54.7775,278.938,15.7 +2017-07-28 05:32:00,54.1037,278.962,15.72 +2017-07-28 05:47:00,54.5788,279.047,15.72 +2017-07-28 06:02:00,54.34,279.167,15.74 +2017-07-28 06:17:00,54.2988,279.172,15.76 +2017-07-28 06:32:00,53.8587,279.24,15.76 +2017-07-28 06:47:00,53.66,279.31,15.78 +2017-07-28 07:02:00,54.4825,279.408,15.78 +2017-07-28 07:17:00,54.2462,279.425,15.79 +2017-07-28 07:32:00,54.0537,279.432,15.8 +2017-07-28 07:47:00,53.7125,279.47,15.82 +2017-07-28 08:02:00,54.0537,279.565,15.82 +2017-07-28 08:17:00,54.2937,279.63,15.85 +2017-07-28 08:32:00,53.9112,279.745,15.88 +2017-07-28 08:47:00,54.1975,279.76,15.92 +2017-07-28 09:02:00,53.1287,279.707,15.97 +2017-07-28 09:17:00,53.125,279.842,16.0 +2017-07-28 09:32:00,53.0262,279.788,16.02 +2017-07-28 09:47:00,53.3213,279.855,16.04 +2017-07-28 10:02:00,53.2762,279.88,16.07 +2017-07-28 10:17:00,52.5375,279.815,16.12 +2017-07-28 10:32:00,52.2387,279.842,16.19 +2017-07-28 10:47:00,52.6837,279.832,16.22 +2017-07-28 11:02:00,52.345,279.857,16.26 +2017-07-28 11:17:00,52.4938,279.973,16.3 +2017-07-28 11:32:00,52.3925,279.977,16.32 +2017-07-28 11:47:00,52.045,279.842,16.33 +2017-07-28 12:02:00,51.605,279.922,16.35 +2017-07-28 12:17:00,51.6075,279.973,16.38 +2017-07-28 12:32:00,51.45,279.957,16.42 +2017-07-28 12:47:00,51.605,280.015,16.47 +2017-07-28 13:02:00,51.5563,279.997,16.51 +2017-07-28 13:17:00,51.9037,279.935,16.55 +2017-07-28 13:32:00,50.91,280.003,16.58 +2017-07-28 13:47:00,51.4525,280.015,16.62 +2017-07-28 14:02:00,51.16,279.922,16.65 +2017-07-28 14:17:00,51.01,279.913,16.66 +2017-07-28 14:32:00,50.9625,279.925,16.66 +2017-07-28 14:47:00,49.89,279.938,16.67 +2017-07-28 15:02:00,52.0462,279.878,16.69 +2017-07-28 15:17:00,50.285,279.832,16.7 +2017-07-28 15:32:00,50.5163,279.902,16.7 +2017-07-28 15:47:00,51.0075,279.84,16.69 +2017-07-28 16:02:00,50.3787,279.777,16.68 +2017-07-28 16:17:00,51.605,279.79,16.67 +2017-07-28 16:32:00,51.5,279.73,16.66 +2017-07-28 16:47:00,50.3763,279.715,16.65 +2017-07-28 17:02:00,52.045,279.725,16.66 +2017-07-28 17:17:00,51.2513,279.62,16.66 +2017-07-28 17:32:00,50.8075,279.605,16.67 +2017-07-28 17:47:00,51.5512,279.577,16.68 +2017-07-28 18:02:00,51.6037,279.492,16.67 +2017-07-28 18:17:00,50.6113,279.465,16.67 +2017-07-28 18:32:00,51.005,279.342,16.66 +2017-07-28 18:47:00,50.1338,279.277,16.65 +2017-07-28 19:02:00,51.8,279.227,16.63 +2017-07-28 19:17:00,50.8562,279.142,16.62 +2017-07-28 19:32:00,51.2038,279.047,16.59 +2017-07-28 19:47:00,50.0863,278.908,16.57 +2017-07-28 20:02:00,51.2513,278.872,16.54 +2017-07-28 20:17:00,50.76,278.855,16.52 +2017-07-28 20:32:00,50.8625,278.73,16.5 +2017-07-28 20:47:00,51.2087,278.637,16.49 +2017-07-28 21:02:00,50.0413,278.622,16.47 +2017-07-28 21:17:00,51.5525,278.527,16.44 +2017-07-28 21:32:00,50.2837,278.415,16.42 +2017-07-28 21:47:00,50.1825,278.32,16.4 +2017-07-28 22:02:00,51.1637,278.223,16.38 +2017-07-28 22:17:00,50.81,278.003,16.37 +2017-07-28 22:32:00,50.185,277.932,16.36 +2017-07-28 22:47:00,50.2775,277.855,16.34 +2017-07-28 23:02:00,50.04,277.775,16.33 +2017-07-28 23:17:00,49.4037,277.63,16.32 +2017-07-28 23:32:00,50.135,277.585,16.31 +2017-07-28 23:47:00,50.1387,277.447,16.29 +2017-07-29 00:02:00,50.61,277.477,16.27 +2017-07-29 00:17:00,49.4062,277.295,16.25 +2017-07-29 00:32:00,49.4538,277.19,16.23 +2017-07-29 00:47:00,49.5525,277.025,16.21 +2017-07-29 01:02:00,49.1038,276.87,16.2 +2017-07-29 01:17:00,49.355,276.805,16.19 +2017-07-29 01:32:00,48.6675,276.65,16.18 +2017-07-29 01:47:00,48.6263,276.507,16.17 +2017-07-29 02:02:00,49.4012,276.43,16.16 +2017-07-29 02:17:00,49.0563,276.225,16.16 +2017-07-29 02:32:00,48.0337,276.042,16.15 +2017-07-29 02:47:00,48.5737,275.812,16.15 +2017-07-29 03:02:00,48.6725,275.712,16.14 +2017-07-29 03:17:00,48.8637,275.555,16.13 +2017-07-29 03:32:00,48.2787,275.427,16.13 +2017-07-29 03:47:00,48.5275,275.257,16.12 +2017-07-29 04:02:00,48.1813,275.075,16.12 +2017-07-29 04:17:00,49.3037,274.922,16.1 +2017-07-29 04:32:00,47.6362,274.74,16.09 +2017-07-29 04:47:00,47.2925,274.562,16.1 +2017-07-29 05:02:00,47.3875,274.348,16.1 +2017-07-29 05:17:00,47.2875,274.142,16.09 +2017-07-29 05:32:00,47.1975,273.905,16.09 +2017-07-29 05:47:00,46.9463,273.71,16.09 +2017-07-29 06:02:00,47.8412,273.435,16.09 +2017-07-29 06:17:00,46.6537,273.253,16.11 +2017-07-29 06:32:00,48.28,272.97,16.12 +2017-07-29 06:47:00,47.935,272.72,16.13 +2017-07-29 07:02:00,47.2,272.562,16.14 +2017-07-29 07:17:00,47.2925,272.217,16.16 +2017-07-29 07:32:00,46.8988,272.017,16.19 +2017-07-29 07:47:00,46.9012,271.745,16.22 +2017-07-29 08:02:00,46.4637,271.54,16.27 +2017-07-29 08:17:00,47.245,271.297,16.28 +2017-07-29 08:32:00,46.6038,271.017,16.31 +2017-07-29 08:47:00,48.1325,270.805,16.32 +2017-07-29 09:02:00,46.6525,270.538,16.31 +2017-07-29 09:17:00,46.605,270.253,16.34 +2017-07-29 09:32:00,46.7537,269.987,16.35 +2017-07-29 09:47:00,45.29,269.54,16.36 +2017-07-29 10:02:00,46.2225,269.295,16.38 +2017-07-29 10:17:00,46.6025,268.955,16.44 +2017-07-29 10:32:00,46.0713,268.725,16.52 +2017-07-29 10:47:00,45.8725,268.357,16.61 +2017-07-29 11:02:00,45.8175,268.06,16.7 +2017-07-29 11:17:00,47.2962,267.742,16.76 +2017-07-29 11:32:00,45.8725,267.42,16.83 +2017-07-29 11:47:00,46.9512,267.04,16.86 +2017-07-29 12:02:00,44.9525,266.72,16.87 +2017-07-29 12:17:00,45.0925,266.3,16.94 +2017-07-29 12:32:00,46.215,265.95,17.04 +2017-07-29 12:47:00,46.6012,265.565,17.11 +2017-07-29 13:02:00,44.8125,265.217,17.16 +2017-07-29 13:17:00,44.7637,264.85,17.21 +2017-07-29 13:32:00,44.62,264.455,17.24 +2017-07-29 13:47:00,45.68,264.068,17.28 +2017-07-29 14:02:00,45.9688,263.585,17.32 +2017-07-29 14:17:00,45.7762,263.215,17.35 +2017-07-29 14:32:00,45.4837,262.762,17.39 +2017-07-29 14:47:00,45.1912,262.288,17.44 +2017-07-29 15:02:00,44.86,261.867,17.5 +2017-07-29 15:17:00,44.9987,261.492,17.54 +2017-07-29 15:32:00,44.3775,261.04,17.57 +2017-07-29 15:47:00,45.09,260.575,17.59 +2017-07-29 16:02:00,45.3875,260.145,17.6 +2017-07-29 16:17:00,45.8225,259.77,17.61 +2017-07-29 16:32:00,44.2312,259.47,17.64 +2017-07-29 16:47:00,45.3862,259.1,17.67 +2017-07-29 17:02:00,44.6175,258.69,17.68 +2017-07-29 17:17:00,45.3412,258.137,17.68 +2017-07-29 17:32:00,44.5238,257.715,17.67 +2017-07-29 17:47:00,44.715,257.36,17.66 +2017-07-29 18:02:00,44.57,256.922,17.64 +2017-07-29 18:17:00,45.1888,256.605,17.62 +2017-07-29 18:32:00,44.8112,256.297,17.6 +2017-07-29 18:47:00,44.6663,255.927,17.58 +2017-07-29 19:02:00,45.6338,255.58,17.56 +2017-07-29 19:17:00,44.7113,255.29,17.54 +2017-07-29 19:32:00,44.8112,254.975,17.52 +2017-07-29 19:47:00,45.3387,254.63,17.51 +2017-07-29 20:02:00,44.325,254.38,17.49 +2017-07-29 20:17:00,44.8125,254.085,17.49 +2017-07-29 20:32:00,44.9075,253.825,17.49 +2017-07-29 20:47:00,43.4125,253.517,17.48 +2017-07-29 21:02:00,44.9525,253.172,17.46 +2017-07-29 21:17:00,43.8462,252.827,17.43 +2017-07-29 21:32:00,45.0,252.525,17.38 +2017-07-29 21:47:00,43.1362,252.2,17.33 +2017-07-29 22:02:00,43.605,251.92,17.3 +2017-07-29 22:17:00,43.845,251.572,17.27 +2017-07-29 22:32:00,43.9437,251.327,17.24 +2017-07-29 22:47:00,44.3763,251.003,17.21 +2017-07-29 23:02:00,43.9887,250.7,17.19 +2017-07-29 23:17:00,44.0912,250.417,17.17 +2017-07-29 23:32:00,44.5725,250.09,17.16 +2017-07-29 23:47:00,43.6963,249.882,17.14 +2017-07-30 00:02:00,42.9875,249.56,17.13 +2017-07-30 00:17:00,43.1775,249.283,17.13 +2017-07-30 00:32:00,43.5088,248.997,17.12 +2017-07-30 00:47:00,43.0413,248.688,17.12 +2017-07-30 01:02:00,43.845,248.405,17.11 +2017-07-30 01:17:00,43.6038,248.09,17.11 +2017-07-30 01:32:00,44.0863,247.723,17.11 +2017-07-30 01:47:00,43.23,247.43,17.11 +2017-07-30 02:02:00,43.6975,247.12,17.11 +2017-07-30 02:17:00,43.135,246.8,17.11 +2017-07-30 02:32:00,43.1338,246.542,17.1 +2017-07-30 02:47:00,43.6987,246.2,17.1 +2017-07-30 03:02:00,44.6113,245.865,17.09 +2017-07-30 03:17:00,43.505,245.582,17.07 +2017-07-30 03:32:00,44.0912,245.34,17.06 +2017-07-30 03:47:00,43.32,245.047,17.04 +2017-07-30 04:02:00,43.795,244.86,17.03 +2017-07-30 04:17:00,43.0875,244.607,17.02 +2017-07-30 04:32:00,43.3675,244.322,17.01 +2017-07-30 04:47:00,43.9925,244.05,17.01 +2017-07-30 05:02:00,42.8913,243.64,17.01 +2017-07-30 05:17:00,44.1375,243.345,17.02 +2017-07-30 05:32:00,43.1813,242.995,17.03 +2017-07-30 05:47:00,42.7925,242.682,17.05 +2017-07-30 06:02:00,43.4562,242.372,17.08 +2017-07-30 06:17:00,43.325,242.047,17.1 +2017-07-30 06:32:00,42.6963,241.758,17.11 +2017-07-30 06:47:00,42.7925,241.438,17.13 +2017-07-30 07:02:00,43.555,241.12,17.18 +2017-07-30 07:17:00,42.795,240.945,17.2 +2017-07-30 07:32:00,42.7,240.63,17.21 +2017-07-30 07:47:00,42.7462,240.322,17.23 +2017-07-30 08:02:00,43.0825,240.04,17.26 +2017-07-30 08:17:00,42.6963,239.69,17.32 +2017-07-30 08:32:00,43.3688,239.41,17.37 +2017-07-30 08:47:00,42.26,239.167,17.4 +2017-07-30 09:02:00,43.1338,238.867,17.44 +2017-07-30 09:17:00,42.8937,238.427,17.49 +2017-07-30 09:32:00,43.3262,238.125,17.56 +2017-07-30 09:47:00,42.6038,237.875,17.64 +2017-07-30 10:02:00,42.3138,237.58,17.72 +2017-07-30 10:17:00,41.9637,237.197,17.77 +2017-07-30 10:32:00,42.555,236.935,17.85 +2017-07-30 10:47:00,42.5062,236.732,17.92 +2017-07-30 11:02:00,42.2125,236.495,18.0 +2017-07-30 11:17:00,41.87,236.09,18.07 +2017-07-30 11:32:00,43.04,235.79,18.13 +2017-07-30 11:47:00,42.7462,235.517,18.21 +2017-07-30 12:02:00,42.1125,235.13,18.27 +2017-07-30 12:17:00,41.7225,234.735,18.29 +2017-07-30 12:32:00,42.9437,234.37,18.31 +2017-07-30 12:47:00,41.8187,233.86,18.39 +2017-07-30 13:02:00,42.0125,233.602,18.48 +2017-07-30 13:17:00,42.4575,233.098,18.56 +2017-07-30 13:32:00,42.3587,232.943,18.62 +2017-07-30 13:47:00,41.9625,232.592,18.66 +2017-07-30 14:02:00,42.1113,232.315,18.67 +2017-07-30 14:17:00,42.3575,232.005,18.75 +2017-07-30 14:32:00,41.6712,231.598,18.8 +2017-07-30 14:47:00,41.7237,231.302,18.83 +2017-07-30 15:02:00,41.6725,231.042,18.87 +2017-07-30 15:17:00,42.3125,230.633,18.89 +2017-07-30 15:32:00,41.5225,230.295,18.93 +2017-07-30 15:47:00,41.7225,230.047,18.95 +2017-07-30 16:02:00,41.2738,229.832,18.99 +2017-07-30 16:17:00,41.575,229.415,19.05 +2017-07-30 16:32:00,41.3237,229.115,19.09 +2017-07-30 16:47:00,42.4562,228.825,19.12 +2017-07-30 17:02:00,41.1775,228.525,19.13 +2017-07-30 17:17:00,41.965,228.197,19.12 +2017-07-30 17:32:00,42.2125,227.49,19.1 +2017-07-30 17:47:00,40.8937,225.995,19.08 +2017-07-30 18:02:00,41.1275,224.535,19.07 +2017-07-30 18:17:00,40.9887,223.88,19.07 +2017-07-30 18:32:00,41.82,223.61,19.05 +2017-07-30 18:47:00,42.0125,223.312,19.04 +2017-07-30 19:02:00,41.5762,223.235,19.03 +2017-07-30 19:17:00,42.2137,223.172,19.01 +2017-07-30 19:32:00,41.9175,223.06,18.98 +2017-07-30 19:47:00,40.8862,223.03,18.95 +2017-07-30 20:02:00,41.23,222.872,18.9 +2017-07-30 20:17:00,41.6237,222.848,18.86 +2017-07-30 20:32:00,41.725,222.762,18.82 +2017-07-30 20:47:00,41.2837,222.688,18.79 +2017-07-30 21:02:00,41.8675,222.628,18.76 +2017-07-30 21:17:00,42.7475,222.617,18.74 +2017-07-30 21:32:00,41.625,222.565,18.73 +2017-07-30 21:47:00,40.7412,222.44,18.72 +2017-07-30 22:02:00,41.9613,222.305,18.71 +2017-07-30 22:17:00,42.0638,222.128,18.69 +2017-07-30 22:32:00,43.0887,221.982,18.68 +2017-07-30 22:47:00,41.475,221.812,18.67 +2017-07-30 23:02:00,40.5062,221.693,18.65 +2017-07-30 23:17:00,38.8875,221.512,18.63 +2017-07-30 23:32:00,42.1137,221.387,18.61 +2017-07-30 23:47:00,40.5938,221.255,18.58 +2017-07-31 00:02:00,40.3112,221.1,18.54 +2017-07-31 00:17:00,40.4512,220.997,18.51 +2017-07-31 00:32:00,41.4262,220.908,18.48 +2017-07-31 00:47:00,39.3913,220.825,18.46 +2017-07-31 01:02:00,40.7425,220.675,18.45 +2017-07-31 01:17:00,39.2913,220.485,18.44 +2017-07-31 01:32:00,40.265,220.305,18.43 +2017-07-31 01:47:00,41.04,220.17,18.43 +2017-07-31 02:02:00,42.4587,219.99,18.42 +2017-07-31 02:17:00,41.2787,219.84,18.4 +2017-07-31 02:32:00,40.0713,219.64,18.39 +2017-07-31 02:47:00,39.7837,219.457,18.37 +2017-07-31 03:02:00,40.8375,219.335,18.36 +2017-07-31 03:17:00,40.4962,219.152,18.35 +2017-07-31 03:32:00,39.9287,219.022,18.33 +2017-07-31 03:47:00,40.9863,218.94,18.32 +2017-07-31 04:02:00,40.8425,218.812,18.31 +2017-07-31 04:17:00,42.01,218.702,18.29 +2017-07-31 04:32:00,39.83,218.557,18.28 +2017-07-31 04:47:00,41.3737,218.4,18.26 +2017-07-31 05:02:00,38.6537,218.265,18.23 +2017-07-31 05:17:00,39.63,218.045,18.22 +2017-07-31 05:32:00,40.8887,217.825,18.2 +2017-07-31 05:47:00,40.4525,217.58,18.19 +2017-07-31 06:02:00,39.6775,217.322,18.18 +2017-07-31 06:17:00,40.6,217.075,18.17 +2017-07-31 06:32:00,40.9412,216.848,18.17 +2017-07-31 06:47:00,40.17,216.677,18.18 +2017-07-31 07:02:00,40.8425,216.495,18.18 +2017-07-31 07:17:00,40.3575,216.288,18.2 +2017-07-31 07:32:00,40.6937,216.122,18.22 +2017-07-31 07:47:00,39.9812,215.88,18.25 +2017-07-31 08:02:00,39.8825,215.595,18.28 +2017-07-31 08:17:00,40.0687,215.283,18.33 +2017-07-31 08:32:00,41.375,214.955,18.35 +2017-07-31 08:47:00,39.535,214.577,18.4 +2017-07-31 09:02:00,39.3363,214.182,18.44 +2017-07-31 09:17:00,39.2887,213.633,18.51 +2017-07-31 09:32:00,40.0262,212.887,18.55 +2017-07-31 09:47:00,39.3875,212.305,18.59 +2017-07-31 10:02:00,39.685,211.86,18.65 +2017-07-31 10:17:00,40.265,211.367,18.7 +2017-07-31 10:32:00,39.5825,210.94,18.76 +2017-07-31 10:47:00,40.1738,210.485,18.81 +2017-07-31 11:02:00,39.68,210.075,18.86 +2017-07-31 11:17:00,38.9863,209.637,18.92 +2017-07-31 11:32:00,39.44,209.285,18.93 +2017-07-31 11:47:00,40.5962,208.883,18.97 +2017-07-31 12:02:00,39.5337,208.517,19.08 +2017-07-31 12:17:00,39.2875,208.147,19.17 +2017-07-31 12:32:00,41.1813,206.633,19.19 +2017-07-31 12:47:00,39.7837,204.39,19.25 +2017-07-31 13:02:00,39.785,203.445,19.31 +2017-07-31 13:17:00,41.5275,202.94,19.37 +2017-07-31 13:32:00,37.9662,202.54,19.45 +2017-07-31 13:47:00,41.0387,202.307,19.51 +2017-07-31 14:02:00,40.4475,202.215,19.55 +2017-07-31 14:17:00,39.5375,202.057,19.59 +2017-07-31 14:32:00,39.1888,201.848,19.62 +2017-07-31 14:47:00,40.5037,201.628,19.65 +2017-07-31 15:02:00,40.8438,201.427,19.67 +2017-07-31 15:17:00,39.0887,201.205,19.7 +2017-07-31 15:32:00,39.2412,201.065,19.73 +2017-07-31 15:47:00,38.8387,200.943,19.75 +2017-07-31 16:02:00,41.4788,200.867,19.76 +2017-07-31 16:17:00,39.735,200.742,19.76 +2017-07-31 16:32:00,40.3587,200.607,19.74 +2017-07-31 16:47:00,39.535,200.555,19.75 +2017-07-31 17:02:00,38.0575,200.405,19.76 +2017-07-31 17:17:00,38.6987,200.262,19.76 +2017-07-31 17:32:00,39.34,200.008,19.77 +2017-07-31 17:47:00,38.7925,199.878,19.75 +2017-07-31 18:02:00,38.9412,199.71,19.73 +2017-07-31 18:17:00,38.99,199.562,19.71 +2017-07-31 18:32:00,39.5837,199.383,19.67 +2017-07-31 18:47:00,39.6963,199.185,19.64 +2017-07-31 19:02:00,40.2212,199.085,19.59 +2017-07-31 19:17:00,38.61,198.908,19.55 +2017-07-31 19:32:00,38.4562,198.765,19.53 +2017-07-31 19:47:00,38.46,198.605,19.51 +2017-07-31 20:02:00,39.0912,198.565,19.5 +2017-07-31 20:17:00,38.5025,198.5,19.48 +2017-07-31 20:32:00,38.5537,198.402,19.46 +2017-07-31 20:47:00,39.3887,198.37,19.44 +2017-07-31 21:02:00,39.29,198.262,19.41 +2017-07-31 21:17:00,40.6537,198.177,19.38 +2017-07-31 21:32:00,39.835,198.033,19.34 +2017-07-31 21:47:00,40.2663,197.855,19.3 +2017-07-31 22:02:00,38.505,197.617,19.26 +2017-07-31 22:17:00,39.3875,197.465,19.22 +2017-07-31 22:32:00,40.1725,197.337,19.18 +2017-07-31 22:47:00,39.9775,197.195,19.15 +2017-07-31 23:02:00,39.1888,197.052,19.11 +2017-07-31 23:17:00,39.6837,196.985,19.08 +2017-07-31 23:32:00,39.14,196.878,19.06 +2017-07-31 23:47:00,39.6325,196.777,19.04 +2017-08-01 00:02:00,40.2212,196.675,19.02 +2017-08-01 00:17:00,37.96,196.503,19.0 +2017-08-01 00:32:00,37.8125,196.335,18.99 +2017-08-01 00:47:00,38.9412,196.182,18.96 +2017-08-01 01:02:00,37.455,196.027,18.93 +2017-08-01 01:17:00,40.1212,195.862,18.91 +2017-08-01 01:32:00,38.605,195.625,18.86 +2017-08-01 01:47:00,41.3275,195.478,18.82 +2017-08-01 02:02:00,38.16,195.345,18.8 +2017-08-01 02:17:00,38.4075,195.262,18.78 +2017-08-01 02:32:00,38.01,195.23,18.75 +2017-08-01 02:47:00,39.3887,195.38,18.72 +2017-08-01 03:02:00,39.29,195.405,18.7 +2017-08-01 03:17:00,38.8363,195.387,18.69 +2017-08-01 03:32:00,39.4887,196.125,18.67 +2017-08-01 03:47:00,37.215,196.857,18.66 +2017-08-01 04:02:00,38.26,197.417,18.65 +2017-08-01 04:17:00,39.0325,197.917,18.72 +2017-08-01 04:32:00,39.4925,198.135,18.62 +2017-08-01 04:47:00,38.36,198.277,18.58 +2017-08-01 05:02:00,38.6038,198.425,18.59 +2017-08-01 05:17:00,36.245,198.508,18.6 +2017-08-01 05:32:00,37.5612,198.535,18.6 +2017-08-01 05:47:00,38.21,198.477,18.57 +2017-08-01 06:02:00,38.9875,198.227,18.56 +2017-08-01 06:17:00,39.4388,197.98,18.55 +2017-08-01 06:32:00,38.505,197.732,18.56 +2017-08-01 06:47:00,38.1137,197.5,18.57 +2017-08-01 07:02:00,38.6537,197.342,18.57 +2017-08-01 07:17:00,37.765,197.2,18.58 +2017-08-01 07:32:00,38.3575,197.05,18.57 +2017-08-01 07:47:00,38.4562,196.867,18.56 +2017-08-01 08:02:00,39.1912,196.682,18.56 +2017-08-01 08:17:00,38.9388,196.43,18.57 +2017-08-01 08:32:00,38.31,196.193,18.62 +2017-08-01 08:47:00,38.6975,196.015,18.66 +2017-08-01 09:02:00,38.1587,195.872,18.72 +2017-08-01 09:17:00,38.5563,195.815,18.76 +2017-08-01 09:32:00,39.0887,195.777,18.81 +2017-08-01 09:47:00,38.7913,195.675,18.85 +2017-08-01 10:02:00,38.105,195.535,18.89 +2017-08-01 10:17:00,36.6738,195.275,18.93 +2017-08-01 10:32:00,38.405,195.1,18.97 +2017-08-01 10:47:00,37.12,194.875,19.01 +2017-08-01 11:02:00,37.6637,194.71,19.07 +2017-08-01 11:17:00,37.9137,194.438,19.12 +2017-08-01 11:32:00,38.4075,194.225,19.14 +2017-08-01 11:47:00,37.4112,194.0,19.15 +2017-08-01 12:02:00,38.5537,193.818,19.14 +2017-08-01 12:17:00,37.6612,193.557,19.16 +2017-08-01 12:32:00,39.14,193.262,19.21 +2017-08-01 12:47:00,39.0863,192.955,19.26 +2017-08-01 13:02:00,38.6512,192.617,19.29 +2017-08-01 13:17:00,37.7125,192.202,19.34 +2017-08-01 13:32:00,38.1113,191.658,19.38 +2017-08-01 13:47:00,38.1062,191.068,19.46 +2017-08-01 14:02:00,38.3075,190.43,19.52 +2017-08-01 14:17:00,37.7637,189.66,19.58 +2017-08-01 14:32:00,37.6637,188.73,19.62 +2017-08-01 14:47:00,38.5037,187.825,19.64 +2017-08-01 15:02:00,36.575,186.737,19.63 +2017-08-01 15:17:00,38.65,185.747,19.62 +2017-08-01 15:32:00,38.1575,184.805,19.64 +2017-08-01 15:47:00,38.9875,183.938,19.64 +2017-08-01 16:02:00,37.4087,183.142,19.64 +2017-08-01 16:17:00,37.4112,182.417,19.64 +2017-08-01 16:32:00,38.7487,181.712,19.63 +2017-08-01 16:47:00,37.8637,180.96,19.61 +2017-08-01 17:02:00,38.6038,180.405,19.6 +2017-08-01 17:17:00,38.1062,179.917,19.59 +2017-08-01 17:32:00,37.1162,179.432,19.6 +2017-08-01 17:47:00,38.0088,179.07,19.6 +2017-08-01 18:02:00,37.9562,178.775,19.61 +2017-08-01 18:17:00,38.8862,178.628,19.59 +2017-08-01 18:32:00,37.405,178.51,19.56 +2017-08-01 18:47:00,36.4812,178.487,19.54 +2017-08-01 19:02:00,37.3112,178.56,19.52 +2017-08-01 19:17:00,38.3587,178.658,19.5 +2017-08-01 19:32:00,36.7762,178.855,19.47 +2017-08-01 19:47:00,38.3575,179.11,19.44 +2017-08-01 20:02:00,38.1562,179.427,19.41 +2017-08-01 20:17:00,37.9562,179.77,19.39 +2017-08-01 20:32:00,37.1175,180.082,19.38 +2017-08-01 20:47:00,37.02,180.325,19.36 +2017-08-01 21:02:00,38.7438,180.512,19.33 +2017-08-01 21:17:00,36.975,180.745,19.3 +2017-08-01 21:32:00,36.6738,180.943,19.28 +2017-08-01 21:47:00,38.16,181.085,19.27 +2017-08-01 22:02:00,38.405,181.21,19.26 +2017-08-01 22:17:00,39.1837,181.318,19.24 +2017-08-01 22:32:00,37.6075,181.44,19.25 +2017-08-01 22:47:00,39.5312,181.57,19.27 +2017-08-01 23:02:00,37.9087,181.695,19.3 +2017-08-01 23:17:00,40.94,181.832,19.34 +2017-08-01 23:32:00,40.6437,181.973,19.34 +2017-08-01 23:47:00,38.2612,182.117,19.32 +2017-08-02 00:02:00,39.44,182.28,19.26 +2017-08-02 00:17:00,38.0088,182.432,19.18 +2017-08-02 00:32:00,38.4575,182.6,19.08 +2017-08-02 00:47:00,38.5525,182.765,18.97 +2017-08-02 01:02:00,39.63,182.932,18.87 +2017-08-02 01:17:00,38.8887,183.177,18.79 +2017-08-02 01:32:00,36.4788,183.482,18.72 +2017-08-02 01:47:00,37.56,183.723,18.66 +2017-08-02 02:02:00,39.0337,183.955,18.61 +2017-08-02 02:17:00,37.5112,184.207,18.56 +2017-08-02 02:32:00,37.3087,184.427,18.52 +2017-08-02 02:47:00,38.1587,184.645,18.48 +2017-08-02 03:02:00,37.665,184.897,18.44 +2017-08-02 03:17:00,39.5812,185.085,18.4 +2017-08-02 03:32:00,37.3063,185.267,18.36 +2017-08-02 03:47:00,37.4075,185.44,18.33 +2017-08-02 04:02:00,37.56,185.628,18.31 +2017-08-02 04:17:00,37.4087,185.792,18.29 +2017-08-02 04:32:00,37.6612,186.392,18.27 +2017-08-02 04:47:00,37.2087,186.922,18.26 +2017-08-02 05:02:00,37.0687,187.147,18.26 +2017-08-02 05:17:00,35.9962,187.33,18.26 +2017-08-02 05:32:00,35.9987,187.467,18.27 +2017-08-02 05:47:00,37.4075,187.635,18.27 +2017-08-02 06:02:00,37.71,187.762,18.28 +2017-08-02 06:17:00,36.04,187.922,18.29 +2017-08-02 06:32:00,38.1587,188.047,18.3 +2017-08-02 06:47:00,36.92,188.193,18.31 +2017-08-02 07:02:00,37.66,188.33,18.32 +2017-08-02 07:17:00,37.9575,188.465,18.33 +2017-08-02 07:32:00,36.475,188.595,18.36 +2017-08-02 07:47:00,35.6062,188.74,18.37 +2017-08-02 08:02:00,35.9925,188.86,18.38 +2017-08-02 08:17:00,36.2875,188.975,18.41 +2017-08-02 08:32:00,37.16,189.09,18.46 +2017-08-02 08:47:00,36.6212,189.2,18.5 +2017-08-02 09:02:00,38.36,189.307,18.53 +2017-08-02 09:17:00,37.0612,189.405,18.59 +2017-08-02 09:32:00,37.21,189.517,18.65 +2017-08-02 09:47:00,36.3775,189.63,18.68 +2017-08-02 10:02:00,38.1575,189.717,18.68 +2017-08-02 10:17:00,36.6212,189.805,18.67 +2017-08-02 10:32:00,38.8387,190.1,18.71 +2017-08-02 10:47:00,38.0537,191.04,18.8 +2017-08-02 11:02:00,35.055,191.59,18.9 +2017-08-02 11:17:00,37.7113,191.902,18.94 +2017-08-02 11:32:00,38.055,192.027,18.99 +2017-08-02 11:47:00,35.6012,192.077,19.03 +2017-08-02 12:02:00,36.4725,192.135,19.07 +2017-08-02 12:17:00,36.6725,192.175,19.08 +2017-08-02 12:32:00,36.8688,192.197,19.08 +2017-08-02 12:47:00,35.8925,192.215,19.1 +2017-08-02 13:02:00,35.305,192.237,19.11 +2017-08-02 13:17:00,35.7937,192.228,19.14 +2017-08-02 13:32:00,36.5225,192.128,19.2 +2017-08-02 13:47:00,36.8213,191.987,19.24 +2017-08-02 14:02:00,36.38,191.812,19.27 +2017-08-02 14:17:00,37.21,191.612,19.31 +2017-08-02 14:32:00,35.7975,191.33,19.38 +2017-08-02 14:47:00,37.4575,190.992,19.49 +2017-08-02 15:02:00,36.0437,190.615,19.56 +2017-08-02 15:17:00,36.8675,190.125,19.6 +2017-08-02 15:32:00,37.3575,189.637,19.63 +2017-08-02 15:47:00,37.0225,189.223,19.64 +2017-08-02 16:02:00,36.3375,188.885,19.65 +2017-08-02 16:17:00,36.6712,188.492,19.65 +2017-08-02 16:32:00,36.8725,188.085,19.67 +2017-08-02 16:47:00,36.6712,187.647,19.69 +2017-08-02 17:02:00,37.7575,187.163,19.7 +2017-08-02 17:17:00,37.76,186.672,19.71 +2017-08-02 17:32:00,37.7113,186.182,19.71 +2017-08-02 17:47:00,36.19,185.702,19.71 +2017-08-02 18:02:00,38.3587,185.235,19.72 +2017-08-02 18:17:00,34.575,184.802,19.73 +2017-08-02 18:32:00,37.07,184.435,19.72 +2017-08-02 18:47:00,37.865,183.985,19.7 +2017-08-02 19:02:00,37.1188,183.545,19.65 +2017-08-02 19:17:00,35.8925,183.142,19.61 +2017-08-02 19:32:00,37.2612,182.777,19.57 +2017-08-02 19:47:00,36.9725,182.405,19.53 +2017-08-02 20:02:00,37.8112,182.085,19.5 +2017-08-02 20:17:00,37.2113,181.792,19.49 +2017-08-02 20:32:00,38.9837,181.555,19.49 +2017-08-02 20:47:00,38.4025,181.387,19.49 +2017-08-02 21:02:00,35.9437,181.217,19.48 +2017-08-02 21:17:00,37.7637,180.995,19.47 +2017-08-02 21:32:00,35.9463,180.767,19.45 +2017-08-02 21:47:00,36.4737,180.555,19.43 +2017-08-02 22:02:00,37.3625,180.357,19.41 +2017-08-02 22:17:00,39.185,180.165,19.37 +2017-08-02 22:32:00,37.1625,180.045,19.33 +2017-08-02 22:47:00,36.5262,179.895,19.28 +2017-08-02 23:02:00,36.0462,179.785,19.24 +2017-08-02 23:17:00,36.5262,179.753,19.19 +2017-08-02 23:32:00,38.8387,179.712,19.15 +2017-08-02 23:47:00,38.9875,179.705,19.12 +2017-08-03 00:02:00,36.8737,179.705,19.1 +2017-08-03 00:17:00,37.1637,179.67,19.08 +2017-08-03 00:32:00,37.8112,179.647,19.06 +2017-08-03 00:47:00,38.9375,179.625,19.04 +2017-08-03 01:02:00,38.4525,179.615,19.03 +2017-08-03 01:17:00,37.1663,179.598,19.02 +2017-08-03 01:32:00,37.02,179.547,19.0 +2017-08-03 01:47:00,36.92,179.508,18.99 +2017-08-03 02:02:00,36.48,179.495,18.98 +2017-08-03 02:17:00,37.4562,179.452,18.95 +2017-08-03 02:32:00,38.1575,179.42,18.92 +2017-08-03 02:47:00,38.26,179.34,18.89 +2017-08-03 03:02:00,36.0912,179.247,18.86 +2017-08-03 03:17:00,36.3363,179.167,18.83 +2017-08-03 03:32:00,37.02,179.057,18.8 +2017-08-03 03:47:00,38.2562,178.947,18.77 +2017-08-03 04:02:00,38.1012,178.848,18.75 +2017-08-03 04:17:00,38.6987,178.775,18.73 +2017-08-03 04:32:00,37.7125,178.695,18.72 +2017-08-03 04:47:00,37.1162,178.64,18.71 +2017-08-03 05:02:00,35.555,178.565,18.69 +2017-08-03 05:17:00,38.79,178.413,18.67 +2017-08-03 05:32:00,38.0112,178.228,18.65 +2017-08-03 05:47:00,37.96,177.985,18.64 +2017-08-03 06:02:00,38.1587,177.753,18.64 +2017-08-03 06:17:00,37.4587,177.51,18.63 +2017-08-03 06:32:00,38.555,177.33,18.62 +2017-08-03 06:47:00,37.4587,177.23,18.63 +2017-08-03 07:02:00,38.6025,177.095,18.65 +2017-08-03 07:17:00,36.5262,176.982,18.66 +2017-08-03 07:32:00,37.8138,176.9,18.68 +2017-08-03 07:47:00,37.4062,176.775,18.71 +2017-08-03 08:02:00,37.5075,176.635,18.72 +2017-08-03 08:17:00,39.88,176.445,18.72 +2017-08-03 08:32:00,37.165,176.247,18.73 +2017-08-03 08:47:00,37.9625,176.08,18.75 +2017-08-03 09:02:00,35.9425,175.865,18.77 +2017-08-03 09:17:00,36.67,175.723,18.8 +2017-08-03 09:32:00,36.4775,175.565,18.82 +2017-08-03 09:47:00,36.6263,175.44,18.83 +2017-08-03 10:02:00,38.055,175.228,18.84 +2017-08-03 10:17:00,38.9812,174.932,18.85 +2017-08-03 10:32:00,35.5987,174.555,18.86 +2017-08-03 10:47:00,38.5537,174.047,18.9 +2017-08-03 11:02:00,38.5512,172.42,18.93 +2017-08-03 11:17:00,36.92,170.17,18.96 +2017-08-03 11:32:00,37.4062,168.577,18.98 +2017-08-03 11:47:00,37.9562,167.297,19.04 +2017-08-03 12:02:00,36.7775,166.265,19.11 +2017-08-03 12:17:00,37.4062,165.41,19.17 +2017-08-03 12:32:00,37.51,164.667,19.23 +2017-08-03 12:47:00,36.6212,164.062,19.3 +2017-08-03 13:02:00,35.7988,163.517,19.38 +2017-08-03 13:17:00,38.155,163.13,19.45 +2017-08-03 13:32:00,36.3838,162.908,19.46 +2017-08-03 13:47:00,37.26,162.825,19.49 +2017-08-03 14:02:00,36.9725,162.682,19.52 +2017-08-03 14:17:00,36.7738,163.015,19.53 +2017-08-03 14:32:00,35.795,163.408,19.58 +2017-08-03 14:47:00,37.3087,163.83,19.62 +2017-08-03 15:02:00,36.0437,164.362,19.66 +2017-08-03 15:17:00,35.9475,164.95,19.7 +2017-08-03 15:32:00,38.2062,165.555,19.75 +2017-08-03 15:47:00,35.3075,166.272,19.82 +2017-08-03 16:02:00,35.9938,167.005,19.85 +2017-08-03 16:17:00,37.3613,167.582,19.89 +2017-08-03 16:32:00,37.7612,168.137,19.93 +2017-08-03 16:47:00,36.6212,168.737,19.96 +2017-08-03 17:02:00,37.2588,169.36,19.99 +2017-08-03 17:17:00,36.97,169.887,20.03 +2017-08-03 17:32:00,36.97,170.215,20.05 +2017-08-03 17:47:00,38.0062,170.475,20.05 +2017-08-03 18:02:00,38.1038,170.675,20.04 +2017-08-03 18:17:00,35.6462,170.822,20.03 +2017-08-03 18:32:00,37.6625,170.93,20.01 +2017-08-03 18:47:00,38.7438,171.017,19.98 +2017-08-03 19:02:00,37.71,171.103,19.94 +2017-08-03 19:17:00,35.1575,171.117,19.91 +2017-08-03 19:32:00,38.165,171.1,19.9 +2017-08-03 19:47:00,37.0225,170.98,19.87 +2017-08-03 20:02:00,35.7012,170.77,19.85 +2017-08-03 20:17:00,37.02,170.5,19.83 +2017-08-03 20:32:00,37.0737,170.193,19.79 +2017-08-03 20:47:00,37.2625,169.945,19.76 +2017-08-03 21:02:00,36.725,169.723,19.72 +2017-08-03 21:17:00,36.2412,169.487,19.68 +2017-08-03 21:32:00,38.2075,169.255,19.65 +2017-08-03 21:47:00,35.9475,169.035,19.61 +2017-08-03 22:02:00,36.8712,168.76,19.58 +2017-08-03 22:17:00,37.7625,168.475,19.56 +2017-08-03 22:32:00,36.1888,168.2,19.53 +2017-08-03 22:47:00,36.1888,167.91,19.5 +2017-08-03 23:02:00,36.2387,167.702,19.47 +2017-08-03 23:17:00,38.005,167.503,19.46 +2017-08-03 23:32:00,37.2137,167.35,19.45 +2017-08-03 23:47:00,36.9212,167.24,19.43 +2017-08-04 00:02:00,36.775,167.14,19.4 +2017-08-04 00:17:00,36.4775,167.035,19.38 +2017-08-04 00:32:00,36.775,166.95,19.35 +2017-08-04 00:47:00,38.8838,166.827,19.34 +2017-08-04 01:02:00,37.7612,166.707,19.33 +2017-08-04 01:17:00,37.0687,166.57,19.33 +2017-08-04 01:32:00,38.4062,166.49,19.32 +2017-08-04 01:47:00,37.8112,166.372,19.29 +2017-08-04 02:02:00,38.36,166.265,19.27 +2017-08-04 02:17:00,37.7612,166.22,19.24 +2017-08-04 02:32:00,37.4575,166.175,19.2 +2017-08-04 02:47:00,37.2612,166.11,19.15 +2017-08-04 03:02:00,35.5075,166.057,19.12 +2017-08-04 03:17:00,36.6738,165.995,19.08 +2017-08-04 03:32:00,37.7612,165.905,19.05 +2017-08-04 03:47:00,35.8962,165.825,19.02 +2017-08-04 04:02:00,35.7962,165.76,18.99 +2017-08-04 04:17:00,35.1062,165.762,18.96 +2017-08-04 04:32:00,36.7262,165.753,18.94 +2017-08-04 04:47:00,38.5537,165.762,18.92 +2017-08-04 05:02:00,38.4062,165.747,18.91 +2017-08-04 05:17:00,36.0912,165.705,18.89 +2017-08-04 05:32:00,37.3138,165.652,18.87 +2017-08-04 05:47:00,35.4587,165.612,18.86 +2017-08-04 06:02:00,37.0238,165.46,18.85 +2017-08-04 06:17:00,37.665,165.362,18.85 +2017-08-04 06:32:00,36.2438,165.265,18.86 +2017-08-04 06:47:00,36.6287,165.182,18.84 +2017-08-04 07:02:00,36.6287,165.09,18.83 +2017-08-04 07:17:00,36.925,164.987,18.83 +2017-08-04 07:32:00,37.4613,164.913,18.84 +2017-08-04 07:47:00,38.1075,164.822,18.85 +2017-08-04 08:02:00,36.4775,164.732,18.87 +2017-08-04 08:17:00,37.1175,164.64,18.87 +2017-08-04 08:32:00,38.3575,164.557,18.87 +2017-08-04 08:47:00,36.7787,164.46,18.88 +2017-08-04 09:02:00,36.7312,164.37,18.91 +2017-08-04 09:17:00,32.3487,164.292,18.95 +2017-08-04 09:32:00,37.6775,164.117,19.03 +2017-08-04 09:47:00,35.9987,163.66,19.05 +2017-08-04 10:02:00,37.025,163.172,19.07 +2017-08-04 10:17:00,37.1637,162.598,19.13 +2017-08-04 10:32:00,37.5088,162.022,19.19 +2017-08-04 10:47:00,34.9163,161.44,19.22 +2017-08-04 11:02:00,36.0413,160.878,19.24 +2017-08-04 11:17:00,35.3562,159.465,19.3 +2017-08-04 11:32:00,38.0575,157.742,19.34 +2017-08-04 11:47:00,37.4075,156.52,19.44 +2017-08-04 12:02:00,36.045,155.508,19.52 +2017-08-04 12:17:00,36.625,154.727,19.54 +2017-08-04 12:32:00,35.9475,154.102,19.56 +2017-08-04 12:47:00,36.6738,153.712,19.61 +2017-08-04 13:02:00,37.9562,153.427,19.65 +2017-08-04 13:17:00,36.19,153.352,19.73 +2017-08-04 13:32:00,35.2537,153.427,19.76 +2017-08-04 13:47:00,36.3363,153.615,19.79 +2017-08-04 14:02:00,37.5638,153.908,19.87 +2017-08-04 14:17:00,36.4313,154.272,19.95 +2017-08-04 14:32:00,36.4325,154.655,20.01 +2017-08-04 14:47:00,35.8463,155.022,20.04 +2017-08-04 15:02:00,36.6263,155.33,20.05 +2017-08-04 15:17:00,36.19,155.615,20.04 +2017-08-04 15:32:00,36.1375,155.827,20.03 +2017-08-04 15:47:00,35.6462,155.973,20.02 +2017-08-04 16:02:00,34.5762,156.092,20.03 +2017-08-04 16:17:00,35.8025,156.237,20.06 +2017-08-04 16:32:00,35.7012,156.35,20.1 +2017-08-04 16:47:00,37.3075,156.492,20.15 +2017-08-04 17:02:00,36.24,156.637,20.19 +2017-08-04 17:17:00,35.9487,156.8,20.24 +2017-08-04 17:32:00,36.2937,156.973,20.28 +2017-08-04 17:47:00,37.9625,157.107,20.29 +2017-08-04 18:02:00,35.26,157.235,20.32 +2017-08-04 18:17:00,37.5112,157.367,20.34 +2017-08-04 18:32:00,36.6263,157.492,20.33 +2017-08-04 18:47:00,36.3375,157.59,20.31 +2017-08-04 19:02:00,34.3363,157.71,20.27 +2017-08-04 19:17:00,35.9,157.822,20.24 +2017-08-04 19:32:00,34.965,157.91,20.19 +2017-08-04 19:47:00,36.0963,157.997,20.12 +2017-08-04 20:02:00,35.1062,158.087,20.07 +2017-08-04 20:17:00,36.7288,158.18,20.01 +2017-08-04 20:32:00,34.7712,158.237,19.95 +2017-08-04 20:47:00,37.07,158.305,19.9 +2017-08-04 21:02:00,35.9463,158.357,19.86 +2017-08-04 21:17:00,36.9737,158.42,19.8 +2017-08-04 21:32:00,36.5775,158.455,19.76 +2017-08-04 21:47:00,38.2113,158.51,19.71 +2017-08-04 22:02:00,36.3387,158.557,19.67 +2017-08-04 22:17:00,37.7125,158.577,19.63 +2017-08-04 22:32:00,37.8138,158.612,19.61 +2017-08-04 22:47:00,36.6237,158.62,19.58 +2017-08-04 23:02:00,36.29,158.57,19.55 +2017-08-04 23:17:00,34.385,158.452,19.53 +2017-08-04 23:32:00,35.995,158.272,19.5 +2017-08-04 23:47:00,34.9613,158.095,19.49 +2017-08-05 00:02:00,35.5088,157.938,19.47 +2017-08-05 00:17:00,35.7475,157.837,19.43 +2017-08-05 00:32:00,35.7988,157.737,19.41 +2017-08-05 00:47:00,36.4313,157.69,19.38 +2017-08-05 01:02:00,36.9737,157.61,19.35 +2017-08-05 01:17:00,36.825,157.53,19.31 +2017-08-05 01:32:00,35.8962,157.425,19.29 +2017-08-05 01:47:00,35.4562,157.25,19.29 +2017-08-05 02:02:00,37.1137,157.075,19.26 +2017-08-05 02:17:00,36.19,156.927,19.25 +2017-08-05 02:32:00,36.4762,156.818,19.23 +2017-08-05 02:47:00,36.8712,156.71,19.19 +2017-08-05 03:02:00,35.8988,156.65,19.16 +2017-08-05 03:17:00,36.7787,156.598,19.11 +2017-08-05 03:32:00,35.8962,156.533,19.06 +2017-08-05 03:47:00,36.97,156.44,19.02 +2017-08-05 04:02:00,34.435,156.302,18.97 +2017-08-05 04:17:00,37.4037,156.177,18.93 +2017-08-05 04:32:00,37.4062,156.022,18.88 +2017-08-05 04:47:00,37.0187,155.86,18.84 +2017-08-05 05:02:00,35.8475,155.755,18.82 +2017-08-05 05:17:00,36.0413,155.667,18.81 +2017-08-05 05:32:00,35.9925,155.61,18.79 +2017-08-05 05:47:00,36.475,155.58,18.77 +2017-08-05 06:02:00,36.2887,155.525,18.79 +2017-08-05 06:17:00,35.8887,155.42,18.8 +2017-08-05 06:32:00,35.5025,155.327,18.8 +2017-08-05 06:47:00,36.09,155.22,18.79 +2017-08-05 07:02:00,37.2588,155.112,18.78 +2017-08-05 07:17:00,36.2375,155.002,18.78 +2017-08-05 07:32:00,37.56,154.887,18.77 +2017-08-05 07:47:00,37.1162,154.747,18.77 +2017-08-05 08:02:00,35.4538,154.63,18.76 +2017-08-05 08:17:00,36.4737,154.54,18.75 +2017-08-05 08:32:00,37.7075,154.455,18.74 +2017-08-05 08:47:00,37.5563,154.44,18.73 +2017-08-05 09:02:00,36.9688,154.423,18.74 +2017-08-05 09:17:00,35.8,154.39,18.74 +2017-08-05 09:32:00,36.7725,154.342,18.77 +2017-08-05 09:47:00,35.7937,154.202,18.76 +2017-08-05 10:02:00,36.6237,154.062,18.8 +2017-08-05 10:17:00,34.6263,153.877,18.88 +2017-08-05 10:32:00,35.2075,153.72,18.94 +2017-08-05 10:47:00,37.41,153.612,18.93 +2017-08-05 11:02:00,36.3825,153.572,18.94 +2017-08-05 11:17:00,35.0062,153.555,18.94 +2017-08-05 11:32:00,38.7412,153.515,18.98 +2017-08-05 11:47:00,35.0075,153.445,19.01 +2017-08-05 12:02:00,36.3337,153.285,19.03 +2017-08-05 12:17:00,34.9088,153.022,19.03 +2017-08-05 12:32:00,36.725,152.627,19.03 +2017-08-05 12:47:00,37.5125,152.175,19.04 +2017-08-05 13:02:00,36.3375,151.632,19.08 +2017-08-05 13:17:00,37.7125,151.075,19.13 +2017-08-05 13:32:00,36.0413,150.497,19.17 +2017-08-05 13:47:00,35.8937,149.923,19.23 +2017-08-05 14:02:00,36.7237,149.298,19.24 +2017-08-05 14:17:00,37.3075,148.677,19.25 +2017-08-05 14:32:00,36.5262,148.03,19.28 +2017-08-05 14:47:00,36.24,147.347,19.33 +2017-08-05 15:02:00,37.8125,146.715,19.37 +2017-08-05 15:17:00,36.1888,146.097,19.4 +2017-08-05 15:32:00,35.5987,145.45,19.4 +2017-08-05 15:47:00,37.6612,144.885,19.4 +2017-08-05 16:02:00,37.61,144.412,19.41 +2017-08-05 16:17:00,38.3075,144.042,19.42 +2017-08-05 16:32:00,35.1012,143.717,19.41 +2017-08-05 16:47:00,36.3337,143.455,19.35 +2017-08-05 17:02:00,37.1637,143.247,19.34 +2017-08-05 17:17:00,35.2537,143.04,19.33 +2017-08-05 17:32:00,36.72,142.85,19.3 +2017-08-05 17:47:00,36.14,142.707,19.28 +2017-08-05 18:02:00,35.6475,142.635,19.24 +2017-08-05 18:17:00,36.095,142.602,19.22 +2017-08-05 18:32:00,37.07,142.632,19.21 +2017-08-05 18:47:00,36.97,142.685,19.19 +2017-08-05 19:02:00,35.6963,142.78,19.16 +2017-08-05 19:17:00,36.4287,142.902,19.15 +2017-08-05 19:32:00,38.1087,143.035,19.14 +2017-08-05 19:47:00,35.7462,143.145,19.12 +2017-08-05 20:02:00,35.1025,143.265,19.12 +2017-08-05 20:17:00,37.02,143.375,19.11 +2017-08-05 20:32:00,35.8487,143.467,19.07 +2017-08-05 20:47:00,36.72,143.535,19.06 +2017-08-05 21:02:00,38.8425,143.625,19.04 +2017-08-05 21:17:00,35.1525,143.715,19.0 +2017-08-05 21:32:00,36.4275,143.81,18.97 +2017-08-05 21:47:00,36.4275,143.91,18.93 +2017-08-05 22:02:00,37.0212,144.005,18.91 +2017-08-05 22:17:00,36.2363,144.107,18.89 +2017-08-05 22:32:00,35.4037,144.21,18.87 +2017-08-05 22:47:00,37.26,144.322,18.83 +2017-08-05 23:02:00,36.3812,144.425,18.79 +2017-08-05 23:17:00,35.4562,144.537,18.76 +2017-08-05 23:32:00,36.7237,144.627,18.72 +2017-08-05 23:47:00,37.12,144.73,18.68 +2017-08-06 00:02:00,36.2375,144.837,18.65 +2017-08-06 00:17:00,35.405,144.938,18.6 +2017-08-06 00:32:00,35.8412,145.055,18.56 +2017-08-06 00:47:00,36.0413,145.177,18.52 +2017-08-06 01:02:00,36.9187,145.272,18.47 +2017-08-06 01:17:00,35.8438,145.375,18.43 +2017-08-06 01:32:00,36.14,145.467,18.38 +2017-08-06 01:47:00,37.31,145.58,18.34 +2017-08-06 02:02:00,35.8925,145.675,18.31 +2017-08-06 02:17:00,35.8412,145.752,18.26 +2017-08-06 02:32:00,36.24,145.837,18.21 +2017-08-06 02:47:00,35.1537,145.94,18.15 +2017-08-06 03:02:00,35.0525,146.005,18.09 +2017-08-06 03:17:00,36.19,146.1,18.03 +2017-08-06 03:32:00,36.3337,146.192,18.01 +2017-08-06 03:47:00,35.9938,146.268,17.97 +2017-08-06 04:02:00,36.4275,146.35,17.93 +2017-08-06 04:17:00,35.7438,146.435,17.89 +2017-08-06 04:32:00,36.6225,146.522,17.86 +2017-08-06 04:47:00,38.0088,146.597,17.82 +2017-08-06 05:02:00,36.9675,146.673,17.81 +2017-08-06 05:17:00,37.0675,146.73,17.78 +2017-08-06 05:32:00,37.1625,146.81,17.76 +2017-08-06 05:47:00,37.0713,146.872,17.75 +2017-08-06 06:02:00,36.87,146.95,17.75 +2017-08-06 06:17:00,37.4062,147.005,17.75 +2017-08-06 06:32:00,36.1888,147.07,17.75 +2017-08-06 06:47:00,36.7262,147.132,17.75 +2017-08-06 07:02:00,37.4025,147.205,17.75 +2017-08-06 07:17:00,38.055,147.283,17.77 +2017-08-06 07:32:00,36.2875,147.34,17.74 +2017-08-06 07:47:00,36.7712,147.405,17.78 +2017-08-06 08:02:00,36.4275,147.44,17.8 +2017-08-06 08:17:00,37.405,147.502,17.82 +2017-08-06 08:32:00,38.1537,147.587,17.81 +2017-08-06 08:47:00,37.7575,147.617,17.81 +2017-08-06 09:02:00,37.2113,147.643,17.83 +2017-08-06 09:17:00,37.91,147.725,17.84 +2017-08-06 09:32:00,35.5037,147.752,17.83 +2017-08-06 09:47:00,35.3025,147.817,17.83 +2017-08-06 10:02:00,37.955,147.86,17.86 +2017-08-06 10:17:00,36.7188,147.895,17.91 +2017-08-06 10:32:00,37.7562,147.962,17.95 +2017-08-06 10:47:00,37.4037,148.002,17.99 +2017-08-06 11:02:00,36.3775,148.052,18.03 +2017-08-06 11:17:00,36.8225,148.085,18.03 +2017-08-06 11:32:00,37.6587,148.135,18.09 +2017-08-06 11:47:00,34.7725,148.182,18.11 +2017-08-06 12:02:00,35.55,148.232,18.09 +2017-08-06 12:17:00,36.8213,148.31,18.11 +2017-08-06 12:32:00,36.5225,148.355,18.18 +2017-08-06 12:47:00,35.8412,148.45,18.26 +2017-08-06 13:02:00,36.0413,148.51,18.31 +2017-08-06 13:17:00,36.4775,148.592,18.4 +2017-08-06 13:32:00,36.5725,148.67,18.46 +2017-08-06 13:47:00,36.5725,148.727,18.49 +2017-08-06 14:02:00,36.625,148.79,18.51 +2017-08-06 14:17:00,34.8175,148.877,18.56 +2017-08-06 14:32:00,36.3825,148.95,18.63 +2017-08-06 14:47:00,35.005,149.02,18.7 +2017-08-06 15:02:00,36.9187,149.112,18.75 +2017-08-06 15:17:00,36.9688,149.17,18.84 +2017-08-06 15:32:00,37.5075,149.245,18.9 +2017-08-06 15:47:00,35.2513,149.305,18.95 +2017-08-06 16:02:00,34.2812,149.355,19.01 +2017-08-06 16:17:00,35.3975,149.423,19.06 +2017-08-06 16:32:00,35.2475,149.46,19.07 +2017-08-06 16:47:00,37.7588,149.518,19.08 +2017-08-06 17:02:00,36.185,149.545,19.08 +2017-08-06 17:17:00,37.0187,149.587,19.06 +2017-08-06 17:32:00,36.24,149.6,19.05 +2017-08-06 17:47:00,36.7213,149.632,19.04 +2017-08-06 18:02:00,35.5975,149.647,19.04 +2017-08-06 18:17:00,35.7462,149.65,19.02 +2017-08-06 18:32:00,35.1525,149.62,19.01 +2017-08-06 18:47:00,35.5987,149.497,19.01 +2017-08-06 19:02:00,36.48,149.327,19.0 +2017-08-06 19:17:00,36.67,149.122,18.99 +2017-08-06 19:32:00,36.1413,148.965,19.0 +2017-08-06 19:47:00,35.1537,148.825,18.98 +2017-08-06 20:02:00,33.95,148.717,18.98 +2017-08-06 20:17:00,35.8937,148.62,18.93 +2017-08-06 20:32:00,35.8913,148.537,18.89 +2017-08-06 20:47:00,37.0175,148.442,18.84 +2017-08-06 21:02:00,35.6475,148.33,18.79 +2017-08-06 21:17:00,34.6263,148.165,18.72 +2017-08-06 21:32:00,35.8463,148.007,18.66 +2017-08-06 21:47:00,36.67,147.805,18.59 +2017-08-06 22:02:00,36.9225,147.625,18.52 +2017-08-06 22:17:00,37.115,147.495,18.48 +2017-08-06 22:32:00,36.3312,147.405,18.43 +2017-08-06 22:47:00,35.1537,147.35,18.39 +2017-08-06 23:02:00,35.695,147.292,18.35 +2017-08-06 23:17:00,36.4287,147.247,18.32 +2017-08-06 23:32:00,36.7712,147.173,18.28 +2017-08-06 23:47:00,36.285,147.085,18.25 +2017-08-07 00:02:00,37.3538,146.962,18.2 +2017-08-07 00:17:00,34.8125,146.785,18.14 +2017-08-07 00:32:00,37.305,146.637,18.08 +2017-08-07 00:47:00,35.5525,146.55,18.02 +2017-08-07 01:02:00,35.6925,146.44,17.97 +2017-08-07 01:17:00,35.3025,146.38,17.93 +2017-08-07 01:32:00,36.8662,146.335,17.89 +2017-08-07 01:47:00,36.5725,146.3,17.83 +2017-08-07 02:02:00,37.7612,146.32,17.8 +2017-08-07 02:17:00,36.0912,146.24,17.77 +2017-08-07 02:32:00,35.995,146.2,17.73 +2017-08-07 02:47:00,34.1837,146.062,17.69 +2017-08-07 03:02:00,36.4262,145.95,17.64 +2017-08-07 03:17:00,37.0187,145.875,17.59 +2017-08-07 03:32:00,34.6712,145.785,17.55 +2017-08-07 03:47:00,37.5587,145.747,17.5 +2017-08-07 04:02:00,36.0425,145.73,17.46 +2017-08-07 04:17:00,36.9688,145.72,17.42 +2017-08-07 04:32:00,36.0887,145.712,17.4 +2017-08-07 04:47:00,35.105,145.74,17.36 +2017-08-07 05:02:00,36.4737,145.662,17.33 +2017-08-07 05:17:00,34.7237,144.992,17.31 +2017-08-07 05:32:00,37.26,143.938,17.28 +2017-08-07 05:47:00,37.0675,143.245,17.26 +2017-08-07 06:02:00,35.35,142.745,17.25 +2017-08-07 06:17:00,35.7962,142.502,17.25 +2017-08-07 06:32:00,37.5062,142.372,17.24 +2017-08-07 06:47:00,37.1625,142.357,17.22 +2017-08-07 07:02:00,36.2375,142.35,17.23 +2017-08-07 07:17:00,37.5563,142.465,17.24 +2017-08-07 07:32:00,36.5262,142.507,17.26 +2017-08-07 07:47:00,35.2062,142.622,17.28 +2017-08-07 08:02:00,36.045,142.732,17.3 +2017-08-07 08:17:00,37.2588,142.857,17.31 +2017-08-07 08:32:00,35.2988,142.893,17.35 +2017-08-07 08:47:00,35.8937,142.992,17.37 +2017-08-07 09:02:00,35.8887,142.987,17.39 +2017-08-07 09:17:00,36.335,143.042,17.43 +2017-08-07 09:32:00,38.6,143.077,17.41 +2017-08-07 09:47:00,35.9938,143.092,17.44 +2017-08-07 10:02:00,36.5725,143.105,17.45 +2017-08-07 10:17:00,37.0225,143.092,17.47 +2017-08-07 10:32:00,36.0925,143.057,17.5 +2017-08-07 10:47:00,37.6562,143.025,17.53 +2017-08-07 11:02:00,37.5075,142.822,17.57 +2017-08-07 11:17:00,36.5175,142.62,17.59 +2017-08-07 11:32:00,37.5563,142.31,17.6 +2017-08-07 11:47:00,37.6575,142.042,17.65 +2017-08-07 12:02:00,36.5225,141.78,17.73 +2017-08-07 12:17:00,36.235,141.545,17.78 +2017-08-07 12:32:00,37.02,141.375,17.81 +2017-08-07 12:47:00,37.2575,141.26,17.91 +2017-08-07 13:02:00,36.1813,141.158,17.94 +2017-08-07 13:17:00,35.9388,141.037,18.02 +2017-08-07 13:32:00,37.5563,140.938,18.03 +2017-08-07 13:47:00,37.0687,140.882,18.09 +2017-08-07 14:02:00,36.6188,140.772,18.18 +2017-08-07 14:17:00,39.0837,140.71,18.28 +2017-08-07 14:32:00,35.895,140.548,18.34 +2017-08-07 14:47:00,36.6687,140.45,18.37 +2017-08-07 15:02:00,35.3012,140.375,18.42 +2017-08-07 15:17:00,36.7175,140.377,18.47 +2017-08-07 15:32:00,35.6425,140.342,18.5 +2017-08-07 15:47:00,37.7113,140.405,18.53 +2017-08-07 16:02:00,36.5225,140.44,18.53 +2017-08-07 16:17:00,37.8075,140.432,18.53 +2017-08-07 16:32:00,35.15,140.442,18.56 +2017-08-07 16:47:00,37.0175,140.452,18.59 +2017-08-07 17:02:00,36.1362,140.475,18.6 +2017-08-07 17:17:00,36.5187,140.425,18.63 +2017-08-07 17:32:00,35.155,140.32,18.65 +2017-08-07 17:47:00,36.3763,140.357,18.68 +2017-08-07 18:02:00,36.24,140.337,18.7 +2017-08-07 18:17:00,36.185,140.315,18.76 +2017-08-07 18:32:00,37.3575,140.34,18.78 +2017-08-07 18:47:00,35.055,140.367,18.81 +2017-08-07 19:02:00,37.3575,140.452,18.83 +2017-08-07 19:17:00,36.19,140.477,18.85 +2017-08-07 19:32:00,37.5612,140.457,18.87 +2017-08-07 19:47:00,36.4262,140.49,18.89 +2017-08-07 20:02:00,36.6687,140.432,18.88 +2017-08-07 20:17:00,37.0187,140.332,18.86 +2017-08-07 20:32:00,36.7738,140.28,18.82 +2017-08-07 20:47:00,35.7975,140.252,18.78 +2017-08-07 21:02:00,36.0938,140.272,18.73 +2017-08-07 21:17:00,36.7225,140.27,18.67 +2017-08-07 21:32:00,35.3025,140.277,18.61 +2017-08-07 21:47:00,35.89,140.31,18.53 +2017-08-07 22:02:00,36.1387,140.34,18.47 +2017-08-07 22:17:00,35.5537,140.367,18.4 +2017-08-07 22:32:00,36.0437,140.34,18.32 +2017-08-07 22:47:00,37.115,140.24,18.27 +2017-08-07 23:02:00,37.0187,140.205,18.22 +2017-08-07 23:17:00,34.9112,140.19,18.18 +2017-08-07 23:32:00,37.3525,140.13,18.15 +2017-08-07 23:47:00,38.0062,140.122,18.11 +2017-08-08 00:02:00,35.5037,140.185,18.1 +2017-08-08 00:17:00,36.2387,140.15,18.06 +2017-08-08 00:32:00,36.9212,140.19,18.03 +2017-08-08 00:47:00,35.7475,140.242,18.01 +2017-08-08 01:02:00,37.2125,140.27,17.97 +2017-08-08 01:17:00,37.2113,140.25,17.93 +2017-08-08 01:32:00,36.045,140.22,17.89 +2017-08-08 01:47:00,35.8438,140.17,17.84 +2017-08-08 02:02:00,36.5212,140.122,17.81 +2017-08-08 02:17:00,36.6212,140.097,17.79 +2017-08-08 02:32:00,37.1663,140.087,17.77 +2017-08-08 02:47:00,35.9463,140.072,17.77 +2017-08-08 03:02:00,35.505,140.14,17.75 +2017-08-08 03:17:00,35.6937,140.137,17.73 +2017-08-08 03:32:00,36.1387,140.18,17.69 +2017-08-08 03:47:00,36.3387,140.13,17.68 +2017-08-08 04:02:00,36.4725,140.097,17.63 +2017-08-08 04:17:00,37.1175,140.035,17.59 +2017-08-08 04:32:00,36.0413,139.987,17.56 +2017-08-08 04:47:00,35.6925,139.972,17.49 +2017-08-08 05:02:00,36.7725,139.97,17.46 +2017-08-08 05:17:00,36.87,140.005,17.44 +2017-08-08 05:32:00,35.9425,140.018,17.39 +2017-08-08 05:47:00,35.5037,140.02,17.39 +2017-08-08 06:02:00,37.7075,139.985,17.37 +2017-08-08 06:17:00,37.505,139.915,17.36 +2017-08-08 06:32:00,37.4012,139.902,17.36 +2017-08-08 06:47:00,36.6675,139.807,17.36 +2017-08-08 07:02:00,37.4037,139.795,17.37 +2017-08-08 07:17:00,36.5737,139.69,17.38 +2017-08-08 07:32:00,35.4538,139.652,17.38 +2017-08-08 07:47:00,38.2038,139.615,17.41 +2017-08-08 08:02:00,36.0925,139.5,17.42 +2017-08-08 08:17:00,37.8075,139.47,17.42 +2017-08-08 08:32:00,35.6937,139.432,17.44 +2017-08-08 08:47:00,38.5475,139.412,17.48 +2017-08-08 09:02:00,37.4575,139.417,17.49 +2017-08-08 09:17:00,37.1188,139.4,17.52 +2017-08-08 09:32:00,37.7087,139.427,17.53 +2017-08-08 09:47:00,38.7913,139.43,17.56 +2017-08-08 10:02:00,37.7612,139.423,17.57 +2017-08-08 10:17:00,37.1125,139.4,17.58 +2017-08-08 10:32:00,35.4562,139.302,17.57 +2017-08-08 10:47:00,37.2612,139.19,17.59 +2017-08-08 11:02:00,37.66,139.05,17.66 +2017-08-08 11:17:00,36.5762,138.982,17.73 +2017-08-08 11:32:00,36.4737,138.875,17.78 +2017-08-08 11:47:00,36.725,138.77,17.82 +2017-08-08 12:02:00,35.6963,138.765,17.89 +2017-08-08 12:17:00,36.3787,138.68,17.94 +2017-08-08 12:32:00,37.2062,138.66,18.02 +2017-08-08 12:47:00,37.1612,138.52,18.05 +2017-08-08 13:02:00,37.3512,138.393,18.06 +2017-08-08 13:17:00,35.2537,138.18,18.08 +2017-08-08 13:32:00,36.52,137.938,18.15 +2017-08-08 13:47:00,36.9675,137.69,18.23 +2017-08-08 14:02:00,35.7412,137.535,18.34 +2017-08-08 14:17:00,36.1888,137.382,18.45 +2017-08-08 14:32:00,35.9463,137.322,18.51 +2017-08-08 14:47:00,34.0887,137.26,18.54 +2017-08-08 15:02:00,36.2887,137.165,18.59 +2017-08-08 15:17:00,36.475,137.072,18.64 +2017-08-08 15:32:00,36.1413,136.917,18.69 +2017-08-08 15:47:00,36.475,136.73,18.79 +2017-08-08 16:02:00,36.0912,136.597,18.86 +2017-08-08 16:17:00,36.9675,136.482,18.93 +2017-08-08 16:32:00,37.56,136.417,19.01 +2017-08-08 16:47:00,38.255,136.427,19.07 +2017-08-08 17:02:00,36.8688,136.43,19.12 +2017-08-08 17:17:00,36.2363,136.462,19.17 +2017-08-08 17:32:00,35.745,136.487,19.21 +2017-08-08 17:47:00,36.7725,136.492,19.27 +2017-08-08 18:02:00,36.4313,136.495,19.3 +2017-08-08 18:17:00,36.2838,136.467,19.33 +2017-08-08 18:32:00,36.0425,136.39,19.35 +2017-08-08 18:47:00,35.3063,136.342,19.36 +2017-08-08 19:02:00,34.9062,136.247,19.36 +2017-08-08 19:17:00,35.8913,136.18,19.33 +2017-08-08 19:32:00,37.4525,136.162,19.32 +2017-08-08 19:47:00,35.845,136.14,19.29 +2017-08-08 20:02:00,35.8937,136.182,19.26 +2017-08-08 20:17:00,36.7237,136.252,19.22 +2017-08-08 20:32:00,36.7237,136.265,19.19 +2017-08-08 20:47:00,36.97,136.307,19.15 +2017-08-08 21:02:00,35.1537,136.327,19.11 +2017-08-08 21:17:00,37.6075,136.362,19.07 +2017-08-08 21:32:00,35.6937,136.362,19.04 +2017-08-08 21:47:00,35.9975,136.31,18.99 +2017-08-08 22:02:00,38.3037,136.277,18.97 +2017-08-08 22:17:00,35.3538,136.342,18.95 +2017-08-08 22:32:00,35.0563,136.367,18.92 +2017-08-08 22:47:00,36.1387,136.382,18.9 +2017-08-08 23:02:00,35.2062,136.477,18.86 +2017-08-08 23:17:00,36.0387,136.535,18.84 +2017-08-08 23:32:00,35.4487,136.582,18.81 +2017-08-08 23:47:00,37.56,136.605,18.78 +2017-08-09 00:02:00,36.8737,136.617,18.75 +2017-08-09 00:17:00,37.2113,136.62,18.71 +2017-08-09 00:32:00,36.6687,136.572,18.69 +2017-08-09 00:47:00,36.0413,136.55,18.66 +2017-08-09 01:02:00,36.5713,136.533,18.62 +2017-08-09 01:17:00,34.8175,136.52,18.59 +2017-08-09 01:32:00,35.845,136.59,18.55 +2017-08-09 01:47:00,36.9163,136.627,18.51 +2017-08-09 02:02:00,37.26,136.69,18.47 +2017-08-09 02:17:00,36.9688,136.737,18.43 +2017-08-09 02:32:00,36.4287,136.712,18.41 +2017-08-09 02:47:00,36.14,136.777,18.36 +2017-08-09 03:02:00,35.7438,136.745,18.34 +2017-08-09 03:17:00,34.53,136.772,18.32 +2017-08-09 03:32:00,36.97,136.735,18.31 +2017-08-09 03:47:00,36.1875,136.695,18.29 +2017-08-09 04:02:00,36.0437,136.742,18.28 +2017-08-09 04:17:00,37.6587,136.77,18.26 +2017-08-09 04:32:00,35.155,136.795,18.25 +2017-08-09 04:47:00,37.1625,136.825,18.25 +2017-08-09 05:02:00,36.8712,136.85,18.25 +2017-08-09 05:17:00,36.4775,136.827,18.23 +2017-08-09 05:32:00,37.6587,136.875,18.21 +2017-08-09 05:47:00,36.7725,136.72,18.19 +2017-08-09 06:02:00,36.5238,136.347,18.2 +2017-08-09 06:17:00,36.19,135.915,18.2 +2017-08-09 06:32:00,37.1162,135.62,18.2 +2017-08-09 06:47:00,36.38,135.427,18.18 +2017-08-09 07:02:00,35.5062,135.287,18.16 +2017-08-09 07:17:00,35.8913,135.32,18.18 +2017-08-09 07:32:00,36.1387,135.295,18.2 +2017-08-09 07:47:00,36.09,135.35,18.22 +2017-08-09 08:02:00,35.5037,135.393,18.25 +2017-08-09 08:17:00,34.9562,135.393,18.25 +2017-08-09 08:32:00,34.8138,135.475,18.28 +2017-08-09 08:47:00,35.5963,135.52,18.31 +2017-08-09 09:02:00,35.555,135.592,18.34 +2017-08-09 09:17:00,37.0713,135.655,18.36 +2017-08-09 09:32:00,36.1862,135.727,18.4 +2017-08-09 09:47:00,36.1888,135.772,18.44 +2017-08-09 10:02:00,37.0175,135.81,18.47 +2017-08-09 10:17:00,36.5725,135.817,18.49 +2017-08-09 10:32:00,35.5963,135.817,18.55 +2017-08-09 10:47:00,36.4737,135.867,18.59 +2017-08-09 11:02:00,35.5062,135.877,18.61 +2017-08-09 11:17:00,35.6462,135.935,18.65 +2017-08-09 11:32:00,37.1575,135.912,18.61 +2017-08-09 11:47:00,35.6012,135.992,18.65 +2017-08-09 12:02:00,36.4788,136.022,18.68 +2017-08-09 12:17:00,35.5987,136.02,18.73 +2017-08-09 12:32:00,37.3575,136.015,18.77 +2017-08-09 12:47:00,36.6725,135.992,18.86 +2017-08-09 13:02:00,36.0387,135.957,18.9 +2017-08-09 13:17:00,37.6062,135.932,18.94 +2017-08-09 13:32:00,36.14,135.91,19.0 +2017-08-09 13:47:00,35.3025,135.945,19.02 +2017-08-09 14:02:00,35.695,135.932,19.08 +2017-08-09 14:17:00,35.105,135.972,19.18 +2017-08-09 14:32:00,36.97,135.955,19.27 +2017-08-09 14:47:00,37.36,135.905,19.3 +2017-08-09 15:02:00,35.695,135.847,19.35 +2017-08-09 15:17:00,36.3825,135.762,19.43 +2017-08-09 15:32:00,36.2913,135.692,19.47 +2017-08-09 15:47:00,36.04,135.645,19.49 +2017-08-09 16:02:00,35.5963,135.607,19.56 +2017-08-09 16:17:00,35.5537,135.64,19.62 +2017-08-09 16:32:00,36.2875,135.612,19.69 +2017-08-09 16:47:00,35.3575,135.677,19.73 +2017-08-09 17:02:00,35.2062,135.677,19.78 +2017-08-09 17:17:00,37.07,135.658,19.84 +2017-08-09 17:32:00,35.6975,135.602,19.88 +2017-08-09 17:47:00,36.3387,135.52,19.91 +2017-08-09 18:02:00,36.7213,135.445,19.94 +2017-08-09 18:17:00,36.7237,135.385,19.96 +2017-08-09 18:32:00,35.6462,135.36,19.95 +2017-08-09 18:47:00,35.9987,135.39,19.96 +2017-08-09 19:02:00,35.1038,135.393,19.96 +2017-08-09 19:17:00,35.6475,135.385,19.97 +2017-08-09 19:32:00,35.3037,135.37,19.96 +2017-08-09 19:47:00,34.535,135.402,19.96 +2017-08-09 20:02:00,37.2562,135.367,19.96 +2017-08-09 20:17:00,36.3812,135.315,19.94 +2017-08-09 20:32:00,37.1175,135.23,19.92 +2017-08-09 20:47:00,37.46,135.167,19.89 +2017-08-09 21:02:00,37.2588,135.135,19.86 +2017-08-09 21:17:00,35.2537,135.143,19.83 +2017-08-09 21:32:00,36.4287,135.15,19.78 +2017-08-09 21:47:00,36.6738,135.173,19.72 +2017-08-09 22:02:00,36.925,135.185,19.67 +2017-08-09 22:17:00,37.0687,135.165,19.6 +2017-08-09 22:32:00,34.1375,135.102,19.56 +2017-08-09 22:47:00,34.6275,135.048,19.51 +2017-08-09 23:02:00,35.1062,134.96,19.47 +2017-08-09 23:17:00,36.2387,134.877,19.44 +2017-08-09 23:32:00,35.4025,134.842,19.39 +2017-08-09 23:47:00,34.9587,134.82,19.36 +2017-08-10 00:02:00,36.575,134.835,19.34 +2017-08-10 00:17:00,36.4762,134.85,19.32 +2017-08-10 00:32:00,35.2562,134.86,19.32 +2017-08-10 00:47:00,36.045,134.875,19.31 +2017-08-10 01:02:00,35.8925,134.862,19.31 +2017-08-10 01:17:00,35.7462,134.835,19.32 +2017-08-10 01:32:00,37.2125,134.76,19.32 +2017-08-10 01:47:00,33.3625,134.677,19.3 +2017-08-10 02:02:00,34.4762,134.605,19.27 +2017-08-10 02:17:00,35.845,134.62,19.23 +2017-08-10 02:32:00,34.2825,134.635,19.19 +2017-08-10 02:47:00,34.9575,134.67,19.14 +2017-08-10 03:02:00,36.9262,134.702,19.09 +2017-08-10 03:17:00,37.3562,134.717,19.03 +2017-08-10 03:32:00,38.0037,134.7,18.99 +2017-08-10 03:47:00,36.7225,134.74,18.96 +2017-08-10 04:02:00,35.6963,134.707,18.92 +2017-08-10 04:17:00,34.9625,134.647,18.88 +2017-08-10 04:32:00,35.7962,134.57,18.84 +2017-08-10 04:47:00,35.1588,134.53,18.8 +2017-08-10 05:02:00,37.41,134.522,18.77 +2017-08-10 05:17:00,36.14,134.522,18.74 +2017-08-10 05:32:00,36.4275,134.55,18.7 +2017-08-10 05:47:00,41.6212,134.562,18.68 +2017-08-10 06:02:00,36.475,134.557,18.66 +2017-08-10 06:17:00,36.2862,134.537,18.64 +2017-08-10 06:32:00,35.9425,134.497,18.61 +2017-08-10 06:47:00,37.1625,134.465,18.57 +2017-08-10 07:02:00,38.55,134.415,18.53 +2017-08-10 07:17:00,35.845,134.393,18.51 +2017-08-10 07:32:00,35.155,134.335,18.47 +2017-08-10 07:47:00,37.56,134.285,18.45 +2017-08-10 08:02:00,35.16,134.268,18.42 +2017-08-10 08:17:00,35.995,134.252,18.39 +2017-08-10 08:32:00,36.1387,134.237,18.4 +2017-08-10 08:47:00,36.5238,134.235,18.39 +2017-08-10 09:02:00,36.2887,134.217,18.38 +2017-08-10 09:17:00,35.8925,134.227,18.41 +2017-08-10 09:32:00,37.12,134.245,18.43 +2017-08-10 09:47:00,34.7738,134.227,18.41 +2017-08-10 10:02:00,34.8662,134.22,18.37 +2017-08-10 10:17:00,38.8375,134.175,18.36 +2017-08-10 10:32:00,37.7588,134.097,18.37 +2017-08-10 10:47:00,37.9125,133.997,18.42 +2017-08-10 11:02:00,36.9187,133.9,18.44 +2017-08-10 11:17:00,36.43,133.842,18.42 +2017-08-10 11:32:00,36.3375,133.79,18.43 +2017-08-10 11:47:00,37.1625,133.777,18.48 +2017-08-10 12:02:00,36.1387,133.785,18.52 +2017-08-10 12:17:00,37.5112,133.795,18.55 +2017-08-10 12:32:00,37.3087,133.795,18.54 +2017-08-10 12:47:00,35.3512,133.755,18.57 +2017-08-10 13:02:00,36.525,133.72,18.6 +2017-08-10 13:17:00,36.4762,133.627,18.61 +2017-08-10 13:32:00,36.2387,133.53,18.59 +2017-08-10 13:47:00,35.9975,133.44,18.57 +2017-08-10 14:02:00,35.8438,133.387,18.56 +2017-08-10 14:17:00,36.8187,133.365,18.57 +2017-08-10 14:32:00,35.3512,133.34,18.6 +2017-08-10 14:47:00,34.8162,133.357,18.65 +2017-08-10 15:02:00,35.845,133.36,18.67 +2017-08-10 15:17:00,38.4538,133.365,18.7 +2017-08-10 15:32:00,36.5762,133.322,18.71 +2017-08-10 15:47:00,37.8613,133.268,18.72 +2017-08-10 16:02:00,36.3337,133.173,18.73 +2017-08-10 16:17:00,35.505,133.09,18.74 +2017-08-10 16:32:00,35.2562,133.033,18.76 +2017-08-10 16:47:00,35.9975,133.018,18.77 +2017-08-10 17:02:00,37.02,132.982,18.77 +2017-08-10 17:17:00,34.0013,133.015,18.78 +2017-08-10 17:32:00,34.3825,133.022,18.8 +2017-08-10 17:47:00,35.6937,133.03,18.81 +2017-08-10 18:02:00,34.9575,133.007,18.82 +2017-08-10 18:17:00,35.9487,132.947,18.82 +2017-08-10 18:32:00,35.6963,132.877,18.84 +2017-08-10 18:47:00,36.0013,132.81,18.85 +2017-08-10 19:02:00,36.09,132.752,18.83 +2017-08-10 19:17:00,35.2575,132.722,18.83 +2017-08-10 19:32:00,36.2425,132.717,18.84 +2017-08-10 19:47:00,36.6225,132.705,18.85 +2017-08-10 20:02:00,36.9712,132.722,18.84 +2017-08-10 20:17:00,36.14,132.732,18.82 +2017-08-10 20:32:00,35.9463,132.715,18.82 +2017-08-10 20:47:00,36.0425,132.665,18.82 +2017-08-10 21:02:00,35.1025,132.615,18.81 +2017-08-10 21:17:00,36.92,132.545,18.8 +2017-08-10 21:32:00,35.3512,132.48,18.77 +2017-08-10 21:47:00,35.995,132.423,18.77 +2017-08-10 22:02:00,35.555,132.402,18.76 +2017-08-10 22:17:00,37.2562,132.417,18.75 +2017-08-10 22:32:00,36.19,132.427,18.75 +2017-08-10 22:47:00,36.1888,132.455,18.73 +2017-08-10 23:02:00,37.2612,132.48,18.72 +2017-08-10 23:17:00,35.355,132.472,18.69 +2017-08-10 23:32:00,35.0563,132.49,18.68 +2017-08-10 23:47:00,36.7738,132.622,18.65 +2017-08-11 00:02:00,35.7937,132.935,18.6 +2017-08-11 00:17:00,37.0687,133.862,18.53 +2017-08-11 00:32:00,37.21,144.122,18.49 +2017-08-11 00:47:00,35.945,146.77,18.43 +2017-08-11 01:02:00,36.0437,148.01,18.39 +2017-08-11 01:17:00,34.5287,148.592,18.33 +2017-08-11 01:32:00,37.2575,148.135,18.33 +2017-08-11 01:47:00,35.4538,147.54,18.32 +2017-08-11 02:02:00,35.3087,146.682,18.28 +2017-08-11 02:17:00,35.7975,146.197,18.27 +2017-08-11 02:32:00,34.5762,146.042,18.23 +2017-08-11 02:47:00,35.8913,146.385,18.23 +2017-08-11 03:02:00,35.4025,147.765,18.22 +2017-08-11 03:17:00,35.4012,148.605,18.16 +2017-08-11 03:32:00,34.185,149.05,18.15 +2017-08-11 03:47:00,34.09,149.167,18.14 +2017-08-11 04:02:00,33.8012,150.283,18.11 +2017-08-11 04:17:00,35.0075,151.382,18.03 +2017-08-11 04:32:00,36.3363,151.575,17.96 +2017-08-11 04:47:00,36.77,151.155,18.03 +2017-08-11 05:02:00,35.2537,150.485,18.04 +2017-08-11 05:17:00,35.8925,149.902,17.98 +2017-08-11 05:32:00,36.67,149.32,17.96 +2017-08-11 05:47:00,35.6012,148.912,17.97 +2017-08-11 06:02:00,36.8763,148.533,17.98 +2017-08-11 06:17:00,36.9212,148.28,17.97 +2017-08-11 06:32:00,37.61,147.975,17.99 +2017-08-11 06:47:00,34.815,147.697,17.97 +2017-08-11 07:02:00,35.3538,147.432,17.96 +2017-08-11 07:17:00,37.9087,147.147,17.95 +2017-08-11 07:32:00,37.8087,146.997,17.94 +2017-08-11 07:47:00,35.8387,146.77,17.94 +2017-08-11 08:02:00,36.9187,146.53,17.91 +2017-08-11 08:17:00,35.3012,146.277,17.89 +2017-08-11 08:32:00,36.04,146.107,17.88 +2017-08-11 08:47:00,36.185,145.98,17.87 +2017-08-11 09:02:00,34.7237,146.015,17.86 +2017-08-11 09:17:00,37.4062,145.992,17.86 +2017-08-11 09:32:00,34.9062,145.975,17.84 +2017-08-11 09:47:00,35.99,146.048,17.83 +2017-08-11 10:02:00,35.4987,146.097,17.83 +2017-08-11 10:17:00,35.6462,146.08,17.83 +2017-08-11 10:32:00,38.645,146.105,17.83 +2017-08-11 10:47:00,36.335,146.115,17.83 +2017-08-11 11:02:00,38.6488,146.165,17.85 +2017-08-11 11:17:00,37.5075,146.283,17.86 +2017-08-11 11:32:00,37.9087,146.425,17.85 +2017-08-11 11:47:00,36.475,146.74,17.86 +2017-08-11 12:02:00,36.5737,146.97,17.87 +2017-08-11 12:17:00,37.1175,147.275,17.87 +2017-08-11 12:32:00,35.7425,147.612,17.87 +2017-08-11 12:47:00,37.4087,147.882,17.86 +2017-08-11 13:02:00,38.055,148.082,17.84 +2017-08-11 13:17:00,37.07,149.385,17.82 +2017-08-11 13:32:00,38.6963,150.52,17.79 +2017-08-11 13:47:00,37.2087,151.207,17.78 +2017-08-11 14:02:00,37.1625,151.572,17.77 +2017-08-11 14:17:00,37.1612,151.947,17.75 +2017-08-11 14:32:00,37.5575,152.122,17.75 +2017-08-11 14:47:00,36.425,152.357,17.74 +2017-08-11 15:02:00,36.8688,152.54,17.73 +2017-08-11 15:17:00,36.0413,152.65,17.72 +2017-08-11 15:32:00,37.3587,152.697,17.73 +2017-08-11 15:47:00,36.2913,152.66,17.73 +2017-08-11 16:02:00,36.9662,152.697,17.72 +2017-08-11 16:17:00,35.405,152.682,17.71 +2017-08-11 16:32:00,36.8688,152.852,17.71 +2017-08-11 16:47:00,36.9675,153.035,17.7 +2017-08-11 17:02:00,35.3538,153.315,17.7 +2017-08-11 17:17:00,37.655,153.647,17.69 +2017-08-11 17:32:00,39.3337,153.957,17.66 +2017-08-11 17:47:00,38.4012,154.337,17.63 +2017-08-11 18:02:00,35.9925,154.692,17.61 +2017-08-11 18:17:00,36.475,155.08,17.59 +2017-08-11 18:32:00,35.2562,155.492,17.58 +2017-08-11 18:47:00,36.62,155.902,17.57 +2017-08-11 19:02:00,37.455,156.297,17.54 +2017-08-11 19:17:00,37.6087,156.82,17.52 +2017-08-11 19:32:00,38.79,157.378,17.5 +2017-08-11 19:47:00,37.7075,157.97,17.48 +2017-08-11 20:02:00,37.1637,158.57,17.44 +2017-08-11 20:17:00,37.1637,159.135,17.41 +2017-08-11 20:32:00,39.035,159.66,17.4 +2017-08-11 20:47:00,37.115,160.17,17.37 +2017-08-11 21:02:00,39.7275,160.54,17.34 +2017-08-11 21:17:00,37.61,160.925,17.32 +2017-08-11 21:32:00,38.0512,161.305,17.28 +2017-08-11 21:47:00,37.8587,161.72,17.25 +2017-08-11 22:02:00,39.4837,162.197,17.25 +2017-08-11 22:17:00,38.7,162.693,17.23 +2017-08-11 22:32:00,36.97,163.13,17.2 +2017-08-11 22:47:00,38.1562,163.59,17.15 +2017-08-11 23:02:00,38.1512,164.025,17.13 +2017-08-11 23:17:00,35.9437,164.397,17.1 +2017-08-11 23:32:00,36.4713,164.712,17.06 +2017-08-11 23:47:00,36.425,164.985,17.03 +2017-08-12 00:02:00,36.2838,165.082,17.02 +2017-08-12 00:17:00,37.16,165.342,16.99 +2017-08-12 00:32:00,37.1612,165.568,16.96 +2017-08-12 00:47:00,37.4025,165.825,16.93 +2017-08-12 01:02:00,37.45,166.055,16.91 +2017-08-12 01:17:00,36.3325,166.253,16.87 +2017-08-12 01:32:00,37.5062,166.457,16.83 +2017-08-12 01:47:00,35.89,166.635,16.82 +2017-08-12 02:02:00,36.72,166.735,16.8 +2017-08-12 02:17:00,35.0037,166.805,16.78 +2017-08-12 02:32:00,37.2562,166.875,16.75 +2017-08-12 02:47:00,35.2487,166.943,16.72 +2017-08-12 03:02:00,36.8162,166.985,16.69 +2017-08-12 03:17:00,38.3025,167.075,16.65 +2017-08-12 03:32:00,36.5212,167.155,16.62 +2017-08-12 03:47:00,35.9388,167.223,16.6 +2017-08-12 04:02:00,37.065,167.305,16.57 +2017-08-12 04:17:00,37.4512,167.395,16.53 +2017-08-12 04:32:00,37.7075,167.492,16.5 +2017-08-12 04:47:00,38.7412,167.505,16.47 +2017-08-12 05:02:00,36.6188,167.492,16.42 +2017-08-12 05:17:00,35.2012,167.415,16.37 +2017-08-12 05:32:00,38.0525,167.362,16.36 +2017-08-12 05:47:00,37.2575,167.322,16.34 +2017-08-12 06:02:00,36.57,167.32,16.34 +2017-08-12 06:17:00,34.525,167.383,16.31 +2017-08-12 06:32:00,36.4225,167.457,16.28 +2017-08-12 06:47:00,36.1338,167.598,16.26 +2017-08-12 07:02:00,36.0912,169.11,16.25 +2017-08-12 07:17:00,35.8412,169.973,16.24 +2017-08-12 07:32:00,36.135,170.38,16.23 +2017-08-12 07:47:00,35.79,170.617,16.21 +2017-08-12 08:02:00,36.8187,170.725,16.19 +2017-08-12 08:17:00,36.9662,170.807,16.18 +2017-08-12 08:32:00,36.87,170.92,16.17 +2017-08-12 08:47:00,35.5525,171.133,16.16 +2017-08-12 09:02:00,38.0512,171.372,16.15 +2017-08-12 09:17:00,35.0512,171.772,16.15 +2017-08-12 09:32:00,36.3763,172.225,16.17 +2017-08-12 09:47:00,36.5725,172.7,16.18 +2017-08-12 10:02:00,36.7237,173.175,16.2 +2017-08-12 10:17:00,35.79,173.59,16.19 +2017-08-12 10:32:00,36.085,173.925,16.18 +2017-08-12 10:47:00,37.4037,174.215,16.2 +2017-08-12 11:02:00,36.8162,174.57,16.2 +2017-08-12 11:17:00,37.1113,174.887,16.2 +2017-08-12 11:32:00,36.1875,175.217,16.2 +2017-08-12 11:47:00,35.79,175.485,16.21 +2017-08-12 12:02:00,37.2537,175.677,16.24 +2017-08-12 12:17:00,36.5225,175.897,16.27 +2017-08-12 12:32:00,36.9688,176.072,16.36 +2017-08-12 12:47:00,37.4012,176.207,16.42 +2017-08-12 13:02:00,36.6725,176.435,16.47 +2017-08-12 13:17:00,35.7887,176.592,16.5 +2017-08-12 13:32:00,35.795,176.735,16.49 +2017-08-12 13:47:00,36.4725,176.857,16.51 +2017-08-12 14:02:00,35.6437,176.94,16.53 +2017-08-12 14:17:00,35.45,177.038,16.54 +2017-08-12 14:32:00,37.2113,177.128,16.56 +2017-08-12 14:47:00,36.285,177.22,16.57 +2017-08-12 15:02:00,36.9675,177.253,16.57 +2017-08-12 15:17:00,37.3087,177.302,16.57 +2017-08-12 15:32:00,36.5187,177.332,16.57 +2017-08-12 15:47:00,37.5062,177.385,16.57 +2017-08-12 16:02:00,34.9062,177.41,16.59 +2017-08-12 16:17:00,35.255,177.455,16.6 +2017-08-12 16:30:59,37.1125,177.478,16.61 +2017-08-12 16:47:00,36.9187,177.492,16.63 +2017-08-12 17:02:00,35.55,177.503,16.64 +2017-08-12 17:17:00,37.115,177.51,16.66 +2017-08-12 17:32:00,35.5475,177.49,16.67 +2017-08-12 17:47:00,35.155,177.39,16.67 +2017-08-12 18:02:00,35.3975,177.212,16.66 +2017-08-12 18:17:00,36.47,177.087,16.63 +2017-08-12 18:32:00,34.5212,176.985,16.6 +2017-08-12 18:47:00,36.4225,176.887,16.57 +2017-08-12 19:02:00,36.0875,176.802,16.55 +2017-08-12 19:17:00,35.9912,176.665,16.52 +2017-08-12 19:32:00,35.8887,176.5,16.49 +2017-08-12 19:47:00,38.735,176.305,16.46 +2017-08-12 20:02:00,36.0875,176.062,16.44 +2017-08-12 20:17:00,36.2812,175.84,16.43 +2017-08-12 20:32:00,36.425,175.685,16.43 +2017-08-12 20:47:00,36.4238,175.605,16.41 +2017-08-12 21:02:00,38.5437,175.462,16.4 +2017-08-12 21:17:00,37.0137,175.357,16.39 +2017-08-12 21:32:00,38.8312,175.3,16.37 +2017-08-12 21:47:00,37.0175,175.145,16.35 +2017-08-12 22:02:00,38.0013,175.015,16.32 +2017-08-12 22:17:00,37.2537,174.83,16.29 +2017-08-12 22:32:00,37.355,174.605,16.27 +2017-08-12 22:47:00,35.79,174.372,16.25 +2017-08-12 23:02:00,37.4538,174.117,16.24 +2017-08-12 23:17:00,38.1,173.91,16.24 +2017-08-12 23:32:00,37.2087,173.765,16.24 +2017-08-12 23:47:00,38.1012,173.598,16.25 +2017-08-13 00:02:00,37.8063,173.52,16.24 +2017-08-13 00:17:00,39.18,173.367,16.23 +2017-08-13 00:32:00,38.7375,173.23,16.22 +2017-08-13 00:47:00,38.5938,173.068,16.2 +2017-08-13 01:02:00,38.0025,172.835,16.18 +2017-08-13 01:17:00,38.0975,172.63,16.16 +2017-08-13 01:32:00,39.1338,172.397,16.13 +2017-08-13 01:47:00,36.7738,172.217,16.11 +2017-08-13 02:02:00,37.0638,172.035,16.08 +2017-08-13 02:17:00,38.4987,171.96,16.07 +2017-08-13 02:32:00,37.8562,171.84,16.04 +2017-08-13 02:47:00,40.1162,171.792,16.01 +2017-08-13 03:02:00,38.645,171.693,16.0 +2017-08-13 03:17:00,39.9238,171.605,15.98 +2017-08-13 03:32:00,37.3063,171.45,15.95 +2017-08-13 03:47:00,38.6963,171.253,15.94 +2017-08-13 04:02:00,40.54,171.072,15.92 +2017-08-13 04:17:00,39.0287,170.885,15.91 +2017-08-13 04:32:00,40.2625,170.705,15.89 +2017-08-13 04:47:00,37.4538,170.66,15.88 +2017-08-13 05:02:00,39.03,170.538,15.87 +2017-08-13 05:17:00,38.155,170.475,15.86 +2017-08-13 05:32:00,38.8337,170.395,15.86 +2017-08-13 05:47:00,40.1612,170.28,15.84 +2017-08-13 06:02:00,38.35,170.182,15.86 +2017-08-13 06:17:00,36.865,170.045,15.85 +2017-08-13 06:32:00,38.3525,169.878,15.85 +2017-08-13 06:47:00,39.1287,169.742,15.86 +2017-08-13 07:02:00,39.485,169.612,15.89 +2017-08-13 07:17:00,38.305,169.508,15.91 +2017-08-13 07:32:00,39.1813,169.34,15.92 +2017-08-13 07:47:00,38.4,169.24,15.92 +2017-08-13 08:02:00,38.5938,169.082,15.92 +2017-08-13 08:17:00,39.33,168.94,15.92 +2017-08-13 08:32:00,37.755,168.848,15.93 +2017-08-13 08:47:00,39.5788,168.702,15.95 +2017-08-13 09:02:00,38.3538,168.592,15.99 +2017-08-13 09:17:00,37.5563,168.45,16.01 +2017-08-13 09:32:00,39.485,168.34,16.03 +2017-08-13 09:47:00,40.3962,168.21,16.07 +2017-08-13 10:02:00,39.4337,168.11,16.09 +2017-08-13 10:17:00,39.825,167.967,16.11 +2017-08-13 10:32:00,39.3312,167.75,16.15 +2017-08-13 10:47:00,38.1,167.5,16.18 +2017-08-13 11:02:00,39.3875,167.137,16.23 +2017-08-13 11:17:00,40.49,166.712,16.28 +2017-08-13 11:32:00,37.86,166.2,16.35 +2017-08-13 11:47:00,41.3213,165.617,16.43 +2017-08-13 12:02:00,39.2787,165.0,16.45 +2017-08-13 12:17:00,40.0225,164.367,16.46 +2017-08-13 12:32:00,37.5575,163.8,16.54 +2017-08-13 12:47:00,39.4325,163.245,16.63 +2017-08-13 13:02:00,40.445,162.77,16.7 +2017-08-13 13:17:00,40.2175,162.29,16.77 +2017-08-13 13:32:00,38.4012,161.865,16.8 +2017-08-13 13:47:00,40.2637,161.497,16.85 +2017-08-13 14:02:00,39.4863,161.13,16.89 +2017-08-13 14:17:00,38.2513,160.788,16.97 +2017-08-13 14:32:00,38.45,160.432,17.06 +2017-08-13 14:47:00,38.9812,160.055,17.12 +2017-08-13 15:02:00,39.1338,159.77,17.17 +2017-08-13 15:17:00,40.2625,159.503,17.2 +2017-08-13 15:32:00,41.4725,159.345,17.24 +2017-08-13 15:47:00,40.305,159.255,17.27 +2017-08-13 16:02:00,39.23,159.185,17.27 +2017-08-13 16:17:00,39.135,159.152,17.29 +2017-08-13 16:32:00,40.305,159.17,17.3 +2017-08-13 16:47:00,41.0337,159.095,17.34 +2017-08-13 17:02:00,39.7275,159.015,17.4 +2017-08-13 17:17:00,38.4012,158.938,17.41 +2017-08-13 17:32:00,40.3525,158.872,17.4 +2017-08-13 17:47:00,38.5987,158.76,17.36 +2017-08-13 18:02:00,40.545,158.772,17.34 +2017-08-13 18:17:00,40.2162,158.855,17.32 +2017-08-13 18:32:00,39.9287,158.943,17.31 +2017-08-13 18:47:00,39.6287,159.045,17.29 +2017-08-13 19:02:00,38.835,159.12,17.27 +2017-08-13 19:17:00,37.8625,159.207,17.26 +2017-08-13 19:32:00,41.4762,159.255,17.25 +2017-08-13 19:47:00,40.1637,159.26,17.23 +2017-08-13 20:02:00,39.5325,159.237,17.22 +2017-08-13 20:17:00,41.4225,159.262,17.21 +2017-08-13 20:32:00,37.255,159.253,17.21 +2017-08-13 20:47:00,40.5912,159.315,17.21 +2017-08-13 21:02:00,39.58,159.378,17.22 +2017-08-13 21:17:00,40.26,159.432,17.2 +2017-08-13 21:32:00,39.7775,159.522,17.17 +2017-08-13 21:47:00,40.4475,159.587,17.16 +2017-08-13 22:02:00,39.7275,159.633,17.14 +2017-08-13 22:17:00,39.385,159.598,17.12 +2017-08-13 22:32:00,38.255,159.533,17.1 +2017-08-13 22:47:00,41.1275,159.43,17.06 +2017-08-13 23:02:00,38.2537,159.332,17.03 +2017-08-13 23:17:00,39.775,159.25,17.01 +2017-08-13 23:32:00,40.1637,159.22,16.98 +2017-08-13 23:47:00,38.4487,159.195,16.95 +2017-08-14 00:02:00,38.84,159.158,16.92 +2017-08-14 00:17:00,40.4938,159.165,16.88 +2017-08-14 00:32:00,40.9837,159.147,16.85 +2017-08-14 00:47:00,38.6912,159.087,16.81 +2017-08-14 01:02:00,39.335,159.0,16.79 +2017-08-14 01:17:00,40.3063,158.872,16.76 +2017-08-14 01:32:00,40.9362,158.762,16.72 +2017-08-14 01:47:00,40.1125,158.682,16.69 +2017-08-14 02:02:00,40.69,158.658,16.66 +2017-08-14 02:17:00,40.0675,158.64,16.63 +2017-08-14 02:32:00,39.03,158.63,16.59 +2017-08-14 02:47:00,38.5488,158.647,16.54 +2017-08-14 03:02:00,39.1325,158.667,16.51 +2017-08-14 03:17:00,39.825,158.65,16.47 +2017-08-14 03:32:00,39.9238,158.582,16.44 +2017-08-14 03:47:00,38.8337,158.473,16.4 +2017-08-14 04:02:00,40.9812,158.37,16.36 +2017-08-14 04:17:00,40.2562,158.28,16.32 +2017-08-14 04:32:00,40.3538,158.18,16.3 +2017-08-14 04:47:00,38.98,158.158,16.27 +2017-08-14 05:02:00,39.97,158.122,16.26 +2017-08-14 05:17:00,38.8825,158.103,16.24 +2017-08-14 05:32:00,39.33,158.105,16.22 +2017-08-14 05:47:00,39.0262,158.09,16.21 +2017-08-14 06:02:00,41.8662,158.015,16.2 +2017-08-14 06:17:00,39.0287,157.91,16.2 +2017-08-14 06:32:00,40.5887,157.837,16.2 +2017-08-14 06:47:00,40.4,157.742,16.21 +2017-08-14 07:02:00,40.8838,157.655,16.24 +2017-08-14 07:17:00,41.2225,157.562,16.28 +2017-08-14 07:32:00,39.6762,157.475,16.32 +2017-08-14 07:47:00,39.8262,157.395,16.36 +2017-08-14 08:02:00,39.8763,157.302,16.4 +2017-08-14 08:17:00,40.2575,157.25,16.45 +2017-08-14 08:32:00,39.3325,157.2,16.5 +2017-08-14 08:47:00,38.9788,157.14,16.55 +2017-08-14 09:02:00,41.0775,157.128,16.59 +2017-08-14 09:17:00,41.225,157.068,16.64 +2017-08-14 09:32:00,40.535,157.057,16.69 +2017-08-14 09:47:00,39.5788,157.065,16.74 +2017-08-14 10:02:00,39.2812,157.077,16.8 +2017-08-14 10:17:00,42.4562,157.065,16.86 +2017-08-14 10:32:00,40.8387,157.082,16.89 +2017-08-14 10:47:00,39.725,157.122,16.95 +2017-08-14 11:02:00,38.6888,157.052,17.02 +2017-08-14 11:17:00,41.27,156.96,17.1 +2017-08-14 11:32:00,37.5025,156.86,17.18 +2017-08-14 11:47:00,38.6425,156.707,17.28 +2017-08-14 12:02:00,39.58,156.582,17.36 +2017-08-14 12:17:00,39.4825,156.478,17.38 +2017-08-14 12:32:00,39.8237,156.46,17.41 +2017-08-14 12:47:00,37.8538,156.465,17.42 +2017-08-14 13:02:00,39.4825,156.46,17.51 +2017-08-14 13:17:00,38.6912,156.402,17.62 +2017-08-14 13:32:00,40.9362,156.375,17.69 +2017-08-14 13:47:00,40.1637,156.337,17.75 +2017-08-14 14:02:00,39.3825,156.228,17.83 +2017-08-14 14:17:00,39.1312,156.08,17.89 +2017-08-14 14:32:00,38.9337,155.997,17.95 +2017-08-14 14:47:00,39.8237,155.93,18.02 +2017-08-14 15:02:00,38.9337,155.927,18.09 +2017-08-14 15:17:00,39.625,155.917,18.15 +2017-08-14 15:32:00,39.8712,155.943,18.2 +2017-08-14 15:47:00,39.6787,156.035,18.24 +2017-08-14 16:02:00,41.77,156.052,18.31 +2017-08-14 16:17:00,37.8613,156.1,18.37 +2017-08-14 16:32:00,38.6937,156.107,18.4 +2017-08-14 16:47:00,37.6075,156.107,18.44 +2017-08-14 17:02:00,38.79,156.065,18.48 +2017-08-14 17:17:00,40.1162,156.005,18.55 +2017-08-14 17:32:00,38.0987,155.98,18.59 +2017-08-14 17:47:00,38.7412,155.98,18.63 +2017-08-14 18:02:00,40.7363,156.003,18.66 +2017-08-14 18:17:00,38.6,156.057,18.65 +2017-08-14 18:32:00,40.4412,156.1,18.65 +2017-08-14 18:47:00,39.1813,156.1,18.63 +2017-08-14 19:02:00,39.6275,156.087,18.58 +2017-08-14 19:17:00,39.6263,156.005,18.54 +2017-08-14 19:32:00,38.055,155.887,18.48 +2017-08-14 19:47:00,37.115,155.76,18.44 +2017-08-14 20:02:00,37.8575,155.585,18.4 +2017-08-14 20:17:00,37.8575,155.497,18.36 +2017-08-14 20:32:00,38.3562,155.425,18.31 +2017-08-14 20:47:00,37.9062,155.39,18.27 +2017-08-14 21:02:00,40.0287,155.352,18.24 +2017-08-14 21:17:00,38.1512,155.307,18.2 +2017-08-14 21:32:00,38.79,155.27,18.16 +2017-08-14 21:47:00,38.93,155.162,18.13 +2017-08-14 22:02:00,38.7837,154.987,18.1 +2017-08-14 22:17:00,38.5475,154.842,18.08 +2017-08-14 22:32:00,38.785,154.667,18.05 +2017-08-14 22:47:00,39.775,154.502,18.03 +2017-08-14 23:02:00,37.9562,154.362,18.0 +2017-08-14 23:17:00,37.705,154.317,17.96 +2017-08-14 23:32:00,38.0512,154.225,17.93 +2017-08-14 23:47:00,37.7562,154.145,17.9 +2017-08-15 00:02:00,38.1525,154.085,17.86 +2017-08-15 00:17:00,37.4512,154.018,17.81 +2017-08-15 00:32:00,38.405,153.897,17.78 +2017-08-15 00:47:00,38.74,153.765,17.75 +2017-08-15 01:02:00,39.3775,153.565,17.72 +2017-08-15 01:17:00,38.2525,153.408,17.68 +2017-08-15 01:32:00,37.5062,153.257,17.67 +2017-08-15 01:47:00,36.8688,153.15,17.65 +2017-08-15 02:02:00,37.2075,153.092,17.61 +2017-08-15 02:17:00,39.8763,153.062,17.59 +2017-08-15 02:32:00,40.6937,153.002,17.57 +2017-08-15 02:47:00,38.4012,152.96,17.54 +2017-08-15 03:02:00,37.1612,152.845,17.5 +2017-08-15 03:17:00,38.935,152.727,17.47 +2017-08-15 03:32:00,38.5462,152.552,17.43 +2017-08-15 03:47:00,38.6975,152.415,17.4 +2017-08-15 04:02:00,37.8075,152.26,17.38 +2017-08-15 04:17:00,38.0025,152.19,17.35 +2017-08-15 04:32:00,38.2038,152.125,17.32 +2017-08-15 04:47:00,38.2,152.095,17.29 +2017-08-15 05:02:00,39.2337,152.102,17.28 +2017-08-15 05:17:00,38.695,152.075,17.26 +2017-08-15 05:32:00,38.3562,152.027,17.24 +2017-08-15 05:47:00,38.885,151.912,17.24 +2017-08-15 06:02:00,37.405,151.825,17.24 +2017-08-15 06:17:00,38.645,151.677,17.24 +2017-08-15 06:32:00,37.955,151.535,17.24 +2017-08-15 06:47:00,37.255,151.425,17.25 +2017-08-15 07:02:00,39.385,151.277,17.25 +2017-08-15 07:17:00,37.905,151.158,17.25 +2017-08-15 07:32:00,38.1,151.035,17.28 +2017-08-15 07:47:00,39.5287,150.867,17.28 +2017-08-15 08:02:00,38.7913,150.768,17.3 +2017-08-15 08:17:00,38.7812,150.655,17.34 +2017-08-15 08:32:00,38.3037,150.587,17.38 +2017-08-15 08:47:00,36.9175,150.475,17.4 +2017-08-15 09:02:00,38.3012,150.427,17.45 +2017-08-15 09:17:00,39.3288,150.295,17.52 +2017-08-15 09:32:00,38.1525,150.202,17.57 +2017-08-15 09:47:00,38.5987,150.188,17.65 +2017-08-15 10:02:00,39.335,150.165,17.71 +2017-08-15 10:17:00,38.6975,150.155,17.77 +2017-08-15 10:32:00,39.1325,150.102,17.84 +2017-08-15 10:47:00,40.0175,150.11,17.92 +2017-08-15 11:02:00,36.9163,150.042,17.99 +2017-08-15 11:17:00,36.185,149.897,18.07 +2017-08-15 11:32:00,39.1813,149.798,18.16 +2017-08-15 11:47:00,38.6912,149.675,18.24 +2017-08-15 12:02:00,38.1,149.59,18.31 +2017-08-15 12:17:00,39.3325,149.555,18.36 +2017-08-15 12:32:00,37.755,149.51,18.43 +2017-08-15 12:47:00,36.965,149.555,18.52 +2017-08-15 13:02:00,37.905,149.507,18.61 +2017-08-15 13:17:00,38.1512,149.502,18.67 +2017-08-15 13:32:00,38.0512,149.442,18.71 +2017-08-15 13:47:00,37.3,149.325,18.77 +2017-08-15 14:02:00,37.8575,149.182,18.84 +2017-08-15 14:17:00,37.8587,149.06,18.93 +2017-08-15 14:32:00,37.605,148.908,19.0 +2017-08-15 14:47:00,36.8662,148.815,19.04 +2017-08-15 15:02:00,36.1362,148.735,19.1 +2017-08-15 15:17:00,39.2325,148.725,19.16 +2017-08-15 15:32:00,36.235,148.722,19.23 +2017-08-15 15:47:00,37.5625,148.675,19.29 +2017-08-15 16:02:00,36.185,148.64,19.34 +2017-08-15 16:17:00,37.755,148.58,19.37 +2017-08-15 16:32:00,38.1512,148.492,19.41 +2017-08-15 16:47:00,36.3763,148.37,19.44 +2017-08-15 17:02:00,36.8175,148.24,19.46 +2017-08-15 17:17:00,38.595,148.11,19.49 +2017-08-15 17:32:00,35.8375,148.052,19.49 +2017-08-15 17:47:00,38.0025,147.972,19.49 +2017-08-15 18:02:00,38.2537,147.952,19.48 +2017-08-15 18:17:00,38.8337,147.985,19.47 +2017-08-15 18:32:00,38.105,147.938,19.47 +2017-08-15 18:47:00,37.9075,147.895,19.44 +2017-08-15 19:02:00,37.16,147.78,19.43 +2017-08-15 19:17:00,39.6762,147.658,19.42 +2017-08-15 19:32:00,36.8213,147.515,19.41 +2017-08-15 19:47:00,36.7738,147.402,19.39 +2017-08-15 20:02:00,36.3325,147.305,19.35 +2017-08-15 20:17:00,37.505,147.28,19.33 +2017-08-15 20:32:00,35.6462,147.255,19.29 +2017-08-15 20:47:00,36.2375,147.225,19.26 +2017-08-15 21:02:00,35.8412,147.195,19.23 +2017-08-15 21:17:00,36.965,147.158,19.19 +2017-08-15 21:32:00,36.9688,147.075,19.16 +2017-08-15 21:47:00,38.3525,146.945,19.13 +2017-08-15 22:02:00,35.5975,146.835,19.11 +2017-08-15 22:17:00,35.7962,146.7,19.08 +2017-08-15 22:32:00,37.3562,146.562,19.05 +2017-08-15 22:47:00,37.7062,146.512,19.02 +2017-08-15 23:02:00,36.9212,146.465,19.0 +2017-08-15 23:17:00,37.0675,146.447,18.98 +2017-08-15 23:32:00,38.5975,146.41,18.96 +2017-08-15 23:47:00,35.3063,146.377,18.93 +2017-08-16 00:02:00,35.2062,146.302,18.9 +2017-08-16 00:17:00,37.4538,146.215,18.89 +2017-08-16 00:32:00,36.0413,146.107,18.87 +2017-08-16 00:47:00,39.1362,146.02,18.84 +2017-08-16 01:02:00,37.4075,145.882,18.82 +2017-08-16 01:17:00,37.5587,145.772,18.79 +2017-08-16 01:32:00,37.5575,145.75,18.77 +2017-08-16 01:47:00,36.6188,145.697,18.74 +2017-08-16 02:02:00,36.7712,145.63,18.7 +2017-08-16 02:17:00,37.955,145.63,18.67 +2017-08-16 02:32:00,38.0013,145.635,18.62 +2017-08-16 02:47:00,36.92,145.567,18.59 +2017-08-16 03:02:00,37.305,145.457,18.56 +2017-08-16 03:17:00,37.1625,145.325,18.53 +2017-08-16 03:32:00,36.7687,145.22,18.51 +2017-08-16 03:47:00,37.0212,145.127,18.5 +2017-08-16 04:02:00,38.005,145.045,18.48 +2017-08-16 04:17:00,36.0912,144.997,18.46 +2017-08-16 04:32:00,38.2062,144.957,18.45 +2017-08-16 04:47:00,37.7087,144.982,18.43 +2017-08-16 05:02:00,37.4037,145.062,18.39 +2017-08-16 05:17:00,35.695,145.06,18.36 +2017-08-16 05:32:00,37.6113,144.38,18.34 +2017-08-16 05:47:00,37.1137,143.872,18.31 +2017-08-16 06:02:00,37.4087,143.577,18.29 +2017-08-16 06:17:00,38.8825,143.417,18.27 +2017-08-16 06:32:00,38.1537,143.337,18.25 +2017-08-16 06:47:00,37.81,143.262,18.25 +2017-08-16 07:02:00,37.605,143.252,18.23 +2017-08-16 07:17:00,38.3037,143.26,18.22 +2017-08-16 07:32:00,37.86,143.292,18.24 +2017-08-16 07:47:00,39.6287,143.335,18.27 +2017-08-16 08:02:00,39.1338,143.382,18.27 +2017-08-16 08:17:00,38.3562,143.47,18.3 +2017-08-16 08:32:00,37.5587,143.505,18.34 +2017-08-16 08:47:00,37.1188,143.555,18.35 +2017-08-16 09:02:00,37.9562,143.557,18.37 +2017-08-16 09:17:00,37.5575,143.695,18.4 +2017-08-16 09:32:00,38.2025,143.742,18.41 +2017-08-16 09:47:00,37.955,143.802,18.46 +2017-08-16 10:02:00,35.7925,143.908,18.5 +2017-08-16 10:17:00,36.7225,143.992,18.54 +2017-08-16 10:32:00,37.6587,144.01,18.63 +2017-08-16 10:47:00,36.5212,143.927,18.7 +2017-08-16 11:02:00,37.1625,143.762,18.73 +2017-08-16 11:17:00,38.65,143.625,18.79 +2017-08-16 11:32:00,36.2337,143.38,18.86 +2017-08-16 11:47:00,35.4525,143.097,18.91 +2017-08-16 12:02:00,37.91,142.845,18.96 +2017-08-16 12:17:00,37.4512,142.57,18.99 +2017-08-16 12:32:00,36.6188,142.277,19.0 +2017-08-16 12:47:00,38.5013,141.987,19.02 +2017-08-16 13:02:00,36.285,141.605,19.12 +2017-08-16 13:17:00,34.2825,141.227,19.2 +2017-08-16 13:32:00,36.9675,140.795,19.21 +2017-08-16 13:47:00,38.3525,140.365,19.24 +2017-08-16 14:02:00,36.62,139.925,19.29 +2017-08-16 14:17:00,37.3025,139.562,19.35 +2017-08-16 14:32:00,38.355,139.19,19.41 +2017-08-16 14:47:00,37.1625,138.885,19.47 +2017-08-16 15:02:00,36.2387,138.592,19.52 +2017-08-16 15:17:00,37.6575,138.365,19.57 +2017-08-16 15:32:00,35.0062,138.197,19.63 +2017-08-16 15:47:00,36.9175,137.957,19.69 +2017-08-16 16:02:00,35.1537,137.775,19.75 +2017-08-16 16:17:00,36.87,137.143,19.79 +2017-08-16 16:32:00,36.235,135.673,19.8 +2017-08-16 16:47:00,38.3063,134.5,19.8 +2017-08-16 17:02:00,37.5587,133.765,19.83 +2017-08-16 17:17:00,38.4037,133.417,19.86 +2017-08-16 17:32:00,38.6937,133.33,19.88 +2017-08-16 17:47:00,37.9075,133.35,19.89 +2017-08-16 18:02:00,35.9925,133.537,19.92 +2017-08-16 18:17:00,36.7712,133.76,19.93 +2017-08-16 18:32:00,36.7712,134.022,19.93 +2017-08-16 18:47:00,37.5587,134.212,19.92 +2017-08-16 19:02:00,37.0187,134.46,19.9 +2017-08-16 19:17:00,38.5488,134.667,19.89 +2017-08-16 19:32:00,36.2375,134.85,19.86 +2017-08-16 19:47:00,36.8675,135.04,19.83 +2017-08-16 20:02:00,37.8063,135.262,19.81 +2017-08-16 20:17:00,37.1625,135.515,19.78 +2017-08-16 20:32:00,36.3775,135.802,19.73 +2017-08-16 20:47:00,37.015,136.057,19.69 +2017-08-16 21:02:00,36.72,136.33,19.64 +2017-08-16 21:17:00,37.1137,136.545,19.59 +2017-08-16 21:32:00,35.6425,136.737,19.55 +2017-08-16 21:47:00,36.6738,136.902,19.52 +2017-08-16 22:02:00,35.7425,137.06,19.49 +2017-08-16 22:17:00,35.9425,137.175,19.49 +2017-08-16 22:32:00,36.1888,137.292,19.46 +2017-08-16 22:47:00,37.0687,137.408,19.43 +2017-08-16 23:02:00,37.5563,137.548,19.39 +2017-08-16 23:17:00,37.4062,137.72,19.38 +2017-08-16 23:32:00,36.285,137.902,19.35 +2017-08-16 23:47:00,37.81,138.05,19.32 +2017-08-17 00:02:00,35.7412,138.19,19.29 +2017-08-17 00:17:00,36.0425,138.32,19.24 +2017-08-17 00:32:00,35.7937,138.415,19.21 +2017-08-17 00:47:00,35.945,138.502,19.16 +2017-08-17 01:02:00,36.7738,138.567,19.11 +2017-08-17 01:17:00,36.1362,138.627,19.07 +2017-08-17 01:32:00,36.9688,138.677,19.01 +2017-08-17 01:47:00,35.6,138.76,18.97 +2017-08-17 02:02:00,38.1525,138.835,18.92 +2017-08-17 02:17:00,37.505,138.912,18.9 +2017-08-17 02:32:00,37.7562,138.995,18.86 +2017-08-17 02:47:00,35.2038,139.062,18.84 +2017-08-17 03:02:00,37.0713,139.112,18.81 +2017-08-17 03:17:00,35.455,139.162,18.78 +2017-08-17 03:32:00,37.3562,139.202,18.76 +2017-08-17 03:47:00,38.5512,139.26,18.74 +2017-08-17 04:02:00,36.475,139.327,18.72 +2017-08-17 04:17:00,36.2375,139.393,18.7 +2017-08-17 04:32:00,37.1587,139.462,18.66 +2017-08-17 04:47:00,37.56,139.512,18.63 +2017-08-17 05:02:00,36.9637,139.57,18.59 +2017-08-17 05:17:00,36.8225,139.647,18.55 +2017-08-17 05:32:00,35.15,139.682,18.53 +2017-08-17 05:47:00,38.3562,139.74,18.52 +2017-08-17 06:02:00,36.7712,139.787,18.52 +2017-08-17 06:17:00,35.6488,139.83,18.51 +2017-08-17 06:32:00,37.555,139.867,18.49 +2017-08-17 06:47:00,36.6725,139.917,18.48 +2017-08-17 07:02:00,36.8162,139.94,18.47 +2017-08-17 07:17:00,35.9887,139.992,18.48 +2017-08-17 07:32:00,36.915,140.04,18.5 +2017-08-17 07:47:00,36.135,140.087,18.52 +2017-08-17 08:02:00,36.3325,140.1,18.53 +2017-08-17 08:17:00,37.2075,140.152,18.55 +2017-08-17 08:32:00,38.05,140.197,18.59 +2017-08-17 08:47:00,36.8175,140.235,18.56 +2017-08-17 09:02:00,35.94,140.272,18.57 +2017-08-17 09:17:00,38.1512,140.31,18.62 +2017-08-17 09:32:00,36.3787,140.337,18.66 +2017-08-17 09:47:00,38.495,140.36,18.67 +2017-08-17 10:02:00,37.0687,140.387,18.69 +2017-08-17 10:17:00,38.4525,140.387,18.77 +2017-08-17 10:32:00,35.9938,140.355,18.83 +2017-08-17 10:47:00,37.1175,140.287,18.87 +2017-08-17 11:02:00,35.8937,140.24,18.88 +2017-08-17 11:17:00,37.7588,140.23,18.9 +2017-08-17 11:32:00,38.1025,140.232,18.96 +2017-08-17 11:47:00,37.3562,140.242,19.02 +2017-08-17 12:02:00,36.8225,140.257,19.04 +2017-08-17 12:17:00,35.0537,140.225,19.08 +2017-08-17 12:32:00,37.86,140.147,19.14 +2017-08-17 12:47:00,35.3512,140.052,19.21 +2017-08-17 13:02:00,35.5025,139.955,19.28 +2017-08-17 13:17:00,37.61,139.852,19.35 +2017-08-17 13:32:00,36.57,139.747,19.4 +2017-08-17 13:47:00,35.55,139.673,19.43 +2017-08-17 14:02:00,35.945,139.622,19.46 +2017-08-17 14:17:00,38.205,139.615,19.5 +2017-08-17 14:32:00,35.89,139.627,19.53 +2017-08-17 14:47:00,36.8213,139.675,19.57 +2017-08-17 15:02:00,37.5587,139.66,19.61 +2017-08-17 15:17:00,34.815,139.792,19.66 +2017-08-17 15:32:00,35.205,139.96,19.76 +2017-08-17 15:47:00,37.455,140.082,19.77 +2017-08-17 16:02:00,36.38,140.192,19.97 +2017-08-17 16:17:00,38.6488,140.235,19.89 +2017-08-17 16:32:00,36.04,140.27,19.85 +2017-08-17 16:47:00,35.99,140.292,19.87 +2017-08-17 17:02:00,38.0037,140.305,19.87 +2017-08-17 17:17:00,38.0037,140.287,19.86 +2017-08-17 17:32:00,36.8237,140.257,19.87 +2017-08-17 17:47:00,35.8925,140.21,19.86 +2017-08-17 18:02:00,37.76,140.132,19.87 +2017-08-17 18:17:00,38.9812,140.042,19.87 +2017-08-17 18:32:00,37.2113,139.962,19.86 +2017-08-17 18:47:00,36.235,139.875,19.85 +2017-08-17 19:02:00,38.0537,139.79,19.82 +2017-08-17 19:17:00,35.7925,139.745,19.78 +2017-08-17 19:32:00,36.38,139.762,19.75 +2017-08-17 19:47:00,36.1375,139.79,19.7 +2017-08-17 20:02:00,35.055,139.827,19.67 +2017-08-17 20:17:00,36.4287,139.86,19.64 +2017-08-17 20:32:00,36.2387,139.807,19.61 +2017-08-17 20:47:00,35.46,139.722,19.57 +2017-08-17 21:02:00,35.6475,139.63,19.53 +2017-08-17 21:17:00,35.205,139.542,19.51 +2017-08-17 21:32:00,36.82,139.438,19.49 +2017-08-17 21:47:00,37.2113,139.36,19.48 +2017-08-17 22:02:00,37.5062,139.312,19.47 +2017-08-17 22:17:00,37.6125,139.312,19.45 +2017-08-17 22:32:00,36.72,139.377,19.44 +2017-08-17 22:47:00,36.87,139.438,19.43 +2017-08-17 23:02:00,35.6,139.497,19.42 +2017-08-17 23:17:00,37.305,139.54,19.42 +2017-08-17 23:32:00,37.3063,139.557,19.39 +2017-08-17 23:47:00,36.7237,139.567,19.37 +2017-08-18 00:02:00,37.1188,139.602,19.34 +2017-08-18 00:17:00,35.89,139.627,19.31 +2017-08-18 00:32:00,34.6225,139.667,19.28 +2017-08-18 00:47:00,36.5225,139.72,19.25 +2017-08-18 01:02:00,38.105,139.772,19.22 +2017-08-18 01:17:00,38.985,139.822,19.2 +2017-08-18 01:32:00,36.57,139.895,19.18 +2017-08-18 01:47:00,36.7225,139.962,19.14 +2017-08-18 02:02:00,37.655,140.04,19.13 +2017-08-18 02:17:00,37.7062,140.097,19.12 +2017-08-18 02:32:00,37.7637,140.182,19.11 +2017-08-18 02:47:00,36.0413,140.222,19.09 +2017-08-18 03:02:00,36.5775,140.268,19.08 +2017-08-18 03:17:00,37.71,140.3,19.05 +2017-08-18 03:32:00,36.0,140.345,19.03 +2017-08-18 03:47:00,38.105,140.41,19.02 +2017-08-18 04:02:00,38.0062,140.452,18.99 +2017-08-18 04:17:00,36.2875,140.5,18.97 +2017-08-18 04:32:00,34.2812,140.535,18.94 +2017-08-18 04:47:00,37.9575,140.577,18.91 +2017-08-18 05:02:00,37.7113,140.61,18.89 +2017-08-18 05:17:00,37.1175,140.635,18.88 +2017-08-18 05:32:00,38.9375,140.655,18.88 +2017-08-18 05:47:00,37.3512,140.695,18.88 +2017-08-18 06:02:00,35.1012,140.705,18.87 +2017-08-18 06:17:00,35.74,140.725,18.89 +2017-08-18 06:32:00,35.9437,140.747,18.94 +2017-08-18 06:47:00,37.4037,140.765,18.96 +2017-08-18 07:02:00,34.625,140.78,18.94 +2017-08-18 07:17:00,35.4512,140.792,18.96 +2017-08-18 07:32:00,36.1862,140.8,18.98 +2017-08-18 07:47:00,37.9575,140.725,18.99 +2017-08-18 08:02:00,34.9587,140.622,18.99 +2017-08-18 08:17:00,38.105,140.537,18.98 +2017-08-18 08:32:00,36.5737,140.46,19.0 +2017-08-18 08:47:00,36.09,140.355,19.01 +2017-08-18 09:02:00,36.6225,140.325,19.01 +2017-08-18 09:17:00,36.3812,140.28,18.98 +2017-08-18 09:32:00,36.6188,140.295,18.97 +2017-08-18 09:47:00,36.82,140.34,18.97 +2017-08-18 10:02:00,36.5225,140.375,18.95 +2017-08-18 10:17:00,37.0675,140.432,18.9 +2017-08-18 10:32:00,38.8838,140.47,18.93 +2017-08-18 10:47:00,39.3825,140.472,18.94 +2017-08-18 11:02:00,36.6225,140.455,18.96 +2017-08-18 11:17:00,37.355,140.412,18.97 +2017-08-18 11:32:00,36.8712,140.342,18.96 +2017-08-18 11:47:00,36.8225,140.255,19.01 +2017-08-18 12:02:00,35.645,140.23,19.05 +2017-08-18 12:17:00,37.2537,140.19,19.07 +2017-08-18 12:32:00,37.0725,140.167,19.09 +2017-08-18 12:47:00,36.2887,140.135,19.11 +2017-08-18 13:02:00,35.2062,140.09,19.13 +2017-08-18 13:17:00,35.8925,139.997,19.15 +2017-08-18 13:32:00,38.2062,139.887,19.18 +2017-08-18 13:47:00,37.7575,139.752,19.23 +2017-08-18 14:02:00,38.8838,139.607,19.32 +2017-08-18 14:17:00,39.5312,139.48,19.36 +2017-08-18 14:32:00,36.7213,139.382,19.35 +2017-08-18 14:47:00,37.1625,139.32,19.37 +2017-08-18 15:02:00,35.9938,139.305,19.37 +2017-08-18 15:17:00,34.285,139.283,19.36 +2017-08-18 15:32:00,37.0687,139.27,19.36 +2017-08-18 15:47:00,37.86,139.173,19.36 +2017-08-18 16:02:00,35.795,139.072,19.36 +2017-08-18 16:17:00,35.8925,138.957,19.35 +2017-08-18 16:32:00,37.115,139.06,19.35 +2017-08-18 16:47:00,36.5713,139.677,19.37 +2017-08-18 17:02:00,35.7012,140.908,19.43 +2017-08-18 17:17:00,37.5088,141.945,19.6 +2017-08-18 17:32:00,38.5987,142.548,19.64 +2017-08-18 17:47:00,38.9362,142.842,19.51 +2017-08-18 18:02:00,36.7712,143.012,19.44 +2017-08-18 18:17:00,36.6225,143.155,19.44 +2017-08-18 18:32:00,35.205,143.283,19.42 +2017-08-18 18:47:00,36.525,143.335,19.38 +2017-08-18 19:02:00,37.46,143.382,19.33 +2017-08-18 19:17:00,37.61,143.425,19.28 +2017-08-18 19:32:00,37.9562,143.427,19.26 +2017-08-18 19:47:00,36.1425,143.287,19.24 +2017-08-18 20:02:00,36.0938,143.085,19.22 +2017-08-18 20:17:00,36.045,142.957,19.17 +2017-08-18 20:32:00,37.4062,142.875,19.14 +2017-08-18 20:47:00,36.29,142.79,19.11 +2017-08-18 21:02:00,36.19,142.677,19.07 +2017-08-18 21:17:00,38.2562,142.565,19.03 +2017-08-18 21:32:00,38.6025,142.425,18.99 +2017-08-18 21:47:00,37.8637,142.283,18.98 +2017-08-18 22:02:00,34.815,142.12,18.97 +2017-08-18 22:17:00,35.995,141.952,18.95 +2017-08-18 22:32:00,37.6075,141.817,18.93 +2017-08-18 22:47:00,37.1637,141.715,18.9 +2017-08-18 23:02:00,38.1575,141.625,18.87 +2017-08-18 23:17:00,34.7712,141.56,18.85 +2017-08-18 23:32:00,36.72,141.522,18.83 +2017-08-18 23:47:00,36.7712,141.39,18.8 +2017-08-19 00:02:00,37.7612,141.237,18.77 +2017-08-19 00:17:00,34.6263,141.055,18.74 +2017-08-19 00:32:00,35.4562,140.857,18.72 +2017-08-19 00:47:00,38.5512,140.7,18.7 +2017-08-19 01:02:00,38.0062,140.527,18.68 +2017-08-19 01:17:00,35.405,140.39,18.66 +2017-08-19 01:32:00,36.575,140.272,18.64 +2017-08-19 01:47:00,38.155,140.235,18.61 +2017-08-19 02:02:00,38.1525,140.237,18.57 +2017-08-19 02:17:00,37.815,140.257,18.54 +2017-08-19 02:32:00,37.9575,140.237,18.51 +2017-08-19 02:47:00,36.3838,140.185,18.45 +2017-08-19 03:02:00,38.355,140.077,18.43 +2017-08-19 03:17:00,37.56,139.985,18.42 +2017-08-19 03:32:00,39.0863,139.867,18.39 +2017-08-19 03:47:00,37.9062,139.765,18.38 +2017-08-19 04:02:00,37.3125,139.685,18.32 +2017-08-19 04:17:00,36.7738,139.652,18.29 +2017-08-19 04:32:00,35.9938,139.71,18.26 +2017-08-19 04:47:00,35.6937,139.752,18.23 +2017-08-19 05:02:00,36.8725,139.765,18.2 +2017-08-19 05:17:00,35.6475,139.792,18.18 +2017-08-19 05:32:00,38.5037,139.78,18.16 +2017-08-19 05:47:00,38.7875,139.755,18.16 +2017-08-19 06:02:00,37.4538,139.727,18.15 +2017-08-19 06:17:00,36.4775,139.77,18.16 +2017-08-19 06:32:00,35.6462,139.76,18.12 +2017-08-19 06:47:00,36.77,139.747,18.11 +2017-08-19 07:02:00,39.2837,139.783,18.1 +2017-08-19 07:17:00,36.9187,139.82,18.11 +2017-08-19 07:32:00,37.07,139.815,18.12 +2017-08-19 07:47:00,37.0662,139.877,18.11 +2017-08-19 08:02:00,38.9825,139.923,18.11 +2017-08-19 08:17:00,38.8862,139.967,18.12 +2017-08-19 08:32:00,37.4538,140.025,18.14 +2017-08-19 08:47:00,37.9087,140.132,18.17 +2017-08-19 09:02:00,37.76,140.115,18.17 +2017-08-19 09:17:00,37.7588,140.173,18.19 +2017-08-19 09:32:00,38.0025,140.22,18.21 +2017-08-19 09:47:00,39.1362,140.268,18.21 +2017-08-19 10:02:00,38.65,140.307,18.24 +2017-08-19 10:17:00,36.7213,140.335,18.26 +2017-08-19 10:32:00,36.7712,140.41,18.27 +2017-08-19 10:47:00,36.3812,140.515,18.3 +2017-08-19 11:02:00,37.0675,140.61,18.31 +2017-08-19 11:17:00,37.4037,140.682,18.34 +2017-08-19 11:32:00,38.3012,140.725,18.35 +2017-08-19 11:47:00,36.775,140.877,18.38 +2017-08-19 12:02:00,37.5075,140.967,18.39 +2017-08-19 12:17:00,37.7562,141.07,18.4 +2017-08-19 12:32:00,37.3562,141.177,18.4 +2017-08-19 12:47:00,38.3587,141.272,18.42 +2017-08-19 13:02:00,37.4562,141.352,18.46 +2017-08-19 13:17:00,38.4512,141.512,18.54 +2017-08-19 13:32:00,37.21,141.632,18.63 +2017-08-19 13:47:00,36.3775,141.768,18.7 +2017-08-19 14:02:00,38.9362,141.902,18.75 +2017-08-19 14:17:00,38.5488,142.022,18.79 +2017-08-19 14:32:00,36.3812,142.177,18.85 +2017-08-19 14:47:00,37.9112,142.317,18.88 +2017-08-19 15:02:00,37.0212,142.412,18.93 +2017-08-19 15:17:00,36.2875,142.575,19.01 +2017-08-19 15:32:00,35.7937,142.71,19.09 +2017-08-19 15:47:00,37.51,142.847,19.12 +2017-08-19 16:02:00,36.0387,142.952,19.15 +2017-08-19 16:17:00,37.5625,143.117,19.16 +2017-08-19 16:32:00,38.7875,143.262,19.18 +2017-08-19 16:47:00,38.0037,143.397,19.19 +2017-08-19 17:02:00,36.475,143.512,19.2 +2017-08-19 17:17:00,37.9512,143.62,19.2 +2017-08-19 17:32:00,37.1162,143.77,19.17 +2017-08-19 17:47:00,35.99,143.895,19.17 +2017-08-19 18:02:00,37.9075,144.012,19.17 +2017-08-19 18:17:00,37.0175,144.12,19.16 +2017-08-19 18:32:00,37.7125,144.255,19.15 +2017-08-19 18:47:00,35.745,144.35,19.1 +2017-08-19 19:02:00,37.6587,144.47,19.06 +2017-08-19 19:17:00,36.9212,144.58,19.01 +2017-08-19 19:32:00,36.3787,144.715,18.95 +2017-08-19 19:47:00,37.6575,144.78,18.89 +2017-08-19 20:02:00,36.7762,144.875,18.83 +2017-08-19 20:17:00,37.1162,144.99,18.77 +2017-08-19 20:32:00,35.3525,145.077,18.74 +2017-08-19 20:47:00,37.7075,145.158,18.68 +2017-08-19 21:02:00,38.405,145.237,18.63 +2017-08-19 21:17:00,34.865,145.32,18.57 +2017-08-19 21:32:00,35.3025,145.405,18.51 +2017-08-19 21:47:00,36.4275,145.48,18.46 +2017-08-19 22:02:00,36.72,145.55,18.42 +2017-08-19 22:17:00,36.9175,145.62,18.37 +2017-08-19 22:32:00,37.6113,145.682,18.32 +2017-08-19 22:47:00,37.3538,145.747,18.28 +2017-08-19 23:02:00,36.6237,145.787,18.24 +2017-08-19 23:17:00,37.7537,145.857,18.21 +2017-08-19 23:32:00,36.38,145.925,18.16 +2017-08-19 23:47:00,36.185,145.962,18.13 +2017-08-20 00:02:00,37.9562,146.015,18.09 +2017-08-20 00:17:00,36.1375,146.08,18.05 +2017-08-20 00:32:00,35.695,146.105,18.03 +2017-08-20 00:47:00,36.6212,146.167,18.0 +2017-08-20 01:02:00,35.6937,146.192,17.97 +2017-08-20 01:17:00,35.4987,146.237,17.93 +2017-08-20 01:32:00,35.9425,146.27,17.9 +2017-08-20 01:47:00,36.92,146.305,17.87 +2017-08-20 02:02:00,36.0887,146.315,17.82 +2017-08-20 02:17:00,37.505,146.337,17.77 +2017-08-20 02:32:00,38.005,146.365,17.73 +2017-08-20 02:47:00,36.5212,146.402,17.69 +2017-08-20 03:02:00,36.82,146.412,17.64 +2017-08-20 03:17:00,36.9163,146.427,17.6 +2017-08-20 03:32:00,38.6987,146.455,17.56 +2017-08-20 03:47:00,37.21,146.445,17.52 +2017-08-20 04:02:00,35.995,146.477,17.48 +2017-08-20 04:17:00,38.695,146.482,17.46 +2017-08-20 04:32:00,37.115,146.475,17.43 +2017-08-20 04:47:00,36.9175,146.432,17.4 +2017-08-20 05:02:00,36.4737,146.385,17.37 +2017-08-20 05:17:00,35.4037,146.35,17.34 +2017-08-20 05:32:00,36.7712,146.317,17.33 +2017-08-20 05:47:00,37.0662,146.295,17.32 +2017-08-20 06:02:00,36.9662,146.26,17.28 +2017-08-20 06:17:00,36.2875,146.19,17.26 +2017-08-20 06:32:00,37.405,146.1,17.25 +2017-08-20 06:47:00,37.71,146.018,17.25 +2017-08-20 07:02:00,37.3037,145.942,17.26 +2017-08-20 07:17:00,36.285,145.832,17.26 +2017-08-20 07:32:00,37.5563,145.707,17.26 +2017-08-20 07:47:00,37.755,145.658,17.28 +2017-08-20 08:02:00,36.3775,145.487,17.31 +2017-08-20 08:17:00,37.56,145.352,17.33 +2017-08-20 08:32:00,39.0312,145.232,17.33 +2017-08-20 08:47:00,38.3063,145.137,17.33 +2017-08-20 09:02:00,38.6488,145.033,17.32 +2017-08-20 09:17:00,36.8187,144.905,17.32 +2017-08-20 09:32:00,38.205,144.715,17.33 +2017-08-20 09:47:00,36.5225,144.582,17.39 +2017-08-20 10:02:00,37.6575,144.507,17.41 +2017-08-20 10:17:00,39.23,144.49,17.4 +2017-08-20 10:32:00,37.7575,144.485,17.38 +2017-08-20 10:47:00,37.86,144.512,17.39 +2017-08-20 11:02:00,38.3525,144.487,17.4 +2017-08-20 11:17:00,38.05,144.37,17.52 +2017-08-20 11:32:00,36.4737,144.232,17.57 +2017-08-20 11:47:00,38.2525,144.027,17.56 +2017-08-20 12:02:00,39.0812,143.84,17.53 +2017-08-20 12:17:00,38.0013,143.71,17.54 +2017-08-20 12:32:00,39.0788,143.575,17.57 +2017-08-20 12:47:00,38.4025,143.5,17.62 +2017-08-20 13:02:00,37.7575,143.445,17.65 +2017-08-20 13:17:00,38.0525,143.457,17.67 +2017-08-20 13:32:00,38.3575,143.44,17.71 +2017-08-20 13:47:00,39.2862,143.385,17.75 +2017-08-20 14:02:00,37.2575,143.292,17.78 +2017-08-20 14:17:00,37.0662,143.205,17.78 +2017-08-20 14:32:00,36.87,143.018,17.77 +2017-08-20 14:47:00,37.8575,142.897,17.77 +2017-08-20 15:02:00,36.575,142.712,17.82 +2017-08-20 15:17:00,35.995,142.582,17.88 +2017-08-20 15:32:00,35.9975,142.515,17.92 +2017-08-20 15:47:00,37.2062,142.455,17.94 +2017-08-20 16:02:00,38.5037,142.43,17.95 +2017-08-20 16:17:00,36.2887,142.4,17.96 +2017-08-20 16:32:00,36.4313,142.35,17.96 +2017-08-20 16:47:00,36.6712,142.222,17.99 +2017-08-20 17:02:00,37.7062,142.085,18.03 +2017-08-20 17:17:00,36.9187,141.9,18.06 +2017-08-20 17:32:00,36.6663,141.765,18.11 +2017-08-20 17:47:00,37.2625,141.632,18.14 +2017-08-20 18:02:00,37.71,141.507,18.15 +2017-08-20 18:17:00,38.2038,141.427,18.16 +2017-08-20 18:32:00,36.09,141.355,18.15 +2017-08-20 18:47:00,36.2838,141.317,18.14 +2017-08-20 19:02:00,36.9675,141.307,18.14 +2017-08-20 19:17:00,36.7188,141.24,18.11 +2017-08-20 19:32:00,37.6038,141.145,18.09 +2017-08-20 19:47:00,36.8162,141.012,18.04 +2017-08-20 20:02:00,37.21,140.885,18.01 +2017-08-20 20:17:00,36.6712,140.772,17.96 +2017-08-20 20:32:00,37.3575,140.615,17.89 +2017-08-20 20:47:00,39.03,140.492,17.83 +2017-08-20 21:02:00,38.4037,140.455,17.74 +2017-08-20 21:17:00,36.7725,140.423,17.66 +2017-08-20 21:32:00,37.7575,140.4,17.6 +2017-08-20 21:47:00,35.945,140.355,17.55 +2017-08-20 22:02:00,39.2387,140.28,17.5 +2017-08-20 22:17:00,37.305,140.197,17.47 +2017-08-20 22:32:00,37.7087,140.085,17.44 +2017-08-20 22:47:00,36.8737,139.942,17.41 +2017-08-20 23:02:00,38.5037,139.817,17.39 +2017-08-20 23:17:00,37.7075,139.75,17.38 +2017-08-20 23:32:00,37.8613,139.705,17.37 +2017-08-20 23:47:00,36.1875,139.665,17.36 +2017-08-21 00:02:00,37.4075,139.68,17.35 +2017-08-21 00:17:00,38.0013,139.67,17.34 +2017-08-21 00:32:00,36.915,139.662,17.33 +2017-08-21 00:47:00,36.7712,139.627,17.31 +2017-08-21 01:02:00,36.725,139.54,17.28 +2017-08-21 01:17:00,36.4262,139.43,17.22 +2017-08-21 01:32:00,36.5713,139.337,17.16 +2017-08-21 01:47:00,36.6212,139.222,17.12 +2017-08-21 02:02:00,36.9175,139.165,17.08 +2017-08-21 02:17:00,37.805,139.132,17.03 +2017-08-21 02:32:00,38.1525,139.145,16.96 +2017-08-21 02:47:00,36.0887,139.192,16.91 +2017-08-21 03:02:00,37.0675,139.217,16.86 +2017-08-21 03:17:00,37.3087,139.195,16.8 +2017-08-21 03:32:00,38.8838,139.182,16.76 +2017-08-21 03:47:00,37.9062,139.077,16.72 +2017-08-21 04:02:00,38.6925,139.005,16.69 +2017-08-21 04:17:00,36.8175,138.895,16.66 +2017-08-21 04:32:00,38.1562,138.785,16.64 +2017-08-21 04:47:00,40.0187,138.737,16.61 +2017-08-21 05:02:00,39.6263,138.727,16.59 +2017-08-21 05:17:00,39.235,138.742,16.56 +2017-08-21 05:32:00,38.935,138.783,16.54 +2017-08-21 05:47:00,38.055,138.817,16.52 +2017-08-21 06:02:00,38.1987,138.807,16.5 +2017-08-21 06:17:00,38.3012,138.757,16.49 +2017-08-21 06:32:00,37.755,138.715,16.47 +2017-08-21 06:47:00,37.4512,138.658,16.43 +2017-08-21 07:02:00,38.8787,138.58,16.43 +2017-08-21 07:17:00,38.9837,138.545,16.43 +2017-08-21 07:32:00,38.5962,138.467,16.41 +2017-08-21 07:47:00,39.8213,138.367,16.43 +2017-08-21 08:02:00,38.5025,138.29,16.42 +2017-08-21 08:17:00,36.0413,138.242,16.44 +2017-08-21 08:32:00,35.5537,138.147,16.44 +2017-08-21 08:47:00,35.6912,138.112,16.44 +2017-08-21 09:02:00,37.45,138.065,16.47 +2017-08-21 09:17:00,43.0837,137.997,16.46 +2017-08-21 09:32:00,27.8063,137.91,16.5 +2017-08-21 09:47:00,47.7262,137.832,16.52 +2017-08-21 10:02:00,41.075,137.757,16.52 +2017-08-21 10:17:00,-0.141251,137.667,16.57 +2017-08-21 10:32:00,-0.138752,137.63,16.54 +2017-08-21 10:47:00,-0.137501,137.635,16.54 +2017-08-21 11:02:00,-0.137501,137.673,16.54 +2017-08-21 11:17:00,-0.138752,137.68,16.61 +2017-08-21 11:32:00,-0.139999,137.662,16.71 +2017-08-21 11:47:00,-0.137501,137.55,16.76 +2017-08-21 12:02:00,-0.13625,137.408,16.74 +2017-08-21 12:17:00,-0.130001,137.25,16.73 +2017-08-21 12:32:00,-0.13625,137.12,16.74 +2017-08-21 12:47:00,-0.1325,136.947,16.8 +2017-08-21 13:02:00,-0.1325,136.915,16.86 +2017-08-21 13:17:00,37.9538,136.867,16.9 +2017-08-21 13:32:00,35.6925,136.825,16.92 +2017-08-21 13:47:00,36.9637,136.85,16.96 +2017-08-21 14:02:00,39.33,136.867,17.01 +2017-08-21 14:17:00,39.2837,136.765,17.05 +2017-08-21 14:32:00,37.505,136.712,17.09 +2017-08-21 14:47:00,37.7038,136.585,17.12 +2017-08-21 15:02:00,38.6987,136.472,17.13 +2017-08-21 15:17:00,36.1387,136.36,17.15 +2017-08-21 15:32:00,37.5587,136.215,17.19 +2017-08-21 15:47:00,37.81,136.173,17.22 +2017-08-21 16:02:00,36.7225,136.127,17.24 +2017-08-21 16:17:00,35.8438,136.112,17.26 +2017-08-21 16:32:00,35.4538,136.117,17.27 +2017-08-21 16:47:00,36.3337,136.092,17.29 +2017-08-21 17:02:00,36.7725,136.022,17.33 +2017-08-21 17:17:00,37.4512,135.893,17.35 +2017-08-21 17:32:00,35.6888,135.768,17.38 +2017-08-21 17:47:00,37.8112,135.607,17.38 +2017-08-21 18:02:00,37.7575,135.452,17.37 +2017-08-21 18:17:00,36.7725,135.045,17.38 +2017-08-21 18:32:00,36.7237,134.408,17.39 +2017-08-21 18:47:00,38.0488,133.935,17.4 +2017-08-21 19:02:00,36.9675,133.65,17.41 +2017-08-21 19:17:00,38.2012,133.525,17.4 +2017-08-21 19:32:00,37.4538,133.487,17.39 +2017-08-21 19:47:00,37.0662,133.38,17.39 +2017-08-21 20:02:00,38.0037,133.24,17.39 +2017-08-21 20:17:00,37.8125,133.143,17.37 +2017-08-21 20:32:00,38.9375,132.98,17.36 +2017-08-21 20:47:00,36.5187,132.865,17.33 +2017-08-21 21:02:00,36.3325,132.785,17.3 +2017-08-21 21:17:00,38.205,132.702,17.26 +2017-08-21 21:32:00,37.6537,132.658,17.21 +2017-08-21 21:47:00,38.7875,132.64,17.16 +2017-08-21 22:02:00,37.3525,132.595,17.13 +2017-08-21 22:17:00,40.1663,132.515,17.09 +2017-08-21 22:32:00,36.4275,132.393,17.04 +2017-08-21 22:47:00,36.7712,132.237,17.01 +2017-08-21 23:02:00,36.965,132.052,16.97 +2017-08-21 23:17:00,36.9175,131.85,16.93 +2017-08-21 23:32:00,38.5,131.673,16.91 +2017-08-21 23:47:00,37.9525,131.567,16.88 +2017-08-22 00:02:00,37.0687,131.46,16.85 +2017-08-22 00:17:00,36.6188,131.375,16.82 +2017-08-22 00:32:00,37.3037,131.327,16.8 +2017-08-22 00:47:00,38.05,131.235,16.78 +2017-08-22 01:02:00,37.7588,131.122,16.77 +2017-08-22 01:17:00,37.8562,130.925,16.75 +2017-08-22 01:32:00,37.8037,130.715,16.73 +2017-08-22 01:47:00,38.0512,130.482,16.71 +2017-08-22 02:02:00,37.5587,130.255,16.68 +2017-08-22 02:17:00,37.3025,130.082,16.66 +2017-08-22 02:32:00,39.0825,129.982,16.63 +2017-08-22 02:47:00,37.8587,129.882,16.6 +2017-08-22 03:02:00,39.0875,129.76,16.54 +2017-08-22 03:17:00,36.3775,129.645,16.5 +2017-08-22 03:32:00,36.425,129.495,16.46 +2017-08-22 03:47:00,38.4962,129.31,16.42 +2017-08-22 04:02:00,36.9187,129.095,16.36 +2017-08-22 04:17:00,37.0175,128.817,16.32 +2017-08-22 04:32:00,36.5262,128.587,16.26 +2017-08-22 04:47:00,36.4275,128.375,16.22 +2017-08-22 05:02:00,37.2513,127.64,16.19 +2017-08-22 05:17:00,38.7375,126.915,16.16 +2017-08-22 05:32:00,37.015,126.467,16.14 +2017-08-22 05:47:00,38.6963,126.215,16.12 +2017-08-22 06:02:00,37.5575,125.982,16.12 +2017-08-22 06:17:00,38.1987,125.83,16.12 +2017-08-22 06:32:00,38.1038,125.64,16.12 +2017-08-22 06:47:00,37.7038,125.515,16.12 +2017-08-22 07:02:00,39.5713,125.432,16.13 +2017-08-22 07:17:00,36.52,125.3,16.16 +2017-08-22 07:32:00,35.8887,125.167,16.17 +2017-08-22 07:47:00,38.9325,125.1,16.19 +2017-08-22 08:02:00,37.7087,125.025,16.21 +2017-08-22 08:17:00,38.88,124.905,16.23 +2017-08-22 08:32:00,37.45,124.815,16.27 +2017-08-22 08:47:00,36.1837,124.7,16.29 +2017-08-22 09:02:00,37.45,124.595,16.28 +2017-08-22 09:17:00,36.9137,124.47,16.33 +2017-08-22 09:32:00,39.1325,124.462,16.38 +2017-08-22 09:47:00,36.5175,124.42,16.42 +2017-08-22 10:02:00,38.3512,124.393,16.41 +2017-08-22 10:17:00,39.3838,124.372,16.39 +2017-08-22 10:32:00,38.8325,124.302,16.41 +2017-08-22 10:47:00,38.0488,124.245,16.45 +2017-08-22 11:02:00,39.625,124.052,16.48 +2017-08-22 11:17:00,37.9062,123.893,16.52 +2017-08-22 11:32:00,37.4,123.707,16.55 +2017-08-22 11:47:00,36.6675,123.585,16.61 +2017-08-22 12:02:00,40.4475,123.382,16.62 +2017-08-22 12:17:00,39.575,123.3,16.66 +2017-08-22 12:32:00,38.93,123.235,16.68 +2017-08-22 12:47:00,37.51,123.14,16.74 +2017-08-22 13:02:00,39.08,123.097,16.79 +2017-08-22 13:17:00,37.7588,123.052,16.79 +2017-08-22 13:32:00,38.4512,122.972,16.8 +2017-08-22 13:47:00,40.445,122.862,16.84 +2017-08-22 14:02:00,40.74,122.772,16.84 +2017-08-22 14:17:00,40.7412,122.665,16.84 +2017-08-22 14:32:00,39.2812,122.533,16.88 +2017-08-22 14:47:00,37.8575,122.46,16.92 +2017-08-22 15:02:00,37.705,122.485,16.94 +2017-08-22 15:17:00,38.5488,122.512,16.98 +2017-08-22 15:32:00,37.9087,122.605,17.01 +2017-08-22 15:47:00,40.0187,122.675,17.02 +2017-08-22 16:02:00,36.7175,122.768,17.03 +2017-08-22 16:17:00,38.2988,122.753,17.04 +2017-08-22 16:32:00,39.1825,122.755,17.08 +2017-08-22 16:47:00,37.9087,122.71,17.1 +2017-08-22 17:02:00,37.3025,122.675,17.14 +2017-08-22 17:17:00,39.725,122.69,17.2 +2017-08-22 17:32:00,38.8312,122.82,17.27 +2017-08-22 17:47:00,37.0675,122.93,17.31 +2017-08-22 18:02:00,38.2038,123.067,17.36 +2017-08-22 18:17:00,39.5775,123.195,17.39 +2017-08-22 18:32:00,38.8325,123.365,17.4 +2017-08-22 18:47:00,39.0788,123.548,17.4 +2017-08-22 19:02:00,37.7038,123.632,17.39 +2017-08-22 19:17:00,36.09,123.68,17.38 +2017-08-22 19:32:00,36.5212,123.762,17.35 +2017-08-22 19:47:00,38.2975,123.825,17.32 +2017-08-22 20:02:00,37.505,123.9,17.28 +2017-08-22 20:17:00,38.98,124.07,17.24 +2017-08-22 20:32:00,37.4025,124.235,17.2 +2017-08-22 20:47:00,36.9163,124.408,17.14 +2017-08-22 21:02:00,38.6925,124.62,17.1 +2017-08-22 21:17:00,38.4012,124.81,17.05 +2017-08-22 21:32:00,38.1025,125.0,17.0 +2017-08-22 21:47:00,37.9538,125.1,16.94 +2017-08-22 22:02:00,37.5525,125.16,16.89 +2017-08-22 22:17:00,38.5987,125.235,16.86 +2017-08-22 22:32:00,36.9637,125.292,16.82 +2017-08-22 22:47:00,37.9075,125.35,16.78 +2017-08-22 23:02:00,38.15,125.42,16.74 +2017-08-22 23:17:00,39.1338,125.535,16.69 +2017-08-22 23:32:00,38.8838,125.725,16.65 +2017-08-22 23:47:00,38.6888,125.882,16.61 +2017-08-23 00:02:00,38.1,126.025,16.57 +2017-08-23 00:17:00,38.3525,126.188,16.53 +2017-08-23 00:32:00,36.8187,126.312,16.47 +2017-08-23 00:47:00,37.7012,126.397,16.4 +2017-08-23 01:02:00,39.1738,126.48,16.35 +2017-08-23 01:17:00,39.5262,126.542,16.32 +2017-08-23 01:32:00,38.6925,126.62,16.3 +2017-08-23 01:47:00,38.3,126.682,16.26 +2017-08-23 02:02:00,38.2513,126.783,16.22 +2017-08-23 02:17:00,39.0287,126.875,16.2 +2017-08-23 02:32:00,35.8375,126.967,16.16 +2017-08-23 02:47:00,38.0462,127.075,16.12 +2017-08-23 03:02:00,38.3525,127.182,16.08 +2017-08-23 03:17:00,39.625,127.29,16.04 +2017-08-23 03:32:00,39.0825,127.355,16.0 +2017-08-23 03:47:00,37.66,127.427,15.96 +2017-08-23 04:02:00,37.5525,127.492,15.92 +2017-08-23 04:17:00,39.5737,127.535,15.87 +2017-08-23 04:32:00,39.1837,127.585,15.83 +2017-08-23 04:47:00,38.3063,127.65,15.78 +2017-08-23 05:02:00,37.1137,127.732,15.73 +2017-08-23 05:17:00,38.0013,127.802,15.7 +2017-08-23 05:32:00,37.2562,127.895,15.66 +2017-08-23 05:47:00,38.6025,127.99,15.64 +2017-08-23 06:02:00,35.8887,128.055,15.62 +2017-08-23 06:17:00,37.5563,128.135,15.61 +2017-08-23 06:32:00,38.9762,128.207,15.6 +2017-08-23 06:47:00,36.865,128.27,15.6 +2017-08-23 07:02:00,36.3337,128.352,15.6 +2017-08-23 07:17:00,38.0,128.405,15.6 +2017-08-23 07:32:00,38.2487,128.462,15.59 +2017-08-23 07:47:00,35.89,128.51,15.6 +2017-08-23 08:02:00,37.855,128.58,15.61 +2017-08-23 08:17:00,37.155,128.64,15.63 +2017-08-23 08:32:00,37.8037,128.7,15.66 +2017-08-23 08:47:00,35.9912,128.783,15.67 +2017-08-23 09:02:00,37.8538,128.855,15.7 +2017-08-23 09:17:00,36.135,128.912,15.74 +2017-08-23 09:32:00,35.3475,128.97,15.76 +2017-08-23 09:47:00,37.8562,129.03,15.76 +2017-08-23 10:02:00,36.1825,129.082,15.8 +2017-08-23 10:17:00,37.6038,129.145,15.84 +2017-08-23 10:32:00,36.8662,129.18,15.88 +2017-08-23 10:47:00,36.0387,129.25,15.91 +2017-08-23 11:02:00,36.23,129.307,15.94 +2017-08-23 11:17:00,37.6575,129.357,15.99 +2017-08-23 11:32:00,36.7213,129.417,16.03 +2017-08-23 11:47:00,37.3525,129.485,16.07 +2017-08-23 12:02:00,35.2475,129.54,16.11 +2017-08-23 12:17:00,34.7188,129.592,16.16 +2017-08-23 12:32:00,35.9887,129.637,16.22 +2017-08-23 12:47:00,36.2312,129.692,16.26 +2017-08-23 13:02:00,36.1837,129.727,16.31 +2017-08-23 13:17:00,36.72,129.768,16.38 +2017-08-23 13:32:00,35.6888,129.78,16.44 +2017-08-23 13:47:00,35.7913,129.798,16.48 +2017-08-23 14:02:00,36.09,129.745,16.54 +2017-08-23 14:17:00,36.515,129.512,16.6 +2017-08-23 14:32:00,37.1175,129.177,16.66 +2017-08-23 14:47:00,35.8387,128.87,16.73 +2017-08-23 15:02:00,37.015,128.555,16.81 +2017-08-23 15:17:00,36.515,128.173,16.88 +2017-08-23 15:32:00,34.2775,127.882,16.95 +2017-08-23 15:47:00,36.035,127.685,17.01 +2017-08-23 16:02:00,37.4,127.555,17.09 +2017-08-23 16:17:00,37.8587,127.457,17.14 +2017-08-23 16:32:00,37.2513,127.37,17.19 +2017-08-23 16:47:00,37.6025,127.307,17.24 +2017-08-23 17:02:00,36.4713,127.165,17.29 +2017-08-23 17:17:00,35.94,127.022,17.33 +2017-08-23 17:32:00,36.3787,126.92,17.38 +2017-08-23 17:47:00,37.4012,126.742,17.42 +2017-08-23 18:02:00,37.6537,126.64,17.46 +2017-08-23 18:17:00,35.5912,126.625,17.49 +2017-08-23 18:32:00,37.355,126.67,17.5 +2017-08-23 18:47:00,36.3312,126.685,17.51 +2017-08-23 19:02:00,37.0625,126.75,17.51 +2017-08-23 19:17:00,36.9137,126.855,17.51 +2017-08-23 19:32:00,36.475,126.917,17.5 +2017-08-23 19:47:00,36.87,126.872,17.48 +2017-08-23 20:02:00,37.16,126.857,17.46 +2017-08-23 20:17:00,36.5187,126.825,17.43 +2017-08-23 20:32:00,37.4025,126.777,17.39 +2017-08-23 20:47:00,35.2962,126.78,17.34 +2017-08-23 21:02:00,34.9538,126.847,17.29 +2017-08-23 21:17:00,36.0375,126.942,17.23 +2017-08-23 21:32:00,36.7188,127.027,17.16 +2017-08-23 21:47:00,38.3025,127.117,17.09 +2017-08-23 22:02:00,35.8962,127.192,17.03 +2017-08-23 22:17:00,36.9175,127.2,16.96 +2017-08-23 22:32:00,37.7038,127.182,16.9 +2017-08-23 22:47:00,37.4525,127.188,16.85 +2017-08-23 23:02:00,36.2875,127.182,16.79 +2017-08-23 23:17:00,37.26,127.227,16.76 +2017-08-23 23:32:00,36.5175,127.327,16.7 +2017-08-23 23:47:00,35.79,127.457,16.67 +2017-08-24 00:02:00,35.84,127.602,16.63 +2017-08-24 00:17:00,36.0887,127.753,16.58 +2017-08-24 00:32:00,36.1338,127.882,16.54 +2017-08-24 00:47:00,36.035,127.942,16.51 +2017-08-24 01:02:00,36.135,127.995,16.48 +2017-08-24 01:17:00,36.375,128.037,16.44 +2017-08-24 01:32:00,37.11,128.05,16.4 +2017-08-24 01:47:00,35.25,128.08,16.39 +2017-08-24 02:02:00,38.2012,128.173,16.37 +2017-08-24 02:17:00,35.25,128.287,16.34 +2017-08-24 02:32:00,37.2525,128.408,16.31 +2017-08-24 02:47:00,36.6663,128.557,16.27 +2017-08-24 03:02:00,39.775,128.677,16.21 +2017-08-24 03:17:00,36.8637,128.768,16.17 +2017-08-24 03:32:00,37.8063,128.807,16.13 +2017-08-24 03:47:00,37.455,128.812,16.09 +2017-08-24 04:02:00,37.355,128.82,16.06 +2017-08-24 04:17:00,36.5687,128.762,16.01 +2017-08-24 04:32:00,36.1375,128.775,15.97 +2017-08-24 04:47:00,38.9325,128.807,15.94 +2017-08-24 05:02:00,39.1338,128.885,15.91 +2017-08-24 05:17:00,38.6925,128.96,15.89 +2017-08-24 05:32:00,39.6738,129.077,15.87 +2017-08-24 05:47:00,37.16,129.11,15.85 +2017-08-24 06:02:00,37.71,129.127,15.85 +2017-08-24 06:17:00,37.3037,129.147,15.85 +2017-08-24 06:32:00,35.9975,129.17,15.85 +2017-08-24 06:47:00,38.0488,129.177,15.84 +2017-08-24 07:02:00,38.6925,129.155,15.84 +2017-08-24 07:17:00,38.0075,129.188,15.83 +2017-08-24 07:32:00,37.3063,129.152,15.82 +2017-08-24 07:47:00,38.25,129.177,15.8 +2017-08-24 08:02:00,36.8688,129.44,15.77 +2017-08-24 08:17:00,39.0275,129.792,15.76 +2017-08-24 08:32:00,37.21,130.025,15.75 +2017-08-24 08:47:00,37.7025,130.207,15.75 +2017-08-24 09:02:00,37.9087,130.26,15.74 +2017-08-24 09:17:00,39.18,130.283,15.72 +2017-08-24 09:32:00,38.7887,130.272,15.74 +2017-08-24 09:47:00,37.7588,130.24,15.78 +2017-08-24 10:02:00,37.3037,130.147,15.8 +2017-08-24 10:17:00,38.5013,130.075,15.83 +2017-08-24 10:32:00,35.5912,129.997,15.83 +2017-08-24 10:47:00,39.0275,130.015,15.83 +2017-08-24 11:02:00,38.005,130.05,15.82 +2017-08-24 11:17:00,36.4688,130.085,15.81 +2017-08-24 11:32:00,38.2537,130.175,15.82 +2017-08-24 11:47:00,38.0512,130.21,15.88 +2017-08-24 12:02:00,35.4487,130.268,15.92 +2017-08-24 12:17:00,36.5675,130.257,15.96 +2017-08-24 12:32:00,37.9512,130.207,16.02 +2017-08-24 12:47:00,36.7175,130.15,16.09 +2017-08-24 13:02:00,36.82,130.09,16.17 +2017-08-24 13:17:00,36.0887,130.035,16.27 +2017-08-24 13:32:00,35.8875,130.055,16.29 +2017-08-24 13:47:00,39.18,130.067,16.31 +2017-08-24 14:02:00,38.3988,130.122,16.35 +2017-08-24 14:17:00,37.5563,130.182,16.41 +2017-08-24 14:32:00,38.3487,130.25,16.46 +2017-08-24 14:47:00,35.3012,130.332,16.49 +2017-08-24 15:02:00,37.755,130.317,16.53 +2017-08-24 15:17:00,36.3775,130.24,16.57 +2017-08-24 15:32:00,36.5687,130.232,16.62 +2017-08-24 15:47:00,36.7725,130.15,16.64 +2017-08-24 16:02:00,35.6437,130.158,16.66 +2017-08-24 16:17:00,37.0675,130.21,16.68 +2017-08-24 16:32:00,36.0387,130.272,16.69 +2017-08-24 16:47:00,35.79,130.325,16.73 +2017-08-24 17:02:00,37.0662,130.395,16.76 +2017-08-24 17:17:00,37.9075,130.497,16.79 +2017-08-24 17:32:00,38.0525,130.477,16.83 +2017-08-24 17:47:00,37.0675,130.423,16.86 +2017-08-24 18:02:00,37.3075,130.357,16.88 +2017-08-24 18:17:00,39.2837,130.283,16.91 +2017-08-24 18:32:00,36.1862,130.205,16.93 +2017-08-24 18:47:00,36.9662,130.17,16.97 +2017-08-24 19:02:00,36.9637,130.202,16.98 +2017-08-24 19:17:00,35.2025,130.235,17.0 +2017-08-24 19:32:00,36.5212,130.272,17.01 +2017-08-24 19:47:00,35.5462,130.29,17.01 +2017-08-24 20:02:00,38.1537,130.275,17.01 +2017-08-24 20:17:00,37.405,130.22,17.0 +2017-08-24 20:32:00,36.9662,130.12,16.98 +2017-08-24 20:47:00,37.91,130.018,16.94 +2017-08-24 21:02:00,36.5212,129.92,16.93 +2017-08-24 21:17:00,37.95,129.877,16.9 +2017-08-24 21:32:00,34.6712,129.897,16.85 +2017-08-24 21:47:00,36.4275,129.965,16.8 +2017-08-24 22:02:00,35.6425,129.985,16.77 +2017-08-24 22:17:00,37.4525,130.055,16.74 +2017-08-24 22:32:00,36.8175,130.087,16.71 +2017-08-24 22:47:00,35.7412,130.07,16.68 +2017-08-24 23:02:00,36.4225,130.03,16.65 +2017-08-24 23:17:00,37.2575,129.95,16.63 +2017-08-24 23:32:00,35.9925,129.87,16.61 +2017-08-24 23:47:00,37.8075,129.772,16.6 +2017-08-25 00:02:00,37.3063,129.712,16.59 +2017-08-25 00:17:00,38.3988,129.71,16.58 +2017-08-25 00:32:00,35.0975,129.75,16.56 +2017-08-25 00:47:00,37.2038,129.785,16.56 +2017-08-25 01:02:00,37.0175,129.84,16.55 +2017-08-25 01:17:00,37.3075,129.9,16.54 +2017-08-25 01:32:00,36.77,129.917,16.52 +2017-08-25 01:47:00,38.0025,129.857,16.5 +2017-08-25 02:02:00,36.3763,129.798,16.48 +2017-08-25 02:17:00,35.8387,129.722,16.46 +2017-08-25 02:32:00,36.475,129.607,16.43 +2017-08-25 02:47:00,36.1837,129.54,16.4 +2017-08-25 03:02:00,36.4737,129.545,16.36 +2017-08-25 03:17:00,35.2025,129.582,16.32 +2017-08-25 03:32:00,37.4987,129.615,16.3 +2017-08-25 03:47:00,36.8187,129.662,16.28 +2017-08-25 04:02:00,38.55,129.667,16.26 +2017-08-25 04:17:00,36.3787,129.64,16.22 +2017-08-25 04:32:00,36.6675,129.565,16.2 +2017-08-25 04:47:00,39.0825,129.408,16.18 +2017-08-25 05:02:00,38.2,129.3,16.17 +2017-08-25 05:17:00,37.6038,129.245,16.15 +2017-08-25 05:32:00,37.2062,129.177,16.14 +2017-08-25 05:47:00,38.7887,129.11,16.14 +2017-08-25 06:02:00,36.185,129.067,16.14 +2017-08-25 06:17:00,36.57,129.025,16.17 +2017-08-25 06:32:00,37.6062,129.012,16.19 +2017-08-25 06:47:00,36.965,129.035,16.21 +2017-08-25 07:02:00,34.9987,129.087,16.21 +2017-08-25 07:17:00,38.05,129.195,16.23 +2017-08-25 07:32:00,38.2475,129.257,16.25 +2017-08-25 07:47:00,36.7675,129.283,16.26 +2017-08-25 08:02:00,36.4713,129.252,16.29 +2017-08-25 08:17:00,35.4487,129.173,16.31 +2017-08-25 08:32:00,35.5437,129.082,16.32 +2017-08-25 08:47:00,36.5175,128.975,16.33 +2017-08-25 09:02:00,37.3525,128.862,16.36 +2017-08-25 09:17:00,37.7537,128.835,16.39 +2017-08-25 09:32:00,38.3025,128.85,16.43 +2017-08-25 09:47:00,36.9125,128.865,16.48 +2017-08-25 10:02:00,35.7375,128.912,16.52 +2017-08-25 10:17:00,37.015,128.925,16.56 +2017-08-25 10:32:00,35.5925,128.952,16.59 +2017-08-25 10:47:00,37.2575,128.952,16.62 +2017-08-25 11:02:00,34.375,128.817,16.67 +2017-08-25 11:17:00,35.3962,128.727,16.7 +2017-08-25 11:32:00,36.5163,128.637,16.74 +2017-08-25 11:47:00,36.7188,128.557,16.76 +2017-08-25 12:02:00,36.9163,128.56,16.83 +2017-08-25 12:17:00,39.0287,128.56,16.87 +2017-08-25 12:32:00,36.1862,128.57,16.91 +2017-08-25 12:47:00,37.6525,128.575,16.95 +2017-08-25 13:02:00,36.135,128.637,17.0 +2017-08-25 13:17:00,36.52,128.582,17.04 +2017-08-25 13:32:00,37.45,128.487,17.08 +2017-08-25 13:47:00,34.9538,128.378,17.11 +2017-08-25 14:02:00,35.79,128.277,17.15 +2017-08-25 14:17:00,35.69,128.197,17.2 +2017-08-25 14:32:00,37.35,128.115,17.25 +2017-08-25 14:47:00,37.755,128.095,17.31 +2017-08-25 15:02:00,37.855,128.075,17.39 +2017-08-25 15:17:00,37.0625,128.06,17.45 +2017-08-25 15:32:00,39.4325,128.042,17.51 +2017-08-25 15:47:00,35.8887,128.0,17.59 +2017-08-25 16:02:00,35.0525,127.87,17.64 +2017-08-25 16:17:00,36.33,127.692,17.7 +2017-08-25 16:32:00,35.4975,127.503,17.73 +2017-08-25 16:47:00,35.8862,127.262,17.78 +2017-08-25 17:02:00,38.78,127.085,17.81 +2017-08-25 17:17:00,35.0,126.965,17.83 +2017-08-25 17:32:00,36.9137,126.845,17.86 +2017-08-25 17:47:00,37.255,126.72,17.88 +2017-08-25 18:02:00,37.505,126.615,17.9 +2017-08-25 18:17:00,37.6575,126.462,17.91 +2017-08-25 18:32:00,37.86,126.22,17.91 +2017-08-25 18:47:00,37.7588,125.942,17.91 +2017-08-25 19:02:00,38.885,125.665,17.91 +2017-08-25 19:17:00,37.2537,125.387,17.91 +2017-08-25 19:32:00,34.6738,125.137,17.92 +2017-08-25 19:47:00,37.9538,124.938,17.92 +2017-08-25 20:02:00,35.2025,124.762,17.94 +2017-08-25 20:17:00,37.6587,124.59,17.93 +2017-08-25 20:32:00,35.8887,124.425,17.92 +2017-08-25 20:47:00,36.0425,124.257,17.91 +2017-08-25 21:02:00,37.0187,124.075,17.87 +2017-08-25 21:17:00,36.4238,123.87,17.83 +2017-08-25 21:32:00,33.7975,123.62,17.78 +2017-08-25 21:47:00,36.865,123.335,17.75 +2017-08-25 22:02:00,35.7425,123.097,17.71 +2017-08-25 22:17:00,37.4025,122.87,17.68 +2017-08-25 22:32:00,35.1475,122.722,17.65 +2017-08-25 22:47:00,37.9062,122.59,17.64 +2017-08-25 23:02:00,36.9637,122.505,17.61 +2017-08-25 23:17:00,37.8075,122.39,17.59 +2017-08-25 23:32:00,37.555,122.29,17.56 +2017-08-25 23:47:00,38.9788,122.137,17.53 +2017-08-26 00:02:00,36.665,121.927,17.5 +2017-08-26 00:17:00,38.0013,121.71,17.46 +2017-08-26 00:32:00,36.92,121.5,17.43 +2017-08-26 00:47:00,35.4987,121.298,17.42 +2017-08-26 01:02:00,35.3,121.147,17.42 +2017-08-26 01:17:00,36.52,121.06,17.4 +2017-08-26 01:32:00,34.1325,121.003,17.38 +2017-08-26 01:47:00,35.3525,120.947,17.38 +2017-08-26 02:02:00,37.5037,120.897,17.37 +2017-08-26 02:17:00,36.3312,120.79,17.34 +2017-08-26 02:32:00,35.6437,120.647,17.31 +2017-08-26 02:47:00,36.0875,120.462,17.29 +2017-08-26 03:02:00,36.6212,120.307,17.25 +2017-08-26 03:17:00,38.1987,120.173,17.24 +2017-08-26 03:32:00,37.5037,120.052,17.22 +2017-08-26 03:47:00,38.3512,119.977,17.2 +2017-08-26 04:02:00,36.665,119.925,17.17 +2017-08-26 04:17:00,36.285,119.887,17.14 +2017-08-26 04:32:00,36.77,119.86,17.12 +2017-08-26 04:47:00,38.2025,119.827,17.1 +2017-08-26 05:02:00,36.9175,119.23,17.08 +2017-08-26 05:17:00,37.2525,117.56,17.06 +2017-08-26 05:32:00,36.3312,116.352,17.04 +2017-08-26 05:47:00,36.62,115.635,17.04 +2017-08-26 06:02:00,38.7862,115.227,17.06 +2017-08-26 06:17:00,38.155,115.07,17.07 +2017-08-26 06:32:00,37.1587,115.007,17.09 +2017-08-26 06:47:00,37.6575,115.1,17.1 +2017-08-26 07:02:00,36.7725,115.197,17.1 +2017-08-26 07:17:00,37.0163,115.347,17.12 +2017-08-26 07:32:00,36.965,115.59,17.14 +2017-08-26 07:47:00,36.0875,115.832,17.16 +2017-08-26 08:02:00,35.095,116.128,17.15 +2017-08-26 08:17:00,36.7712,116.37,17.14 +2017-08-26 08:32:00,37.7062,116.572,17.16 +2017-08-26 08:47:00,37.255,116.732,17.19 +2017-08-26 09:02:00,38.4,116.845,17.21 +2017-08-26 09:17:00,38.8812,116.932,17.24 +2017-08-26 09:32:00,37.8613,116.945,17.3 +2017-08-26 09:47:00,36.1837,116.975,17.38 +2017-08-26 10:02:00,37.3063,117.01,17.44 +2017-08-26 10:17:00,36.6712,117.075,17.46 +2017-08-26 10:32:00,38.1038,117.155,17.42 +2017-08-26 10:47:00,36.8162,117.272,17.41 +2017-08-26 11:02:00,36.87,117.382,17.42 +2017-08-26 11:17:00,36.8162,117.455,17.42 +2017-08-26 11:32:00,34.5262,117.503,17.41 +2017-08-26 11:47:00,36.575,117.533,17.41 +2017-08-26 12:02:00,36.7175,117.48,17.42 +2017-08-26 12:17:00,37.5075,117.445,17.49 +2017-08-26 12:32:00,36.615,117.367,17.57 +2017-08-26 12:47:00,37.355,117.36,17.65 +2017-08-26 13:02:00,36.8688,117.385,17.71 +2017-08-26 13:17:00,38.3025,117.465,17.79 +2017-08-26 13:32:00,37.0675,117.522,17.8 +2017-08-26 13:47:00,38.2525,117.572,17.76 +2017-08-26 14:02:00,37.7537,117.64,17.8 +2017-08-26 14:17:00,37.4512,117.682,17.85 +2017-08-26 14:32:00,37.5575,117.65,17.88 +2017-08-26 14:47:00,36.5725,117.582,17.86 +2017-08-26 15:02:00,36.915,117.495,17.86 +2017-08-26 15:17:00,36.77,117.408,17.88 +2017-08-26 15:32:00,35.205,117.347,17.91 +2017-08-26 15:47:00,37.4012,117.367,17.95 +2017-08-26 16:02:00,38.9812,117.395,18.0 +2017-08-26 16:17:00,37.16,117.44,18.02 +2017-08-26 16:32:00,37.855,117.462,18.06 +2017-08-26 16:47:00,37.8575,117.512,18.09 +2017-08-26 17:02:00,37.0662,117.47,18.14 +2017-08-26 17:17:00,37.3037,117.408,18.17 +2017-08-26 17:32:00,36.1387,117.317,18.2 +2017-08-26 17:47:00,37.21,117.195,18.22 +2017-08-26 18:02:00,37.0163,117.1,18.26 +2017-08-26 18:17:00,38.3063,117.06,18.31 +2017-08-26 18:32:00,36.9637,117.057,18.33 +2017-08-26 18:47:00,37.3063,117.067,18.38 +2017-08-26 19:02:00,36.2838,117.097,18.41 +2017-08-26 19:17:00,36.6712,117.128,18.43 +2017-08-26 19:32:00,35.9925,117.102,18.44 +2017-08-26 19:47:00,36.9625,117.037,18.46 +2017-08-26 20:02:00,37.8075,116.938,18.49 +2017-08-26 20:17:00,36.8175,116.807,18.49 +2017-08-26 20:32:00,37.705,116.66,18.5 +2017-08-26 20:47:00,37.0662,116.542,18.51 +2017-08-26 21:02:00,37.1612,116.487,18.52 +2017-08-26 21:17:00,35.6387,116.465,18.52 +2017-08-26 21:32:00,38.4475,116.452,18.52 +2017-08-26 21:47:00,37.065,116.44,18.51 +2017-08-26 22:02:00,36.52,116.402,18.5 +2017-08-26 22:17:00,35.74,116.305,18.48 +2017-08-26 22:32:00,36.8175,116.167,18.47 +2017-08-26 22:47:00,37.455,115.965,18.45 +2017-08-26 23:02:00,36.9137,115.802,18.44 +2017-08-26 23:17:00,37.4538,115.582,18.43 +2017-08-26 23:32:00,35.5975,115.462,18.43 +2017-08-26 23:47:00,34.0887,115.417,18.42 +2017-08-27 00:02:00,36.5725,115.38,18.38 +2017-08-27 00:17:00,36.6687,115.325,18.36 +2017-08-27 00:32:00,36.6675,115.268,18.33 +2017-08-27 00:47:00,38.785,115.155,18.29 +2017-08-27 01:02:00,37.9562,115.03,18.28 +2017-08-27 01:17:00,36.185,114.878,18.24 +2017-08-27 01:32:00,37.0662,114.722,18.22 +2017-08-27 01:47:00,38.2025,114.575,18.19 +2017-08-27 02:02:00,36.82,114.497,18.17 +2017-08-27 02:17:00,36.6212,114.455,18.14 +2017-08-27 02:32:00,37.355,114.45,18.12 +2017-08-27 02:47:00,36.77,114.435,18.1 +2017-08-27 03:02:00,35.2525,114.438,18.08 +2017-08-27 03:17:00,37.6062,114.367,18.05 +2017-08-27 03:32:00,39.0312,114.292,18.05 +2017-08-27 03:47:00,35.9425,114.158,18.03 +2017-08-27 04:02:00,36.425,114.052,18.0 +2017-08-27 04:17:00,37.0687,113.915,18.0 +2017-08-27 04:32:00,37.7062,113.837,17.98 +2017-08-27 04:47:00,38.2513,113.798,17.96 +2017-08-27 05:02:00,38.6963,113.783,17.94 +2017-08-27 05:17:00,34.8138,113.82,17.91 +2017-08-27 05:32:00,36.7213,113.78,17.89 +2017-08-27 05:47:00,36.3763,113.762,17.86 +2017-08-27 06:02:00,35.89,113.768,17.85 +2017-08-27 06:17:00,37.255,113.727,17.85 +2017-08-27 06:32:00,36.7675,113.702,17.85 +2017-08-27 06:47:00,36.1862,113.647,17.84 +2017-08-27 07:02:00,38.2012,113.605,17.83 +2017-08-27 07:17:00,38.4025,113.542,17.85 +2017-08-27 07:32:00,38.4525,113.527,17.86 +2017-08-27 07:47:00,37.9538,113.57,17.88 +2017-08-27 08:02:00,37.0175,113.595,17.92 +2017-08-27 08:17:00,38.0025,113.66,17.94 +2017-08-27 08:32:00,35.4012,113.717,17.98 +2017-08-27 08:47:00,35.5025,113.807,18.01 +2017-08-27 09:02:00,35.205,113.832,18.03 +2017-08-27 09:17:00,35.6925,113.817,18.04 +2017-08-27 09:32:00,37.5062,113.757,18.08 +2017-08-27 09:47:00,35.7937,113.71,18.11 +2017-08-27 10:02:00,36.865,113.667,18.15 +2017-08-27 10:17:00,37.5587,113.632,18.18 +2017-08-27 10:32:00,35.595,113.68,18.24 +2017-08-27 10:47:00,36.3775,113.707,18.27 +2017-08-27 11:02:00,37.4587,113.747,18.3 +2017-08-27 11:17:00,34.91,113.762,18.32 +2017-08-27 11:32:00,36.2875,113.81,18.34 +2017-08-27 11:47:00,36.0413,113.845,18.36 +2017-08-27 12:02:00,36.2862,113.802,18.39 +2017-08-27 12:17:00,35.3525,113.7,18.42 +2017-08-27 12:32:00,36.7687,113.62,18.47 +2017-08-27 12:47:00,35.9412,113.605,18.49 +2017-08-27 13:02:00,36.72,113.622,18.5 +2017-08-27 13:17:00,36.6188,113.647,18.52 +2017-08-27 13:32:00,38.3562,113.688,18.47 +2017-08-27 13:47:00,36.2862,113.747,18.48 +2017-08-27 14:02:00,38.9775,113.8,18.52 +2017-08-27 14:17:00,35.3525,113.82,18.55 +2017-08-27 14:32:00,37.1575,113.805,18.58 +2017-08-27 14:47:00,35.7913,113.775,18.6 +2017-08-27 15:02:00,37.1137,113.707,18.62 +2017-08-27 15:17:00,36.5238,113.655,18.64 +2017-08-27 15:32:00,35.6437,113.66,18.65 +2017-08-27 15:47:00,36.5238,113.707,18.67 +2017-08-27 16:02:00,35.2025,113.745,18.68 +2017-08-27 16:17:00,36.2387,113.802,18.68 +2017-08-27 16:32:00,35.6925,113.902,18.69 +2017-08-27 16:47:00,35.555,113.942,18.72 +2017-08-27 17:02:00,35.6425,113.935,18.77 +2017-08-27 17:17:00,36.1888,113.908,18.83 +2017-08-27 17:32:00,35.6,113.878,18.85 +2017-08-27 17:47:00,38.7412,113.832,18.9 +2017-08-27 18:02:00,36.5212,113.805,18.93 +2017-08-27 18:17:00,38.3538,113.817,18.95 +2017-08-27 18:32:00,35.7913,113.855,18.97 +2017-08-27 18:47:00,37.2575,113.927,19.01 +2017-08-27 19:02:00,38.4062,114.007,19.03 +2017-08-27 19:17:00,36.0387,114.095,19.07 +2017-08-27 19:32:00,35.89,114.158,19.1 +2017-08-27 19:47:00,37.2575,114.182,19.12 +2017-08-27 20:02:00,35.455,114.173,19.15 +2017-08-27 20:17:00,37.855,114.117,19.15 +2017-08-27 20:32:00,33.5587,114.077,19.13 +2017-08-27 20:47:00,37.2062,114.087,19.12 +2017-08-27 21:02:00,36.7213,114.115,19.09 +2017-08-27 21:17:00,37.4037,114.167,19.07 +2017-08-27 21:32:00,36.285,114.237,19.02 +2017-08-27 21:47:00,35.6925,114.295,18.98 +2017-08-27 22:02:00,36.4713,114.382,18.92 +2017-08-27 22:17:00,34.6738,114.408,18.84 +2017-08-27 22:32:00,35.5963,114.412,18.79 +2017-08-27 22:47:00,35.84,114.367,18.73 +2017-08-27 23:02:00,35.6963,114.305,18.66 +2017-08-27 23:17:00,36.43,114.277,18.6 +2017-08-27 23:32:00,36.1862,114.287,18.55 +2017-08-27 23:47:00,36.0938,114.347,18.48 +2017-08-28 00:02:00,36.235,114.423,18.43 +2017-08-28 00:17:00,36.8688,114.482,18.38 +2017-08-28 00:32:00,35.0975,114.542,18.33 +2017-08-28 00:47:00,37.2062,114.57,18.24 +2017-08-28 01:02:00,35.84,114.535,18.18 +2017-08-28 01:17:00,35.0062,114.505,18.14 +2017-08-28 01:32:00,37.5062,114.438,18.12 +2017-08-28 01:47:00,34.48,114.375,18.08 +2017-08-28 02:02:00,36.285,114.367,18.03 +2017-08-28 02:17:00,35.255,114.393,17.98 +2017-08-28 02:32:00,33.7537,114.43,17.95 +2017-08-28 02:47:00,35.05,114.477,17.9 +2017-08-28 03:02:00,38.35,114.54,17.86 +2017-08-28 03:17:00,36.5713,114.595,17.81 +2017-08-28 03:32:00,35.8875,114.6,17.79 +2017-08-28 03:47:00,35.205,114.58,17.75 +2017-08-28 04:02:00,36.82,114.535,17.72 +2017-08-28 04:17:00,34.085,114.442,17.69 +2017-08-28 04:32:00,35.8412,114.378,17.66 +2017-08-28 04:47:00,35.4,114.327,17.62 +2017-08-28 05:02:00,35.89,114.335,17.6 +2017-08-28 05:17:00,35.8925,114.37,17.56 +2017-08-28 05:32:00,35.7425,114.4,17.55 +2017-08-28 05:47:00,36.43,114.44,17.51 +2017-08-28 06:02:00,34.1325,114.445,17.5 +2017-08-28 06:17:00,37.0163,114.442,17.5 +2017-08-28 06:32:00,37.3587,114.408,17.51 +2017-08-28 06:47:00,36.09,114.35,17.5 +2017-08-28 07:02:00,36.335,114.317,17.51 +2017-08-28 07:17:00,35.7925,114.287,17.52 +2017-08-28 07:32:00,36.2363,114.29,17.54 +2017-08-28 07:47:00,35.4037,114.35,17.55 +2017-08-28 08:02:00,35.15,114.408,17.56 +2017-08-28 08:17:00,36.3337,114.482,17.59 +2017-08-28 08:32:00,36.0912,114.535,17.59 +2017-08-28 08:47:00,35.8925,114.565,17.61 +2017-08-28 09:02:00,35.99,114.555,17.64 +2017-08-28 09:17:00,37.3075,114.503,17.67 +2017-08-28 09:32:00,38.0537,114.405,17.68 +2017-08-28 09:47:00,34.1825,114.307,17.7 +2017-08-28 10:02:00,36.4262,114.173,17.69 +2017-08-28 10:17:00,36.7712,114.125,17.67 +2017-08-28 10:32:00,37.455,114.08,17.71 +2017-08-28 10:47:00,35.3037,114.012,17.62 +2017-08-28 11:02:00,35.1512,113.867,17.56 +2017-08-28 11:17:00,38.5462,113.632,17.68 +2017-08-28 11:32:00,36.0887,113.268,17.69 +2017-08-28 11:47:00,36.9688,112.845,17.73 +2017-08-28 12:02:00,34.9062,112.472,17.8 +2017-08-28 12:17:00,36.3325,112.033,17.81 +2017-08-28 12:32:00,34.6225,111.605,17.82 +2017-08-28 12:47:00,36.9163,111.102,17.85 +2017-08-28 13:02:00,36.2375,110.503,17.86 +2017-08-28 13:17:00,35.6437,109.908,17.88 +2017-08-28 13:32:00,37.6038,109.317,17.9 +2017-08-28 13:47:00,35.7412,108.795,17.91 +2017-08-28 14:02:00,38.0025,108.325,17.92 +2017-08-28 14:17:00,36.0875,107.89,17.95 +2017-08-28 14:32:00,35.79,107.457,17.98 +2017-08-28 14:47:00,35.2988,106.938,18.01 +2017-08-28 15:02:00,36.235,106.53,18.06 +2017-08-28 15:17:00,36.7712,106.082,18.1 +2017-08-28 15:32:00,33.1188,105.715,18.16 +2017-08-28 15:47:00,36.7188,105.442,18.19 +2017-08-28 16:02:00,33.405,105.17,18.22 +2017-08-28 16:17:00,35.7412,104.902,18.27 +2017-08-28 16:32:00,34.7712,104.582,18.3 +2017-08-28 16:47:00,35.0975,104.285,18.31 +2017-08-28 17:02:00,36.6712,103.997,18.33 +2017-08-28 17:17:00,36.8688,103.76,18.36 +2017-08-28 17:32:00,35.1012,103.59,18.39 +2017-08-28 17:47:00,35.99,103.438,18.43 +2017-08-28 18:02:00,35.35,103.302,18.47 +2017-08-28 18:17:00,36.57,103.152,18.5 +2017-08-28 18:32:00,34.7213,103.005,18.54 +2017-08-28 18:47:00,35.055,102.878,18.6 +2017-08-28 19:02:00,35.69,102.807,18.66 +2017-08-28 19:17:00,35.0975,102.795,18.7 +2017-08-28 19:32:00,33.6062,102.807,18.78 +2017-08-28 19:47:00,36.3325,102.81,18.83 +2017-08-28 20:02:00,36.2875,102.77,18.88 +2017-08-28 20:17:00,36.2838,102.707,18.93 +2017-08-28 20:32:00,35.79,102.665,18.97 +2017-08-28 20:47:00,35.8425,102.695,19.02 +2017-08-28 21:02:00,36.285,102.715,19.05 +2017-08-28 21:17:00,35.6925,102.802,19.06 +2017-08-28 21:32:00,34.6725,102.855,19.07 +2017-08-28 21:47:00,34.77,102.89,19.07 +2017-08-28 22:02:00,36.6188,102.88,19.07 +2017-08-28 22:17:00,35.7925,102.905,19.06 +2017-08-28 22:32:00,37.8575,102.932,19.06 +2017-08-28 22:47:00,36.2825,103.0,19.05 +2017-08-28 23:02:00,36.7188,103.07,19.02 +2017-08-28 23:17:00,34.1312,103.182,18.98 +2017-08-28 23:32:00,34.9538,103.27,18.92 +2017-08-28 23:47:00,36.62,103.345,18.86 +2017-08-29 00:02:00,37.9525,103.41,18.8 +2017-08-29 00:17:00,35.4,103.495,18.73 +2017-08-29 00:32:00,35.4987,103.57,18.63 +2017-08-29 00:47:00,38.4475,103.662,18.56 +2017-08-29 01:02:00,35.5475,103.76,18.5 +2017-08-29 01:17:00,34.4287,103.865,18.43 +2017-08-29 01:32:00,36.9688,103.992,18.36 +2017-08-29 01:47:00,36.6175,104.107,18.32 +2017-08-29 02:02:00,36.0387,104.235,18.24 +2017-08-29 02:17:00,36.035,104.35,18.19 +2017-08-29 02:32:00,36.04,104.495,18.14 +2017-08-29 02:47:00,36.77,104.652,18.08 +2017-08-29 03:02:00,37.5575,104.783,18.04 +2017-08-29 03:17:00,37.2075,104.935,17.97 +2017-08-29 03:32:00,37.02,105.065,17.93 +2017-08-29 03:47:00,37.755,105.22,17.89 +2017-08-29 04:02:00,35.9412,105.365,17.85 +2017-08-29 04:17:00,34.6212,105.475,17.8 +2017-08-29 04:32:00,36.285,105.577,17.74 +2017-08-29 04:47:00,35.99,105.685,17.69 +2017-08-29 05:02:00,37.1113,105.783,17.65 +2017-08-29 05:17:00,36.33,105.857,17.59 +2017-08-29 05:32:00,36.7175,105.862,17.56 +2017-08-29 05:47:00,37.0187,105.055,17.52 +2017-08-29 06:02:00,36.1837,104.47,17.48 +2017-08-29 06:17:00,36.4725,104.158,17.47 +2017-08-29 06:32:00,36.6137,104.092,17.48 +2017-08-29 06:47:00,33.9463,104.143,17.47 +2017-08-29 07:02:00,35.645,104.237,17.44 +2017-08-29 07:17:00,37.6562,104.335,17.43 +2017-08-29 07:32:00,36.185,104.47,17.43 +2017-08-29 07:47:00,36.665,104.602,17.44 +2017-08-29 08:02:00,36.2325,104.712,17.45 +2017-08-29 08:17:00,35.8387,104.83,17.47 +2017-08-29 08:32:00,37.5062,104.923,17.49 +2017-08-29 08:47:00,38.0525,105.042,17.51 +2017-08-29 09:02:00,36.7738,105.14,17.55 +2017-08-29 09:17:00,37.4538,105.237,17.58 +2017-08-29 09:32:00,36.7213,105.35,17.61 +2017-08-29 09:47:00,36.57,105.46,17.65 +2017-08-29 10:02:00,37.6062,105.542,17.69 +2017-08-29 10:17:00,34.6212,105.592,17.74 +2017-08-29 10:32:00,36.475,104.217,17.8 +2017-08-29 10:47:00,36.525,102.28,17.88 +2017-08-29 11:02:00,36.185,100.242,17.96 +2017-08-29 11:17:00,35.5475,98.1975,18.05 +2017-08-29 11:32:00,36.0887,96.3425,18.15 +2017-08-29 11:47:00,37.4025,94.805,18.23 +2017-08-29 12:02:00,36.77,93.5,18.33 +2017-08-29 12:17:00,36.185,92.5525,18.4 +2017-08-29 12:32:00,36.82,91.94,18.5 +2017-08-29 12:47:00,35.9887,91.69,18.53 +2017-08-29 13:02:00,37.26,91.7925,18.57 +2017-08-29 13:17:00,35.5488,91.8975,18.6 +2017-08-29 13:32:00,37.1175,92.0275,18.64 +2017-08-29 13:47:00,38.6937,92.1525,18.6 +2017-08-29 14:02:00,36.335,92.3025,18.56 +2017-08-29 14:17:00,37.1162,92.485,18.54 +2017-08-29 14:32:00,37.405,92.68,18.52 +2017-08-29 14:47:00,35.2525,92.8675,18.53 +2017-08-29 15:02:00,34.5287,93.0925,18.51 +2017-08-29 15:17:00,34.9062,93.3125,18.47 +2017-08-29 15:32:00,35.4012,93.55,18.44 +2017-08-29 15:47:00,39.73,93.81,19.53 +2017-08-29 16:02:00,36.9137,94.0625,18.44 +2017-08-29 16:16:16,39.135,94.525,18.43 +2017-08-29 16:32:00,36.1862,95.015,18.42 +2017-08-29 16:47:00,37.0187,95.445,18.44 +2017-08-29 17:02:00,39.4362,95.8925,18.45 +2017-08-29 17:17:00,36.14,96.375,18.49 +2017-08-29 17:32:00,37.8075,96.835,18.54 +2017-08-29 17:47:00,37.81,97.355,18.58 +2017-08-29 18:02:00,36.2375,98.4875,18.66 +2017-08-29 18:17:00,37.1162,99.54,18.76 +2017-08-29 18:32:00,35.455,100.488,18.86 +2017-08-29 18:47:00,35.0062,101.342,18.98 +2017-08-29 19:02:00,36.8725,102.115,19.07 +2017-08-29 19:17:00,37.5088,102.785,19.15 +2017-08-29 19:32:00,35.6425,103.393,19.23 +2017-08-29 19:47:00,36.57,103.985,19.27 +2017-08-29 20:02:00,35.0075,104.548,19.3 +2017-08-29 20:17:00,35.7438,105.072,19.3 +2017-08-29 20:32:00,36.7213,105.55,19.3 +2017-08-29 20:47:00,37.3075,105.987,19.28 +2017-08-29 21:02:00,36.97,106.382,19.27 +2017-08-29 21:17:00,35.4025,106.772,19.25 +2017-08-29 21:32:00,36.04,107.095,19.23 +2017-08-29 21:47:00,36.2838,107.417,19.2 +2017-08-29 22:02:00,37.7612,107.697,19.17 +2017-08-29 22:17:00,37.3575,107.955,19.15 +2017-08-29 22:32:00,37.5088,108.185,19.13 +2017-08-29 22:47:00,36.4762,108.382,19.09 +2017-08-29 23:02:00,37.71,108.57,19.04 +2017-08-29 23:17:00,35.945,108.725,19.01 +2017-08-29 23:32:00,38.2087,108.895,18.98 +2017-08-29 23:47:00,38.1025,108.99,18.93 +2017-08-30 00:02:00,35.4025,109.07,18.88 +2017-08-30 00:17:00,36.4238,109.15,18.84 +2017-08-30 00:32:00,37.555,109.242,18.81 +2017-08-30 00:47:00,36.525,109.305,18.77 +2017-08-30 01:02:00,36.475,109.365,18.74 +2017-08-30 01:17:00,35.1038,109.445,18.72 +2017-08-30 01:32:00,35.7937,109.512,18.69 +2017-08-30 01:47:00,36.4713,109.577,18.69 +2017-08-30 02:02:00,36.7725,109.71,18.68 +2017-08-30 02:17:00,37.7087,109.805,18.67 +2017-08-30 02:32:00,36.475,109.867,18.65 +2017-08-30 02:47:00,36.38,109.897,18.62 +2017-08-30 03:02:00,36.7687,109.935,18.61 +2017-08-30 03:17:00,37.2075,109.96,18.59 +2017-08-30 03:32:00,35.3037,109.94,18.58 +2017-08-30 03:47:00,36.1862,109.905,18.57 +2017-08-30 04:02:00,36.3312,109.887,18.55 +2017-08-30 04:17:00,36.8688,109.878,18.52 +2017-08-30 04:32:00,36.8725,109.908,18.5 +2017-08-30 04:47:00,36.33,109.95,18.47 +2017-08-30 05:02:00,36.185,109.955,18.44 +2017-08-30 05:17:00,35.8913,109.97,18.42 +2017-08-30 05:32:00,37.6075,109.957,18.4 +2017-08-30 05:47:00,35.455,109.942,18.38 +2017-08-30 06:02:00,34.815,109.91,18.37 +2017-08-30 06:17:00,38.405,109.887,18.35 +2017-08-30 06:32:00,38.6975,109.893,18.35 +2017-08-30 06:47:00,37.26,109.923,18.36 +2017-08-30 07:02:00,37.0662,109.955,18.35 +2017-08-30 07:17:00,35.7438,109.99,18.37 +2017-08-30 07:32:00,36.045,110.012,18.39 +2017-08-30 07:47:00,36.3812,110.042,18.4 +2017-08-30 08:02:00,34.7712,110.055,18.42 +2017-08-30 08:17:00,37.4012,110.085,18.45 +2017-08-30 08:32:00,35.7438,110.12,18.48 +2017-08-30 08:47:00,36.72,110.135,18.51 +2017-08-30 09:02:00,36.9187,110.16,18.53 +2017-08-30 09:17:00,35.645,110.152,18.56 +2017-08-30 09:32:00,34.7725,110.117,18.61 +2017-08-30 09:47:00,36.0387,110.048,18.63 +2017-08-30 10:02:00,35.6925,109.965,18.65 +2017-08-30 10:17:00,36.9688,109.915,18.67 +2017-08-30 10:32:00,36.4275,109.89,18.72 +2017-08-30 10:47:00,35.8913,109.895,18.75 +2017-08-30 11:02:00,38.6012,109.917,18.78 +2017-08-30 11:17:00,36.7188,109.893,18.8 +2017-08-30 11:32:00,35.9925,109.88,18.84 +2017-08-30 11:47:00,37.0175,109.815,18.85 +2017-08-30 12:02:00,37.8613,109.798,18.91 +2017-08-30 12:17:00,37.3587,109.81,18.98 +2017-08-30 12:32:00,36.575,109.81,19.03 +2017-08-30 12:47:00,36.0912,109.807,19.08 +2017-08-30 13:02:00,37.2612,109.753,19.1 +2017-08-30 13:17:00,35.6937,109.707,19.13 +2017-08-30 13:32:00,35.6462,109.675,19.18 +2017-08-30 13:47:00,37.5088,109.665,19.18 +2017-08-30 14:02:00,37.0638,109.662,19.18 +2017-08-30 14:17:00,38.4012,109.65,19.16 +2017-08-30 14:32:00,36.4287,109.637,19.17 +2017-08-30 14:47:00,36.725,109.59,19.2 +2017-08-30 15:02:00,37.3587,109.54,19.22 +2017-08-30 15:17:00,36.0437,109.507,19.23 +2017-08-30 15:32:00,36.09,109.487,19.23 +2017-08-30 15:47:00,36.24,109.507,19.26 +2017-08-30 16:02:00,36.2875,109.48,19.29 +2017-08-30 16:17:00,36.6762,109.475,19.31 +2017-08-30 16:32:00,36.0425,109.415,19.32 +2017-08-30 16:47:00,33.805,109.342,19.32 +2017-08-30 17:02:00,35.5987,109.287,19.34 +2017-08-30 17:17:00,35.6,109.242,19.36 +2017-08-30 17:32:00,36.3337,109.212,19.38 +2017-08-30 17:47:00,37.7588,109.2,19.39 +2017-08-30 18:02:00,35.5025,109.162,19.41 +2017-08-30 18:17:00,36.09,109.102,19.41 +2017-08-30 18:32:00,34.1425,109.045,19.43 +2017-08-30 18:47:00,36.3763,108.99,19.46 +2017-08-30 19:02:00,35.5037,108.945,19.48 +2017-08-30 19:17:00,36.87,108.908,19.49 +2017-08-30 19:32:00,36.6225,108.87,19.52 +2017-08-30 19:47:00,35.3538,108.81,19.55 +2017-08-30 20:02:00,35.305,108.747,19.57 +2017-08-30 20:17:00,34.7687,108.69,19.61 +2017-08-30 20:32:00,37.76,108.652,19.62 +2017-08-30 20:47:00,33.4587,108.62,19.65 +2017-08-30 21:02:00,36.2375,108.65,19.67 +2017-08-30 21:17:00,35.5525,108.727,19.7 +2017-08-30 21:32:00,37.1637,108.757,19.72 +2017-08-30 21:47:00,37.21,108.757,19.71 +2017-08-30 22:02:00,35.9487,108.762,19.72 +2017-08-30 22:17:00,35.2562,108.747,19.73 +2017-08-30 22:32:00,35.0088,108.75,19.73 +2017-08-30 22:47:00,37.455,108.755,19.73 +2017-08-30 23:02:00,36.135,108.787,19.7 +2017-08-30 23:17:00,36.7725,108.765,19.67 +2017-08-30 23:32:00,34.2862,108.757,19.67 +2017-08-30 23:47:00,36.2387,108.73,19.67 +2017-08-31 00:02:00,34.33,108.707,19.66 +2017-08-31 00:17:00,36.045,108.69,19.64 +2017-08-31 00:32:00,34.9125,108.68,19.62 +2017-08-31 00:47:00,36.43,108.673,19.62 +2017-08-31 01:02:00,34.9587,108.64,19.61 +2017-08-31 01:17:00,36.5737,108.615,19.61 +2017-08-31 01:32:00,36.1875,108.56,19.61 +2017-08-31 01:47:00,35.7925,108.53,19.61 +2017-08-31 02:02:00,35.3037,108.512,19.61 +2017-08-31 02:17:00,35.1075,108.507,19.6 +2017-08-31 02:32:00,34.6275,108.512,19.6 +2017-08-31 02:47:00,36.095,108.5,19.59 +2017-08-31 03:02:00,35.7462,108.472,19.57 +2017-08-31 03:17:00,35.7438,108.447,19.55 +2017-08-31 03:32:00,37.6087,108.425,19.55 +2017-08-31 03:47:00,35.0075,108.412,19.55 +2017-08-31 04:02:00,35.79,108.438,19.54 +2017-08-31 04:17:00,36.9212,108.452,19.52 +2017-08-31 04:32:00,35.745,108.477,19.49 +2017-08-31 04:47:00,36.235,108.457,19.48 +2017-08-31 05:02:00,35.3512,108.44,19.47 +2017-08-31 05:17:00,36.3812,108.405,19.46 +2017-08-31 05:32:00,34.285,108.397,19.44 +2017-08-31 05:47:00,36.725,108.405,19.41 +2017-08-31 06:02:00,36.4775,108.397,19.4 +2017-08-31 06:17:00,37.3087,108.4,19.41 +2017-08-31 06:32:00,35.2537,108.397,19.42 +2017-08-31 06:47:00,36.1937,108.38,19.42 +2017-08-31 07:02:00,37.2113,108.357,19.42 +2017-08-31 07:17:00,35.8937,108.357,19.42 +2017-08-31 07:32:00,36.2887,108.372,19.43 +2017-08-31 07:47:00,35.745,108.4,19.46 +2017-08-31 08:02:00,36.1862,108.425,19.51 +2017-08-31 08:17:00,35.3538,108.455,19.47 +2017-08-31 08:32:00,35.5488,108.44,19.46 +2017-08-31 08:47:00,34.7237,108.442,19.48 +2017-08-31 09:02:00,36.4762,108.41,19.47 +2017-08-31 09:17:00,35.8913,108.42,19.43 +2017-08-31 09:32:00,34.7712,108.39,19.38 +2017-08-31 09:47:00,36.77,108.387,19.36 +2017-08-31 10:02:00,35.2075,108.395,19.36 +2017-08-31 10:17:00,37.1162,108.342,19.39 +2017-08-31 10:32:00,35.6462,108.265,19.44 +2017-08-31 10:47:00,35.8925,108.16,19.47 +2017-08-31 11:02:00,36.0938,108.092,19.47 +2017-08-31 11:17:00,36.9688,108.037,19.42 +2017-08-31 11:32:00,36.43,107.992,19.41 +2017-08-31 11:47:00,37.9538,107.962,19.42 +2017-08-31 12:02:00,36.82,107.932,19.45 +2017-08-31 12:17:00,37.355,107.912,19.47 +2017-08-31 12:32:00,37.2075,107.917,19.48 +2017-08-31 12:47:00,36.1375,107.938,19.49 +2017-08-31 13:02:00,35.8438,107.962,19.52 +2017-08-31 13:17:00,37.6587,108.03,19.53 +2017-08-31 13:32:00,36.6263,108.075,19.49 +2017-08-31 13:47:00,36.4762,108.077,19.46 +2017-08-31 14:02:00,37.7575,108.04,19.43 +2017-08-31 14:17:00,37.165,107.98,19.44 +2017-08-31 14:32:00,34.43,107.95,19.48 +2017-08-31 14:47:00,36.4287,107.95,19.5 +2017-08-31 15:02:00,37.3575,107.98,19.5 +2017-08-31 15:17:00,36.6212,107.977,19.51 +2017-08-31 15:32:00,36.0437,107.985,19.51 +2017-08-31 15:47:00,34.82,107.962,19.51 +2017-08-31 16:02:00,37.0187,107.94,19.49 +2017-08-31 16:17:00,34.7738,107.94,19.46 +2017-08-31 16:32:00,35.745,107.95,19.42 +2017-08-31 16:47:00,36.6263,107.952,19.4 +2017-08-31 17:02:00,37.0212,107.952,19.37 +2017-08-31 17:17:00,36.6675,107.942,19.34 +2017-08-31 17:32:00,35.695,107.91,19.32 +2017-08-31 17:47:00,36.4275,107.887,19.3 +2017-08-31 18:02:00,35.455,107.862,19.28 +2017-08-31 18:17:00,37.07,107.932,19.25 +2017-08-31 18:32:00,34.4313,107.985,19.22 +2017-08-31 18:47:00,36.82,108.07,19.18 +2017-08-31 19:02:00,35.7975,108.155,19.15 +2017-08-31 19:17:00,34.6775,108.247,19.12 +2017-08-31 19:32:00,36.1862,108.347,19.1 +2017-08-31 19:47:00,35.305,108.452,19.06 +2017-08-31 20:02:00,33.9475,108.53,19.05 +2017-08-31 20:17:00,36.4775,108.607,19.04 +2017-08-31 20:32:00,35.5512,108.68,19.04 +2017-08-31 20:47:00,36.8675,108.727,19.02 +2017-08-31 21:02:00,36.575,108.74,19.0 +2017-08-31 21:17:00,37.2612,108.685,19.0 +2017-08-31 21:32:00,36.38,108.615,19.0 +2017-08-31 21:47:00,36.7262,108.512,18.99 +2017-08-31 22:02:00,37.0713,108.405,18.97 +2017-08-31 22:17:00,37.6075,108.25,18.96 +2017-08-31 22:32:00,35.505,108.095,18.96 +2017-08-31 22:47:00,36.2387,107.882,18.97 +2017-08-31 23:02:00,34.385,107.66,18.95 +2017-08-31 23:17:00,35.4525,107.46,18.94 +2017-08-31 23:32:00,34.865,107.277,18.94 +2017-08-31 23:47:00,35.7,107.135,18.94 +2017-09-01 00:02:00,35.4062,107.015,18.93 +2017-09-01 00:17:00,35.255,106.887,18.91 +2017-09-01 00:32:00,35.2562,106.76,18.89 +2017-09-01 00:47:00,35.9412,106.615,18.87 +2017-09-01 01:02:00,36.0413,106.492,18.86 +2017-09-01 01:17:00,38.0563,106.42,18.84 +2017-09-01 01:32:00,38.2562,106.37,18.83 +2017-09-01 01:47:00,36.3363,106.35,18.8 +2017-09-01 02:02:00,35.55,106.315,18.76 +2017-09-01 02:17:00,36.5713,106.268,18.74 +2017-09-01 02:32:00,36.0413,106.207,18.71 +2017-09-01 02:47:00,35.7925,106.16,18.69 +2017-09-01 03:02:00,37.21,106.13,18.65 +2017-09-01 03:17:00,36.09,106.13,18.61 +2017-09-01 03:32:00,36.67,106.18,18.58 +2017-09-01 03:47:00,36.5788,106.182,18.57 +2017-09-01 04:02:00,35.8937,106.18,18.54 +2017-09-01 04:17:00,35.4525,106.162,18.52 +2017-09-01 04:32:00,36.97,106.158,18.49 +2017-09-01 04:47:00,37.1188,106.175,18.48 +2017-09-01 05:02:00,37.0187,106.235,18.47 +2017-09-01 05:17:00,36.335,106.307,18.48 +2017-09-01 05:32:00,36.8675,106.335,18.49 +2017-09-01 05:47:00,35.4538,106.342,18.48 +2017-09-01 06:02:00,36.4275,106.35,18.47 +2017-09-01 06:17:00,37.0212,106.355,18.46 +2017-09-01 06:32:00,35.9925,106.37,18.47 +2017-09-01 06:47:00,38.455,106.395,18.45 +2017-09-01 07:02:00,37.3037,106.432,18.43 +2017-09-01 07:17:00,35.5037,106.457,18.43 +2017-09-01 07:32:00,37.0212,106.507,18.45 +2017-09-01 07:47:00,36.2375,106.512,18.46 +2017-09-01 08:02:00,36.82,106.527,18.46 +2017-09-01 08:17:00,36.92,106.507,18.47 +2017-09-01 08:32:00,35.305,106.51,18.47 +2017-09-01 08:47:00,35.9962,106.475,18.44 +2017-09-01 09:02:00,36.7725,106.425,18.42 +2017-09-01 09:17:00,37.8613,106.402,18.43 +2017-09-01 09:32:00,36.7712,106.397,18.41 +2017-09-01 09:47:00,34.955,106.447,18.42 +2017-09-01 10:02:00,36.4725,106.525,18.43 +2017-09-01 10:17:00,36.2887,106.592,18.41 +2017-09-01 10:32:00,35.8387,106.675,18.39 +2017-09-01 10:47:00,35.9912,106.78,18.37 +2017-09-01 11:02:00,36.72,106.862,18.35 +2017-09-01 11:17:00,36.235,106.932,18.33 +2017-09-01 11:32:00,36.9212,106.987,18.3 +2017-09-01 11:47:00,37.02,107.03,18.29 +2017-09-01 12:02:00,35.9412,107.072,18.28 +2017-09-01 12:17:00,36.92,107.102,18.28 +2017-09-01 12:32:00,37.6587,107.117,18.27 +2017-09-01 12:47:00,36.6663,107.132,18.28 +2017-09-01 13:02:00,37.3538,107.15,18.31 +2017-09-01 13:17:00,36.2387,107.14,18.35 +2017-09-01 13:32:00,37.1625,107.143,18.37 +2017-09-01 13:47:00,35.5025,107.135,18.36 +2017-09-01 14:02:00,35.4,107.175,18.35 +2017-09-01 14:17:00,37.5062,107.207,18.36 +2017-09-01 14:32:00,36.9675,107.242,18.36 +2017-09-01 14:47:00,36.3787,107.292,18.38 +2017-09-01 15:02:00,36.0925,107.347,18.41 +2017-09-01 15:17:00,36.7213,107.382,18.41 +2017-09-01 15:32:00,36.4713,107.387,18.41 +2017-09-01 15:47:00,37.2125,107.385,18.42 +2017-09-01 16:02:00,35.4,107.365,18.41 +2017-09-01 16:17:00,36.0912,107.34,18.39 +2017-09-01 16:32:00,36.9688,107.277,18.38 +2017-09-01 16:47:00,36.2375,107.275,18.36 +2017-09-01 17:02:00,37.6562,107.27,18.33 +2017-09-01 17:17:00,36.2812,107.287,18.32 +2017-09-01 17:32:00,36.47,107.335,18.31 +2017-09-01 17:47:00,35.9437,107.36,18.29 +2017-09-01 18:02:00,37.5563,107.365,18.29 +2017-09-01 18:17:00,36.525,107.277,18.28 +2017-09-01 18:32:00,37.7087,107.192,18.25 +2017-09-01 18:47:00,35.6925,107.132,18.23 +2017-09-01 19:02:00,35.5512,107.06,18.19 +2017-09-01 19:17:00,34.77,107.025,18.17 +2017-09-01 19:32:00,37.9075,107.045,18.15 +2017-09-01 19:47:00,37.6075,107.077,18.13 +2017-09-01 20:02:00,36.2363,107.112,18.11 +2017-09-01 20:17:00,36.2412,107.155,18.09 +2017-09-01 20:32:00,36.6675,107.132,18.09 +2017-09-01 20:47:00,35.3538,107.097,18.07 +2017-09-01 21:02:00,35.6987,107.015,18.06 +2017-09-01 21:17:00,36.425,106.927,18.04 +2017-09-01 21:32:00,37.9562,106.875,18.02 +2017-09-01 21:47:00,34.6712,106.852,18.0 +2017-09-01 22:02:00,36.67,106.845,17.97 +2017-09-01 22:17:00,36.67,106.882,17.95 +2017-09-01 22:32:00,36.5212,106.935,17.92 +2017-09-01 22:47:00,37.9075,106.987,17.88 +2017-09-01 23:02:00,36.2375,106.995,17.85 +2017-09-01 23:17:00,37.1587,106.967,17.81 +2017-09-01 23:32:00,35.6937,106.923,17.77 +2017-09-01 23:47:00,36.5238,106.855,17.73 +2017-09-02 00:02:00,35.79,106.783,17.71 +2017-09-02 00:17:00,36.1387,106.71,17.67 +2017-09-02 00:32:00,37.5062,106.695,17.63 +2017-09-02 00:47:00,36.7188,106.707,17.59 +2017-09-02 01:02:00,36.04,106.732,17.55 +2017-09-02 01:17:00,36.135,106.757,17.54 +2017-09-02 01:32:00,37.6075,106.8,17.5 +2017-09-02 01:47:00,36.0338,106.83,17.47 +2017-09-02 02:02:00,35.5925,106.817,17.45 +2017-09-02 02:17:00,35.5512,106.795,17.41 +2017-09-02 02:32:00,38.3025,106.643,17.39 +2017-09-02 02:47:00,37.45,106.53,17.36 +2017-09-02 03:02:00,37.065,106.495,17.33 +2017-09-02 03:17:00,34.6188,106.515,17.31 +2017-09-02 03:32:00,35.9912,106.567,17.27 +2017-09-02 03:47:00,35.4487,106.632,17.24 +2017-09-02 04:02:00,35.3975,106.688,17.22 +2017-09-02 04:17:00,37.0612,106.725,17.18 +2017-09-02 04:32:00,36.1862,106.717,17.16 +2017-09-02 04:47:00,36.3325,106.682,17.13 +2017-09-02 05:02:00,37.1587,106.615,17.1 +2017-09-02 05:17:00,36.185,106.562,17.07 +2017-09-02 05:32:00,38.2537,106.537,17.03 +2017-09-02 05:47:00,36.135,106.557,17.01 +2017-09-02 06:02:00,35.4475,106.585,16.97 +2017-09-02 06:17:00,37.015,106.647,16.98 +2017-09-02 06:32:00,38.8363,106.685,16.98 +2017-09-02 06:47:00,38.055,106.68,16.97 +2017-09-02 07:02:00,36.4737,106.67,16.98 +2017-09-02 07:17:00,35.35,106.647,16.97 +2017-09-02 07:32:00,36.375,106.622,16.99 +2017-09-02 07:47:00,35.9925,106.635,17.01 +2017-09-02 08:02:00,38.1475,106.637,17.03 +2017-09-02 08:17:00,37.505,106.637,17.07 +2017-09-02 08:32:00,37.1575,106.643,17.08 +2017-09-02 08:47:00,36.715,106.66,17.09 +2017-09-02 09:02:00,36.9137,106.643,17.14 +2017-09-02 09:17:00,37.3012,106.658,17.18 +2017-09-02 09:32:00,36.515,106.647,17.23 +2017-09-02 09:47:00,35.7875,106.677,17.23 +2017-09-02 10:02:00,37.6537,106.712,17.26 +2017-09-02 10:17:00,36.8175,106.745,17.14 +2017-09-02 10:32:00,38.095,106.897,17.05 +2017-09-02 10:47:00,35.7363,107.155,17.04 +2017-09-02 11:02:00,36.6675,107.43,17.04 +2017-09-02 11:17:00,35.5437,107.688,17.04 +2017-09-02 11:32:00,38.3,107.902,17.14 +2017-09-02 11:47:00,39.2787,108.033,17.21 +2017-09-02 12:02:00,37.0163,108.117,17.22 +2017-09-02 12:17:00,36.2838,108.18,17.22 +2017-09-02 12:32:00,37.065,108.222,17.23 +2017-09-02 12:47:00,37.4,108.277,17.31 +2017-09-02 13:02:00,37.7025,108.33,17.35 +2017-09-02 13:17:00,36.0362,108.372,17.44 +2017-09-02 13:32:00,36.3775,108.41,17.45 +2017-09-02 13:47:00,35.395,108.467,17.38 +2017-09-02 14:02:00,36.7663,108.49,17.32 +2017-09-02 14:17:00,36.2363,108.51,17.3 +2017-09-02 14:32:00,37.8037,108.475,17.3 +2017-09-02 14:47:00,37.155,108.29,17.32 +2017-09-02 15:02:00,38.0987,108.195,17.31 +2017-09-02 15:17:00,34.4788,108.2,17.31 +2017-09-02 15:32:00,34.4287,108.235,17.32 +2017-09-02 15:47:00,36.475,108.257,17.3 +2017-09-02 16:02:00,37.35,108.29,17.3 +2017-09-02 16:17:00,36.8162,108.283,17.3 +2017-09-02 16:32:00,36.615,108.242,17.28 +2017-09-02 16:47:00,36.715,108.165,17.28 +2017-09-02 17:02:00,36.8662,108.048,17.27 +2017-09-02 17:17:00,35.99,107.94,17.27 +2017-09-02 17:32:00,36.9613,107.802,17.26 +2017-09-02 17:47:00,35.2988,107.688,17.24 +2017-09-02 18:02:00,34.5225,107.665,17.23 +2017-09-02 18:17:00,36.7162,107.643,17.21 +2017-09-02 18:32:00,36.375,107.615,17.2 +2017-09-02 18:47:00,37.3512,107.643,17.19 +2017-09-02 19:02:00,35.99,107.628,17.16 +2017-09-02 19:17:00,35.8887,107.582,17.13 +2017-09-02 19:32:00,36.38,107.522,17.11 +2017-09-02 19:47:00,35.645,107.438,17.11 +2017-09-02 20:02:00,36.8138,107.332,17.11 +2017-09-02 20:17:00,36.615,107.247,17.09 +2017-09-02 20:32:00,36.3288,107.197,17.08 +2017-09-02 20:47:00,34.8562,107.192,17.06 +2017-09-02 21:02:00,37.95,107.182,17.03 +2017-09-02 21:17:00,36.035,107.21,17.0 +2017-09-02 21:32:00,36.42,107.245,16.96 +2017-09-02 21:47:00,36.5612,107.24,16.91 +2017-09-02 22:02:00,37.3012,107.205,16.86 +2017-09-02 22:17:00,38.1987,107.135,16.82 +2017-09-02 22:32:00,36.2825,107.033,16.79 +2017-09-02 22:47:00,37.3487,106.897,16.74 +2017-09-02 23:02:00,37.3,106.798,16.68 +2017-09-02 23:17:00,37.1562,106.727,16.65 +2017-09-02 23:32:00,37.3988,106.673,16.62 +2017-09-02 23:47:00,35.8862,106.637,16.59 +2017-09-03 00:02:00,36.9637,106.615,16.56 +2017-09-03 00:17:00,36.765,106.61,16.54 +2017-09-03 00:32:00,37.0638,106.567,16.51 +2017-09-03 00:47:00,38.1,106.477,16.51 +2017-09-03 01:02:00,36.5163,106.35,16.49 +2017-09-03 01:17:00,35.835,106.205,16.48 +2017-09-03 01:32:00,36.5187,106.06,16.49 +2017-09-03 01:47:00,36.9613,105.957,16.48 +2017-09-03 02:02:00,35.1987,105.893,16.45 +2017-09-03 02:17:00,36.865,105.86,16.44 +2017-09-03 02:32:00,35.9887,105.827,16.42 +2017-09-03 02:47:00,37.0625,105.85,16.4 +2017-09-03 03:02:00,37.0112,105.8,16.35 +2017-09-03 03:17:00,35.0925,105.753,16.31 +2017-09-03 03:32:00,36.6137,105.64,16.27 +2017-09-03 03:47:00,37.2975,105.515,16.23 +2017-09-03 04:02:00,36.8625,105.397,16.19 +2017-09-03 04:17:00,35.64,105.29,16.15 +2017-09-03 04:32:00,38.2513,105.242,16.12 +2017-09-03 04:47:00,36.2363,105.22,16.09 +2017-09-03 05:02:00,37.8587,105.215,16.05 +2017-09-03 05:17:00,38.93,105.235,16.02 +2017-09-03 05:32:00,37.2025,105.287,15.99 +2017-09-03 05:47:00,37.45,105.3,15.97 +2017-09-03 06:02:00,37.2038,105.3,15.96 +2017-09-03 06:17:00,36.42,105.25,15.96 +2017-09-03 06:32:00,35.735,105.197,15.96 +2017-09-03 06:47:00,36.9637,105.12,15.96 +2017-09-03 07:02:00,35.64,105.03,15.97 +2017-09-03 07:17:00,38.2525,104.952,15.98 +2017-09-03 07:32:00,36.9112,104.895,16.0 +2017-09-03 07:47:00,38.2975,104.837,16.02 +2017-09-03 08:02:00,37.0625,104.815,16.04 +2017-09-03 08:17:00,37.1087,104.81,16.07 +2017-09-03 08:32:00,38.0013,104.865,16.09 +2017-09-03 08:47:00,36.8688,104.962,16.11 +2017-09-03 09:02:00,36.1338,105.04,16.17 +2017-09-03 09:17:00,36.3737,105.12,16.18 +2017-09-03 09:32:00,35.1537,105.21,16.17 +2017-09-03 09:47:00,36.965,105.268,16.17 +2017-09-03 10:02:00,36.8637,105.305,16.2 +2017-09-03 10:17:00,35.2475,105.332,16.24 +2017-09-03 10:32:00,37.6,105.327,16.24 +2017-09-03 10:47:00,36.5713,105.287,16.19 +2017-09-03 11:02:00,35.8387,105.245,16.16 +2017-09-03 11:17:00,35.9388,105.255,16.15 +2017-09-03 11:32:00,34.4238,105.295,16.13 +2017-09-03 11:47:00,36.965,105.332,16.13 +2017-09-03 12:02:00,37.8025,105.372,16.16 +2017-09-03 12:17:00,37.2075,105.43,16.26 +2017-09-03 12:32:00,36.9112,105.477,16.29 +2017-09-03 12:47:00,36.9137,105.515,16.27 +2017-09-03 13:02:00,36.6212,105.51,16.26 +2017-09-03 13:17:00,35.4475,105.487,16.24 +2017-09-03 13:32:00,36.5175,105.44,16.23 +2017-09-03 13:47:00,36.18,105.397,16.22 +2017-09-03 14:02:00,36.8675,105.435,16.21 +2017-09-03 14:17:00,36.0837,105.477,16.22 +2017-09-03 14:32:00,35.5475,105.537,16.24 +2017-09-03 14:47:00,36.135,105.595,16.28 +2017-09-03 15:02:00,36.915,105.65,16.3 +2017-09-03 15:17:00,36.4225,105.707,16.33 +2017-09-03 15:32:00,38.4962,105.755,16.33 +2017-09-03 15:47:00,37.0638,105.772,16.33 +2017-09-03 16:02:00,36.4662,105.798,16.35 +2017-09-03 16:17:00,35.99,105.792,16.36 +2017-09-03 16:32:00,35.9375,105.805,16.37 +2017-09-03 16:47:00,34.5238,105.817,16.36 +2017-09-03 17:02:00,36.5175,105.875,16.35 +2017-09-03 17:17:00,37.905,105.908,16.33 +2017-09-03 17:32:00,36.6137,105.98,16.32 +2017-09-03 17:47:00,36.515,106.057,16.29 +2017-09-03 18:02:00,36.4688,106.122,16.26 +2017-09-03 18:17:00,36.2312,106.173,16.25 +2017-09-03 18:32:00,35.4487,106.182,16.23 +2017-09-03 18:47:00,36.4762,106.19,16.22 +2017-09-03 19:02:00,35.64,106.202,16.2 +2017-09-03 19:17:00,36.28,106.22,16.18 +2017-09-03 19:32:00,37.11,106.285,16.17 +2017-09-03 19:47:00,34.7625,106.357,16.15 +2017-09-03 20:02:00,35.4487,106.452,16.13 +2017-09-03 20:17:00,36.0362,106.527,16.11 +2017-09-03 20:32:00,35.6925,106.582,16.09 +2017-09-03 20:47:00,37.0625,106.572,16.06 +2017-09-03 21:02:00,36.0863,106.548,16.04 +2017-09-03 21:17:00,37.2988,106.51,16.02 +2017-09-03 21:32:00,36.135,106.485,15.99 +2017-09-03 21:47:00,36.33,106.482,15.97 +2017-09-03 22:02:00,36.0863,106.487,15.96 +2017-09-03 22:17:00,36.7137,106.522,15.95 +2017-09-03 22:32:00,35.4975,106.548,15.95 +2017-09-03 22:47:00,35.8862,106.58,15.93 +2017-09-03 23:02:00,36.3775,106.607,15.92 +2017-09-03 23:17:00,37.0163,106.577,15.92 +2017-09-03 23:32:00,37.1075,106.522,15.91 +2017-09-03 23:47:00,37.4012,106.475,15.89 +2017-09-04 00:02:00,36.2337,106.397,15.89 +2017-09-04 00:17:00,36.865,106.362,15.87 +2017-09-04 00:32:00,36.6637,106.332,15.85 +2017-09-04 00:47:00,36.8625,106.295,15.82 +2017-09-04 01:02:00,38.05,106.32,15.8 +2017-09-04 01:17:00,36.7687,106.342,15.76 +2017-09-04 01:32:00,35.735,106.347,15.72 +2017-09-04 01:47:00,36.3725,106.315,15.7 +2017-09-04 02:02:00,36.3288,106.257,15.67 +2017-09-04 02:17:00,36.8138,106.185,15.65 +2017-09-04 02:32:00,37.2988,106.095,15.61 +2017-09-04 02:47:00,35.0462,106.045,15.57 +2017-09-04 03:02:00,36.2825,105.997,15.55 +2017-09-04 03:17:00,36.23,105.997,15.51 +2017-09-04 03:32:00,38.0962,105.995,15.47 +2017-09-04 03:47:00,35.7363,106.042,15.45 +2017-09-04 04:02:00,35.5462,106.07,15.43 +2017-09-04 04:17:00,34.95,106.072,15.4 +2017-09-04 04:32:00,36.1813,106.025,15.37 +2017-09-04 04:47:00,37.3525,105.97,15.33 +2017-09-04 05:02:00,37.6025,105.857,15.3 +2017-09-04 05:17:00,36.96,105.765,15.26 +2017-09-04 05:32:00,36.3312,105.712,15.24 +2017-09-04 05:47:00,36.4212,105.692,15.21 +2017-09-04 06:02:00,37.45,105.702,15.2 +2017-09-04 06:17:00,36.5675,105.7,15.19 +2017-09-04 06:32:00,35.8862,105.68,15.19 +2017-09-04 06:47:00,37.9012,105.635,15.2 +2017-09-04 07:02:00,36.52,105.587,15.21 +2017-09-04 07:17:00,36.7637,105.535,15.22 +2017-09-04 07:32:00,37.505,105.5,15.26 +2017-09-04 07:47:00,37.45,105.435,15.3 +2017-09-04 08:02:00,37.015,105.402,15.34 +2017-09-04 08:17:00,36.5187,105.38,15.38 +2017-09-04 08:32:00,37.11,105.387,15.43 +2017-09-04 08:47:00,36.375,105.425,15.47 +2017-09-04 09:02:00,38.6437,105.46,15.51 +2017-09-04 09:17:00,37.0137,105.537,15.55 +2017-09-04 09:32:00,36.5662,105.548,15.59 +2017-09-04 09:47:00,36.9613,105.53,15.61 +2017-09-04 10:02:00,37.1137,105.5,15.65 +2017-09-04 10:17:00,36.3312,105.432,15.65 +2017-09-04 10:32:00,37.205,105.385,15.64 +2017-09-04 10:47:00,37.1562,105.34,15.65 +2017-09-04 11:02:00,36.6663,105.327,15.65 +2017-09-04 11:17:00,36.865,105.325,15.68 +2017-09-04 11:32:00,35.4487,105.37,15.72 +2017-09-04 11:47:00,36.3763,105.425,15.74 +2017-09-04 12:02:00,35.9887,105.457,15.71 +2017-09-04 12:17:00,36.135,105.49,15.67 +2017-09-04 12:32:00,36.6125,105.462,15.66 +2017-09-04 12:47:00,35.4987,105.43,15.67 +2017-09-04 13:02:00,37.0137,105.345,15.7 +2017-09-04 13:17:00,34.9037,105.253,15.7 +2017-09-04 13:32:00,37.2038,105.192,15.68 +2017-09-04 13:47:00,37.4,105.162,15.69 +2017-09-04 14:02:00,35.6425,105.188,15.67 +2017-09-04 14:17:00,36.5675,105.207,15.71 +2017-09-04 14:32:00,35.595,105.247,15.75 +2017-09-04 14:47:00,35.64,105.265,15.77 +2017-09-04 15:02:00,34.475,105.262,15.75 +2017-09-04 15:17:00,36.4675,105.237,15.75 +2017-09-04 15:32:00,37.6025,105.177,15.76 +2017-09-04 15:47:00,34.765,105.117,15.79 +2017-09-04 16:02:00,36.6137,105.057,15.83 +2017-09-04 16:17:00,37.8575,105.012,15.84 +2017-09-04 16:32:00,34.4762,104.977,15.85 +2017-09-04 16:47:00,34.7162,104.952,15.85 +2017-09-04 17:02:00,35.05,105.0,15.87 +2017-09-04 17:17:00,35.7913,105.003,15.87 +2017-09-04 17:32:00,37.2487,105.06,15.89 +2017-09-04 17:47:00,35.0938,105.052,15.91 +2017-09-04 18:02:00,33.945,105.052,15.94 +2017-09-04 18:17:00,35.3475,105.007,15.96 +2017-09-04 18:32:00,35.15,104.97,16.01 +2017-09-04 18:47:00,36.8138,104.893,16.04 +2017-09-04 19:02:00,37.9538,104.85,16.09 +2017-09-04 19:17:00,35.5025,104.832,16.11 +2017-09-04 19:32:00,35.25,104.842,16.15 +2017-09-04 19:47:00,35.8887,104.865,16.19 +2017-09-04 20:02:00,35.7838,104.875,16.23 +2017-09-04 20:17:00,35.4987,104.882,16.25 +2017-09-04 20:32:00,35.8337,104.845,16.26 +2017-09-04 20:47:00,36.7175,104.768,16.27 +2017-09-04 21:02:00,37.3975,104.673,16.29 +2017-09-04 21:17:00,35.6875,104.57,16.3 +2017-09-04 21:32:00,34.67,104.515,16.3 +2017-09-04 21:47:00,36.4225,104.485,16.28 +2017-09-04 22:02:00,36.3288,104.482,16.26 +2017-09-04 22:17:00,34.7162,104.5,16.24 +2017-09-04 22:32:00,34.9975,104.527,16.21 +2017-09-04 22:47:00,34.8112,104.512,16.18 +2017-09-04 23:02:00,34.855,104.477,16.13 +2017-09-04 23:17:00,34.2325,104.408,16.08 +2017-09-04 23:32:00,35.9412,104.33,16.03 +2017-09-04 23:47:00,36.815,104.212,16.0 +2017-09-05 00:02:00,37.1125,104.13,15.96 +2017-09-05 00:17:00,35.7387,104.077,15.91 +2017-09-05 00:32:00,36.9662,104.052,15.86 +2017-09-05 00:47:00,36.5175,104.06,15.83 +2017-09-05 01:02:00,36.3775,104.067,15.8 +2017-09-05 01:17:00,37.0163,104.085,15.77 +2017-09-05 01:32:00,36.3288,104.048,15.74 +2017-09-05 01:47:00,36.7663,104.027,15.72 +2017-09-05 02:02:00,35.1488,103.967,15.71 +2017-09-05 02:17:00,36.4725,103.87,15.69 +2017-09-05 02:32:00,37.1087,103.777,15.68 +2017-09-05 02:47:00,34.0863,103.717,15.66 +2017-09-05 03:02:00,33.75,103.697,15.64 +2017-09-05 03:17:00,36.325,103.692,15.62 +2017-09-05 03:32:00,35.9887,103.722,15.6 +2017-09-05 03:47:00,37.605,103.725,15.61 +2017-09-05 04:02:00,35.5462,103.72,15.6 +2017-09-05 04:17:00,36.47,103.675,15.58 +2017-09-05 04:32:00,35.7375,103.602,15.55 +2017-09-05 04:47:00,37.1562,103.862,15.53 +2017-09-05 05:02:00,35.2,104.522,15.52 +2017-09-05 05:17:00,34.8587,104.035,15.5 +2017-09-05 05:32:00,35.8375,100.947,15.45 +2017-09-05 05:47:00,38.05,98.54,15.41 +2017-09-05 06:02:00,34.86,96.97,15.38 +2017-09-05 06:17:00,36.3288,96.175,15.41 +2017-09-05 06:32:00,36.7125,95.945,15.45 +2017-09-05 06:47:00,36.2325,96.045,15.47 +2017-09-05 07:02:00,35.8887,96.31,15.47 +2017-09-05 07:17:00,35.7387,96.64,15.48 +2017-09-05 07:32:00,37.8562,97.005,15.49 +2017-09-05 07:47:00,34.18,97.3875,15.51 +2017-09-05 08:02:00,34.1787,97.81,15.54 +2017-09-05 08:17:00,36.2838,98.2875,15.57 +2017-09-05 08:32:00,36.815,98.7475,15.61 +2017-09-05 08:47:00,35.99,99.22,15.66 +2017-09-05 09:02:00,36.1837,99.94,15.69 +2017-09-05 09:17:00,36.0875,101.592,15.69 +2017-09-05 09:32:00,36.47,103.065,15.69 +2017-09-05 09:47:00,36.9625,104.122,15.67 +2017-09-05 10:02:00,37.8037,104.802,15.67 +2017-09-05 10:17:00,36.09,105.257,15.66 +2017-09-05 10:32:00,36.0338,105.577,15.66 +2017-09-05 10:47:00,36.9163,105.79,15.69 +2017-09-05 11:02:00,36.8175,105.92,15.74 +2017-09-05 11:17:00,38.5912,105.957,15.76 +2017-09-05 11:32:00,37.45,105.97,15.79 +2017-09-05 11:47:00,37.3538,105.815,15.84 +2017-09-05 12:02:00,36.035,105.6,15.85 +2017-09-05 12:17:00,37.0638,105.375,15.89 +2017-09-05 12:32:00,35.7875,105.152,15.91 +2017-09-05 12:47:00,34.3775,104.935,15.91 +2017-09-05 13:02:00,37.6038,104.71,15.91 +2017-09-05 13:17:00,35.885,104.545,15.91 +2017-09-05 13:32:00,35.4962,104.442,15.93 +2017-09-05 13:47:00,37.5987,104.34,16.03 +2017-09-05 14:02:00,37.015,104.222,16.13 +2017-09-05 14:17:00,37.3512,104.152,16.16 +2017-09-05 14:32:00,36.2325,104.045,16.2 +2017-09-05 14:47:00,37.2988,103.902,16.23 +2017-09-05 15:02:00,36.7175,103.747,16.21 +2017-09-05 15:17:00,35.5462,103.565,16.19 +2017-09-05 15:32:00,35.6387,103.402,16.19 +2017-09-05 15:47:00,35.5025,103.275,16.2 +2017-09-05 16:02:00,36.1338,103.23,16.21 +2017-09-05 16:17:00,34.67,103.182,16.24 +2017-09-05 16:32:00,36.4725,103.185,16.27 +2017-09-05 16:47:00,35.8913,103.182,16.3 +2017-09-05 17:02:00,34.0362,103.21,16.33 +2017-09-05 17:17:00,36.6188,103.207,16.36 +2017-09-05 17:32:00,35.7375,103.165,16.39 +2017-09-05 17:47:00,36.4212,103.11,16.44 +2017-09-05 18:02:00,34.9525,103.005,16.47 +2017-09-05 18:17:00,35.0425,102.89,16.49 +2017-09-05 18:32:00,35.2487,102.825,16.5 +2017-09-05 18:47:00,35.6387,102.802,16.51 +2017-09-05 19:02:00,35.8875,102.792,16.5 +2017-09-05 19:17:00,34.4287,102.807,16.5 +2017-09-05 19:32:00,36.9125,102.855,16.52 +2017-09-05 19:47:00,36.085,102.887,16.54 +2017-09-05 20:02:00,34.7675,102.9,16.56 +2017-09-05 20:17:00,36.6675,102.88,16.6 +2017-09-05 20:32:00,35.6437,102.815,16.61 +2017-09-05 20:47:00,35.94,102.745,16.61 +2017-09-05 21:02:00,36.5687,102.727,16.63 +2017-09-05 21:17:00,36.0837,102.737,16.63 +2017-09-05 21:32:00,36.52,102.755,16.63 +2017-09-05 21:47:00,36.4238,102.805,16.61 +2017-09-05 22:02:00,34.955,102.862,16.58 +2017-09-05 22:17:00,34.7687,102.938,16.55 +2017-09-05 22:32:00,37.1125,102.957,16.54 +2017-09-05 22:47:00,36.4713,102.965,16.53 +2017-09-05 23:02:00,35.69,102.942,16.5 +2017-09-05 23:17:00,36.6687,102.897,16.46 +2017-09-05 23:32:00,35.8913,102.85,16.43 +2017-09-05 23:47:00,37.8112,102.827,16.4 +2017-09-06 00:02:00,36.4737,102.832,16.37 +2017-09-06 00:17:00,35.795,102.875,16.36 +2017-09-06 00:32:00,35.4012,102.9,16.33 +2017-09-06 00:47:00,35.2988,102.935,16.31 +2017-09-06 01:02:00,36.14,102.965,16.29 +2017-09-06 01:17:00,34.7137,102.947,16.27 +2017-09-06 01:32:00,35.5925,102.92,16.27 +2017-09-06 01:47:00,35.3012,102.837,16.26 +2017-09-06 02:02:00,35.5488,102.757,16.26 +2017-09-06 02:17:00,35.5462,102.688,16.26 +2017-09-06 02:32:00,36.0863,102.665,16.26 +2017-09-06 02:47:00,37.555,102.685,16.28 +2017-09-06 03:02:00,35.8425,102.72,16.32 +2017-09-06 03:17:00,36.2825,102.76,16.34 +2017-09-06 03:32:00,35.3487,102.805,16.37 +2017-09-06 03:47:00,35.1987,102.83,16.39 +2017-09-06 04:02:00,34.4262,102.795,16.41 +2017-09-06 04:17:00,35.0963,102.753,16.42 +2017-09-06 04:32:00,34.8087,102.67,16.43 +2017-09-06 04:47:00,33.4012,102.592,16.44 +2017-09-06 05:02:00,36.38,102.557,16.45 +2017-09-06 05:17:00,35.9362,102.555,16.45 +2017-09-06 05:32:00,36.3275,102.587,16.45 +2017-09-06 05:47:00,35.5488,102.625,16.46 +2017-09-06 06:02:00,35.25,102.658,16.45 +2017-09-06 06:17:00,34.5713,102.673,16.46 +2017-09-06 06:32:00,35.74,102.647,16.47 +2017-09-06 06:47:00,35.35,102.62,16.48 +2017-09-06 07:02:00,36.7687,102.56,16.47 +2017-09-06 07:17:00,36.2337,102.497,16.45 +2017-09-06 07:32:00,35.69,102.482,16.44 +2017-09-06 07:47:00,34.8112,102.55,16.43 +2017-09-06 08:02:00,35.0525,102.67,16.43 +2017-09-06 08:17:00,35.7887,102.805,16.44 +2017-09-06 08:32:00,34.9075,102.935,16.46 +2017-09-06 08:47:00,35.995,103.05,16.48 +2017-09-06 09:02:00,36.285,103.143,16.52 +2017-09-06 09:17:00,35.84,103.215,16.57 +2017-09-06 09:32:00,35.5013,103.28,16.6 +2017-09-06 09:47:00,35.9887,103.302,16.59 +2017-09-06 10:02:00,37.2588,103.285,16.59 +2017-09-06 10:17:00,36.0362,103.24,16.64 +2017-09-06 10:32:00,36.3763,103.19,16.64 +2017-09-06 10:47:00,35.0987,103.158,16.64 +2017-09-06 11:02:00,34.7663,103.132,16.62 +2017-09-06 11:17:00,36.0863,103.162,16.63 +2017-09-06 11:32:00,36.4737,103.23,16.67 +2017-09-06 11:47:00,35.35,103.298,16.75 +2017-09-06 12:02:00,33.795,103.355,16.79 +2017-09-06 12:17:00,35.99,103.385,16.81 +2017-09-06 12:32:00,34.28,103.425,16.81 +2017-09-06 12:47:00,36.5675,103.487,16.82 +2017-09-06 13:02:00,34.6687,103.482,16.79 +2017-09-06 13:17:00,36.425,103.595,16.79 +2017-09-06 13:32:00,36.5687,103.685,16.82 +2017-09-06 13:47:00,36.0863,103.83,16.85 +2017-09-06 14:02:00,34.2762,103.875,16.88 +2017-09-06 14:17:00,36.6663,103.992,16.91 +2017-09-06 14:32:00,35.1987,104.003,16.88 +2017-09-06 14:47:00,36.7137,104.04,16.86 +2017-09-06 15:02:00,36.67,103.975,16.86 +2017-09-06 15:17:00,33.4025,103.82,16.87 +2017-09-06 15:32:00,35.9412,103.72,16.89 +2017-09-06 15:47:00,36.0387,103.632,16.89 +2017-09-06 16:02:00,34.8112,103.497,16.88 +2017-09-06 16:17:00,34.6687,103.41,16.87 +2017-09-06 16:32:00,36.4688,103.32,16.85 +2017-09-06 16:47:00,35.6937,103.262,16.84 +2017-09-06 17:02:00,35.8387,103.147,16.83 +2017-09-06 17:17:00,36.5725,103.033,16.81 +2017-09-06 17:32:00,36.0362,102.935,16.82 +2017-09-06 17:47:00,34.91,102.783,16.84 +2017-09-06 18:02:00,35.1,102.597,16.85 +2017-09-06 18:17:00,36.0912,102.385,16.85 +2017-09-06 18:32:00,34.955,102.21,16.83 +2017-09-06 18:47:00,36.14,102.11,16.81 +2017-09-06 19:02:00,34.2812,102.033,16.78 +2017-09-06 19:17:00,35.8862,101.985,16.75 +2017-09-06 19:32:00,37.1575,101.97,16.71 +2017-09-06 19:47:00,35.4987,101.965,16.65 +2017-09-06 20:02:00,35.2988,101.912,16.6 +2017-09-06 20:17:00,35.94,101.77,16.55 +2017-09-06 20:32:00,34.2312,101.628,16.52 +2017-09-06 20:47:00,34.9525,101.452,16.49 +2017-09-06 21:02:00,35.3025,101.332,16.44 +2017-09-06 21:17:00,34.3288,101.268,16.39 +2017-09-06 21:32:00,34.1825,101.25,16.36 +2017-09-06 21:47:00,35.9887,101.185,16.32 +2017-09-06 22:02:00,34.4287,101.242,16.29 +2017-09-06 22:17:00,35.1525,101.23,16.25 +2017-09-06 22:32:00,33.6038,101.2,16.2 +2017-09-06 22:47:00,36.1387,101.087,16.17 +2017-09-06 23:02:00,36.2363,100.988,16.14 +2017-09-06 23:17:00,36.5713,100.89,16.1 +2017-09-06 23:32:00,33.3538,100.738,16.06 +2017-09-06 23:47:00,35.99,100.643,16.04 +2017-09-07 00:02:00,35.3512,100.658,16.0 +2017-09-07 00:17:00,36.5713,100.665,15.97 +2017-09-07 00:32:00,36.5187,100.705,15.94 +2017-09-07 00:47:00,35.0525,100.738,15.92 +2017-09-07 01:02:00,34.7687,100.787,15.89 +2017-09-07 01:17:00,35.7913,100.77,15.86 +2017-09-07 01:32:00,36.77,100.757,15.82 +2017-09-07 01:47:00,36.1375,100.705,15.79 +2017-09-07 02:02:00,35.3,100.643,15.77 +2017-09-07 02:17:00,36.4713,100.592,15.73 +2017-09-07 02:32:00,34.9525,100.615,15.71 +2017-09-07 02:47:00,36.6663,100.647,15.7 +2017-09-07 03:02:00,36.5687,100.705,15.69 +2017-09-07 03:17:00,35.7913,100.777,15.66 +2017-09-07 03:32:00,35.1475,100.872,15.64 +2017-09-07 03:47:00,35.2475,100.96,15.61 +2017-09-07 04:02:00,36.4713,100.982,15.59 +2017-09-07 04:17:00,36.3737,100.975,15.6 +2017-09-07 04:32:00,35.1,100.965,15.58 +2017-09-07 04:47:00,34.855,100.917,15.58 +2017-09-07 05:02:00,35.8875,100.905,15.58 +2017-09-07 05:17:00,36.5675,100.92,15.57 +2017-09-07 05:32:00,34.9538,100.97,15.57 +2017-09-07 05:47:00,35.645,101.067,15.57 +2017-09-07 06:02:00,35.7913,101.135,15.57 +2017-09-07 06:17:00,34.575,101.195,15.58 +2017-09-07 06:32:00,36.7162,101.238,15.58 +2017-09-07 06:47:00,35.5512,101.253,15.58 +2017-09-07 07:02:00,37.4512,101.287,15.58 +2017-09-07 07:17:00,35.5963,101.295,15.59 +2017-09-07 07:32:00,34.4788,101.295,15.62 +2017-09-07 07:47:00,35.2462,101.272,15.62 +2017-09-07 08:02:00,35.8913,101.307,15.62 +2017-09-07 08:17:00,34.7162,101.332,15.64 +2017-09-07 08:32:00,35.45,101.37,15.65 +2017-09-07 08:47:00,34.7213,101.457,15.65 +2017-09-07 09:02:00,37.0163,101.56,15.64 +2017-09-07 09:17:00,36.7663,101.667,15.63 +2017-09-07 09:32:00,37.205,101.717,15.67 +2017-09-07 09:47:00,35.7875,101.775,15.69 +2017-09-07 10:02:00,37.015,101.765,15.73 +2017-09-07 10:17:00,36.9625,101.732,15.73 +2017-09-07 10:32:00,35.3025,101.7,15.75 +2017-09-07 10:47:00,35.9875,101.71,15.78 +2017-09-07 11:02:00,33.605,101.768,15.81 +2017-09-07 11:17:00,36.04,101.857,15.8 +2017-09-07 11:32:00,35.0987,101.952,15.82 +2017-09-07 11:47:00,37.1575,102.09,15.87 +2017-09-07 12:02:00,35.5,102.18,15.91 +2017-09-07 12:17:00,35.6437,102.2,15.95 +2017-09-07 12:32:00,34.4762,102.205,15.99 +2017-09-07 12:47:00,36.1837,102.165,15.99 +2017-09-07 13:02:00,35.0987,102.158,15.98 +2017-09-07 13:17:00,35.0512,102.175,16.0 +2017-09-07 13:32:00,36.0387,102.212,16.05 +2017-09-07 13:47:00,36.7225,102.268,16.1 +2017-09-07 14:02:00,35.8937,102.347,16.12 +2017-09-07 14:17:00,37.6575,102.427,16.16 +2017-09-07 14:32:00,35.7375,102.507,16.15 +2017-09-07 14:47:00,36.1837,102.57,16.12 +2017-09-07 15:02:00,35.8925,102.612,16.1 +2017-09-07 15:17:00,34.5725,102.667,16.13 +2017-09-07 15:32:00,35.8387,102.658,16.13 +2017-09-07 15:47:00,35.9925,102.662,16.16 +2017-09-07 16:02:00,36.5725,102.682,16.18 +2017-09-07 16:17:00,35.1512,102.725,16.19 +2017-09-07 16:32:00,36.0387,102.79,16.18 +2017-09-07 16:47:00,35.4538,102.857,16.17 +2017-09-07 17:02:00,34.04,102.932,16.18 +2017-09-07 17:17:00,34.77,102.997,16.17 +2017-09-07 17:32:00,35.1,103.057,16.18 +2017-09-07 17:47:00,35.84,103.097,16.18 +2017-09-07 18:02:00,35.3037,103.147,16.19 +2017-09-07 18:17:00,36.9175,103.182,16.19 +2017-09-07 18:32:00,36.0887,103.225,16.18 +2017-09-07 18:47:00,36.5687,103.287,16.18 +2017-09-07 19:02:00,35.6937,103.327,16.18 +2017-09-07 19:17:00,36.9137,103.393,16.18 +2017-09-07 19:32:00,35.1,103.442,16.16 +2017-09-07 19:47:00,35.0037,103.51,16.15 +2017-09-07 20:02:00,37.8075,103.58,16.14 +2017-09-07 20:17:00,35.5,103.63,16.14 +2017-09-07 20:32:00,37.5037,103.675,16.13 +2017-09-07 20:47:00,37.8587,103.722,16.12 +2017-09-07 21:02:00,37.255,103.78,16.12 +2017-09-07 21:17:00,35.2012,103.815,16.11 +2017-09-07 21:32:00,35.4,103.852,16.1 +2017-09-07 21:47:00,36.4737,103.905,16.08 +2017-09-07 22:02:00,34.1825,103.96,16.06 +2017-09-07 22:17:00,34.7687,103.997,16.04 +2017-09-07 22:32:00,36.085,104.05,16.02 +2017-09-07 22:47:00,36.7213,104.095,15.99 +2017-09-07 23:02:00,37.5062,104.125,15.97 +2017-09-07 23:17:00,38.0013,104.188,15.94 +2017-09-07 23:32:00,36.67,104.202,15.92 +2017-09-07 23:47:00,35.7913,104.23,15.9 +2017-09-08 00:02:00,36.3325,104.23,15.88 +2017-09-08 00:17:00,36.2838,104.253,15.84 +2017-09-08 00:32:00,35.2487,104.26,15.81 +2017-09-08 00:47:00,36.0912,104.29,15.8 +2017-09-08 01:02:00,37.71,104.312,15.77 +2017-09-08 01:17:00,36.62,104.335,15.73 +2017-09-08 01:32:00,37.1562,104.332,15.71 +2017-09-08 01:47:00,37.1113,104.307,15.71 +2017-09-08 02:02:00,36.6675,104.253,15.69 +2017-09-08 02:17:00,36.3325,104.143,15.68 +2017-09-08 02:32:00,36.6188,104.055,15.67 +2017-09-08 02:47:00,36.4737,103.975,15.66 +2017-09-08 03:02:00,35.0987,103.952,15.65 +2017-09-08 03:17:00,36.4275,103.947,15.65 +2017-09-08 03:32:00,35.5963,103.977,15.65 +2017-09-08 03:47:00,37.8087,104.015,15.64 +2017-09-08 04:02:00,36.3787,104.01,15.62 +2017-09-08 04:17:00,34.8562,103.997,15.61 +2017-09-08 04:32:00,37.2087,103.952,15.6 +2017-09-08 04:47:00,35.205,103.852,15.6 +2017-09-08 05:02:00,35.4012,103.74,15.59 +2017-09-08 05:17:00,34.5725,103.645,15.58 +2017-09-08 05:32:00,35.8862,103.575,15.58 +2017-09-08 05:47:00,37.655,103.515,15.58 +2017-09-08 06:02:00,35.3037,103.487,15.58 +2017-09-08 06:17:00,35.9412,103.467,15.57 +2017-09-08 06:32:00,35.5,103.445,15.57 +2017-09-08 06:47:00,36.2838,103.42,15.57 +2017-09-08 07:02:00,36.715,103.393,15.57 +2017-09-08 07:17:00,36.2363,103.382,15.56 +2017-09-08 07:32:00,35.5488,103.347,15.57 +2017-09-08 07:47:00,35.9887,103.31,15.58 +2017-09-08 08:02:00,36.5212,103.268,15.57 +2017-09-08 08:17:00,36.375,103.217,15.56 +2017-09-08 08:32:00,34.72,103.145,15.54 +2017-09-08 08:47:00,34.86,103.095,15.53 +2017-09-08 09:02:00,38.0037,103.057,15.52 +2017-09-08 09:17:00,35.64,103.007,15.49 +2017-09-08 09:32:00,37.2075,103.012,15.48 +2017-09-08 09:47:00,36.6175,103.065,15.47 +2017-09-08 10:02:00,36.0387,103.15,15.46 +2017-09-08 10:17:00,36.4275,103.215,15.45 +2017-09-08 10:32:00,37.015,103.265,15.44 +2017-09-08 10:47:00,35.69,103.327,15.44 +2017-09-08 11:02:00,38.0037,103.455,15.43 +2017-09-08 11:17:00,35.9887,103.518,15.45 +2017-09-08 11:32:00,36.57,103.58,15.46 +2017-09-08 11:47:00,35.8887,103.56,15.48 +2017-09-08 12:02:00,37.255,103.533,15.49 +2017-09-08 12:17:00,33.995,103.503,15.49 +2017-09-08 12:32:00,35.6425,103.515,15.5 +2017-09-08 12:47:00,36.8175,103.592,15.53 +2017-09-08 13:02:00,35.6437,103.685,15.52 +2017-09-08 13:17:00,37.7562,103.777,15.5 +2017-09-08 13:32:00,35.8375,103.857,15.5 +2017-09-08 13:47:00,36.765,103.862,15.5 +2017-09-08 14:02:00,36.085,103.885,15.5 +2017-09-08 14:17:00,36.77,103.777,15.47 +2017-09-08 14:32:00,36.8662,103.643,15.4 +2017-09-08 14:47:00,37.1587,103.492,15.34 +2017-09-08 15:02:00,37.0163,103.39,15.33 +2017-09-08 15:17:00,34.4762,103.355,15.34 +2017-09-08 15:32:00,37.0638,103.332,15.35 +2017-09-08 15:47:00,37.1175,103.357,15.35 +2017-09-08 16:02:00,37.9587,103.408,15.35 +2017-09-08 16:17:00,37.9487,103.44,15.36 +2017-09-08 16:32:00,37.6087,103.44,15.35 +2017-09-08 16:47:00,35.2988,103.438,15.35 +2017-09-08 17:02:00,36.0863,103.4,15.33 +2017-09-08 17:17:00,38.1,103.342,15.31 +2017-09-08 17:32:00,37.0662,103.292,15.31 +2017-09-08 17:47:00,37.6038,103.262,15.31 +2017-09-08 18:02:00,35.5987,103.283,15.3 +2017-09-08 18:17:00,36.5225,103.287,15.28 +2017-09-08 18:32:00,35.3,103.327,15.27 +2017-09-08 18:47:00,37.4525,103.362,15.28 +2017-09-08 19:02:00,36.285,103.38,15.26 +2017-09-08 19:17:00,35.6413,103.382,15.26 +2017-09-08 19:32:00,36.3312,103.4,15.25 +2017-09-08 19:47:00,36.2862,103.36,15.23 +2017-09-08 20:02:00,37.3575,103.3,15.21 +2017-09-08 20:17:00,37.5062,103.222,15.2 +2017-09-08 20:32:00,37.705,103.17,15.21 +2017-09-08 20:47:00,36.7188,103.22,15.2 +2017-09-08 21:02:00,37.16,103.272,15.18 +2017-09-08 21:17:00,37.855,103.325,15.18 +2017-09-08 21:32:00,36.235,103.408,15.17 +2017-09-08 21:47:00,36.625,103.387,15.16 +2017-09-08 22:02:00,37.5587,103.3,15.14 +2017-09-08 22:17:00,37.755,103.205,15.12 +2017-09-08 22:32:00,36.3337,103.075,15.09 +2017-09-08 22:47:00,35.9912,102.965,15.08 +2017-09-08 23:02:00,38.4987,102.895,15.07 +2017-09-08 23:17:00,37.4538,102.893,15.05 +2017-09-08 23:32:00,37.555,102.935,15.04 +2017-09-08 23:47:00,37.1587,102.992,15.04 +2017-09-09 00:02:00,37.5013,102.992,15.03 +2017-09-09 00:17:00,36.1362,103.062,15.01 +2017-09-09 00:32:00,38.3587,103.06,15.01 +2017-09-09 00:47:00,38.2012,103.0,15.0 +2017-09-09 01:02:00,37.4525,102.902,14.98 +2017-09-09 01:17:00,39.53,102.817,14.98 +2017-09-09 01:32:00,39.4812,102.732,14.98 +2017-09-09 01:47:00,37.1587,102.747,14.97 +2017-09-09 02:02:00,37.6062,102.76,14.96 +2017-09-09 02:17:00,38.3037,102.792,14.96 +2017-09-09 02:32:00,38.305,102.837,14.94 +2017-09-09 02:47:00,38.7412,102.832,14.93 +2017-09-09 03:02:00,39.18,102.93,14.92 +2017-09-09 03:17:00,39.2837,102.975,14.92 +2017-09-09 03:32:00,38.3063,102.992,14.91 +2017-09-09 03:47:00,38.0037,102.985,14.92 +2017-09-09 04:02:00,39.625,102.942,14.92 +2017-09-09 04:17:00,40.8363,102.88,14.92 +2017-09-09 04:32:00,38.7412,102.862,14.91 +2017-09-09 04:47:00,39.18,102.845,14.91 +2017-09-09 05:02:00,38.3063,102.87,14.91 +2017-09-09 05:17:00,40.4012,102.893,14.91 +2017-09-09 05:32:00,38.1038,102.932,14.91 +2017-09-09 05:47:00,39.5287,102.957,14.92 +2017-09-09 06:02:00,38.5013,102.93,14.91 +2017-09-09 06:17:00,40.3975,102.865,14.9 +2017-09-09 06:32:00,39.575,102.768,14.9 +2017-09-09 06:47:00,37.1137,102.7,14.9 +2017-09-09 07:02:00,38.1512,102.628,14.89 +2017-09-09 07:17:00,40.02,102.585,14.89 +2017-09-09 07:32:00,40.1675,102.545,14.9 +2017-09-09 07:47:00,39.975,102.535,14.9 +2017-09-09 08:02:00,38.4987,102.477,14.91 +2017-09-09 08:17:00,38.5462,102.485,14.91 +2017-09-09 08:32:00,38.9337,102.552,14.92 +2017-09-09 08:47:00,40.2612,102.605,14.92 +2017-09-09 09:02:00,39.4837,102.667,14.92 +2017-09-09 09:17:00,40.1175,102.755,14.92 +2017-09-09 09:32:00,39.1325,102.81,14.95 +2017-09-09 09:47:00,40.07,102.895,14.97 +2017-09-09 10:02:00,40.215,102.893,14.99 +2017-09-09 10:17:00,37.955,102.815,15.01 +2017-09-09 10:32:00,39.3838,102.628,15.05 +2017-09-09 10:47:00,38.7425,102.495,15.12 +2017-09-09 11:02:00,39.08,102.417,15.2 +2017-09-09 11:17:00,40.1675,102.37,15.2 +2017-09-09 11:32:00,39.275,102.385,15.23 +2017-09-09 11:47:00,39.725,102.362,15.29 +2017-09-09 12:02:00,39.035,102.397,15.31 +2017-09-09 12:17:00,39.0312,102.455,15.34 +2017-09-09 12:32:00,39.3825,102.417,15.4 +2017-09-09 12:47:00,38.155,102.417,15.36 +2017-09-09 13:02:00,37.9987,102.285,15.35 +2017-09-09 13:17:00,40.3975,102.173,15.33 +2017-09-09 13:32:00,39.5737,102.143,15.33 +2017-09-09 13:47:00,39.5788,102.16,15.36 +2017-09-09 14:02:00,39.0812,102.225,15.39 +2017-09-09 14:17:00,39.9262,102.275,15.42 +2017-09-09 14:32:00,38.0987,102.327,15.45 +2017-09-09 14:47:00,38.3037,102.393,15.47 +2017-09-09 15:02:00,37.855,102.465,15.45 +2017-09-09 15:17:00,39.03,102.423,15.42 +2017-09-09 15:32:00,40.2588,102.397,15.41 +2017-09-09 15:47:00,37.8575,102.342,15.39 +2017-09-09 16:02:00,38.6912,102.275,15.39 +2017-09-09 16:17:00,39.775,102.247,15.39 +2017-09-09 16:32:00,40.2588,102.255,15.39 +2017-09-09 16:47:00,39.2312,102.302,15.39 +2017-09-09 17:02:00,38.3525,102.337,15.4 +2017-09-09 17:17:00,39.9737,102.39,15.39 +2017-09-09 17:32:00,39.3825,102.432,15.4 +2017-09-09 17:47:00,38.2,102.477,15.41 +2017-09-09 18:02:00,39.4775,102.482,15.42 +2017-09-09 18:17:00,38.7887,102.455,15.43 +2017-09-09 18:32:00,39.08,102.332,15.44 +2017-09-09 18:47:00,38.1537,102.212,15.44 +2017-09-09 19:02:00,37.6575,102.132,15.45 +2017-09-09 19:17:00,38.4987,102.097,15.47 +2017-09-09 19:32:00,37.255,102.1,15.48 +2017-09-09 19:47:00,39.925,102.132,15.48 +2017-09-09 20:02:00,40.2663,102.182,15.49 +2017-09-09 20:17:00,39.5737,102.262,15.51 +2017-09-09 20:32:00,40.4962,102.255,15.55 +2017-09-09 20:47:00,39.5275,102.188,15.57 +2017-09-09 21:02:00,39.8725,102.102,15.58 +2017-09-09 21:17:00,39.0825,101.987,15.59 +2017-09-09 21:32:00,39.3312,101.897,15.59 +2017-09-09 21:47:00,38.0013,101.8,15.6 +2017-09-09 22:02:00,37.2588,101.81,15.6 +2017-09-09 22:17:00,41.1738,101.807,15.59 +2017-09-09 22:32:00,39.435,101.827,15.58 +2017-09-09 22:47:00,39.6275,101.862,15.56 +2017-09-09 23:02:00,38.8812,101.887,15.54 +2017-09-09 23:17:00,38.2,101.878,15.5 +2017-09-09 23:32:00,39.2312,101.84,15.48 +2017-09-09 23:47:00,38.5013,101.76,15.45 +2017-09-10 00:02:00,37.255,101.7,15.43 +2017-09-10 00:17:00,39.1825,101.615,15.41 +2017-09-10 00:32:00,39.9775,101.57,15.38 +2017-09-10 00:47:00,37.4538,101.555,15.35 +2017-09-10 01:02:00,38.7875,101.565,15.32 +2017-09-10 01:17:00,37.7075,101.605,15.28 +2017-09-10 01:32:00,38.5025,101.67,15.27 +2017-09-10 01:47:00,40.0675,101.747,15.25 +2017-09-10 02:02:00,41.2725,101.762,15.24 +2017-09-10 02:17:00,39.825,101.747,15.22 +2017-09-10 02:32:00,38.3012,101.69,15.2 +2017-09-10 02:47:00,40.5938,101.637,15.18 +2017-09-10 03:02:00,40.305,101.59,15.16 +2017-09-10 03:17:00,38.05,101.595,15.16 +2017-09-10 03:32:00,38.9788,101.637,15.16 +2017-09-10 03:47:00,39.6775,101.72,15.15 +2017-09-10 04:02:00,37.955,101.82,15.14 +2017-09-10 04:17:00,40.12,101.895,15.14 +2017-09-10 04:32:00,39.4812,101.99,15.14 +2017-09-10 04:47:00,40.495,102.05,15.15 +2017-09-10 05:02:00,39.3325,102.048,15.15 +2017-09-10 05:17:00,39.3337,102.02,15.15 +2017-09-10 05:32:00,40.165,101.962,15.16 +2017-09-10 05:47:00,39.2325,101.902,15.17 +2017-09-10 06:02:00,39.5238,101.902,15.17 +2017-09-10 06:17:00,38.8812,101.925,15.19 +2017-09-10 06:32:00,40.6888,101.965,15.22 +2017-09-10 06:47:00,40.4425,102.033,15.26 +2017-09-10 07:02:00,38.4025,102.097,15.27 +2017-09-10 07:17:00,39.03,102.145,15.26 +2017-09-10 07:32:00,38.88,102.143,15.29 +2017-09-10 07:47:00,40.115,102.122,15.34 +2017-09-10 08:02:00,39.28,102.112,15.36 +2017-09-10 08:17:00,38.7412,102.132,15.41 +2017-09-10 08:32:00,40.2612,102.125,15.47 +2017-09-10 08:47:00,37.9525,102.135,15.5 +2017-09-10 09:02:00,39.0825,102.097,15.53 +2017-09-10 09:17:00,38.5013,102.062,15.5 +2017-09-10 09:32:00,38.4525,102.085,15.53 +2017-09-10 09:47:00,38.8825,102.09,15.56 +2017-09-10 10:02:00,39.775,102.137,15.66 +2017-09-10 10:17:00,39.135,102.188,15.59 +2017-09-10 10:32:00,38.8337,102.23,15.49 +2017-09-10 10:47:00,40.3975,102.262,15.45 +2017-09-10 11:02:00,39.5275,102.253,15.46 +2017-09-10 11:17:00,40.54,102.222,15.48 +2017-09-10 11:32:00,38.15,102.15,15.54 +2017-09-10 11:47:00,39.9225,102.06,15.57 +2017-09-10 12:02:00,38.9362,102.018,15.54 +2017-09-10 12:17:00,38.3037,101.992,15.53 +2017-09-10 12:32:00,39.8775,101.997,15.61 +2017-09-10 12:47:00,38.88,102.022,15.72 +2017-09-10 13:02:00,39.48,102.062,15.77 +2017-09-10 13:17:00,38.5488,102.09,15.8 +2017-09-10 13:32:00,40.0187,102.143,15.83 +2017-09-10 13:47:00,39.18,102.147,15.83 +2017-09-10 14:02:00,40.0225,102.072,15.83 +2017-09-10 14:17:00,36.7213,101.947,15.81 +2017-09-10 14:32:00,39.7775,101.842,15.78 +2017-09-10 14:47:00,38.835,101.753,15.79 +2017-09-10 15:02:00,40.165,101.737,15.79 +2017-09-10 15:17:00,38.5975,101.705,15.76 +2017-09-10 15:32:00,39.3325,101.768,15.75 +2017-09-10 15:47:00,39.1338,101.855,15.76 +2017-09-10 16:02:00,38.8812,101.887,15.78 +2017-09-10 16:17:00,38.205,101.942,15.78 +2017-09-10 16:32:00,37.955,101.932,15.77 +2017-09-10 16:47:00,38.005,101.895,15.78 +2017-09-10 17:02:00,38.7825,101.837,15.78 +2017-09-10 17:17:00,38.6475,101.77,15.78 +2017-09-10 17:32:00,37.8025,101.75,15.79 +2017-09-10 17:47:00,38.4512,101.712,15.81 +2017-09-10 18:02:00,38.7387,101.742,15.82 +2017-09-10 18:17:00,39.5775,101.783,15.83 +2017-09-10 18:32:00,37.3525,101.84,15.84 +2017-09-10 18:47:00,39.1813,101.908,15.83 +2017-09-10 19:02:00,37.1562,101.987,15.84 +2017-09-10 19:17:00,37.905,102.005,15.83 +2017-09-10 19:32:00,38.3037,102.018,15.83 +2017-09-10 19:47:00,37.605,101.967,15.81 +2017-09-10 20:02:00,38.6925,101.925,15.8 +2017-09-10 20:17:00,40.0175,101.847,15.79 +2017-09-10 20:32:00,38.2537,101.812,15.78 +2017-09-10 20:47:00,37.3988,101.817,15.78 +2017-09-10 21:02:00,37.655,101.777,15.77 +2017-09-10 21:17:00,38.6413,101.707,15.75 +2017-09-10 21:32:00,40.0675,101.662,15.75 +2017-09-10 21:47:00,39.2837,101.673,15.75 +2017-09-10 22:02:00,37.81,101.65,15.75 +2017-09-10 22:17:00,38.0987,101.622,15.73 +2017-09-10 22:32:00,39.3838,101.602,15.71 +2017-09-10 22:47:00,37.4,101.54,15.7 +2017-09-10 23:02:00,38.3525,101.51,15.68 +2017-09-10 23:17:00,37.555,101.52,15.67 +2017-09-10 23:32:00,39.725,101.562,15.65 +2017-09-10 23:47:00,39.2312,101.628,15.62 +2017-09-11 00:02:00,38.6963,101.707,15.59 +2017-09-11 00:17:00,38.7412,101.79,15.56 +2017-09-11 00:32:00,39.3838,101.87,15.52 +2017-09-11 00:47:00,38.5488,101.905,15.48 +2017-09-11 01:02:00,39.0287,101.9,15.42 +2017-09-11 01:17:00,38.2537,101.862,15.38 +2017-09-11 01:32:00,38.1525,101.8,15.34 +2017-09-11 01:47:00,36.3775,101.772,15.32 +2017-09-11 02:02:00,39.2812,101.762,15.29 +2017-09-11 02:17:00,36.6687,101.77,15.27 +2017-09-11 02:32:00,36.4275,101.8,15.24 +2017-09-11 02:47:00,38.4475,101.837,15.22 +2017-09-11 03:02:00,38.785,101.882,15.21 +2017-09-11 03:17:00,37.2562,101.962,15.21 +2017-09-11 03:32:00,38.8825,102.003,15.19 +2017-09-11 03:47:00,38.0025,102.0,15.17 +2017-09-11 04:02:00,36.3325,101.957,15.15 +2017-09-11 04:17:00,38.1562,101.905,15.15 +2017-09-11 04:32:00,37.505,101.807,15.15 +2017-09-11 04:47:00,38.255,101.777,15.15 +2017-09-11 05:02:00,37.86,101.777,15.15 +2017-09-11 05:17:00,37.8587,101.822,15.15 +2017-09-11 05:32:00,37.2562,101.852,15.15 +2017-09-11 05:47:00,38.6975,101.915,15.17 +2017-09-11 06:02:00,37.5075,101.985,15.19 +2017-09-11 06:17:00,38.1525,102.057,15.2 +2017-09-11 06:32:00,38.305,102.143,15.19 +2017-09-11 06:47:00,37.81,102.188,15.2 +2017-09-11 07:02:00,37.3538,102.235,15.19 +2017-09-11 07:17:00,38.05,102.257,15.19 +2017-09-11 07:32:00,38.2537,102.222,15.18 +2017-09-11 07:47:00,38.1025,102.145,15.17 +2017-09-11 08:02:00,38.4975,102.055,15.15 +2017-09-11 08:17:00,37.1125,101.977,15.13 +2017-09-11 08:32:00,37.81,101.85,15.12 +2017-09-11 08:47:00,38.5013,101.78,15.12 +2017-09-11 09:02:00,37.7562,101.725,15.11 +2017-09-11 09:17:00,38.8337,101.685,15.1 +2017-09-11 09:32:00,37.21,101.61,15.06 +2017-09-11 09:47:00,36.14,101.582,15.04 +2017-09-11 10:02:00,36.4262,101.595,15.02 +2017-09-11 10:17:00,39.48,101.655,15.0 +2017-09-11 10:32:00,38.0025,101.755,15.0 +2017-09-11 10:47:00,37.3525,101.885,14.98 +2017-09-11 11:02:00,37.7562,101.987,14.98 +2017-09-11 11:17:00,37.1575,102.077,14.98 +2017-09-11 11:32:00,37.7038,102.132,14.97 +2017-09-11 11:47:00,37.255,102.195,14.97 +2017-09-11 12:02:00,37.2575,102.222,14.97 +2017-09-11 12:17:00,36.4275,102.262,15.01 +2017-09-11 12:32:00,39.135,102.298,15.08 +2017-09-11 12:47:00,38.3512,102.312,15.09 +2017-09-11 13:02:00,36.57,102.292,15.06 +2017-09-11 13:17:00,36.57,102.217,15.02 +2017-09-11 13:32:00,39.1338,102.117,15.0 +2017-09-11 13:47:00,38.15,101.995,15.0 +2017-09-11 14:02:00,37.4525,101.915,15.01 +2017-09-11 14:17:00,38.6437,101.852,15.01 +2017-09-11 14:32:00,39.0837,101.77,14.99 +2017-09-11 14:47:00,37.5062,101.707,15.0 +2017-09-11 15:02:00,38.2038,101.61,15.01 +2017-09-11 15:17:00,37.9538,101.352,15.03 +2017-09-11 15:32:00,38.6925,101.195,15.05 +2017-09-11 15:47:00,35.8412,101.13,15.06 +2017-09-11 16:02:00,39.1325,101.13,15.04 +2017-09-11 16:17:00,36.1862,101.135,15.02 +2017-09-11 16:32:00,37.6075,101.122,15.0 +2017-09-11 16:47:00,38.1062,101.052,14.98 +2017-09-11 17:02:00,37.9075,100.972,14.97 +2017-09-11 17:17:00,37.4525,101.007,14.95 +2017-09-11 17:32:00,35.99,101.072,14.93 +2017-09-11 17:47:00,36.4238,101.16,14.95 +2017-09-11 18:02:00,38.7875,101.268,15.02 +2017-09-11 18:17:00,36.92,101.378,15.05 +2017-09-11 18:32:00,37.5025,101.45,15.05 +2017-09-11 18:47:00,36.3787,101.425,15.06 +2017-09-11 19:02:00,36.665,101.295,15.07 +2017-09-11 19:17:00,36.375,101.147,15.06 +2017-09-11 19:32:00,35.6937,101.082,15.01 +2017-09-11 19:47:00,38.65,101.027,14.89 +2017-09-11 20:02:00,37.2062,101.08,14.79 +2017-09-11 20:17:00,38.4,101.13,14.75 +2017-09-11 20:32:00,36.9625,101.082,14.74 +2017-09-11 20:47:00,36.6188,101.022,14.74 +2017-09-11 21:02:00,38.2588,101.003,14.72 +2017-09-11 21:17:00,37.45,101.033,14.69 +2017-09-11 21:32:00,36.72,101.117,14.67 +2017-09-11 21:47:00,35.2988,101.21,14.65 +2017-09-11 22:02:00,37.8538,101.307,14.63 +2017-09-11 22:17:00,39.4337,101.342,14.61 +2017-09-11 22:32:00,38.0,101.287,14.58 +2017-09-11 22:47:00,36.235,101.25,14.57 +2017-09-11 23:02:00,38.8325,101.25,14.56 +2017-09-11 23:17:00,38.155,101.275,14.55 +2017-09-11 23:32:00,37.2075,101.36,14.54 +2017-09-11 23:47:00,35.9388,101.43,14.53 +2017-09-12 00:02:00,36.33,101.445,14.52 +2017-09-12 00:17:00,37.4475,101.423,14.51 +2017-09-12 00:32:00,35.5963,101.337,14.49 +2017-09-12 00:47:00,35.9437,101.305,14.47 +2017-09-12 01:02:00,37.3525,101.315,14.44 +2017-09-12 01:17:00,36.9137,101.342,14.41 +2017-09-12 01:32:00,38.7337,101.4,14.38 +2017-09-12 01:47:00,36.715,101.442,14.36 +2017-09-12 02:02:00,38.8825,101.44,14.33 +2017-09-12 02:17:00,36.9175,101.415,14.29 +2017-09-12 02:32:00,36.8662,101.41,14.26 +2017-09-12 02:47:00,36.915,101.402,14.24 +2017-09-12 03:02:00,35.595,101.457,14.22 +2017-09-12 03:17:00,35.5938,101.53,14.2 +2017-09-12 03:32:00,35.6425,101.542,14.17 +2017-09-12 03:47:00,36.28,101.562,14.14 +2017-09-12 04:02:00,36.3787,101.51,14.11 +2017-09-12 04:17:00,38.1012,101.442,14.1 +2017-09-12 04:32:00,37.655,101.4,14.11 +2017-09-12 04:47:00,36.82,101.417,14.09 +2017-09-12 05:02:00,37.755,101.482,14.07 +2017-09-12 05:17:00,37.0662,101.525,14.07 +2017-09-12 05:32:00,36.52,101.51,14.07 +2017-09-12 05:47:00,37.8037,101.485,14.07 +2017-09-12 06:02:00,36.5212,101.43,14.07 +2017-09-12 06:17:00,38.1012,101.375,14.07 +2017-09-12 06:32:00,36.5725,101.322,14.08 +2017-09-12 06:47:00,38.7412,101.27,14.1 +2017-09-12 07:02:00,37.2062,101.24,14.14 +2017-09-12 07:17:00,37.0125,101.177,14.16 +2017-09-12 07:32:00,37.5025,101.167,14.17 +2017-09-12 07:47:00,38.4512,101.462,14.19 +2017-09-12 08:02:00,36.8675,102.41,14.21 +2017-09-12 08:17:00,37.7062,102.165,14.25 +2017-09-12 08:32:00,37.8575,99.565,14.28 +2017-09-12 08:47:00,37.35,97.5375,14.27 +2017-09-12 09:02:00,36.3325,96.27,14.29 +2017-09-12 09:17:00,36.4725,95.585,14.36 +2017-09-12 09:32:00,38.2,95.3725,14.41 +2017-09-12 09:47:00,37.0625,95.4225,14.42 +2017-09-12 10:02:00,36.085,95.625,14.46 +2017-09-12 10:17:00,37.255,95.9525,14.51 +2017-09-12 10:32:00,36.28,96.2825,14.61 +2017-09-12 10:47:00,38.3012,96.67,14.67 +2017-09-12 11:02:00,36.8125,96.9725,14.68 +2017-09-12 11:17:00,36.7188,97.3225,14.66 +2017-09-12 11:32:00,38.3988,97.7275,14.65 +2017-09-12 11:47:00,35.9375,98.1075,14.66 +2017-09-12 12:02:00,38.15,98.4675,14.67 +2017-09-12 12:17:00,36.8675,98.7325,14.65 +2017-09-12 12:32:00,36.565,98.885,14.64 +2017-09-12 12:47:00,37.5563,99.04,14.69 +2017-09-12 13:02:00,37.905,99.125,14.76 +2017-09-12 13:17:00,36.5662,99.355,14.78 +2017-09-12 13:32:00,36.6637,99.5475,14.76 +2017-09-12 13:47:00,36.8662,99.7325,14.73 +2017-09-12 14:02:00,36.5187,99.895,14.7 +2017-09-12 14:17:00,35.5488,100.003,14.69 +2017-09-12 14:32:00,35.295,100.037,14.7 +2017-09-12 14:47:00,36.1837,100.012,14.72 +2017-09-12 15:02:00,35.7913,100.095,14.72 +2017-09-12 15:17:00,34.8075,100.16,14.72 +2017-09-12 15:32:00,36.7725,100.253,14.74 +2017-09-12 15:47:00,35.1475,100.342,14.75 +2017-09-12 16:02:00,37.3012,100.432,14.74 +2017-09-12 16:17:00,36.1325,100.438,14.72 +2017-09-12 16:32:00,36.0375,100.39,14.71 +2017-09-12 16:47:00,34.855,100.43,14.7 +2017-09-12 17:02:00,36.425,100.482,14.69 +2017-09-12 17:17:00,36.3312,100.537,14.69 +2017-09-12 17:32:00,37.5037,100.67,14.7 +2017-09-12 17:47:00,34.1325,100.755,14.7 +2017-09-12 18:02:00,38.4962,100.753,14.72 +2017-09-12 18:17:00,36.1837,100.72,14.74 +2017-09-12 18:32:00,37.115,100.738,14.76 +2017-09-12 18:47:00,36.665,100.757,14.76 +2017-09-12 19:02:00,37.6537,100.822,14.78 +2017-09-12 19:17:00,35.3,100.865,14.8 +2017-09-12 19:32:00,36.135,100.897,14.81 +2017-09-12 19:47:00,36.6637,100.867,14.8 +2017-09-12 20:02:00,37.2513,100.798,14.78 +2017-09-12 20:17:00,36.915,100.77,14.78 +2017-09-12 20:32:00,36.3763,100.757,14.79 +2017-09-12 20:47:00,35.5963,100.785,14.79 +2017-09-12 21:02:00,35.6012,100.84,14.77 +2017-09-12 21:17:00,34.28,100.86,14.76 +2017-09-12 21:32:00,35.8875,100.832,14.73 +2017-09-12 21:47:00,36.5687,100.775,14.72 +2017-09-12 22:02:00,36.66,100.702,14.7 +2017-09-12 22:17:00,37.9987,100.702,14.68 +2017-09-12 22:32:00,37.9087,100.73,14.67 +2017-09-12 22:47:00,36.2812,100.802,14.65 +2017-09-12 23:02:00,36.4225,100.887,14.64 +2017-09-12 23:17:00,35.9912,100.9,14.64 +2017-09-12 23:32:00,36.185,100.867,14.62 +2017-09-12 23:47:00,35.7887,100.815,14.62 +2017-09-13 00:02:00,37.4012,100.82,14.59 +2017-09-13 00:17:00,35.4512,100.845,14.57 +2017-09-13 00:32:00,36.285,100.895,14.56 +2017-09-13 00:47:00,36.0437,100.945,14.52 +2017-09-13 01:02:00,36.2288,100.975,14.48 +2017-09-13 01:17:00,36.475,100.957,14.42 +2017-09-13 01:32:00,36.6188,100.867,14.39 +2017-09-13 01:47:00,35.5475,100.863,14.36 +2017-09-13 02:02:00,36.2838,100.88,14.33 +2017-09-13 02:17:00,36.8662,100.93,14.3 +2017-09-13 02:32:00,36.4225,100.995,14.28 +2017-09-13 02:47:00,36.4737,101.01,14.24 +2017-09-13 03:02:00,36.6162,100.955,14.21 +2017-09-13 03:17:00,36.9175,100.88,14.21 +2017-09-13 03:32:00,36.9662,100.882,14.19 +2017-09-13 03:47:00,36.3787,100.905,14.17 +2017-09-13 04:02:00,38.4475,100.96,14.15 +2017-09-13 04:17:00,36.1325,101.01,14.15 +2017-09-13 04:32:00,36.42,101.04,14.16 +2017-09-13 04:47:00,36.8187,101.005,14.17 +2017-09-13 05:02:00,36.4737,100.955,14.16 +2017-09-13 05:17:00,36.4725,100.902,14.16 +2017-09-13 05:32:00,36.0875,100.917,14.15 +2017-09-13 05:47:00,36.2838,100.992,14.15 +2017-09-13 06:02:00,36.3312,101.065,14.14 +2017-09-13 06:17:00,37.35,101.057,14.14 +2017-09-13 06:32:00,36.5212,101.05,14.14 +2017-09-13 06:47:00,35.6413,101.035,14.14 +2017-09-13 07:02:00,37.3037,100.952,14.14 +2017-09-13 07:17:00,38.2513,100.863,14.16 +2017-09-13 07:32:00,36.4225,100.825,14.16 +2017-09-13 07:47:00,36.2812,100.832,14.15 +2017-09-13 08:02:00,36.3775,100.765,14.18 +2017-09-13 08:17:00,37.6038,100.775,14.2 +2017-09-13 08:32:00,36.9637,100.76,14.23 +2017-09-13 08:47:00,37.5512,100.66,14.3 +2017-09-13 09:02:00,37.4512,100.488,14.36 +2017-09-13 09:17:00,37.065,100.43,14.45 +2017-09-13 09:32:00,36.5687,100.42,14.54 +2017-09-13 09:47:00,36.0362,100.402,14.6 +2017-09-13 10:02:00,36.57,100.337,14.61 +2017-09-13 10:17:00,35.9887,100.337,14.64 +2017-09-13 10:32:00,35.99,100.372,14.67 +2017-09-13 10:47:00,38.4,100.305,14.69 +2017-09-13 11:02:00,36.6175,100.287,14.72 +2017-09-13 11:17:00,37.1137,100.242,14.75 +2017-09-13 11:32:00,38.5962,100.222,14.76 +2017-09-13 11:47:00,36.04,100.225,14.75 +2017-09-13 12:02:00,36.2337,100.097,14.72 +2017-09-13 12:17:00,36.715,100.11,14.71 +2017-09-13 12:32:00,36.7162,99.995,14.7 +2017-09-13 12:47:00,37.0125,99.88,14.71 +2017-09-13 13:02:00,36.615,99.715,14.73 +2017-09-13 13:17:00,36.7188,99.7375,14.72 +2017-09-13 13:32:00,34.9075,99.7875,14.74 +2017-09-13 13:47:00,38.1512,99.7375,14.78 +2017-09-13 14:02:00,36.965,99.7,14.81 +2017-09-13 14:17:00,36.2337,99.74,14.84 +2017-09-13 14:32:00,36.815,99.755,14.83 +2017-09-13 14:47:00,36.2825,99.68,14.8 +2017-09-13 15:02:00,37.1137,99.6125,14.8 +2017-09-13 15:17:00,36.1875,99.75,14.79 +2017-09-13 15:32:00,36.4737,99.8,14.76 +2017-09-13 15:47:00,36.3763,99.815,14.75 +2017-09-13 16:02:00,36.0863,99.955,14.73 +2017-09-13 16:17:00,37.655,99.9225,14.72 +2017-09-13 16:32:00,35.0025,99.905,14.72 +2017-09-13 16:47:00,35.4512,99.82,14.72 +2017-09-13 17:02:00,35.55,99.7975,14.72 +2017-09-13 17:17:00,37.305,99.7575,14.72 +2017-09-13 17:32:00,36.4713,99.7625,14.72 +2017-09-13 17:47:00,36.2862,99.7625,14.74 +2017-09-13 18:02:00,36.0837,99.8075,14.76 +2017-09-13 18:17:00,36.235,99.63,14.77 +2017-09-13 18:32:00,36.5737,99.61,14.76 +2017-09-13 18:47:00,38.1512,99.5075,14.76 +2017-09-13 19:02:00,36.2825,99.53,14.76 +2017-09-13 19:17:00,36.47,99.5375,14.74 +2017-09-13 19:32:00,37.16,99.58,14.75 +2017-09-13 19:47:00,35.84,99.6525,14.75 +2017-09-13 20:02:00,36.2375,99.6375,14.77 +2017-09-13 20:17:00,36.6687,99.575,14.79 +2017-09-13 20:32:00,34.085,99.5075,14.8 +2017-09-13 20:47:00,37.45,99.4825,14.81 +2017-09-13 21:02:00,36.8162,99.5075,14.83 +2017-09-13 21:17:00,35.5912,99.5425,14.84 +2017-09-13 21:32:00,37.4512,99.5725,14.84 +2017-09-13 21:47:00,37.065,99.53,14.85 +2017-09-13 22:02:00,37.1575,99.4475,14.84 +2017-09-13 22:17:00,35.69,99.3075,14.82 +2017-09-13 22:32:00,33.9925,99.29,14.79 +2017-09-13 22:47:00,37.4475,99.2575,14.77 +2017-09-13 23:02:00,35.1462,99.305,14.75 +2017-09-13 23:17:00,36.6663,99.3325,14.71 +2017-09-13 23:32:00,36.6212,99.3925,14.67 +2017-09-13 23:47:00,37.015,99.29,14.64 +2017-09-14 00:02:00,35.9912,99.22,14.61 +2017-09-14 00:17:00,34.81,99.2075,14.59 +2017-09-14 00:32:00,38.1512,99.245,14.54 +2017-09-14 00:47:00,36.9625,99.25,14.51 +2017-09-14 01:02:00,36.5187,99.3,14.48 +2017-09-14 01:17:00,36.8175,99.2775,14.44 +2017-09-14 01:32:00,36.8162,99.26,14.4 +2017-09-14 01:47:00,37.905,99.215,14.37 +2017-09-14 02:02:00,34.86,99.1725,14.36 +2017-09-14 02:17:00,36.77,99.2,14.34 +2017-09-14 02:32:00,36.0887,99.225,14.32 +2017-09-14 02:47:00,36.2337,99.265,14.31 +2017-09-14 03:02:00,35.8387,99.25,14.3 +2017-09-14 03:17:00,34.7213,99.2275,14.29 +2017-09-14 03:32:00,36.0387,99.095,14.29 +2017-09-14 03:47:00,35.9912,98.985,14.27 +2017-09-14 04:02:00,37.6025,98.98,14.27 +2017-09-14 04:17:00,38.3012,99.0675,14.28 +2017-09-14 04:32:00,36.0387,99.1725,14.29 +2017-09-14 04:47:00,37.0638,99.29,14.3 +2017-09-14 05:02:00,36.5662,99.2925,14.31 +2017-09-14 05:17:00,36.8675,99.205,14.31 +2017-09-14 05:32:00,34.8075,99.205,14.3 +2017-09-14 05:47:00,36.0875,99.215,14.3 +2017-09-14 06:02:00,35.69,99.19,14.3 +2017-09-14 06:17:00,37.7062,99.155,14.32 +2017-09-14 06:32:00,37.5037,99.1,14.31 +2017-09-14 06:47:00,36.2337,99.11,14.31 +2017-09-14 07:02:00,36.4275,99.2025,14.31 +2017-09-14 07:17:00,35.1,99.415,14.32 +2017-09-14 07:32:00,36.7687,99.52,14.32 +2017-09-14 07:47:00,35.3988,99.625,14.33 +2017-09-14 08:02:00,36.1338,99.695,14.32 +2017-09-14 08:17:00,35.6425,99.775,14.31 +2017-09-14 08:32:00,36.185,99.7825,14.31 +2017-09-14 08:47:00,34.2787,99.8425,14.31 +2017-09-14 09:02:00,36.185,99.8675,14.3 +2017-09-14 09:17:00,36.8162,99.8675,14.28 +2017-09-14 09:32:00,35.0013,99.92,14.26 +2017-09-14 09:47:00,36.915,99.9575,14.26 +2017-09-14 10:02:00,34.5225,100.02,14.26 +2017-09-14 10:17:00,36.8138,100.035,14.26 +2017-09-14 10:32:00,37.505,100.11,14.23 +2017-09-14 10:47:00,35.6912,100.11,14.21 +2017-09-14 11:02:00,36.3737,100.173,14.2 +2017-09-14 11:17:00,36.5675,100.192,14.2 +2017-09-14 11:32:00,35.0,100.235,14.23 +2017-09-14 11:47:00,36.6162,100.227,14.29 +2017-09-14 12:02:00,35.9388,100.307,14.29 +2017-09-14 12:17:00,35.15,100.322,14.35 +2017-09-14 12:32:00,35.5925,100.317,14.36 +2017-09-14 12:47:00,35.4975,100.292,14.36 +2017-09-14 13:02:00,38.35,100.345,14.4 +2017-09-14 13:17:00,36.1287,100.32,14.43 +2017-09-14 13:32:00,36.865,100.475,14.43 +2017-09-14 13:47:00,36.0362,100.522,14.35 +2017-09-14 14:02:00,35.0488,100.78,14.31 +2017-09-14 14:17:00,35.4975,100.9,14.31 +2017-09-14 14:32:00,35.595,100.97,14.3 +2017-09-14 14:47:00,37.8525,100.988,14.3 +2017-09-14 15:02:00,36.5163,100.995,14.32 +2017-09-14 15:17:00,36.3312,101.135,14.3 +2017-09-14 15:32:00,37.11,101.143,14.28 +2017-09-14 15:47:00,36.8625,101.28,14.25 +2017-09-14 16:02:00,37.0638,101.262,14.24 +2017-09-14 16:17:00,36.5675,101.255,14.23 +2017-09-14 16:32:00,34.8112,101.182,14.23 +2017-09-14 16:47:00,35.5013,101.155,14.22 +2017-09-14 17:02:00,36.3312,101.188,14.19 +2017-09-14 17:17:00,36.47,101.253,14.17 +2017-09-14 17:32:00,37.2525,101.32,14.16 +2017-09-14 17:47:00,36.6137,101.355,14.16 +2017-09-14 18:02:00,36.1862,101.325,14.14 +2017-09-14 18:17:00,35.3463,101.287,14.15 +2017-09-14 18:32:00,38.3512,101.238,14.16 +2017-09-14 18:47:00,35.64,101.277,14.17 +2017-09-14 19:02:00,36.1862,101.322,14.17 +2017-09-14 19:17:00,35.79,101.408,14.18 +2017-09-14 19:32:00,37.3037,101.445,14.17 +2017-09-14 19:47:00,35.835,101.385,14.15 +2017-09-14 20:02:00,36.915,101.277,14.14 +2017-09-14 20:17:00,36.3737,101.21,14.14 +2017-09-14 20:32:00,37.4487,101.19,14.14 +2017-09-14 20:47:00,36.6625,101.24,14.16 +2017-09-14 21:02:00,36.9662,101.342,14.16 +2017-09-14 21:17:00,35.9362,101.438,14.15 +2017-09-14 21:32:00,35.7925,101.472,14.14 +2017-09-14 21:47:00,36.1825,101.445,14.14 +2017-09-14 22:02:00,35.8875,101.385,14.13 +2017-09-14 22:17:00,37.5037,101.335,14.1 +2017-09-14 22:32:00,37.0625,101.305,14.08 +2017-09-14 22:47:00,35.4487,101.327,14.07 +2017-09-14 23:02:00,36.7225,101.357,14.05 +2017-09-14 23:17:00,36.4238,101.35,14.03 +2017-09-14 23:32:00,35.9412,101.26,14.0 +2017-09-14 23:47:00,35.545,101.167,13.99 +2017-09-15 00:02:00,36.565,101.045,13.97 +2017-09-15 00:17:00,36.6637,101.003,13.96 +2017-09-15 00:32:00,36.3312,101.015,13.93 +2017-09-15 00:47:00,36.33,101.027,13.9 +2017-09-15 01:02:00,36.1813,100.995,13.87 +2017-09-15 01:17:00,34.0812,100.923,13.83 +2017-09-15 01:32:00,36.865,100.712,13.79 +2017-09-15 01:47:00,36.4725,100.577,13.77 +2017-09-15 02:02:00,35.5025,100.505,13.74 +2017-09-15 02:17:00,35.1488,100.442,13.72 +2017-09-15 02:32:00,35.3988,100.45,13.69 +2017-09-15 02:47:00,36.7687,100.432,13.66 +2017-09-15 03:02:00,36.8138,100.41,13.64 +2017-09-15 03:17:00,35.9912,100.32,13.61 +2017-09-15 03:32:00,36.2363,100.207,13.59 +2017-09-15 03:47:00,34.7637,100.102,13.57 +2017-09-15 04:02:00,34.4762,100.062,13.55 +2017-09-15 04:17:00,37.0638,100.05,13.54 +2017-09-15 04:32:00,36.615,100.01,13.54 +2017-09-15 04:47:00,37.015,99.93,13.54 +2017-09-15 05:02:00,36.5212,99.7575,13.54 +2017-09-15 05:17:00,36.1862,99.635,13.54 +2017-09-15 05:32:00,34.3763,99.5475,13.55 +2017-09-15 05:47:00,35.8875,99.4725,13.55 +2017-09-15 06:02:00,34.8562,99.4175,13.56 +2017-09-15 06:17:00,36.865,99.35,13.59 +2017-09-15 06:32:00,36.2337,99.2475,13.6 +2017-09-15 06:47:00,35.4987,99.205,13.62 +2017-09-15 07:02:00,38.15,99.1225,13.64 +2017-09-15 07:17:00,37.06,99.0825,13.67 +2017-09-15 07:32:00,36.185,99.1775,13.72 +2017-09-15 07:47:00,36.1325,99.255,13.77 +2017-09-15 08:02:00,37.1113,99.3075,13.81 +2017-09-15 08:17:00,36.1837,99.3825,13.86 +2017-09-15 08:32:00,35.4987,99.39,13.91 +2017-09-15 08:47:00,37.1575,99.36,13.93 +2017-09-15 09:02:00,35.3487,99.2275,13.97 +2017-09-15 09:17:00,36.6175,99.1475,14.02 +2017-09-15 09:32:00,37.9512,99.005,14.03 +2017-09-15 09:47:00,35.99,98.8825,14.01 +2017-09-15 10:02:00,34.3262,98.835,13.97 +2017-09-15 10:17:00,36.3288,98.7775,14.03 +2017-09-15 10:32:00,35.2962,98.7325,14.12 +2017-09-15 10:47:00,34.8087,98.7625,14.15 +2017-09-15 11:02:00,34.0362,98.7775,14.17 +2017-09-15 11:17:00,35.5938,98.7275,14.17 +2017-09-15 11:32:00,35.4512,98.605,14.17 +2017-09-15 11:47:00,34.57,98.395,14.1 +2017-09-15 12:02:00,35.5462,98.0725,14.1 +2017-09-15 12:17:00,34.9525,97.7,14.16 +2017-09-15 12:32:00,34.8538,97.3125,14.2 +2017-09-15 12:47:00,35.6875,96.9275,14.2 +2017-09-15 13:02:00,34.9012,96.56,14.25 +2017-09-15 13:17:00,34.085,96.19,14.23 +2017-09-15 13:32:00,34.9487,95.8725,14.23 +2017-09-15 13:47:00,35.6888,95.5375,14.24 +2017-09-15 14:02:00,37.3037,95.255,14.19 +2017-09-15 14:17:00,35.05,94.955,14.16 +2017-09-15 14:32:00,35.9388,94.6125,14.14 +2017-09-15 14:47:00,36.475,94.2925,14.13 +2017-09-15 15:02:00,35.5887,93.9475,14.12 +2017-09-15 15:17:00,35.9388,93.625,14.13 +2017-09-15 15:32:00,36.1362,93.3875,14.15 +2017-09-15 15:47:00,34.62,93.275,14.15 +2017-09-15 16:02:00,36.3312,93.2025,14.15 +2017-09-15 16:17:00,36.2337,93.16,14.15 +2017-09-15 16:32:00,35.1975,93.1675,14.14 +2017-09-15 16:47:00,36.085,93.205,14.15 +2017-09-15 17:02:00,34.13,93.2325,14.13 +2017-09-15 17:17:00,36.5212,93.205,14.11 +2017-09-15 17:32:00,35.74,93.1475,14.1 +2017-09-15 17:47:00,34.8575,93.11,14.09 +2017-09-15 18:02:00,34.9037,93.0925,14.09 +2017-09-15 18:17:00,36.285,93.14,14.11 +2017-09-15 18:32:00,33.3525,93.225,14.13 +2017-09-15 18:47:00,34.1787,93.35,14.14 +2017-09-15 19:02:00,35.3463,93.5175,14.16 +2017-09-15 19:17:00,35.9362,93.725,14.17 +2017-09-15 19:32:00,35.8375,93.9225,14.19 +2017-09-15 19:47:00,35.1488,94.08,14.2 +2017-09-15 20:02:00,35.0963,94.1625,14.19 +2017-09-15 20:17:00,35.0963,94.22,14.17 +2017-09-15 20:32:00,35.4962,94.245,14.18 +2017-09-15 20:47:00,37.0137,94.285,14.19 +2017-09-15 21:02:00,34.525,94.36,14.18 +2017-09-15 21:17:00,35.0013,94.48,14.16 +2017-09-15 21:32:00,34.8587,94.645,14.16 +2017-09-15 21:47:00,33.4512,94.845,14.14 +2017-09-15 22:02:00,34.9062,95.05,14.13 +2017-09-15 22:17:00,36.2387,95.25,14.12 +2017-09-15 22:32:00,36.5662,95.3975,14.11 +2017-09-15 22:47:00,36.0863,95.5175,14.09 +2017-09-15 23:02:00,36.4225,95.5875,14.07 +2017-09-15 23:17:00,34.855,95.6125,14.05 +2017-09-15 23:32:00,37.015,95.6075,14.03 +2017-09-15 23:47:00,36.375,95.665,14.01 +2017-09-16 00:02:00,35.4962,95.7525,13.98 +2017-09-16 00:17:00,35.7913,95.8825,13.97 +2017-09-16 00:32:00,36.965,96.045,13.95 +2017-09-16 00:47:00,36.2312,96.195,13.91 +2017-09-16 01:02:00,36.19,96.38,13.86 +2017-09-16 01:17:00,36.3325,96.5025,13.81 +2017-09-16 01:32:00,34.1837,96.58,13.77 +2017-09-16 01:47:00,36.0362,96.62,13.73 +2017-09-16 02:02:00,35.3975,96.6125,13.7 +2017-09-16 02:17:00,35.45,96.5875,13.68 +2017-09-16 02:32:00,34.3262,96.5975,13.65 +2017-09-16 02:47:00,34.765,96.68,13.6 +2017-09-16 03:02:00,36.3763,96.765,13.58 +2017-09-16 03:17:00,36.235,96.8775,13.55 +2017-09-16 03:32:00,35.69,96.9925,13.52 +2017-09-16 03:47:00,36.62,97.1225,13.49 +2017-09-16 04:02:00,36.2812,97.215,13.46 +2017-09-16 04:17:00,35.59,97.2425,13.43 +2017-09-16 04:32:00,33.8937,97.24,13.41 +2017-09-16 04:47:00,37.2038,97.205,13.39 +2017-09-16 05:02:00,34.6687,97.16,13.38 +2017-09-16 05:17:00,34.9987,97.1575,13.37 +2017-09-16 05:32:00,34.7663,97.195,13.36 +2017-09-16 05:47:00,34.2775,97.255,13.35 +2017-09-16 06:02:00,34.6712,97.3625,13.36 +2017-09-16 06:17:00,36.1825,97.455,13.38 +2017-09-16 06:32:00,36.085,97.495,13.38 +2017-09-16 06:47:00,35.8375,97.4725,13.38 +2017-09-16 07:02:00,35.6387,97.4175,13.4 +2017-09-16 07:17:00,35.0462,97.3675,13.42 +2017-09-16 07:32:00,36.5163,97.34,13.45 +2017-09-16 07:47:00,34.0863,97.345,13.49 +2017-09-16 08:02:00,36.9137,97.39,13.55 +2017-09-16 08:17:00,35.05,97.38,13.65 +2017-09-16 08:32:00,34.5713,97.4325,13.74 +2017-09-16 08:47:00,36.1362,97.5,13.8 +2017-09-16 09:02:00,35.3487,97.5725,13.84 +2017-09-16 09:17:00,35.15,97.6625,13.88 +2017-09-16 09:32:00,36.2838,97.755,13.9 +2017-09-16 09:47:00,35.5938,97.8425,13.92 +2017-09-16 10:02:00,36.3725,97.9075,13.91 +2017-09-16 10:17:00,35.94,97.9725,13.9 +2017-09-16 10:32:00,35.0475,98.025,13.94 +2017-09-16 10:47:00,36.2325,98.055,13.95 +2017-09-16 11:02:00,37.11,98.0675,13.89 +2017-09-16 11:17:00,35.9412,98.08,13.86 +2017-09-16 11:32:00,37.505,98.02,13.89 +2017-09-16 11:47:00,34.7188,97.925,13.9 +2017-09-16 12:02:00,37.4975,97.7825,13.96 +2017-09-16 12:17:00,34.765,97.69,13.96 +2017-09-16 12:32:00,35.395,97.565,13.96 +2017-09-16 12:47:00,34.6687,97.4775,13.95 +2017-09-16 13:02:00,34.5687,97.4575,13.94 +2017-09-16 13:17:00,35.1462,97.45,13.95 +2017-09-16 13:32:00,34.6637,97.4925,13.95 +2017-09-16 13:47:00,36.1312,97.495,13.96 +2017-09-16 14:02:00,35.4475,97.49,13.94 +2017-09-16 14:17:00,36.91,97.4875,13.93 +2017-09-16 14:32:00,35.8363,97.505,13.9 +2017-09-16 14:47:00,34.995,97.53,13.88 +2017-09-16 15:02:00,35.0512,97.5175,13.87 +2017-09-16 15:17:00,36.1275,97.46,13.89 +2017-09-16 15:32:00,34.9025,97.37,13.9 +2017-09-16 15:47:00,34.81,97.275,13.9 +2017-09-16 16:02:00,35.0488,97.21,13.93 +2017-09-16 16:17:00,33.7937,97.17,13.93 +2017-09-16 16:32:00,36.2337,97.1625,13.91 +2017-09-16 16:47:00,33.9863,97.1675,13.91 +2017-09-16 17:02:00,36.7663,97.2025,13.91 +2017-09-16 17:17:00,36.33,97.23,13.89 +2017-09-16 17:32:00,34.1312,97.285,13.9 +2017-09-16 17:47:00,35.9412,97.33,13.91 +2017-09-16 18:02:00,35.045,97.36,13.93 +2017-09-16 18:17:00,35.0025,97.3975,13.96 +2017-09-16 18:32:00,34.7137,97.435,13.99 +2017-09-16 18:47:00,35.045,97.4425,14.02 +2017-09-16 19:02:00,34.7162,97.3825,14.05 +2017-09-16 19:17:00,34.2775,97.3175,14.06 +2017-09-16 19:32:00,34.995,97.1825,14.09 +2017-09-16 19:47:00,36.0825,97.0725,14.09 +2017-09-16 20:02:00,36.4212,96.9875,14.09 +2017-09-16 20:17:00,36.4675,96.9425,14.08 +2017-09-16 20:32:00,34.9037,96.945,14.08 +2017-09-16 20:47:00,35.5,96.9475,14.09 +2017-09-16 21:02:00,34.8562,96.9925,14.08 +2017-09-16 21:17:00,36.5175,97.025,14.09 +2017-09-16 21:32:00,35.4987,97.0375,14.08 +2017-09-16 21:47:00,35.74,97.08,14.07 +2017-09-16 22:02:00,34.4275,97.12,14.06 +2017-09-16 22:17:00,34.4737,97.1575,14.04 +2017-09-16 22:32:00,34.375,97.185,14.02 +2017-09-16 22:47:00,35.1488,97.145,14.0 +2017-09-16 23:02:00,34.8075,97.0425,13.97 +2017-09-16 23:17:00,34.9512,96.9375,13.94 +2017-09-16 23:32:00,35.5912,96.805,13.91 +2017-09-16 23:47:00,35.2,96.74,13.9 +2017-09-17 00:02:00,35.095,96.7175,13.88 +2017-09-17 00:17:00,35.1987,96.715,13.86 +2017-09-17 00:32:00,35.7887,96.72,13.8 +2017-09-17 00:47:00,35.0,96.73,13.76 +2017-09-17 01:02:00,36.185,96.72,13.72 +2017-09-17 01:17:00,34.1813,96.735,13.66 +2017-09-17 01:32:00,34.86,96.7675,13.61 +2017-09-17 01:47:00,34.5225,96.775,13.55 +2017-09-17 02:02:00,36.2312,96.8,13.49 +2017-09-17 02:17:00,34.425,96.7775,13.44 +2017-09-17 02:32:00,36.9125,96.6975,13.39 +2017-09-17 02:47:00,36.135,96.5925,13.34 +2017-09-17 03:02:00,35.9362,96.47,13.27 +2017-09-17 03:17:00,34.8562,96.36,13.22 +2017-09-17 03:32:00,34.23,96.2925,13.19 +2017-09-17 03:47:00,34.7637,96.265,13.16 +2017-09-17 04:02:00,33.8475,96.255,13.14 +2017-09-17 04:17:00,36.035,96.2675,13.1 +2017-09-17 04:32:00,35.9337,96.3,13.09 +2017-09-17 04:47:00,36.33,96.3325,13.07 +2017-09-17 05:02:00,36.4212,96.3525,13.07 +2017-09-17 05:17:00,35.0462,96.37,13.07 +2017-09-17 05:32:00,34.8087,96.3825,13.08 +2017-09-17 05:47:00,33.0638,96.37,13.1 +2017-09-17 06:02:00,35.0963,96.3025,13.12 +2017-09-17 06:17:00,36.1837,96.22,13.13 +2017-09-17 06:32:00,35.3463,96.15,13.14 +2017-09-17 06:47:00,36.0863,96.04,13.15 +2017-09-17 07:02:00,36.1837,95.9575,13.16 +2017-09-17 07:17:00,35.6888,95.8875,13.17 +2017-09-17 07:32:00,35.7913,95.86,13.2 +2017-09-17 07:47:00,34.8075,95.89,13.28 +2017-09-17 08:02:00,34.3737,95.95,13.35 +2017-09-17 08:17:00,33.605,96.0175,13.36 +2017-09-17 08:32:00,34.9062,96.0875,13.36 +2017-09-17 08:47:00,34.5687,96.1425,13.37 +2017-09-17 09:02:00,35.885,96.175,13.4 +2017-09-17 09:17:00,36.6637,96.2225,13.41 +2017-09-17 09:32:00,35.3475,96.265,13.44 +2017-09-17 09:47:00,34.9012,96.29,13.46 +2017-09-17 10:02:00,33.3063,96.33,13.45 +2017-09-17 10:17:00,35.9887,96.365,13.47 +2017-09-17 10:32:00,35.8363,96.3225,13.52 +2017-09-17 10:47:00,36.18,96.2725,13.53 +2017-09-17 11:02:00,36.5687,96.19,13.55 +2017-09-17 11:17:00,33.9887,96.11,13.51 +2017-09-17 11:32:00,34.425,96.0875,13.42 +2017-09-17 11:47:00,35.6413,96.065,13.34 +2017-09-17 12:02:00,34.7637,96.07,13.25 +2017-09-17 12:17:00,35.1475,96.055,13.21 +2017-09-17 12:32:00,34.3737,96.115,13.19 +2017-09-17 12:47:00,33.5013,96.2025,13.27 +2017-09-17 13:02:00,35.55,96.3175,13.37 +2017-09-17 13:17:00,34.4762,96.405,13.41 +2017-09-17 13:32:00,36.5675,96.495,13.42 +2017-09-17 13:47:00,35.1512,96.585,13.39 +2017-09-17 14:02:00,36.2363,96.625,13.37 +2017-09-17 14:17:00,34.8087,96.61,13.34 +2017-09-17 14:32:00,36.6175,96.565,13.31 +2017-09-17 14:47:00,35.645,96.475,13.25 +2017-09-17 15:02:00,35.69,96.3975,13.21 +2017-09-17 15:17:00,35.595,96.3525,13.19 +2017-09-17 15:32:00,34.57,96.3425,13.19 +2017-09-17 15:47:00,36.1825,96.3775,13.2 +2017-09-17 16:02:00,35.045,96.42,13.2 +2017-09-17 16:17:00,35.0013,96.4575,13.2 +2017-09-17 16:32:00,35.5462,96.51,13.23 +2017-09-17 16:47:00,33.0625,96.5425,13.23 +2017-09-17 17:02:00,34.6162,96.6025,13.22 +2017-09-17 17:17:00,35.3512,96.7125,13.21 +2017-09-17 17:32:00,34.38,96.7725,13.22 +2017-09-17 17:47:00,34.2275,96.785,13.24 +2017-09-17 18:02:00,35.2475,96.76,13.25 +2017-09-17 18:17:00,34.3275,96.69,13.26 +2017-09-17 18:32:00,35.5912,96.6025,13.26 +2017-09-17 18:47:00,35.7387,96.53,13.27 +2017-09-17 19:02:00,33.8937,96.4925,13.28 +2017-09-17 19:17:00,33.2113,96.4675,13.28 +2017-09-17 19:32:00,36.915,96.4525,13.29 +2017-09-17 19:47:00,34.7675,96.4925,13.31 +2017-09-17 20:02:00,33.1162,96.53,13.32 +2017-09-17 20:17:00,35.7862,96.5425,13.33 +2017-09-17 20:32:00,35.2462,96.58,13.34 +2017-09-17 20:47:00,34.2775,96.6025,13.32 +2017-09-17 21:02:00,35.6888,96.6175,13.33 +2017-09-17 21:17:00,35.59,96.62,13.32 +2017-09-17 21:32:00,34.3787,96.5875,13.31 +2017-09-17 21:47:00,35.8862,96.5125,13.31 +2017-09-17 22:02:00,35.2475,96.4125,13.28 +2017-09-17 22:17:00,35.5488,96.335,13.28 +2017-09-17 22:32:00,34.325,96.2575,13.27 +2017-09-17 22:47:00,34.28,96.2075,13.24 +2017-09-17 23:02:00,36.6663,96.195,13.22 +2017-09-17 23:17:00,34.18,96.205,13.21 +2017-09-17 23:32:00,34.6188,96.235,13.17 +2017-09-17 23:47:00,34.7175,96.26,13.15 +2017-09-18 00:02:00,36.965,96.2825,13.13 +2017-09-18 00:17:00,35.0013,96.32,13.09 +2017-09-18 00:32:00,36.6175,96.3325,13.05 +2017-09-18 00:47:00,35.5475,96.36,13.0 +2017-09-18 01:02:00,35.5013,96.39,12.95 +2017-09-18 01:17:00,37.1162,96.355,12.92 +2017-09-18 01:32:00,34.67,96.305,12.87 +2017-09-18 01:47:00,36.1813,96.19,12.84 +2017-09-18 02:02:00,35.495,96.0925,12.79 +2017-09-18 02:17:00,37.0112,96.035,12.75 +2017-09-18 02:32:00,35.4487,95.985,12.71 +2017-09-18 02:47:00,34.6675,95.95,12.67 +2017-09-18 03:02:00,35.7387,95.9275,12.65 +2017-09-18 03:17:00,37.2537,95.9375,12.61 +2017-09-18 03:32:00,35.2988,95.9575,12.57 +2017-09-18 03:47:00,36.2325,95.985,12.53 +2017-09-18 04:02:00,35.8875,95.9975,12.49 +2017-09-18 04:17:00,35.3962,96.035,12.46 +2017-09-18 04:32:00,36.0887,96.055,12.43 +2017-09-18 04:47:00,35.5938,96.08,12.41 +2017-09-18 05:02:00,35.4475,96.065,12.38 +2017-09-18 05:17:00,34.6225,96.0225,12.36 +2017-09-18 05:32:00,37.45,95.9525,12.36 +2017-09-18 05:47:00,35.795,95.8825,12.36 +2017-09-18 06:02:00,34.5713,95.8375,12.35 +2017-09-18 06:17:00,36.0387,95.8,12.36 +2017-09-18 06:32:00,36.4713,95.79,12.37 +2017-09-18 06:47:00,35.2525,95.82,12.38 +2017-09-18 07:02:00,35.2487,95.8675,12.39 +2017-09-18 07:17:00,35.35,95.8975,12.41 +2017-09-18 07:32:00,36.0375,95.8875,12.44 +2017-09-18 07:47:00,34.23,95.875,12.5 +2017-09-18 08:02:00,35.6413,95.9025,12.55 +2017-09-18 08:17:00,35.45,95.9325,12.6 +2017-09-18 08:32:00,36.0863,96.0125,12.71 +2017-09-18 08:47:00,34.0812,96.13,12.83 +2017-09-18 09:02:00,35.495,96.2475,12.92 +2017-09-18 09:17:00,36.47,96.3725,12.99 +2017-09-18 09:32:00,34.4725,96.515,13.03 +2017-09-18 09:47:00,35.7887,96.645,13.06 +2017-09-18 10:02:00,34.325,96.7975,13.09 +2017-09-18 10:17:00,34.6675,96.9075,13.13 +2017-09-18 10:32:00,35.9362,97.01,13.18 +2017-09-18 10:47:00,35.395,97.1275,13.17 +2017-09-18 11:02:00,35.9875,97.24,13.08 +2017-09-18 11:17:00,36.2812,97.39,12.99 +2017-09-18 11:32:00,36.3288,97.5425,12.89 +2017-09-18 11:47:00,34.8075,97.7275,12.77 +2017-09-18 12:02:00,34.0375,97.9325,12.69 +2017-09-18 12:17:00,34.2262,98.165,12.64 +2017-09-18 12:32:00,35.5425,98.475,12.65 +2017-09-18 12:47:00,37.3037,98.8275,12.69 +2017-09-18 13:02:00,34.085,99.19,12.75 +2017-09-18 13:17:00,35.5912,99.5625,12.78 +2017-09-18 13:32:00,35.2012,99.925,12.77 +2017-09-18 13:47:00,34.1338,100.275,12.77 +2017-09-18 14:02:00,35.2988,100.622,12.75 +2017-09-18 14:17:00,36.9625,100.97,12.71 +2017-09-18 14:32:00,33.65,101.295,12.69 +2017-09-18 14:47:00,35.6413,101.587,12.7 +2017-09-18 15:02:00,34.6712,101.837,12.73 +2017-09-18 15:17:00,36.2337,102.033,12.72 +2017-09-18 15:32:00,35.1,102.173,12.72 +2017-09-18 15:47:00,34.9025,102.283,12.69 +2017-09-18 16:02:00,35.0963,102.337,12.66 +2017-09-18 16:17:00,34.7612,102.337,12.65 +2017-09-18 16:32:00,34.5713,102.35,12.65 +2017-09-18 16:47:00,34.2262,102.35,12.65 +2017-09-18 17:02:00,35.5925,102.327,12.66 +2017-09-18 17:17:00,34.2312,102.307,12.67 +2017-09-18 17:32:00,34.9037,102.302,12.69 +2017-09-18 17:47:00,34.4225,102.28,12.71 +2017-09-18 18:02:00,35.2475,102.247,12.75 +2017-09-18 18:17:00,36.0338,102.205,12.79 +2017-09-18 18:32:00,35.4412,102.152,12.83 +2017-09-18 18:47:00,36.5163,102.097,12.85 +2017-09-18 19:02:00,36.2825,101.98,12.87 +2017-09-18 19:17:00,34.1825,101.807,12.87 +2017-09-18 19:32:00,36.77,101.645,12.88 +2017-09-18 19:47:00,35.2,101.482,12.88 +2017-09-18 20:02:00,35.2475,101.342,12.86 +2017-09-18 20:17:00,36.52,101.25,12.84 +2017-09-18 20:32:00,35.2475,101.165,12.82 +2017-09-18 20:47:00,34.0375,101.152,12.81 +2017-09-18 21:02:00,35.2487,101.143,12.8 +2017-09-18 21:17:00,35.4987,101.135,12.8 +2017-09-18 21:32:00,35.0987,101.13,12.78 +2017-09-18 21:47:00,35.35,101.145,12.77 +2017-09-18 22:02:00,35.2038,101.147,12.76 +2017-09-18 22:17:00,35.7425,101.137,12.77 +2017-09-18 22:32:00,33.845,101.08,12.77 +2017-09-18 22:47:00,35.5488,101.005,12.76 +2017-09-18 23:02:00,35.1488,100.88,12.75 +2017-09-18 23:17:00,35.5512,100.738,12.76 +2017-09-18 23:32:00,36.6663,100.587,12.77 +2017-09-18 23:47:00,33.7962,100.45,12.79 +2017-09-19 00:02:00,34.18,100.363,12.77 +2017-09-19 00:17:00,36.4238,100.302,12.75 +2017-09-19 00:32:00,35.1987,100.26,12.72 +2017-09-19 00:47:00,35.2475,100.21,12.69 +2017-09-19 01:02:00,34.2775,100.16,12.64 +2017-09-19 01:17:00,34.9962,100.107,12.6 +2017-09-19 01:32:00,35.3988,100.062,12.55 +2017-09-19 01:47:00,36.565,100.018,12.5 +2017-09-19 02:02:00,36.9125,99.9625,12.47 +2017-09-19 02:17:00,37.1537,99.875,12.45 +2017-09-19 02:32:00,34.67,99.73,12.42 +2017-09-19 02:47:00,35.095,99.5675,12.41 +2017-09-19 03:02:00,35.5938,99.4,12.38 +2017-09-19 03:17:00,33.99,99.2725,12.35 +2017-09-19 03:32:00,35.3962,99.17,12.33 +2017-09-19 03:47:00,35.1488,99.1025,12.3 +2017-09-19 04:02:00,35.4487,99.0475,12.27 +2017-09-19 04:17:00,34.0362,99.0025,12.26 +2017-09-19 04:32:00,35.1975,99.005,12.23 +2017-09-19 04:47:00,35.2988,98.9825,12.21 +2017-09-19 05:02:00,34.5212,98.9725,12.2 +2017-09-19 05:17:00,34.57,98.96,12.18 +2017-09-19 05:32:00,35.1488,98.9525,12.18 +2017-09-19 05:47:00,35.2,98.9,12.17 +2017-09-19 06:02:00,34.3763,98.835,12.16 +2017-09-19 06:17:00,36.2825,98.7325,12.17 +2017-09-19 06:32:00,36.1325,98.625,12.2 +2017-09-19 06:47:00,36.9125,98.5025,12.25 +2017-09-19 07:02:00,34.9487,98.395,12.31 +2017-09-19 07:17:00,35.2962,98.28,12.37 +2017-09-19 07:32:00,35.2475,98.2225,12.38 +2017-09-19 07:47:00,36.3288,98.2325,12.41 +2017-09-19 08:02:00,34.6663,98.25,12.47 +2017-09-19 08:17:00,35.6362,98.285,12.52 +2017-09-19 08:32:00,35.7363,98.325,12.6 +2017-09-19 08:47:00,35.6387,98.39,12.63 +2017-09-19 09:02:00,35.095,98.4275,12.66 +2017-09-19 09:17:00,35.8363,98.4725,12.66 +2017-09-19 09:32:00,36.1312,98.515,12.69 +2017-09-19 09:47:00,36.8637,98.5575,12.7 +2017-09-19 10:02:00,35.495,98.585,12.71 +2017-09-19 10:17:00,35.0925,98.615,12.69 +2017-09-19 10:32:00,35.15,98.59,12.67 +2017-09-19 10:47:00,34.8087,98.5075,12.63 +2017-09-19 11:02:00,36.6663,98.415,12.59 +2017-09-19 11:17:00,34.0325,98.325,12.57 +2017-09-19 11:32:00,36.5713,98.24,12.6 +2017-09-19 11:47:00,34.325,98.205,12.6 +2017-09-19 12:02:00,32.965,98.2,12.57 +2017-09-19 12:17:00,35.1987,98.18,12.56 +2017-09-19 12:32:00,35.3962,98.2025,12.59 +2017-09-19 12:47:00,35.0963,98.2075,12.65 +2017-09-19 13:02:00,34.6687,98.2475,12.64 +2017-09-19 13:17:00,35.8387,98.2625,12.69 +2017-09-19 13:32:00,36.2787,98.275,12.65 +2017-09-19 13:47:00,35.7387,98.2625,12.6 +2017-09-19 14:02:00,36.3712,98.2075,12.56 +2017-09-19 14:17:00,36.035,98.1425,12.54 +2017-09-19 14:32:00,34.7175,98.0775,12.53 +2017-09-19 14:47:00,34.9,98.01,12.53 +2017-09-19 15:02:00,34.2738,97.9975,12.56 +2017-09-19 15:17:00,36.0375,98.0025,12.58 +2017-09-19 15:32:00,34.0837,98.025,12.59 +2017-09-19 15:47:00,35.2975,98.04,12.6 +2017-09-19 16:02:00,35.9875,98.0925,12.62 +2017-09-19 16:17:00,34.6687,98.1475,12.62 +2017-09-19 16:32:00,35.0963,98.205,12.61 +2017-09-19 16:47:00,35.0,98.24,12.61 +2017-09-19 17:02:00,34.52,98.28,12.63 +2017-09-19 17:17:00,33.0137,98.3175,12.64 +2017-09-19 17:32:00,35.7363,98.3275,12.65 +2017-09-19 17:47:00,34.4762,98.2875,12.66 +2017-09-19 18:02:00,35.2012,98.2175,12.67 +2017-09-19 18:17:00,34.615,98.135,12.7 +2017-09-19 18:32:00,35.295,98.0525,12.72 +2017-09-19 18:47:00,35.3012,97.9875,12.75 +2017-09-19 19:02:00,34.5225,97.9725,12.78 +2017-09-19 19:17:00,33.895,97.9725,12.8 +2017-09-19 19:32:00,34.9025,97.985,12.82 +2017-09-19 19:47:00,34.7637,97.9975,12.85 +2017-09-19 20:02:00,34.81,98.0475,12.86 +2017-09-19 20:17:00,34.3763,98.0775,12.86 +2017-09-19 20:32:00,35.0013,98.11,12.85 +2017-09-19 20:47:00,35.0,98.145,12.84 +2017-09-19 21:02:00,35.0963,98.18,12.83 +2017-09-19 21:17:00,34.5225,98.185,12.81 +2017-09-19 21:32:00,34.57,98.1325,12.8 +2017-09-19 21:47:00,34.475,98.0475,12.77 +2017-09-19 22:02:00,35.2475,97.945,12.75 +2017-09-19 22:17:00,35.7887,97.8775,12.73 +2017-09-19 22:32:00,34.8112,97.81,12.69 +2017-09-19 22:47:00,35.6912,97.7875,12.67 +2017-09-19 23:02:00,34.9987,97.7725,12.65 +2017-09-19 23:17:00,34.62,97.76,12.62 +2017-09-19 23:32:00,35.1475,97.775,12.59 +2017-09-19 23:47:00,35.295,97.79,12.57 +2017-09-20 00:02:00,34.7625,97.79,12.54 +2017-09-20 00:17:00,35.3487,97.785,12.53 +2017-09-20 00:32:00,34.4275,97.7925,12.51 +2017-09-20 00:47:00,35.0912,97.81,12.48 +2017-09-20 01:02:00,34.9512,97.7675,12.47 +2017-09-20 01:17:00,36.135,97.685,12.45 +2017-09-20 01:32:00,34.38,97.585,12.43 +2017-09-20 01:47:00,35.1975,97.465,12.42 +2017-09-20 02:02:00,36.235,97.3425,12.41 +2017-09-20 02:17:00,35.7363,97.2625,12.39 +2017-09-20 02:32:00,35.5925,97.1875,12.37 +2017-09-20 02:47:00,36.4688,97.16,12.36 +2017-09-20 03:02:00,34.2288,97.11,12.35 +2017-09-20 03:17:00,34.325,97.07,12.34 +2017-09-20 03:32:00,34.8562,97.0625,12.32 +2017-09-20 03:47:00,34.525,97.0375,12.31 +2017-09-20 04:02:00,35.64,97.0125,12.3 +2017-09-20 04:17:00,34.2762,96.99,12.3 +2017-09-20 04:32:00,35.69,96.9625,12.29 +2017-09-20 04:47:00,35.8375,96.905,12.29 +2017-09-20 05:02:00,35.0963,96.7875,12.29 +2017-09-20 05:17:00,35.5437,96.67,12.29 +2017-09-20 05:32:00,34.5687,96.515,12.29 +2017-09-20 05:47:00,35.6875,96.4075,12.29 +2017-09-20 06:02:00,34.6687,96.33,12.3 +2017-09-20 06:17:00,35.345,96.295,12.31 +2017-09-20 06:32:00,34.325,96.265,12.33 +2017-09-20 06:47:00,34.7175,96.2425,12.35 +2017-09-20 07:02:00,34.4762,96.1775,12.34 +2017-09-20 07:17:00,36.0825,96.085,12.36 +2017-09-20 07:32:00,34.95,96.015,12.39 +2017-09-20 07:47:00,35.5912,95.985,12.45 +2017-09-20 08:02:00,34.7612,95.97,12.5 +2017-09-20 08:17:00,34.3763,95.9675,12.54 +2017-09-20 08:32:00,35.0475,95.9675,12.57 +2017-09-20 08:47:00,35.2475,95.975,12.58 +2017-09-20 09:02:00,34.52,95.9725,12.6 +2017-09-20 09:17:00,35.2462,95.98,12.63 +2017-09-20 09:32:00,36.4662,96.02,12.66 +2017-09-20 09:47:00,35.4512,96.0475,12.67 +2017-09-20 10:02:00,33.9425,96.0725,12.67 +2017-09-20 10:17:00,34.6675,96.095,12.73 +2017-09-20 10:32:00,34.62,96.1075,12.74 +2017-09-20 10:47:00,36.3737,96.05,12.72 +2017-09-20 11:02:00,36.18,95.9725,12.72 +2017-09-20 11:17:00,35.25,95.8675,12.73 +2017-09-20 11:32:00,35.6888,95.76,12.71 +2017-09-20 11:47:00,34.375,95.6925,12.67 +2017-09-20 12:02:00,34.76,95.615,12.7 +2017-09-20 12:17:00,34.9975,95.5975,12.76 +2017-09-20 12:32:00,36.9112,95.5925,12.76 +2017-09-20 12:47:00,36.2337,95.5725,12.73 +2017-09-20 13:02:00,34.5675,95.57,12.72 +2017-09-20 13:17:00,34.3237,95.56,12.71 +2017-09-20 13:32:00,35.9863,95.5475,12.72 +2017-09-20 13:47:00,34.6663,95.545,12.71 +2017-09-20 14:02:00,30.6975,95.5525,12.01 +2017-09-20 14:17:00,34.0325,95.5525,12.64 +2017-09-20 14:24:59,34.0387,95.525,12.64 +2017-09-20 14:32:00,33.0625,95.4725,12.63 +2017-09-20 14:47:00,34.6175,95.375,12.65 +2017-09-20 15:02:00,33.7475,95.2425,12.66 +2017-09-20 15:17:00,33.9412,95.105,12.67 +2017-09-20 15:32:00,34.0837,94.9825,12.65 +2017-09-20 15:47:00,33.845,94.8775,12.64 +2017-09-20 16:02:00,33.1625,94.8,12.62 +2017-09-20 16:17:00,32.5238,94.7475,12.61 +2017-09-20 16:32:00,33.8438,94.715,12.6 +2017-09-20 16:47:00,32.8688,94.6975,12.59 +2017-09-20 17:02:00,34.2775,94.6925,12.6 +2017-09-20 17:17:00,33.0125,94.6775,12.61 +2017-09-20 17:32:00,33.5,94.685,12.62 +2017-09-20 17:47:00,34.0338,94.69,12.63 +2017-09-20 18:02:00,33.5,94.6725,12.66 +2017-09-20 18:17:00,33.0625,94.6025,12.69 +2017-09-20 18:32:00,34.5225,94.5125,12.71 +2017-09-20 18:47:00,32.2812,94.39,12.73 +2017-09-20 19:02:00,33.8463,94.29,12.75 +2017-09-20 19:17:00,34.0338,94.205,12.77 +2017-09-20 19:32:00,34.325,94.1625,12.78 +2017-09-20 19:47:00,33.8012,94.1325,12.79 +2017-09-20 20:02:00,32.9175,94.1475,12.79 +2017-09-20 20:17:00,33.845,94.165,12.8 +2017-09-20 20:32:00,32.9662,94.1725,12.8 +2017-09-20 20:47:00,34.47,94.21,12.83 +2017-09-20 21:02:00,34.8138,94.2475,12.84 +2017-09-20 21:17:00,33.5512,94.2575,12.85 +2017-09-20 21:32:00,35.0963,94.2875,12.87 +2017-09-20 21:47:00,34.67,94.295,12.88 +2017-09-20 22:02:00,34.5713,94.2975,12.89 +2017-09-20 22:17:00,34.7188,94.2325,12.91 +2017-09-20 22:32:00,35.25,94.1125,12.93 +2017-09-20 22:47:00,34.5687,94.0275,12.95 +2017-09-20 23:02:00,32.9212,93.955,12.97 +2017-09-20 23:17:00,32.665,93.92,12.96 +2017-09-20 23:32:00,35.1488,93.905,12.97 +2017-09-20 23:47:00,34.67,93.93,12.98 +2017-09-21 00:02:00,33.305,93.93,13.0 +2017-09-21 00:17:00,34.0375,93.9625,13.0 +2017-09-21 00:32:00,32.87,93.9875,12.98 +2017-09-21 00:47:00,33.5013,94.01,12.95 +2017-09-21 01:02:00,33.1663,94.035,12.93 +2017-09-21 01:17:00,33.8988,94.0675,12.9 +2017-09-21 01:32:00,33.1162,94.065,12.88 +2017-09-21 01:47:00,34.67,94.01,12.86 +2017-09-21 02:02:00,34.6712,93.9225,12.83 +2017-09-21 02:17:00,33.5525,93.81,12.81 +2017-09-21 02:32:00,33.945,93.7,12.79 +2017-09-21 02:47:00,33.6987,93.6475,12.79 +2017-09-21 03:02:00,34.275,93.6175,12.77 +2017-09-21 03:17:00,34.9025,93.595,12.77 +2017-09-21 03:32:00,34.765,93.63,12.76 +2017-09-21 03:47:00,33.6512,93.655,12.76 +2017-09-21 04:02:00,33.9437,93.675,12.74 +2017-09-21 04:17:00,34.0825,93.705,12.73 +2017-09-21 04:32:00,33.355,93.745,12.73 +2017-09-21 04:47:00,34.6212,93.765,12.73 +2017-09-21 05:02:00,33.3512,93.7625,12.74 +2017-09-21 05:17:00,33.6038,93.74,12.74 +2017-09-21 05:32:00,33.75,93.66,12.74 +2017-09-21 05:47:00,35.0475,93.5675,12.75 +2017-09-21 06:02:00,34.8562,93.47,12.75 +2017-09-21 06:17:00,33.4,93.39,12.76 +2017-09-21 06:32:00,33.7462,93.2775,12.76 +2017-09-21 06:47:00,34.0825,93.1825,12.77 +2017-09-21 07:02:00,33.7975,93.085,12.8 +2017-09-21 07:17:00,35.84,93.0025,12.8 +2017-09-21 07:32:00,33.5525,92.9775,12.79 +2017-09-21 07:47:00,34.8587,92.9575,12.85 +2017-09-21 08:02:00,34.23,92.99,12.9 +2017-09-21 08:17:00,33.2113,93.0225,12.95 +2017-09-21 08:32:00,34.6212,93.055,13.0 +2017-09-21 08:47:00,33.845,93.085,13.05 +2017-09-21 09:02:00,32.9662,93.105,13.11 +2017-09-21 09:17:00,33.4512,93.135,13.15 +2017-09-21 09:32:00,34.4238,93.1575,13.2 +2017-09-21 09:47:00,34.2762,93.1775,13.24 +2017-09-21 10:02:00,34.135,93.19,13.27 +2017-09-21 10:17:00,34.18,93.1375,13.28 +2017-09-21 10:32:00,34.4737,93.0625,13.28 +2017-09-21 10:47:00,33.2137,92.99,13.28 +2017-09-21 11:02:00,34.8063,92.9025,13.28 +2017-09-21 11:17:00,33.7487,92.8675,13.31 +2017-09-21 11:32:00,33.6025,92.8475,13.36 +2017-09-21 11:47:00,33.6987,92.8575,13.36 +2017-09-21 12:02:00,33.0163,92.8925,13.37 +2017-09-21 12:17:00,33.8438,92.9075,13.36 +2017-09-21 12:32:00,34.4238,92.95,13.38 +2017-09-21 12:47:00,35.1963,92.9875,13.39 +2017-09-21 13:02:00,33.7487,93.0375,13.39 +2017-09-21 13:17:00,34.6162,93.0525,13.42 +2017-09-21 13:32:00,33.4037,93.0825,13.45 +2017-09-21 13:47:00,33.6025,93.0725,13.45 +2017-09-21 14:02:00,33.7962,92.9825,13.4 +2017-09-21 14:17:00,33.845,92.8825,13.34 +2017-09-21 14:32:00,33.7,92.815,13.3 +2017-09-21 14:47:00,33.3037,92.7775,13.29 +2017-09-21 15:02:00,34.3737,92.77,13.29 +2017-09-21 15:17:00,34.2812,92.75,13.32 +2017-09-21 15:32:00,33.7012,92.77,13.31 +2017-09-21 15:47:00,32.8675,92.8025,13.31 +2017-09-21 16:02:00,32.9187,92.8125,13.32 +2017-09-21 16:17:00,34.95,92.8675,13.33 +2017-09-21 16:32:00,34.3262,92.8925,13.32 +2017-09-21 16:47:00,33.8937,92.9375,13.32 +2017-09-21 17:02:00,35.2525,92.9725,13.33 +2017-09-21 17:17:00,35.3487,92.9975,13.32 +2017-09-21 17:32:00,33.0163,93.0375,13.32 +2017-09-21 17:47:00,32.765,93.04,13.34 +2017-09-21 18:02:00,32.9637,92.96,13.36 +2017-09-21 18:17:00,34.2288,92.8525,13.37 +2017-09-21 18:32:00,34.18,92.76,13.39 +2017-09-21 18:47:00,35.0963,92.7025,13.41 +2017-09-21 19:02:00,33.4525,92.6775,13.45 +2017-09-21 19:17:00,32.9662,92.6675,13.48 +2017-09-21 19:32:00,33.895,92.68,13.51 +2017-09-21 19:47:00,34.0875,92.685,13.56 +2017-09-21 20:02:00,34.8575,92.7125,13.59 +2017-09-21 20:17:00,34.2288,92.7475,13.62 +2017-09-21 20:32:00,33.1625,92.765,13.65 +2017-09-21 20:47:00,33.65,92.7975,13.69 +2017-09-21 21:02:00,35.4463,92.84,13.72 +2017-09-21 21:17:00,34.8575,92.8325,13.76 +2017-09-21 21:32:00,35.0,92.7975,13.8 +2017-09-21 21:47:00,34.4737,92.7175,13.84 +2017-09-21 22:02:00,34.2775,92.6325,13.86 +2017-09-21 22:17:00,33.8988,92.5675,13.88 +2017-09-21 22:32:00,32.97,92.5125,13.91 +2017-09-21 22:47:00,33.5,92.4875,13.93 +2017-09-21 23:02:00,34.5238,92.505,13.92 +2017-09-21 23:17:00,33.5037,92.525,13.91 +2017-09-21 23:32:00,35.4487,92.5575,13.91 +2017-09-21 23:47:00,34.1813,92.5975,13.89 +2017-09-22 00:02:00,33.1137,92.6275,13.87 +2017-09-22 00:17:00,32.7663,92.6625,13.85 +2017-09-22 00:32:00,34.4275,92.715,13.82 +2017-09-22 00:47:00,34.0863,92.745,13.78 +2017-09-22 01:02:00,34.0825,92.79,13.75 +2017-09-22 01:17:00,33.6025,92.8075,13.72 +2017-09-22 01:32:00,34.325,92.7875,13.68 +2017-09-22 01:47:00,33.1137,92.7625,13.65 +2017-09-22 02:02:00,35.45,92.7325,13.63 +2017-09-22 02:17:00,34.4762,92.7025,13.6 +2017-09-22 02:32:00,34.76,92.6925,13.57 +2017-09-22 02:47:00,35.74,92.7125,13.55 +2017-09-22 03:02:00,34.23,92.7225,13.52 +2017-09-22 03:17:00,34.1287,92.77,13.5 +2017-09-22 03:32:00,35.89,92.81,13.49 +2017-09-22 03:47:00,34.6687,92.8725,13.48 +2017-09-22 04:02:00,34.7188,92.9325,13.46 +2017-09-22 04:17:00,34.525,92.995,13.45 +2017-09-22 04:32:00,35.0462,93.055,13.45 +2017-09-22 04:47:00,33.6038,93.095,13.45 +2017-09-22 05:02:00,34.6687,93.1,13.45 +2017-09-22 05:17:00,35.7375,93.1125,13.46 +2017-09-22 05:32:00,35.3988,93.12,13.47 +2017-09-22 05:47:00,33.4012,93.1425,13.46 +2017-09-22 06:02:00,35.0963,93.165,13.46 +2017-09-22 06:17:00,33.995,93.22,13.48 +2017-09-22 06:32:00,34.8575,93.2725,13.49 +2017-09-22 06:47:00,34.1263,93.345,13.5 +2017-09-22 07:02:00,35.6387,93.4125,13.52 +2017-09-22 07:17:00,35.1987,93.4775,13.57 +2017-09-22 07:32:00,34.5225,93.5375,13.62 +2017-09-22 07:47:00,34.2337,93.595,13.69 +2017-09-22 08:02:00,35.5912,93.6575,13.75 +2017-09-22 08:17:00,35.8875,93.7425,13.8 +2017-09-22 08:32:00,35.45,93.8175,13.87 +2017-09-22 08:47:00,34.4725,93.8925,13.92 +2017-09-22 09:02:00,35.3988,94.005,13.96 +2017-09-22 09:17:00,34.3275,94.1225,14.0 +2017-09-22 09:32:00,35.4487,94.2275,14.08 +2017-09-22 09:47:00,34.8087,94.3525,14.14 +2017-09-22 10:02:00,35.1475,94.49,14.17 +2017-09-22 10:17:00,35.1975,94.63,14.11 +2017-09-22 10:32:00,35.3475,94.7525,14.06 +2017-09-22 10:47:00,35.4962,94.865,14.0 +2017-09-22 11:02:00,36.235,95.025,13.95 +2017-09-22 11:17:00,34.6687,95.1825,13.99 +2017-09-22 11:32:00,34.18,95.3325,14.08 +2017-09-22 11:47:00,35.9875,95.5875,14.13 +2017-09-22 12:02:00,35.5,95.9075,14.11 +2017-09-22 12:17:00,35.4475,96.1825,14.11 +2017-09-22 12:32:00,36.0887,96.4875,14.15 +2017-09-22 12:47:00,35.2962,96.8225,14.19 +2017-09-22 13:02:00,37.3012,97.1325,14.2 +2017-09-22 13:17:00,33.065,97.3725,14.2 +2017-09-22 13:32:00,36.475,97.6325,14.16 +2017-09-22 13:47:00,34.9037,97.875,14.14 +2017-09-22 14:02:00,35.0037,98.1,14.06 +2017-09-22 14:17:00,34.8112,98.3025,14.05 +2017-09-22 14:32:00,33.945,98.4625,14.05 +2017-09-22 14:47:00,35.4975,98.6175,14.02 +2017-09-22 15:02:00,35.5938,98.7325,14.0 +2017-09-22 15:17:00,36.0812,98.835,13.98 +2017-09-22 15:32:00,35.7387,98.9175,13.97 +2017-09-22 15:47:00,34.3763,98.9825,13.94 +2017-09-22 16:02:00,34.8538,99.01,13.91 +2017-09-22 16:17:00,35.0462,99.0475,13.9 +2017-09-22 16:32:00,35.3463,99.0725,13.9 +2017-09-22 16:47:00,34.5238,99.1025,13.9 +2017-09-22 17:02:00,35.0975,99.1125,13.92 +2017-09-22 17:17:00,36.62,99.09,13.92 +2017-09-22 17:32:00,34.4262,98.9975,13.92 +2017-09-22 17:47:00,34.5238,98.845,13.94 +2017-09-22 18:02:00,35.89,98.6225,13.95 +2017-09-22 18:17:00,34.3775,98.42,13.96 +2017-09-22 18:32:00,34.9525,98.2775,13.97 +2017-09-22 18:47:00,36.3763,98.145,13.98 +2017-09-22 19:02:00,35.0488,98.0625,13.99 +2017-09-22 19:17:00,35.6387,97.975,14.02 +2017-09-22 19:32:00,35.2,97.9375,14.04 +2017-09-22 19:47:00,34.67,97.925,14.05 +2017-09-22 20:02:00,34.7637,97.93,14.05 +2017-09-22 20:17:00,35.2,97.9,14.06 +2017-09-22 20:32:00,34.0825,97.9075,14.07 +2017-09-22 20:47:00,35.1488,97.905,14.08 +2017-09-22 21:02:00,35.5925,97.9,14.09 +2017-09-22 21:17:00,35.0,97.8675,14.14 +2017-09-22 21:32:00,34.8112,97.81,14.18 +2017-09-22 21:47:00,36.2838,97.7125,14.21 +2017-09-22 22:02:00,34.58,97.62,14.24 +2017-09-22 22:17:00,34.67,97.55,14.26 +2017-09-22 22:32:00,33.945,97.5175,14.27 +2017-09-22 22:47:00,35.6425,97.49,14.28 +2017-09-22 23:02:00,35.9412,97.495,14.29 +2017-09-22 23:17:00,34.8112,97.4975,14.29 +2017-09-22 23:32:00,36.57,97.5375,14.27 +2017-09-22 23:47:00,36.3325,97.56,14.26 +2017-09-23 00:02:00,35.7913,97.5825,14.25 +2017-09-23 00:17:00,35.8387,97.615,14.24 +2017-09-23 00:32:00,35.7937,97.635,14.2 +2017-09-23 00:47:00,36.2812,97.64,14.17 +2017-09-23 01:02:00,35.64,97.6125,14.13 +2017-09-23 01:17:00,36.565,97.5425,14.09 +2017-09-23 01:32:00,35.6912,97.465,14.05 +2017-09-23 01:47:00,35.74,97.3725,14.02 +2017-09-23 02:02:00,35.5025,97.35,13.97 +2017-09-23 02:17:00,34.4725,97.325,13.92 +2017-09-23 02:32:00,34.8087,97.325,13.89 +2017-09-23 02:47:00,35.3975,97.3425,13.86 +2017-09-23 03:02:00,35.9388,97.3725,13.83 +2017-09-23 03:17:00,35.3975,97.385,13.79 +2017-09-23 03:32:00,36.085,97.415,13.77 +2017-09-23 03:47:00,34.38,97.4625,13.74 +2017-09-23 04:02:00,35.5963,97.4725,13.72 +2017-09-23 04:17:00,36.1375,97.505,13.7 +2017-09-23 04:32:00,35.1525,97.4825,13.71 +2017-09-23 04:47:00,35.6912,97.43,13.7 +2017-09-23 05:02:00,36.5175,97.3625,13.7 +2017-09-23 05:17:00,36.0837,97.275,13.69 +2017-09-23 05:32:00,35.7887,97.2025,13.72 +2017-09-23 05:47:00,35.1488,97.1775,13.74 +2017-09-23 06:02:00,34.085,97.1825,13.77 +2017-09-23 06:17:00,35.35,97.215,13.79 +2017-09-23 06:32:00,34.6225,97.2225,13.81 +2017-09-23 06:47:00,34.7663,97.2175,13.83 +2017-09-23 07:02:00,33.9463,97.18,13.85 +2017-09-23 07:17:00,35.1537,97.1275,13.85 +2017-09-23 07:32:00,33.9912,97.0825,13.85 +2017-09-23 07:47:00,35.05,97.07,13.89 +2017-09-23 08:02:00,32.5737,97.0825,13.93 +2017-09-23 08:17:00,35.0025,97.105,13.95 +2017-09-23 08:32:00,35.3988,97.1575,13.94 +2017-09-23 08:47:00,33.6125,97.2525,13.94 +2017-09-23 09:02:00,34.3262,97.3075,13.98 +2017-09-23 09:17:00,32.7687,97.3575,14.06 +2017-09-23 09:32:00,35.3975,97.405,14.09 +2017-09-23 09:47:00,34.9538,97.455,14.12 +2017-09-23 10:02:00,34.1775,97.515,14.18 +2017-09-23 10:17:00,34.9025,97.575,14.25 +2017-09-23 10:32:00,36.5212,97.5825,14.27 +2017-09-23 10:47:00,33.9463,97.6125,14.23 +2017-09-23 11:02:00,34.5725,97.6025,14.25 +2017-09-23 11:17:00,34.9525,97.5875,14.28 +2017-09-23 11:32:00,33.4025,97.565,14.26 +2017-09-23 11:47:00,34.5275,97.54,14.25 +2017-09-23 12:02:00,34.9062,97.555,14.26 +2017-09-23 12:17:00,34.475,97.565,14.26 +2017-09-23 12:32:00,34.3775,97.6025,14.3 +2017-09-23 12:47:00,34.0375,97.63,14.31 +2017-09-23 13:02:00,34.475,97.66,14.26 +2017-09-23 13:17:00,33.2612,97.71,14.21 +2017-09-23 13:32:00,34.1338,97.755,14.15 +2017-09-23 13:47:00,34.815,97.7925,14.11 +2017-09-23 14:02:00,33.8962,97.82,14.09 +2017-09-23 14:17:00,34.765,97.845,14.08 +2017-09-23 14:32:00,33.4012,97.84,14.07 +2017-09-23 14:47:00,34.6212,97.795,14.07 +2017-09-23 15:02:00,33.7012,97.765,14.1 +2017-09-23 15:17:00,33.1188,97.73,14.13 +2017-09-23 15:32:00,34.525,97.7475,14.15 +2017-09-23 15:47:00,33.7975,97.77,14.18 +2017-09-23 16:02:00,33.065,97.815,14.19 +2017-09-23 16:17:00,35.0,97.8725,14.19 +2017-09-23 16:32:00,34.0863,97.9175,14.2 +2017-09-23 16:47:00,34.9525,97.9625,14.21 +2017-09-23 17:02:00,34.9562,98.0125,14.24 +2017-09-23 17:17:00,34.6725,98.0775,14.24 +2017-09-23 17:32:00,33.8487,98.1375,14.24 +2017-09-23 17:47:00,32.04,98.1875,14.27 +2017-09-23 18:02:00,33.455,98.225,14.31 +2017-09-23 18:17:00,35.005,98.275,14.33 +2017-09-23 18:32:00,33.3063,98.2925,14.37 +2017-09-23 18:47:00,35.0963,98.33,14.42 +2017-09-23 19:02:00,34.1312,98.355,14.44 +2017-09-23 19:17:00,33.3575,98.38,14.47 +2017-09-23 19:32:00,34.86,98.4175,14.52 +2017-09-23 19:47:00,33.8025,98.4475,14.53 +2017-09-23 20:02:00,34.8138,98.4875,14.54 +2017-09-23 20:17:00,35.2487,98.5075,14.55 +2017-09-23 20:32:00,33.9425,98.55,14.57 +2017-09-23 20:47:00,34.525,98.5875,14.59 +2017-09-23 21:02:00,34.525,98.6275,14.6 +2017-09-23 21:17:00,34.325,98.655,14.59 +2017-09-23 21:32:00,34.43,98.6775,14.59 +2017-09-23 21:47:00,34.135,98.7025,14.58 +2017-09-23 22:02:00,33.8962,98.7025,14.57 +2017-09-23 22:17:00,35.3037,98.6925,14.55 +2017-09-23 22:32:00,34.04,98.6425,14.52 +2017-09-23 22:47:00,34.135,98.6,14.5 +2017-09-23 23:02:00,35.2988,98.565,14.47 +2017-09-23 23:17:00,33.8962,98.555,14.44 +2017-09-23 23:32:00,35.0062,98.545,14.41 +2017-09-23 23:47:00,33.8,98.5625,14.4 +2017-09-24 00:02:00,33.7975,98.5725,14.36 +2017-09-24 00:17:00,33.4037,98.5975,14.33 +2017-09-24 00:32:00,34.955,98.6325,14.3 +2017-09-24 00:47:00,33.995,98.65,14.27 +2017-09-24 01:02:00,32.72,98.685,14.22 +2017-09-24 01:17:00,34.04,98.6825,14.18 +2017-09-24 01:32:00,34.4275,98.6925,14.14 +2017-09-24 01:47:00,33.7525,98.6725,14.11 +2017-09-24 02:02:00,34.33,98.6225,14.1 +2017-09-24 02:17:00,33.6025,98.56,14.08 +2017-09-24 02:32:00,34.3763,98.5375,14.07 +2017-09-24 02:47:00,35.0512,98.5125,14.06 +2017-09-24 03:02:00,34.67,98.5125,14.04 +2017-09-24 03:17:00,35.3012,98.5325,14.04 +2017-09-24 03:32:00,33.9912,98.5625,14.02 +2017-09-24 03:47:00,35.05,98.6,14.01 +2017-09-24 04:02:00,34.135,98.6375,14.01 +2017-09-24 04:17:00,33.8975,98.6725,14.0 +2017-09-24 04:32:00,33.4075,98.7225,13.98 +2017-09-24 04:47:00,35.69,98.765,13.97 +2017-09-24 05:02:00,35.0013,98.8275,13.98 +2017-09-24 05:17:00,34.3838,98.8575,13.99 +2017-09-24 05:32:00,33.3063,98.88,13.98 +2017-09-24 05:47:00,35.0987,98.895,13.98 +2017-09-24 06:02:00,34.3787,98.8825,13.99 +2017-09-24 06:17:00,34.325,98.9,14.0 +2017-09-24 06:32:00,34.86,98.8875,14.0 +2017-09-24 06:47:00,34.5737,98.8775,14.01 +2017-09-24 07:02:00,32.5262,98.875,14.01 +2017-09-24 07:17:00,36.2825,98.8975,14.02 +2017-09-24 07:32:00,34.7675,98.9375,14.02 +2017-09-24 07:47:00,34.955,98.9725,14.04 +2017-09-24 08:02:00,34.5275,99.035,14.06 +2017-09-24 08:17:00,34.2812,99.105,14.07 +2017-09-24 08:32:00,34.4262,99.15,14.07 +2017-09-24 08:47:00,33.9463,99.2075,14.07 +2017-09-24 09:02:00,34.4325,99.275,14.08 +2017-09-24 09:17:00,35.05,99.295,14.09 +2017-09-24 09:32:00,34.855,99.3275,14.07 +2017-09-24 09:47:00,34.28,99.3475,14.06 +2017-09-24 10:02:00,34.525,99.365,14.06 +2017-09-24 10:17:00,34.8562,99.3775,14.06 +2017-09-24 10:32:00,34.9538,99.41,14.06 +2017-09-24 10:47:00,34.7175,99.46,14.04 +2017-09-24 11:02:00,35.3975,99.5025,14.04 +2017-09-24 11:17:00,35.2475,99.535,14.03 +2017-09-24 11:32:00,33.7988,99.5775,14.02 +2017-09-24 11:47:00,36.0413,99.6175,14.0 +2017-09-24 12:02:00,34.9525,99.6525,13.97 +2017-09-24 12:17:00,35.5488,99.69,13.96 +2017-09-24 12:32:00,34.625,99.755,13.94 +2017-09-24 12:47:00,36.2363,99.7975,13.94 +2017-09-24 13:02:00,35.3037,99.8325,13.94 +2017-09-24 13:17:00,34.9088,99.865,13.92 +2017-09-24 13:32:00,34.9075,99.8925,13.94 +2017-09-24 13:47:00,34.2825,99.91,13.95 +2017-09-24 14:02:00,36.185,99.9325,13.95 +2017-09-24 14:17:00,34.1813,99.9575,13.94 +2017-09-24 14:32:00,34.33,99.9825,13.93 +2017-09-24 14:47:00,35.3988,100.007,13.92 +2017-09-24 15:02:00,35.6425,100.05,13.93 +2017-09-24 15:17:00,35.4987,100.082,13.94 +2017-09-24 15:32:00,33.8,100.14,13.96 +2017-09-24 15:47:00,34.2825,100.202,13.96 +2017-09-24 16:02:00,35.155,100.27,13.95 +2017-09-24 16:17:00,34.5737,100.31,13.95 +2017-09-24 16:32:00,34.62,100.372,13.98 +2017-09-24 16:47:00,34.8125,100.39,13.99 +2017-09-24 17:02:00,34.6225,100.42,13.98 +2017-09-24 17:17:00,35.4012,100.43,13.98 +2017-09-24 17:32:00,34.765,100.427,14.0 +2017-09-24 17:47:00,35.35,100.438,14.0 +2017-09-24 18:02:00,34.67,100.43,14.01 +2017-09-24 18:17:00,33.5512,100.42,14.03 +2017-09-24 18:32:00,34.325,100.405,14.04 +2017-09-24 18:47:00,35.005,100.408,14.04 +2017-09-24 19:02:00,34.7175,100.42,14.06 +2017-09-24 19:17:00,35.4512,100.44,14.07 +2017-09-24 19:32:00,35.2487,100.467,14.06 +2017-09-24 19:47:00,34.4762,100.495,14.06 +2017-09-24 20:02:00,34.6687,100.51,14.05 +2017-09-24 20:17:00,35.3988,100.545,14.04 +2017-09-24 20:32:00,35.4487,100.575,14.04 +2017-09-24 20:47:00,35.0025,100.575,14.04 +2017-09-24 21:02:00,34.9538,100.565,14.03 +2017-09-24 21:17:00,33.6575,100.537,14.02 +2017-09-24 21:32:00,35.4962,100.51,13.99 +2017-09-24 21:47:00,34.8575,100.492,13.98 +2017-09-24 22:02:00,35.55,100.475,13.98 +2017-09-24 22:17:00,33.75,100.497,13.97 +2017-09-24 22:32:00,34.4287,100.488,13.96 +2017-09-24 22:47:00,35.795,100.518,13.96 +2017-09-24 23:02:00,35.2513,100.533,13.96 +2017-09-24 23:17:00,34.3312,100.57,13.95 +2017-09-24 23:32:00,35.99,100.6,13.93 +2017-09-24 23:47:00,35.4475,100.62,13.93 +2017-09-25 00:02:00,36.7175,100.64,13.93 +2017-09-25 00:17:00,35.7412,100.677,13.92 +2017-09-25 00:32:00,35.7412,100.667,13.9 +2017-09-25 00:47:00,35.5475,100.65,13.88 +2017-09-25 01:02:00,34.4737,100.63,13.88 +2017-09-25 01:17:00,35.3988,100.613,13.87 +2017-09-25 01:32:00,35.8412,100.585,13.85 +2017-09-25 01:47:00,34.0387,100.59,13.84 +2017-09-25 02:02:00,33.5,100.587,13.84 +2017-09-25 02:17:00,35.5013,100.62,13.83 +2017-09-25 02:32:00,35.55,100.635,13.81 +2017-09-25 02:47:00,35.6425,100.665,13.81 +2017-09-25 03:02:00,35.45,100.707,13.81 +2017-09-25 03:17:00,34.855,100.75,13.79 +2017-09-25 03:32:00,35.5,100.787,13.77 +2017-09-25 03:47:00,35.6875,100.822,13.77 +2017-09-25 04:02:00,36.085,100.837,13.77 +2017-09-25 04:17:00,36.0887,100.822,13.76 +2017-09-25 04:32:00,34.72,100.807,13.75 +2017-09-25 04:47:00,35.5462,100.787,13.75 +2017-09-25 05:02:00,35.0037,100.772,13.77 +2017-09-25 05:17:00,34.905,100.777,13.76 +2017-09-25 05:32:00,34.5713,100.792,13.76 +2017-09-25 05:47:00,36.4238,100.832,13.76 +2017-09-25 06:02:00,35.7412,100.867,13.75 +2017-09-25 06:17:00,35.94,100.895,13.77 +2017-09-25 06:32:00,36.0375,100.93,13.77 +2017-09-25 06:47:00,35.7387,100.925,13.78 +2017-09-25 07:02:00,34.7637,100.942,13.78 +2017-09-25 07:17:00,35.6912,100.962,13.79 +2017-09-25 07:32:00,34.6687,100.985,13.8 +2017-09-25 07:47:00,36.09,101.0,13.81 +2017-09-25 08:02:00,34.9062,101.04,13.83 +2017-09-25 08:17:00,34.6725,101.087,13.85 +2017-09-25 08:32:00,35.94,101.145,13.89 +2017-09-25 08:47:00,36.3312,101.185,13.93 +2017-09-25 09:02:00,35.3012,101.235,13.96 +2017-09-25 09:17:00,35.7412,101.28,13.96 +2017-09-25 09:32:00,33.5512,101.327,13.98 +2017-09-25 09:47:00,35.2975,101.352,13.99 +2017-09-25 10:02:00,36.8187,101.402,14.06 +2017-09-25 10:17:00,35.6425,101.447,14.07 +2017-09-25 10:32:00,34.425,101.467,14.07 +2017-09-25 10:47:00,33.65,101.5,14.07 +2017-09-25 11:02:00,35.3012,101.533,14.08 +2017-09-25 11:17:00,34.715,101.582,14.13 +2017-09-25 11:32:00,35.3512,101.65,14.17 +2017-09-25 11:47:00,34.5262,101.735,14.17 +2017-09-25 12:02:00,35.7387,101.862,14.17 +2017-09-25 12:17:00,35.6888,102.025,14.15 +2017-09-25 12:32:00,34.5275,102.22,14.12 +2017-09-25 12:47:00,33.3575,102.445,14.11 +2017-09-25 13:02:00,34.6712,102.82,14.12 +2017-09-25 13:17:00,36.3337,103.232,14.12 +2017-09-25 13:32:00,34.7663,103.562,14.11 +2017-09-25 13:47:00,35.9412,103.855,14.13 +2017-09-25 14:02:00,36.0375,104.107,14.13 +2017-09-25 14:17:00,35.4487,104.367,14.14 +2017-09-25 14:32:00,35.69,104.59,14.15 +2017-09-25 14:47:00,34.8112,104.795,14.16 +2017-09-25 15:02:00,34.5225,104.975,14.16 +2017-09-25 15:17:00,35.2025,105.188,14.16 +2017-09-25 15:32:00,36.62,105.39,14.15 +2017-09-25 15:47:00,35.6437,105.562,14.15 +2017-09-25 16:02:00,36.665,105.76,14.15 +2017-09-25 16:17:00,35.5,105.95,14.14 +2017-09-25 16:32:00,34.4262,106.165,14.13 +2017-09-25 16:47:00,33.7487,106.36,14.15 +2017-09-25 17:02:00,35.6437,106.557,14.15 +2017-09-25 17:17:00,35.0975,106.72,14.15 +2017-09-25 17:32:00,34.7637,106.89,14.14 +2017-09-25 17:47:00,34.0837,107.04,14.15 +2017-09-25 18:02:00,36.33,107.167,14.17 +2017-09-25 18:17:00,36.2825,107.26,14.18 +2017-09-25 18:32:00,34.6712,107.355,14.18 +2017-09-25 18:47:00,36.0912,107.425,14.18 +2017-09-25 19:02:00,34.7213,107.477,14.17 +2017-09-25 19:17:00,33.9938,107.535,14.19 +2017-09-25 19:32:00,36.235,107.58,14.2 +2017-09-25 19:47:00,36.1362,107.617,14.19 +2017-09-25 20:02:00,35.74,107.645,14.17 +2017-09-25 20:17:00,35.05,107.67,14.18 +2017-09-25 20:32:00,34.525,107.685,14.19 +2017-09-25 20:47:00,34.43,107.715,14.19 +2017-09-25 21:02:00,35.5987,107.72,14.19 +2017-09-25 21:17:00,35.0512,107.715,14.17 +2017-09-25 21:32:00,34.7675,107.688,14.17 +2017-09-25 21:47:00,35.5,107.582,14.16 +2017-09-25 22:02:00,36.2337,107.432,14.14 +2017-09-25 22:17:00,35.2487,107.31,14.12 +2017-09-25 22:32:00,36.2337,107.195,14.1 +2017-09-25 22:47:00,36.2838,107.09,14.09 +2017-09-25 23:02:00,36.1375,107.01,14.09 +2017-09-25 23:17:00,34.5725,106.95,14.08 +2017-09-25 23:32:00,36.2325,106.908,14.08 +2017-09-25 23:47:00,34.715,106.882,14.07 +2017-09-26 00:02:00,35.2,106.862,14.07 +2017-09-26 00:17:00,34.9025,106.857,14.07 +2017-09-26 00:32:00,35.595,106.855,14.08 +2017-09-26 00:47:00,34.9987,106.862,14.07 +2017-09-26 01:02:00,36.5687,106.87,14.06 +2017-09-26 01:17:00,37.0187,106.867,14.05 +2017-09-26 01:32:00,33.6038,106.855,14.04 +2017-09-26 01:47:00,35.1987,106.857,14.02 +2017-09-26 02:02:00,34.9538,106.885,14.03 +2017-09-26 02:17:00,35.1987,106.925,14.04 +2017-09-26 02:32:00,35.3962,107.005,14.03 +2017-09-26 02:47:00,35.3988,107.097,14.03 +2017-09-26 03:02:00,35.2988,107.23,14.03 +2017-09-26 03:17:00,35.45,107.425,14.03 +2017-09-26 03:32:00,36.3775,107.66,14.04 +2017-09-26 03:47:00,35.6925,107.923,14.03 +2017-09-26 04:02:00,36.4737,108.165,14.02 +2017-09-26 04:17:00,34.8112,108.375,14.01 +2017-09-26 04:32:00,33.7962,108.612,14.02 +2017-09-26 04:47:00,34.5212,108.847,14.01 +2017-09-26 05:02:00,36.0863,109.045,14.0 +2017-09-26 05:17:00,36.4662,109.19,14.0 +2017-09-26 05:32:00,33.4525,109.302,14.0 +2017-09-26 05:47:00,34.3275,109.35,14.01 +2017-09-26 06:02:00,34.9562,109.682,14.01 +2017-09-26 06:17:00,34.7663,110.347,14.0 +2017-09-26 06:32:00,36.7663,111.128,14.0 +2017-09-26 06:47:00,34.5275,111.812,14.0 +2017-09-26 07:02:00,34.04,112.2,14.01 +2017-09-26 07:17:00,33.8962,112.467,14.01 +2017-09-26 07:32:00,34.7687,112.685,14.0 +2017-09-26 07:47:00,36.615,112.862,14.0 +2017-09-26 08:02:00,36.0362,113.03,14.01 +2017-09-26 08:17:00,34.6188,113.222,14.02 +2017-09-26 08:32:00,35.9875,113.385,14.01 +2017-09-26 08:47:00,34.475,113.467,14.01 +2017-09-26 09:02:00,36.4212,113.52,14.0 +2017-09-26 09:17:00,35.0963,113.577,14.0 +2017-09-26 09:32:00,34.4713,113.585,14.05 +2017-09-26 09:47:00,35.1963,113.59,14.08 +2017-09-26 10:02:00,36.0837,113.57,14.1 +2017-09-26 10:17:00,34.7637,113.452,14.11 +2017-09-26 10:32:00,35.3975,113.217,14.14 +2017-09-26 10:47:00,33.8425,112.98,14.15 +2017-09-26 11:02:00,34.715,112.815,14.18 +2017-09-26 11:17:00,34.0338,112.677,14.21 +2017-09-26 11:32:00,35.0475,112.56,14.2 +2017-09-26 11:47:00,35.1987,112.49,14.21 +2017-09-26 12:02:00,35.2975,112.447,14.22 +2017-09-26 12:17:00,37.1075,112.417,14.28 +2017-09-26 12:32:00,35.1475,112.387,14.32 +2017-09-26 12:47:00,34.1825,112.367,14.33 +2017-09-26 13:02:00,35.54,112.362,14.35 +2017-09-26 13:17:00,33.8975,112.37,14.37 +2017-09-26 13:32:00,34.9025,112.393,14.41 +2017-09-26 13:47:00,34.0825,112.462,14.44 +2017-09-26 14:02:00,36.2363,112.503,14.45 +2017-09-26 14:17:00,34.9012,112.565,14.46 +2017-09-26 14:32:00,34.9512,112.607,14.48 +2017-09-26 14:47:00,32.9163,112.637,14.5 +2017-09-26 15:02:00,35.3512,112.67,14.5 +2017-09-26 15:17:00,34.5287,112.71,14.52 +2017-09-26 15:32:00,34.7663,112.802,14.53 +2017-09-26 15:47:00,34.6212,112.905,14.54 +2017-09-26 16:02:00,35.5938,113.128,14.55 +2017-09-26 16:17:00,34.81,113.555,14.57 +2017-09-26 16:32:00,33.9925,113.967,14.59 +2017-09-26 16:47:00,34.525,114.317,14.57 +2017-09-26 17:02:00,34.085,114.6,14.57 +2017-09-26 17:17:00,34.5238,114.762,14.59 +2017-09-26 17:32:00,35.5925,114.878,14.56 +2017-09-26 17:47:00,35.9437,114.938,14.54 +2017-09-26 18:02:00,33.9912,114.977,14.55 +2017-09-26 18:17:00,35.0462,114.995,14.56 +2017-09-26 18:32:00,34.8587,115.005,14.56 +2017-09-26 18:47:00,34.1775,114.98,14.57 +2017-09-26 19:02:00,33.6025,114.942,14.56 +2017-09-26 19:17:00,34.8538,114.845,14.55 +2017-09-26 19:32:00,33.6987,114.8,14.56 +2017-09-26 19:47:00,36.1325,114.757,14.56 +2017-09-26 20:02:00,34.9037,114.742,14.56 +2017-09-26 20:17:00,36.57,114.732,14.56 +2017-09-26 20:32:00,33.6987,114.747,14.54 +2017-09-26 20:47:00,33.0612,114.762,14.54 +2017-09-26 21:02:00,35.7887,114.815,14.53 +2017-09-26 21:17:00,34.3763,114.845,14.52 +2017-09-26 21:32:00,35.095,114.92,14.51 +2017-09-26 21:47:00,34.3787,114.972,14.5 +2017-09-26 22:02:00,35.2487,115.048,14.47 +2017-09-26 22:17:00,34.9,115.115,14.44 +2017-09-26 22:32:00,35.0938,115.17,14.43 +2017-09-26 22:47:00,36.1862,115.24,14.42 +2017-09-26 23:02:00,34.38,115.312,14.4 +2017-09-26 23:17:00,35.0,115.35,14.38 +2017-09-26 23:32:00,35.3487,115.378,14.37 +2017-09-26 23:47:00,35.8875,115.41,14.38 +2017-09-27 00:02:00,34.2762,115.417,14.38 +2017-09-27 00:17:00,35.3487,115.452,14.37 +2017-09-27 00:32:00,34.5713,115.465,14.36 +2017-09-27 00:47:00,35.0963,115.512,14.35 +2017-09-27 01:02:00,35.3988,115.557,14.35 +2017-09-27 01:17:00,36.0375,115.615,14.36 +2017-09-27 01:32:00,36.375,115.655,14.38 +2017-09-27 01:47:00,35.0025,115.727,14.38 +2017-09-27 02:02:00,34.4737,115.775,14.38 +2017-09-27 02:17:00,34.5187,115.84,14.39 +2017-09-27 02:32:00,36.8662,115.893,14.42 +2017-09-27 02:47:00,34.3763,115.942,14.43 +2017-09-27 03:02:00,35.7375,115.972,14.42 +2017-09-27 03:17:00,34.4287,115.977,14.43 +2017-09-27 03:32:00,35.5975,115.992,14.43 +2017-09-27 03:47:00,33.165,115.972,14.44 +2017-09-27 04:02:00,34.9025,115.94,14.43 +2017-09-27 04:17:00,34.3275,115.915,14.43 +2017-09-27 04:32:00,33.5525,115.882,14.42 +2017-09-27 04:47:00,33.65,115.86,14.41 +2017-09-27 05:02:00,34.3288,115.82,14.4 +2017-09-27 05:17:00,34.1338,115.768,14.42 +2017-09-27 05:32:00,33.9925,115.707,14.41 +2017-09-27 05:47:00,34.7188,115.992,14.37 +2017-09-27 06:02:00,35.645,116.195,14.36 +2017-09-27 06:17:00,34.5737,116.195,14.35 +2017-09-27 06:32:00,34.8575,116.018,14.31 +2017-09-27 06:47:00,32.9187,115.64,14.29 +2017-09-27 07:02:00,34.7225,115.22,14.28 +2017-09-27 07:17:00,36.4212,114.885,14.26 +2017-09-27 07:32:00,33.7,114.628,14.24 +2017-09-27 07:47:00,35.0488,114.442,14.23 +2017-09-27 08:02:00,34.04,114.325,14.22 +2017-09-27 08:17:00,33.2612,114.23,14.22 +2017-09-27 08:32:00,34.7675,114.17,14.22 +2017-09-27 08:47:00,34.0825,114.122,14.21 +2017-09-27 09:02:00,35.4987,114.087,14.2 +2017-09-27 09:17:00,32.8688,114.075,14.21 +2017-09-27 09:32:00,32.8675,114.067,14.21 +2017-09-27 09:47:00,35.35,114.035,14.21 +2017-09-27 10:02:00,35.79,114.04,14.22 +2017-09-27 10:17:00,36.2812,114.037,14.25 +2017-09-27 10:32:00,35.2025,114.007,14.27 +2017-09-27 10:47:00,33.9962,113.99,14.33 +2017-09-27 11:02:00,35.79,113.927,14.33 +2017-09-27 11:17:00,35.7375,113.9,14.36 +2017-09-27 11:32:00,35.0,113.897,14.38 +2017-09-27 11:47:00,35.1512,113.932,14.41 +2017-09-27 12:02:00,35.1512,114.0,14.43 +2017-09-27 12:17:00,34.4737,114.08,14.45 +2017-09-27 12:32:00,34.5687,114.17,14.45 +2017-09-27 12:47:00,36.8675,114.277,14.47 +2017-09-27 13:02:00,35.005,114.412,14.49 +2017-09-27 13:17:00,35.2012,114.57,14.5 +2017-09-27 13:32:00,33.9463,114.753,14.52 +2017-09-27 13:47:00,35.5938,114.945,14.53 +2017-09-27 14:02:00,32.9688,115.145,14.54 +2017-09-27 14:17:00,33.7475,115.362,14.57 +2017-09-27 14:32:00,35.3988,115.6,14.62 +2017-09-27 14:47:00,35.2475,115.792,14.64 +2017-09-27 15:02:00,35.4475,116.0,14.64 +2017-09-27 15:17:00,35.6425,116.197,14.63 +2017-09-27 15:32:00,35.3463,116.372,14.62 +2017-09-27 15:47:00,35.1488,116.555,14.63 +2017-09-27 16:02:00,33.2625,116.692,14.63 +2017-09-27 16:17:00,34.8125,116.87,14.62 +2017-09-27 16:32:00,34.1338,117.05,14.62 +2017-09-27 16:47:00,33.7537,117.232,14.6 +2017-09-27 17:02:00,33.8,117.435,14.59 +2017-09-27 17:17:00,34.81,117.635,14.59 +2017-09-27 17:32:00,34.6188,117.8,14.59 +2017-09-27 17:47:00,35.0475,117.98,14.58 +2017-09-27 18:02:00,36.52,118.128,14.57 +2017-09-27 18:17:00,33.8988,118.285,14.56 +2017-09-27 18:32:00,34.3775,118.43,14.55 +2017-09-27 18:47:00,34.8087,118.557,14.56 +2017-09-27 19:02:00,32.6687,118.67,14.57 +2017-09-27 19:17:00,33.9925,118.79,14.56 +2017-09-27 19:32:00,33.8962,118.885,14.55 +2017-09-27 19:47:00,33.945,118.938,14.54 +2017-09-27 20:02:00,34.8138,118.982,14.54 +2017-09-27 20:17:00,34.3763,119.033,14.54 +2017-09-27 20:32:00,35.6937,119.055,14.53 +2017-09-27 20:47:00,34.4788,119.067,14.51 +2017-09-27 21:02:00,35.0963,119.085,14.51 +2017-09-27 21:17:00,34.38,119.082,14.5 +2017-09-27 21:32:00,33.26,119.06,14.5 +2017-09-27 21:47:00,35.0975,119.022,14.49 +2017-09-27 22:02:00,33.9463,119.003,14.48 +2017-09-27 22:17:00,33.9938,118.932,14.5 +2017-09-27 22:32:00,34.5275,118.852,14.49 +2017-09-27 22:47:00,34.5762,118.77,14.49 +2017-09-27 23:02:00,35.455,118.647,14.47 +2017-09-27 23:17:00,35.35,118.565,14.46 +2017-09-27 23:32:00,35.15,118.41,14.45 +2017-09-27 23:47:00,35.3025,118.232,14.45 +2017-09-28 00:02:00,34.6738,118.012,14.44 +2017-09-28 00:17:00,34.1837,117.78,14.42 +2017-09-28 00:32:00,34.5737,117.555,14.4 +2017-09-28 00:47:00,36.2387,117.32,14.4 +2017-09-28 01:02:00,34.48,117.077,14.38 +2017-09-28 01:17:00,35.1512,116.865,14.37 +2017-09-28 01:32:00,36.0437,116.675,14.36 +2017-09-28 01:47:00,34.9062,116.51,14.34 +2017-09-28 02:02:00,35.0975,116.342,14.34 +2017-09-28 02:17:00,33.8962,116.175,14.34 +2017-09-28 02:32:00,34.43,116.027,14.36 +2017-09-28 02:47:00,35.3012,115.895,14.37 +2017-09-28 03:02:00,34.62,115.757,14.37 +2017-09-28 03:17:00,34.1813,115.643,14.37 +2017-09-28 03:32:00,35.8425,115.527,14.38 +2017-09-28 03:47:00,34.4287,115.393,14.38 +2017-09-28 04:02:00,34.67,115.25,14.37 +2017-09-28 04:17:00,35.3025,115.075,14.35 +2017-09-28 04:32:00,35.4012,114.908,14.33 +2017-09-28 04:47:00,35.25,114.742,14.32 +2017-09-28 05:02:00,34.3275,114.59,14.32 +2017-09-28 05:17:00,36.4238,114.457,14.33 +2017-09-28 05:32:00,36.3325,114.35,14.31 +2017-09-28 05:47:00,35.6462,114.265,14.29 +2017-09-28 06:02:00,35.5437,114.152,14.28 +2017-09-28 06:17:00,34.135,114.092,14.27 +2017-09-28 06:32:00,35.5475,114.04,14.26 +2017-09-28 06:47:00,35.4975,113.985,14.25 +2017-09-28 07:02:00,37.3037,113.923,14.24 +2017-09-28 07:17:00,34.33,113.845,14.23 +2017-09-28 07:32:00,35.5488,113.73,14.22 +2017-09-28 07:47:00,34.9062,113.61,14.22 +2017-09-28 08:02:00,36.52,113.507,14.22 +2017-09-28 08:17:00,35.4962,113.405,14.23 +2017-09-28 08:32:00,34.38,113.36,14.23 +2017-09-28 08:47:00,35.5963,113.347,14.24 +2017-09-28 09:02:00,34.6712,113.382,14.26 +2017-09-28 09:17:00,36.2375,113.425,14.31 +2017-09-28 09:32:00,34.5737,113.475,14.36 +2017-09-28 09:47:00,35.4012,113.537,14.41 +2017-09-28 10:02:00,35.5938,113.575,14.45 +2017-09-28 10:17:00,35.84,113.622,14.47 +2017-09-28 10:32:00,35.885,113.67,14.48 +2017-09-28 10:47:00,36.5187,113.722,14.51 +2017-09-28 11:02:00,36.0338,113.765,14.55 +2017-09-28 11:17:00,34.9538,113.8,14.59 +2017-09-28 11:32:00,34.3775,113.847,14.63 +2017-09-28 11:47:00,34.62,113.872,14.65 +2017-09-28 12:02:00,34.0362,113.855,14.67 +2017-09-28 12:17:00,34.0825,113.812,14.7 +2017-09-28 12:32:00,36.335,113.732,14.7 +2017-09-28 12:47:00,35.5525,113.652,14.67 +2017-09-28 13:02:00,35.6437,113.57,14.63 +2017-09-28 13:17:00,34.1312,113.505,14.6 +2017-09-28 13:32:00,34.5238,113.452,14.59 +2017-09-28 13:47:00,34.955,113.425,14.6 +2017-09-28 14:02:00,35.4012,113.393,14.61 +2017-09-28 14:17:00,34.7675,113.395,14.62 +2017-09-28 14:32:00,35.8363,113.382,14.63 +2017-09-28 14:47:00,35.8875,113.393,14.65 +2017-09-28 15:02:00,34.4737,113.39,14.66 +2017-09-28 15:17:00,35.6437,113.393,14.68 +2017-09-28 15:32:00,34.5238,113.4,14.71 +2017-09-28 15:47:00,34.4762,113.41,14.71 +2017-09-28 16:02:00,35.7887,113.43,14.7 +2017-09-28 16:17:00,35.05,113.44,14.71 +2017-09-28 16:32:00,34.8562,113.447,14.72 +2017-09-28 16:47:00,35.6875,113.442,14.73 +2017-09-28 17:02:00,35.6413,113.393,14.74 +2017-09-28 17:17:00,34.9062,113.315,14.75 +2017-09-28 17:32:00,35.0475,113.27,14.74 +2017-09-28 17:47:00,34.3763,113.24,14.76 +2017-09-28 18:02:00,35.3475,113.222,14.76 +2017-09-28 18:17:00,35.3463,113.222,14.75 +2017-09-28 18:32:00,35.3975,113.227,14.75 +2017-09-28 18:47:00,33.0687,113.245,14.74 +2017-09-28 19:02:00,33.5987,113.255,14.75 +2017-09-28 19:17:00,35.0525,113.272,14.77 +2017-09-28 19:32:00,36.0375,113.285,14.76 +2017-09-28 19:47:00,35.0475,113.3,14.74 +2017-09-28 20:02:00,35.1963,113.325,14.73 +2017-09-28 20:17:00,36.085,113.335,14.72 +2017-09-28 20:32:00,35.7925,113.357,14.7 +2017-09-28 20:47:00,35.5512,113.315,14.7 +2017-09-28 21:02:00,35.84,113.287,14.67 +2017-09-28 21:17:00,35.5512,113.235,14.64 +2017-09-28 21:32:00,35.7387,113.177,14.62 +2017-09-28 21:47:00,36.8637,113.135,14.61 +2017-09-28 22:02:00,36.1362,113.097,14.61 +2017-09-28 22:17:00,36.0387,113.1,14.61 +2017-09-28 22:32:00,36.2337,113.107,14.61 +2017-09-28 22:47:00,36.9137,113.092,14.6 +2017-09-28 23:02:00,34.8138,113.095,14.6 +2017-09-28 23:17:00,35.5938,113.092,14.59 +2017-09-28 23:32:00,37.2038,113.07,14.58 +2017-09-28 23:47:00,37.1562,113.057,14.57 +2017-09-29 00:02:00,36.2363,113.025,14.56 +2017-09-29 00:17:00,35.3012,112.992,14.55 +2017-09-29 00:32:00,33.7513,112.942,14.58 +2017-09-29 00:47:00,34.81,112.902,14.58 +2017-09-29 01:02:00,34.765,112.845,14.58 +2017-09-29 01:17:00,36.285,112.757,14.58 +2017-09-29 01:32:00,35.5912,112.63,14.59 +2017-09-29 01:47:00,36.38,112.427,14.59 +2017-09-29 02:02:00,34.9025,112.227,14.6 +2017-09-29 02:17:00,36.0387,111.99,14.59 +2017-09-29 02:32:00,37.2062,111.8,14.58 +2017-09-29 02:47:00,36.5713,111.632,14.59 +2017-09-29 03:02:00,34.33,111.487,14.6 +2017-09-29 03:17:00,33.8463,111.337,14.6 +2017-09-29 03:32:00,36.4688,111.177,14.6 +2017-09-29 03:47:00,35.15,111.04,14.6 +2017-09-29 04:02:00,35.5975,110.882,14.59 +2017-09-29 04:17:00,35.1987,110.742,14.59 +2017-09-29 04:32:00,35.4463,110.597,14.59 +2017-09-29 04:47:00,35.4975,110.472,14.57 +2017-09-29 05:02:00,36.7712,110.327,14.55 +2017-09-29 05:17:00,36.7687,110.167,14.54 +2017-09-29 05:32:00,35.3,109.97,14.55 +2017-09-29 05:47:00,36.6637,109.753,14.57 +2017-09-29 06:02:00,36.4212,109.562,14.57 +2017-09-29 06:17:00,35.7887,109.375,14.56 +2017-09-29 06:32:00,37.6537,109.227,14.56 +2017-09-29 06:47:00,37.0163,109.08,14.56 +2017-09-29 07:02:00,35.595,108.972,14.56 +2017-09-29 07:17:00,35.4487,108.857,14.57 +2017-09-29 07:32:00,36.2363,108.73,14.6 +2017-09-29 07:47:00,37.5037,108.602,14.66 +2017-09-29 08:02:00,36.52,108.51,14.7 +2017-09-29 08:17:00,36.865,108.42,14.72 +2017-09-29 08:32:00,38.0475,108.365,14.73 +2017-09-29 08:47:00,36.375,108.33,14.74 +2017-09-29 09:02:00,37.6537,108.317,14.78 +2017-09-29 09:17:00,38.3988,108.307,14.81 +2017-09-29 09:32:00,38.1987,108.335,14.85 +2017-09-29 09:47:00,36.6675,108.812,14.86 +2017-09-29 10:02:00,35.9925,108.987,14.88 +2017-09-29 10:17:00,36.8688,106.783,14.91 +2017-09-29 10:32:00,37.06,104.577,14.96 +2017-09-29 10:47:00,35.69,103.11,15.0 +2017-09-29 11:02:00,37.655,102.26,15.01 +2017-09-29 11:17:00,35.8887,101.847,15.05 +2017-09-29 11:32:00,36.9662,101.753,15.09 +2017-09-29 11:47:00,36.7712,101.927,15.11 +2017-09-29 12:02:00,37.3475,102.253,15.15 +2017-09-29 12:17:00,36.235,102.665,15.19 +2017-09-29 12:32:00,37.4525,103.15,15.21 +2017-09-29 12:47:00,34.8125,103.75,15.24 +2017-09-29 13:02:00,35.9412,104.8,15.22 +2017-09-29 13:17:00,36.965,105.982,15.22 +2017-09-29 13:32:00,37.1562,107.09,15.21 +2017-09-29 13:47:00,37.1137,108.02,15.21 +2017-09-29 14:02:00,38.1987,108.777,15.22 +2017-09-29 14:17:00,37.5013,109.347,15.21 +2017-09-29 14:32:00,36.815,109.792,15.2 +2017-09-29 14:47:00,37.6562,110.14,15.22 +2017-09-29 15:02:00,37.0625,110.39,15.25 +2017-09-29 15:17:00,38.9313,110.577,15.28 +2017-09-29 15:32:00,36.77,110.65,15.29 +2017-09-29 15:47:00,37.8075,110.63,15.29 +2017-09-29 16:02:00,35.9887,110.555,15.3 +2017-09-29 16:17:00,37.8112,110.455,15.32 +2017-09-29 16:32:00,36.4725,110.423,15.34 +2017-09-29 16:47:00,37.7575,110.397,15.36 +2017-09-29 17:02:00,36.3325,110.402,15.37 +2017-09-29 17:17:00,36.9688,110.435,15.39 +2017-09-29 17:32:00,38.3512,110.492,15.42 +2017-09-29 17:47:00,37.905,110.565,15.44 +2017-09-29 18:02:00,36.615,110.625,15.49 +2017-09-29 18:17:00,36.6675,110.697,15.52 +2017-09-29 18:32:00,36.285,110.75,15.54 +2017-09-29 18:47:00,37.2525,110.812,15.56 +2017-09-29 19:02:00,36.7175,110.885,15.59 +2017-09-29 19:17:00,35.7925,110.92,15.63 +2017-09-29 19:32:00,36.965,110.925,15.65 +2017-09-29 19:47:00,35.6937,110.893,15.67 +2017-09-29 20:02:00,37.3562,110.882,15.68 +2017-09-29 20:17:00,34.9088,110.893,15.71 +2017-09-29 20:32:00,36.09,110.957,15.72 +2017-09-29 20:47:00,37.8063,111.007,15.72 +2017-09-29 21:02:00,36.9725,111.077,15.72 +2017-09-29 21:17:00,34.9088,111.158,15.72 +2017-09-29 21:32:00,37.0725,111.242,15.72 +2017-09-29 21:47:00,34.9075,111.322,15.71 +2017-09-29 22:02:00,34.0887,111.415,15.72 +2017-09-29 22:17:00,37.505,111.5,15.68 +2017-09-29 22:32:00,36.7188,111.567,15.65 +2017-09-29 22:47:00,36.47,111.615,15.64 +2017-09-29 23:02:00,39.08,111.665,15.61 +2017-09-29 23:17:00,37.1587,111.732,15.58 +2017-09-29 23:32:00,37.4512,111.78,15.54 +2017-09-29 23:47:00,37.9075,111.835,15.5 +2017-09-30 00:02:00,36.38,111.882,15.46 +2017-09-30 00:17:00,36.0387,111.897,15.43 +2017-09-30 00:32:00,35.9938,111.865,15.41 +2017-09-30 00:47:00,36.7162,111.827,15.38 +2017-09-30 01:02:00,37.9075,111.78,15.35 +2017-09-30 01:17:00,38.545,111.762,15.33 +2017-09-30 01:32:00,36.915,111.775,15.31 +2017-09-30 01:47:00,38.15,111.787,15.3 +2017-09-30 02:02:00,36.42,111.83,15.3 +2017-09-30 02:17:00,38.2525,111.86,15.29 +2017-09-30 02:32:00,37.9087,111.92,15.29 +2017-09-30 02:47:00,36.8187,111.967,15.28 +2017-09-30 03:02:00,37.4037,112.02,15.27 +2017-09-30 03:17:00,38.3037,112.067,15.27 +2017-09-30 03:32:00,38.2,112.092,15.27 +2017-09-30 03:47:00,37.2062,112.135,15.27 +2017-09-30 04:02:00,37.1587,112.17,15.26 +2017-09-30 04:17:00,39.675,112.177,15.24 +2017-09-30 04:32:00,39.2812,112.21,15.22 +2017-09-30 04:47:00,36.7175,112.147,15.21 +2017-09-30 05:02:00,36.965,112.08,15.19 +2017-09-30 05:17:00,36.235,112.025,15.18 +2017-09-30 05:32:00,38.835,111.98,15.17 +2017-09-30 05:47:00,36.4775,111.987,15.15 +2017-09-30 06:02:00,37.1587,112.012,15.14 +2017-09-30 06:17:00,38.0025,112.085,15.14 +2017-09-30 06:32:00,36.5675,112.312,15.14 +2017-09-30 06:47:00,36.33,112.38,15.15 +2017-09-30 07:02:00,36.7675,111.5,15.16 +2017-09-30 07:17:00,37.8125,110.447,15.15 +2017-09-30 07:32:00,37.3525,109.705,15.15 +2017-09-30 07:47:00,38.4037,109.315,15.16 +2017-09-30 08:02:00,36.5687,109.207,15.18 +2017-09-30 08:17:00,38.4512,109.35,15.18 +2017-09-30 08:32:00,37.3012,110.1,15.19 +2017-09-30 08:47:00,35.5938,111.048,15.22 +2017-09-30 09:02:00,38.5462,111.89,15.23 +2017-09-30 09:17:00,38.6462,112.592,15.2 +2017-09-30 09:32:00,37.5575,113.112,15.19 +2017-09-30 09:47:00,38.0075,113.482,15.18 +2017-09-30 10:02:00,35.5462,113.715,15.16 +2017-09-30 10:17:00,37.45,113.825,15.15 +2017-09-30 10:32:00,38.2537,113.857,15.15 +2017-09-30 10:47:00,37.5563,113.855,15.16 +2017-09-30 11:02:00,36.3325,113.837,15.19 +2017-09-30 11:17:00,38.05,113.753,15.22 +2017-09-30 11:32:00,37.505,113.625,15.25 +2017-09-30 11:47:00,37.3538,113.485,15.25 +2017-09-30 12:02:00,38.1512,113.342,15.24 +2017-09-30 12:17:00,37.5587,113.21,15.24 +2017-09-30 12:32:00,38.4,113.115,15.25 +2017-09-30 12:47:00,36.72,113.07,15.28 +2017-09-30 13:02:00,38.4,113.022,15.27 +2017-09-30 13:17:00,38.5013,112.98,15.28 +2017-09-30 13:32:00,38.0025,112.95,15.3 +2017-09-30 13:47:00,36.285,112.932,15.33 +2017-09-30 14:02:00,38.4538,112.915,15.36 +2017-09-30 14:17:00,37.2562,112.917,15.37 +2017-09-30 14:32:00,37.6025,112.893,15.37 +2017-09-30 14:47:00,38.835,112.865,15.4 +2017-09-30 15:02:00,39.1825,112.867,15.42 +2017-09-30 15:17:00,38.6963,112.847,15.42 +2017-09-30 15:32:00,37.065,112.845,15.41 +2017-09-30 15:47:00,37.6087,112.825,15.39 +2017-09-30 16:02:00,36.2838,112.777,15.4 +2017-09-30 16:17:00,38.98,112.652,15.41 +2017-09-30 16:32:00,38.7913,112.567,15.42 +2017-09-30 16:47:00,38.695,112.465,15.42 +2017-09-30 17:02:00,37.16,112.427,15.41 +2017-09-30 17:17:00,36.7213,112.415,15.41 +2017-09-30 17:32:00,38.1,112.408,15.41 +2017-09-30 17:47:00,37.8625,112.41,15.4 +2017-09-30 18:02:00,38.2012,112.452,15.4 +2017-09-30 18:17:00,38.2525,112.477,15.38 +2017-09-30 18:32:00,38.3525,112.475,15.37 +2017-09-30 18:47:00,38.93,112.485,15.36 +2017-09-30 19:02:00,38.6925,112.505,15.35 +2017-09-30 19:17:00,38.6462,112.53,15.33 +2017-09-30 19:32:00,37.7588,112.537,15.33 +2017-09-30 19:47:00,36.4675,112.52,15.32 +2017-09-30 20:02:00,38.8838,112.537,15.31 +2017-09-30 20:17:00,38.0037,112.462,15.3 +2017-09-30 20:32:00,37.0662,112.385,15.31 +2017-09-30 20:47:00,38.6462,112.287,15.3 +2017-09-30 21:02:00,36.6663,112.215,15.27 +2017-09-30 21:17:00,37.255,112.145,15.26 +2017-09-30 21:32:00,38.3075,112.115,15.26 +2017-09-30 21:47:00,38.6475,112.107,15.24 +2017-09-30 22:02:00,38.7887,112.16,15.22 +2017-09-30 22:17:00,40.545,112.222,15.22 +2017-09-30 22:32:00,38.6925,112.287,15.21 +2017-09-30 22:47:00,37.7038,112.375,15.21 +2017-09-30 23:02:00,39.725,112.45,15.2 +2017-09-30 23:17:00,38.4037,112.5,15.18 +2017-09-30 23:32:00,40.64,112.58,15.18 +2017-09-30 23:47:00,37.1162,112.622,15.17 +2017-10-01 00:02:00,38.93,112.65,15.16 +2017-10-01 00:17:00,38.7387,112.667,15.18 +2017-10-01 00:32:00,38.005,112.717,15.17 +2017-10-01 00:47:00,39.1862,112.68,15.17 +2017-10-01 01:02:00,39.6762,112.625,15.17 +2017-10-01 01:17:00,37.1125,112.535,15.17 +2017-10-01 01:32:00,38.5437,112.467,15.15 +2017-10-01 01:47:00,38.3538,112.45,15.14 +2017-10-01 02:02:00,39.3288,112.465,15.14 +2017-10-01 02:17:00,37.86,112.497,15.12 +2017-10-01 02:32:00,39.5287,112.53,15.12 +2017-10-01 02:47:00,37.5575,112.567,15.11 +2017-10-01 03:02:00,38.8862,112.592,15.12 +2017-10-01 03:17:00,37.7575,112.63,15.12 +2017-10-01 03:32:00,38.88,112.637,15.12 +2017-10-01 03:47:00,37.5062,112.67,15.12 +2017-10-01 04:02:00,40.02,112.665,15.11 +2017-10-01 04:17:00,38.1,112.682,15.09 +2017-10-01 04:32:00,37.4538,112.72,15.07 +2017-10-01 04:47:00,39.6762,112.757,15.05 +2017-10-01 05:02:00,37.8575,112.83,15.04 +2017-10-01 05:17:00,37.2575,112.915,15.01 +2017-10-01 05:32:00,38.8862,112.982,15.0 +2017-10-01 05:47:00,38.2575,113.03,14.99 +2017-10-01 06:02:00,39.28,113.075,14.97 +2017-10-01 06:17:00,39.4362,113.05,14.96 +2017-10-01 06:32:00,39.085,113.033,14.93 +2017-10-01 06:47:00,38.0525,113.018,14.91 +2017-10-01 07:02:00,37.81,113.01,14.9 +2017-10-01 07:17:00,38.835,113.018,14.88 +2017-10-01 07:32:00,38.5962,113.042,14.86 +2017-10-01 07:47:00,39.0262,113.075,14.85 +2017-10-01 08:02:00,38.0525,113.112,14.86 +2017-10-01 08:17:00,38.8312,113.152,14.87 +2017-10-01 08:32:00,38.5987,113.18,14.89 +2017-10-01 08:47:00,38.4975,113.207,14.89 +2017-10-01 09:02:00,38.2,113.212,14.9 +2017-10-01 09:17:00,38.6937,113.165,14.92 +2017-10-01 09:32:00,39.0825,113.147,14.95 +2017-10-01 09:47:00,39.5262,113.095,15.0 +2017-10-01 10:02:00,38.7875,113.087,15.03 +2017-10-01 10:17:00,39.2312,113.072,15.04 +2017-10-01 10:32:00,38.7862,113.097,15.05 +2017-10-01 10:47:00,38.9325,113.1,15.04 +2017-10-01 11:02:00,39.385,113.122,15.04 +2017-10-01 11:17:00,37.7562,113.128,15.03 +2017-10-01 11:32:00,39.5788,113.135,15.03 +2017-10-01 11:47:00,38.2513,113.147,15.04 +2017-10-01 12:02:00,38.8812,113.17,15.05 +2017-10-01 12:17:00,38.8838,113.175,15.05 +2017-10-01 12:32:00,37.4012,113.21,15.05 +2017-10-01 12:47:00,40.3037,113.227,15.07 +2017-10-01 13:02:00,37.2562,113.24,15.1 +2017-10-01 13:17:00,37.555,113.272,15.12 +2017-10-01 13:32:00,39.2337,113.285,15.14 +2017-10-01 13:47:00,39.38,113.292,15.14 +2017-10-01 14:02:00,37.0675,113.283,15.13 +2017-10-01 14:17:00,37.7075,113.257,15.12 +2017-10-01 14:32:00,39.4788,113.232,15.1 +2017-10-01 14:47:00,39.6263,113.225,15.08 +2017-10-01 15:02:00,39.4812,113.242,15.08 +2017-10-01 15:17:00,37.8562,113.227,15.07 +2017-10-01 15:32:00,38.6462,113.253,15.06 +2017-10-01 15:47:00,38.5987,113.262,15.05 +2017-10-01 16:02:00,40.025,113.283,15.03 +2017-10-01 16:17:00,38.0,113.292,15.02 +2017-10-01 16:32:00,40.5875,113.295,15.03 +2017-10-01 16:47:00,38.74,113.32,15.04 +2017-10-01 17:02:00,39.9287,113.357,15.04 +2017-10-01 17:17:00,39.775,113.37,15.03 +2017-10-01 17:32:00,40.3975,113.385,15.04 +2017-10-01 17:47:00,36.5212,113.4,15.05 +2017-10-01 18:02:00,39.1825,113.423,15.05 +2017-10-01 18:17:00,39.2825,113.397,15.04 +2017-10-01 18:32:00,38.7862,113.322,15.03 +2017-10-01 18:47:00,36.87,113.257,15.03 +2017-10-01 19:02:00,38.5025,113.188,15.0 +2017-10-01 19:17:00,38.9825,113.167,14.99 +2017-10-01 19:32:00,39.0275,113.167,14.98 +2017-10-01 19:47:00,38.005,113.167,14.96 +2017-10-01 20:02:00,38.4025,113.185,14.96 +2017-10-01 20:17:00,38.2537,113.185,14.95 +2017-10-01 20:32:00,38.74,113.21,14.94 +2017-10-01 20:47:00,36.6125,113.222,14.93 +2017-10-01 21:02:00,37.355,113.227,14.93 +2017-10-01 21:17:00,37.0638,113.25,14.92 +2017-10-01 21:32:00,38.35,113.257,14.92 +2017-10-01 21:47:00,39.2312,113.275,14.92 +2017-10-01 22:02:00,37.8562,113.277,14.91 +2017-10-01 22:17:00,38.1012,113.285,14.89 +2017-10-01 22:32:00,38.4962,113.222,14.87 +2017-10-01 22:47:00,38.1,113.17,14.86 +2017-10-01 23:02:00,38.2012,113.102,14.83 +2017-10-01 23:17:00,38.6937,113.072,14.79 +2017-10-01 23:32:00,39.1325,113.035,14.74 +2017-10-01 23:47:00,37.5,113.03,14.71 +2017-10-02 00:02:00,40.1162,113.02,14.67 +2017-10-02 00:17:00,38.3037,113.035,14.62 +2017-10-02 00:32:00,39.08,113.037,14.57 +2017-10-02 00:47:00,38.6425,113.062,14.53 +2017-10-02 01:02:00,38.4512,113.072,14.49 +2017-10-02 01:17:00,39.9737,113.105,14.45 +2017-10-02 01:32:00,38.69,113.107,14.42 +2017-10-02 01:47:00,38.595,113.14,14.4 +2017-10-02 02:02:00,39.6738,113.158,14.37 +2017-10-02 02:17:00,38.2525,113.188,14.36 +2017-10-02 02:32:00,37.9062,113.22,14.34 +2017-10-02 02:47:00,37.955,113.217,14.32 +2017-10-02 03:02:00,38.4487,113.2,14.31 +2017-10-02 03:17:00,38.4987,113.18,14.29 +2017-10-02 03:32:00,39.2812,113.092,14.28 +2017-10-02 03:47:00,36.915,113.025,14.26 +2017-10-02 04:02:00,38.6,112.995,14.26 +2017-10-02 04:17:00,38.3962,112.962,14.26 +2017-10-02 04:32:00,38.0037,112.955,14.24 +2017-10-02 04:47:00,38.0025,112.967,14.22 +2017-10-02 05:02:00,38.6912,112.962,14.21 +2017-10-02 05:17:00,39.875,112.992,14.19 +2017-10-02 05:32:00,38.5,113.007,14.17 +2017-10-02 05:47:00,38.5475,113.02,14.16 +2017-10-02 06:02:00,37.4525,113.035,14.14 +2017-10-02 06:17:00,38.4962,113.06,14.11 +2017-10-02 06:32:00,38.0525,113.075,14.11 +2017-10-02 06:47:00,39.575,113.09,14.1 +2017-10-02 07:02:00,38.1525,113.05,14.1 +2017-10-02 07:17:00,38.6437,112.997,14.09 +2017-10-02 07:32:00,38.5437,112.92,14.09 +2017-10-02 07:47:00,39.53,112.835,14.09 +2017-10-02 08:02:00,39.7262,112.775,14.09 +2017-10-02 08:17:00,38.785,112.775,14.09 +2017-10-02 08:32:00,38.1525,112.8,14.08 +2017-10-02 08:47:00,40.02,112.807,14.06 +2017-10-02 09:02:00,39.6263,112.817,14.04 +2017-10-02 09:17:00,38.1525,112.85,14.02 +2017-10-02 09:32:00,38.1,112.865,14.01 +2017-10-02 09:47:00,37.7562,112.89,14.01 +2017-10-02 10:02:00,39.285,112.91,13.98 +2017-10-02 10:17:00,40.3475,112.94,13.96 +2017-10-02 10:32:00,38.25,112.96,13.96 +2017-10-02 10:47:00,39.6263,113.0,13.96 +2017-10-02 11:02:00,39.385,113.092,13.96 +2017-10-02 11:17:00,38.5975,113.262,13.96 +2017-10-02 11:32:00,37.805,113.59,13.96 +2017-10-02 11:47:00,38.5462,113.92,13.96 +2017-10-02 12:02:00,39.3875,114.59,13.96 +2017-10-02 12:17:00,39.775,115.317,13.96 +2017-10-02 12:32:00,38.8825,115.882,13.95 +2017-10-02 12:47:00,39.3838,116.362,13.93 +2017-10-02 13:02:00,38.7363,116.74,13.93 +2017-10-02 13:17:00,38.6012,117.03,13.94 +2017-10-02 13:32:00,39.3812,117.217,13.96 +2017-10-02 13:47:00,37.6575,117.245,13.97 +2017-10-02 14:02:00,38.1512,117.13,13.98 +2017-10-02 14:17:00,38.305,116.985,13.98 +2017-10-02 14:32:00,38.785,116.817,13.99 +2017-10-02 14:47:00,38.6462,116.667,14.01 +2017-10-02 15:02:00,38.3025,116.505,14.03 +2017-10-02 15:17:00,38.3025,116.33,14.05 +2017-10-02 15:32:00,38.4,116.177,14.07 +2017-10-02 15:47:00,39.4325,116.037,14.07 +2017-10-02 16:02:00,39.0312,115.945,14.08 +2017-10-02 16:17:00,38.3538,115.812,14.07 +2017-10-02 16:32:00,37.9538,115.74,14.07 +2017-10-02 16:47:00,38.8325,115.62,14.06 +2017-10-02 17:02:00,38.0525,115.467,14.05 +2017-10-02 17:17:00,39.7288,115.268,14.04 +2017-10-02 17:32:00,39.3838,115.107,14.01 +2017-10-02 17:47:00,39.8262,114.947,14.0 +2017-10-02 18:02:00,36.7712,114.812,13.99 +2017-10-02 18:17:00,36.9688,114.677,13.98 +2017-10-02 18:32:00,38.69,114.545,13.98 +2017-10-02 18:47:00,39.2337,114.43,13.98 +2017-10-02 19:02:00,40.5887,114.312,13.97 +2017-10-02 19:17:00,38.2537,114.215,13.95 +2017-10-02 19:32:00,37.6012,114.135,13.95 +2017-10-02 19:47:00,38.5488,114.033,13.94 +2017-10-02 20:02:00,39.1813,113.967,13.94 +2017-10-02 20:17:00,39.4337,113.895,13.92 +2017-10-02 20:32:00,38.3012,113.847,13.91 +2017-10-02 20:47:00,37.5575,113.81,13.9 +2017-10-02 21:02:00,38.5987,113.753,13.91 +2017-10-02 21:17:00,38.5437,113.645,13.9 +2017-10-02 21:32:00,38.6437,113.515,13.88 +2017-10-02 21:47:00,38.2012,113.402,13.87 +2017-10-02 22:02:00,39.4825,113.28,13.87 +2017-10-02 22:17:00,39.8213,113.23,13.88 +2017-10-02 22:32:00,38.305,113.192,13.88 +2017-10-02 22:47:00,38.255,113.192,13.86 +2017-10-02 23:02:00,37.5037,113.262,13.85 +2017-10-02 23:17:00,38.2525,113.612,13.85 +2017-10-02 23:32:00,37.255,114.105,13.84 +2017-10-02 23:47:00,37.5013,114.56,13.82 +2017-10-03 00:02:00,39.0825,114.9,13.84 +2017-10-03 00:17:00,38.835,115.087,13.89 +2017-10-03 00:32:00,39.2337,115.232,13.85 +2017-10-03 00:47:00,38.3037,115.283,13.82 +2017-10-03 01:02:00,39.1813,115.327,13.8 +2017-10-03 01:17:00,38.98,115.402,13.79 +2017-10-03 01:32:00,38.4512,115.467,13.78 +2017-10-03 01:47:00,39.6275,115.527,13.78 +2017-10-03 02:02:00,38.105,115.582,13.78 +2017-10-03 02:17:00,38.3025,115.647,13.79 +2017-10-03 02:32:00,36.9637,115.712,13.8 +2017-10-03 02:47:00,39.2312,115.77,13.8 +2017-10-03 03:02:00,39.5262,115.852,13.79 +2017-10-03 03:17:00,36.6188,115.915,13.78 +2017-10-03 03:32:00,39.4825,115.992,13.78 +2017-10-03 03:47:00,36.6175,116.06,13.78 +2017-10-03 04:02:00,39.235,116.135,13.78 +2017-10-03 04:17:00,37.6038,116.212,13.77 +2017-10-03 04:32:00,38.7363,116.285,13.78 +2017-10-03 04:47:00,39.8763,116.35,13.79 +2017-10-03 05:02:00,37.955,116.455,13.8 +2017-10-03 05:17:00,39.775,116.545,13.82 +2017-10-03 05:32:00,37.405,116.595,13.82 +2017-10-03 05:47:00,37.7537,116.667,13.79 +2017-10-03 06:02:00,38.74,116.702,13.77 +2017-10-03 06:17:00,38.1512,116.732,13.76 +2017-10-03 06:32:00,38.835,116.753,13.74 +2017-10-03 06:47:00,39.6275,116.762,13.72 +2017-10-03 07:02:00,38.885,116.762,13.69 +2017-10-03 07:17:00,38.4012,116.757,13.7 +2017-10-03 07:32:00,38.595,116.76,13.72 +2017-10-03 07:47:00,39.1837,116.805,13.74 +2017-10-03 08:02:00,38.6937,116.835,13.74 +2017-10-03 08:17:00,37.9562,116.897,13.75 +2017-10-03 08:32:00,38.545,116.947,13.77 +2017-10-03 08:47:00,38.5437,117.03,13.8 +2017-10-03 09:02:00,38.9325,117.09,13.83 +2017-10-03 09:17:00,38.0037,117.143,13.85 +2017-10-03 09:32:00,39.775,117.235,13.83 +2017-10-03 09:47:00,38.0025,117.277,13.83 +2017-10-03 10:02:00,36.665,117.365,13.85 +2017-10-03 10:17:00,36.5713,117.43,13.89 +2017-10-03 10:32:00,39.58,117.46,13.95 +2017-10-03 10:47:00,37.8575,117.507,13.99 +2017-10-03 11:02:00,39.8237,117.555,14.0 +2017-10-03 11:17:00,38.2025,117.552,14.0 +2017-10-03 11:32:00,37.4512,117.55,14.0 +2017-10-03 11:47:00,39.2837,117.52,13.99 +2017-10-03 12:02:00,38.0512,117.408,13.97 +2017-10-03 12:17:00,37.1162,117.355,13.97 +2017-10-03 12:32:00,38.0025,117.307,13.98 +2017-10-03 12:47:00,37.0175,117.235,14.0 +2017-10-03 13:02:00,37.505,117.225,14.03 +2017-10-03 13:17:00,39.285,117.23,14.01 +2017-10-03 13:32:00,36.7725,117.262,14.0 +2017-10-03 13:47:00,39.0837,117.283,13.99 +2017-10-03 14:02:00,38.4975,117.305,14.0 +2017-10-03 14:17:00,38.835,117.262,13.99 +2017-10-03 14:32:00,39.3838,117.237,13.99 +2017-10-03 14:47:00,37.2562,117.188,14.0 +2017-10-03 15:02:00,38.6963,117.125,14.03 +2017-10-03 15:17:00,38.5987,117.085,14.03 +2017-10-03 15:32:00,37.9538,116.982,14.04 +2017-10-03 15:47:00,38.7887,116.825,14.05 +2017-10-03 16:02:00,40.1162,116.707,14.05 +2017-10-03 16:17:00,37.9538,116.505,14.04 +2017-10-03 16:32:00,37.8087,116.245,14.03 +2017-10-03 16:47:00,40.165,115.972,14.03 +2017-10-03 17:02:00,38.4962,115.717,14.04 +2017-10-03 17:17:00,38.0025,115.475,14.03 +2017-10-03 17:32:00,39.3312,115.275,14.03 +2017-10-03 17:47:00,38.4512,115.067,14.03 +2017-10-03 18:02:00,37.9025,114.91,14.06 +2017-10-03 18:17:00,38.2525,114.76,14.07 +2017-10-03 18:32:00,37.205,114.662,14.09 +2017-10-03 18:47:00,38.1963,114.555,14.11 +2017-10-03 19:02:00,38.6437,114.482,14.11 +2017-10-03 19:17:00,37.8538,114.462,14.08 +2017-10-03 19:32:00,38.4487,114.45,14.09 +2017-10-03 19:47:00,37.1113,114.447,14.1 +2017-10-03 20:02:00,38.7812,114.5,14.09 +2017-10-03 20:17:00,37.9025,114.542,14.07 +2017-10-03 20:32:00,37.0625,114.615,14.06 +2017-10-03 20:47:00,38.9313,114.7,14.05 +2017-10-03 21:02:00,38.2462,114.762,14.05 +2017-10-03 21:17:00,38.4475,114.812,14.04 +2017-10-03 21:32:00,38.495,114.86,14.03 +2017-10-03 21:47:00,38.1512,114.92,14.0 +2017-10-03 22:02:00,39.0788,114.997,13.97 +2017-10-03 22:17:00,37.555,115.095,13.94 +2017-10-03 22:32:00,38.7387,115.202,13.91 +2017-10-03 22:47:00,38.2988,115.337,13.86 +2017-10-03 23:02:00,38.4962,115.452,13.81 +2017-10-03 23:17:00,38.4487,115.597,13.78 +2017-10-03 23:32:00,37.3012,115.747,13.75 +2017-10-03 23:47:00,38.0987,115.9,13.73 +2017-10-04 00:02:00,37.3012,116.022,13.68 +2017-10-04 00:17:00,37.9487,116.16,13.65 +2017-10-04 00:32:00,37.2487,116.305,13.63 +2017-10-04 00:47:00,36.6175,116.39,13.61 +2017-10-04 01:02:00,36.4212,116.503,13.59 +2017-10-04 01:17:00,37.0638,116.607,13.57 +2017-10-04 01:32:00,38.495,116.71,13.54 +2017-10-04 01:47:00,37.7038,116.775,13.51 +2017-10-04 02:02:00,37.3512,116.812,13.51 +2017-10-04 02:17:00,38.0525,116.817,13.51 +2017-10-04 02:32:00,37.2025,116.827,13.5 +2017-10-04 02:47:00,37.8575,116.83,13.48 +2017-10-04 03:02:00,35.6413,116.847,13.47 +2017-10-04 03:17:00,37.6562,116.875,13.46 +2017-10-04 03:32:00,38.2475,116.92,13.46 +2017-10-04 03:47:00,37.7537,116.967,13.44 +2017-10-04 04:02:00,38.3012,117.018,13.42 +2017-10-04 04:17:00,38.5975,117.055,13.43 +2017-10-04 04:32:00,36.715,117.08,13.42 +2017-10-04 04:47:00,39.3312,117.105,13.41 +2017-10-04 05:02:00,37.4,117.162,13.4 +2017-10-04 05:17:00,39.18,117.17,13.39 +2017-10-04 05:32:00,37.7012,117.177,13.39 +2017-10-04 05:47:00,37.255,117.15,13.37 +2017-10-04 06:02:00,37.2062,117.12,13.35 +2017-10-04 06:17:00,38.9287,117.05,13.33 +2017-10-04 06:32:00,36.6188,116.947,13.32 +2017-10-04 06:47:00,37.8063,116.855,13.31 +2017-10-04 07:02:00,37.7062,116.715,13.3 +2017-10-04 07:17:00,38.3538,116.562,13.28 +2017-10-04 07:32:00,37.6025,116.447,13.29 +2017-10-04 07:47:00,38.4975,116.575,13.29 +2017-10-04 08:02:00,37.3525,117.075,13.28 +2017-10-04 08:17:00,37.2025,117.205,13.29 +2017-10-04 08:32:00,38.1512,117.005,13.27 +2017-10-04 08:47:00,37.015,116.697,13.25 +2017-10-04 09:02:00,37.6012,116.35,13.26 +2017-10-04 09:17:00,38.5975,116.025,13.27 +2017-10-04 09:32:00,38.93,115.805,13.26 +2017-10-04 09:47:00,37.8587,115.647,13.24 +2017-10-04 10:02:00,37.8112,115.485,13.22 +2017-10-04 10:17:00,37.7062,115.337,13.21 +2017-10-04 10:32:00,37.0687,115.167,13.19 +2017-10-04 10:47:00,38.25,115.067,13.19 +2017-10-04 11:02:00,38.2038,115.005,13.19 +2017-10-04 11:17:00,37.705,114.987,13.18 +2017-10-04 11:32:00,37.5575,115.08,13.19 +2017-10-04 11:47:00,38.3063,115.122,13.19 +2017-10-04 12:02:00,38.885,115.24,13.18 +2017-10-04 12:17:00,37.9075,115.387,13.19 +2017-10-04 12:32:00,37.7562,115.6,13.2 +2017-10-04 12:47:00,38.785,115.852,13.2 +2017-10-04 13:02:00,38.7363,116.152,13.21 +2017-10-04 13:17:00,36.1362,116.49,13.23 +2017-10-04 13:32:00,38.8325,116.912,13.24 +2017-10-04 13:47:00,38.1562,117.315,13.25 +2017-10-04 14:02:00,38.2537,117.72,13.25 +2017-10-04 14:17:00,39.2312,118.17,13.25 +2017-10-04 14:32:00,36.47,118.61,13.24 +2017-10-04 14:47:00,38.5,119.007,13.22 +2017-10-04 15:02:00,38.7862,119.397,13.21 +2017-10-04 15:17:00,38.4475,119.712,13.21 +2017-10-04 15:32:00,38.735,120.025,13.21 +2017-10-04 15:47:00,38.4938,120.327,13.21 +2017-10-04 16:02:00,37.7575,120.587,13.21 +2017-10-04 16:17:00,38.1,120.802,13.2 +2017-10-04 16:32:00,38.6925,121.012,13.17 +2017-10-04 16:47:00,39.4825,121.175,13.16 +2017-10-04 17:02:00,37.115,121.277,13.14 +2017-10-04 17:17:00,37.2525,121.38,13.12 +2017-10-04 17:32:00,39.13,121.415,13.09 +2017-10-04 17:47:00,37.91,121.435,13.06 +2017-10-04 18:02:00,37.9512,121.42,13.04 +2017-10-04 18:17:00,38.1488,121.355,13.03 +2017-10-04 18:32:00,38.4962,121.295,13.02 +2017-10-04 18:47:00,37.7062,121.225,13.01 +2017-10-04 19:02:00,38.9337,121.11,13.0 +2017-10-04 19:17:00,39.525,121.005,12.98 +2017-10-04 19:32:00,39.8275,120.807,12.97 +2017-10-04 19:47:00,39.925,120.61,12.97 +2017-10-04 20:02:00,38.1488,120.362,12.93 +2017-10-04 20:17:00,37.8587,120.18,12.9 +2017-10-04 20:32:00,37.5563,120.0,12.88 +2017-10-04 20:47:00,39.5737,119.835,12.88 +2017-10-04 21:02:00,39.435,119.695,12.87 +2017-10-04 21:17:00,38.5462,119.582,12.85 +2017-10-04 21:32:00,37.8063,119.447,12.82 +2017-10-04 21:47:00,38.93,119.372,12.81 +2017-10-04 22:02:00,38.4487,119.275,12.81 +2017-10-04 22:17:00,36.33,119.195,12.79 +2017-10-04 22:32:00,40.1137,119.077,12.77 +2017-10-04 22:47:00,37.1137,118.98,12.76 +2017-10-04 23:02:00,39.6287,118.852,12.75 +2017-10-04 23:17:00,38.0013,118.747,12.75 +2017-10-04 23:32:00,37.8613,118.64,12.75 +2017-10-04 23:47:00,38.4,118.542,12.74 +2017-10-05 00:02:00,37.0137,118.387,12.72 +2017-10-05 00:17:00,36.8175,118.21,12.71 +2017-10-05 00:32:00,38.05,118.082,12.71 +2017-10-05 00:47:00,37.065,117.975,12.71 +2017-10-05 01:02:00,38.4487,117.87,12.71 +2017-10-05 01:17:00,39.2787,117.802,12.71 +2017-10-05 01:32:00,38.6462,117.768,12.71 +2017-10-05 01:47:00,38.4012,117.702,12.71 +2017-10-05 02:02:00,36.8138,117.65,12.71 +2017-10-05 02:17:00,36.0875,117.582,12.71 +2017-10-05 02:32:00,38.255,117.518,12.7 +2017-10-05 02:47:00,37.9062,117.485,12.69 +2017-10-05 03:02:00,39.6762,117.42,12.69 +2017-10-05 03:17:00,37.1587,117.427,12.69 +2017-10-05 03:32:00,38.4525,117.415,12.69 +2017-10-05 03:47:00,38.7875,117.423,12.66 +2017-10-05 04:02:00,37.6038,117.43,12.64 +2017-10-05 04:17:00,37.705,117.445,12.63 +2017-10-05 04:32:00,37.605,117.447,12.62 +2017-10-05 04:47:00,40.1125,117.452,12.62 +2017-10-05 05:02:00,38.5962,117.417,12.61 +2017-10-05 05:17:00,39.9287,117.382,12.6 +2017-10-05 05:32:00,39.3288,117.325,12.58 +2017-10-05 05:47:00,40.3025,117.292,12.56 +2017-10-05 06:02:00,37.6038,117.287,12.55 +2017-10-05 06:17:00,38.45,117.31,12.52 +2017-10-05 06:32:00,39.0275,117.342,12.5 +2017-10-05 06:47:00,39.6275,117.385,12.48 +2017-10-05 07:02:00,38.4512,117.445,12.46 +2017-10-05 07:17:00,38.7375,117.505,12.45 +2017-10-05 07:32:00,38.6,117.492,12.45 +2017-10-05 07:47:00,37.255,117.515,12.45 +2017-10-05 08:02:00,37.2575,117.557,12.45 +2017-10-05 08:17:00,36.6663,117.597,12.45 +2017-10-05 08:32:00,38.6,117.652,12.46 +2017-10-05 08:47:00,38.695,117.732,12.52 +2017-10-05 09:02:00,36.5725,117.837,12.57 +2017-10-05 09:17:00,37.805,117.935,12.57 +2017-10-05 09:32:00,36.7738,118.05,12.57 +2017-10-05 09:47:00,39.4837,118.147,12.56 +2017-10-05 10:02:00,37.3063,118.257,12.52 +2017-10-05 10:17:00,38.6925,118.355,12.49 +2017-10-05 10:32:00,37.2075,118.427,12.48 +2017-10-05 10:47:00,37.5575,118.45,12.48 +2017-10-05 11:02:00,40.2625,118.442,12.51 +2017-10-05 11:17:00,38.8812,118.42,12.55 +2017-10-05 11:32:00,37.6587,118.337,12.57 +2017-10-05 11:47:00,38.7862,118.272,12.58 +2017-10-05 12:02:00,38.5975,118.102,12.59 +2017-10-05 12:17:00,38.9812,117.957,12.64 +2017-10-05 12:32:00,38.5987,117.81,12.68 +2017-10-05 12:47:00,37.6087,117.387,12.69 +2017-10-05 13:02:00,39.1362,117.0,12.67 +2017-10-05 13:17:00,38.6925,116.345,12.66 +2017-10-05 13:32:00,38.4525,115.875,12.67 +2017-10-05 13:47:00,38.3037,115.237,12.68 +2017-10-05 14:02:00,37.7562,114.908,12.68 +2017-10-05 14:17:00,37.7575,114.612,12.67 +2017-10-05 14:32:00,37.8587,114.485,12.65 +2017-10-05 14:47:00,39.1325,114.372,12.62 +2017-10-05 15:02:00,38.7862,114.285,12.6 +2017-10-05 15:17:00,38.835,114.105,12.58 +2017-10-05 15:32:00,39.2825,113.967,12.55 +2017-10-05 15:47:00,38.7425,113.795,12.54 +2017-10-05 16:02:00,38.0037,113.577,12.52 +2017-10-05 16:17:00,39.285,113.332,12.51 +2017-10-05 16:32:00,39.1375,113.005,12.53 +2017-10-05 16:47:00,39.385,112.91,12.56 +2017-10-05 17:02:00,39.9238,112.72,12.57 +2017-10-05 17:17:00,38.885,112.577,12.56 +2017-10-05 17:32:00,39.8775,112.548,12.57 +2017-10-05 17:47:00,37.1612,112.582,12.57 +2017-10-05 18:02:00,38.9337,112.632,12.58 +2017-10-05 18:17:00,39.3288,112.762,12.59 +2017-10-05 18:32:00,39.1325,112.895,12.59 +2017-10-05 18:47:00,39.7288,113.087,12.59 +2017-10-05 19:02:00,38.3988,113.222,12.6 +2017-10-05 19:17:00,39.1325,113.408,12.6 +2017-10-05 19:32:00,40.2588,113.562,12.58 +2017-10-05 19:47:00,38.4512,113.695,12.55 +2017-10-05 20:02:00,38.0537,113.805,12.5 +2017-10-05 20:17:00,37.7062,113.887,12.47 +2017-10-05 20:32:00,39.6787,113.95,12.44 +2017-10-05 20:47:00,38.1,113.925,12.38 +2017-10-05 21:02:00,39.235,113.885,12.35 +2017-10-05 21:17:00,37.2562,113.783,12.31 +2017-10-05 21:32:00,38.3025,113.71,12.29 +2017-10-05 21:47:00,37.3512,113.69,12.25 +2017-10-05 22:02:00,38.5962,113.65,12.21 +2017-10-05 22:17:00,39.7262,113.575,12.16 +2017-10-05 22:32:00,37.8575,113.07,12.12 +2017-10-05 22:47:00,38.935,112.457,12.08 +2017-10-05 23:02:00,38.6912,112.005,12.05 +2017-10-05 23:17:00,37.4,111.705,12.01 +2017-10-05 23:32:00,37.9075,111.51,11.96 +2017-10-05 23:47:00,37.605,111.39,11.91 +2017-10-06 00:02:00,40.0713,111.283,11.87 +2017-10-06 00:17:00,38.25,111.207,11.84 +2017-10-06 00:32:00,38.6462,111.197,11.81 +2017-10-06 00:47:00,39.5788,111.135,11.8 +2017-10-06 01:02:00,38.9788,111.09,11.78 +2017-10-06 01:17:00,38.9337,110.995,11.78 +2017-10-06 01:32:00,38.4012,110.88,11.78 +2017-10-06 01:47:00,38.255,110.702,11.76 +2017-10-06 02:02:00,39.285,110.565,11.74 +2017-10-06 02:17:00,39.9737,110.475,11.73 +2017-10-06 02:32:00,39.7262,110.487,11.73 +2017-10-06 02:47:00,39.525,110.457,11.72 +2017-10-06 03:02:00,39.7775,110.417,11.72 +2017-10-06 03:17:00,39.5762,110.4,11.7 +2017-10-06 03:32:00,38.3538,110.415,11.7 +2017-10-06 03:47:00,39.3825,110.42,11.68 +2017-10-06 04:02:00,38.3525,110.432,11.67 +2017-10-06 04:17:00,39.575,110.472,11.67 +2017-10-06 04:32:00,38.6437,110.487,11.66 +2017-10-06 04:47:00,39.6275,110.527,11.65 +2017-10-06 05:02:00,39.6762,110.482,11.63 +2017-10-06 05:17:00,39.3812,110.435,11.62 +2017-10-06 05:32:00,39.5775,110.622,11.61 +2017-10-06 05:47:00,40.3962,111.605,11.59 +2017-10-06 06:02:00,38.6437,112.322,11.58 +2017-10-06 06:17:00,39.1325,112.737,11.57 +2017-10-06 06:32:00,39.5775,112.95,11.56 +2017-10-06 06:47:00,39.7288,112.965,11.55 +2017-10-06 07:02:00,40.4938,112.955,11.56 +2017-10-06 07:17:00,40.3988,112.855,11.57 +2017-10-06 07:32:00,39.8262,112.76,11.57 +2017-10-06 07:47:00,39.6275,112.74,11.58 +2017-10-06 08:02:00,39.2325,112.58,11.6 +2017-10-06 08:17:00,39.675,112.507,11.6 +2017-10-06 08:32:00,41.32,112.477,11.6 +2017-10-06 08:47:00,39.2325,112.325,11.6 +2017-10-06 09:02:00,39.9262,112.205,11.62 +2017-10-06 09:17:00,39.9238,112.11,11.64 +2017-10-06 09:32:00,39.3337,112.025,11.66 +2017-10-06 09:47:00,40.02,111.92,11.67 +2017-10-06 10:02:00,38.5462,111.832,11.68 +2017-10-06 10:17:00,39.4837,111.717,11.69 +2017-10-06 10:32:00,37.5575,111.537,11.7 +2017-10-06 10:47:00,39.1813,111.457,11.72 +2017-10-06 11:02:00,39.3812,111.287,11.73 +2017-10-06 11:17:00,40.9887,111.09,11.73 +2017-10-06 11:32:00,38.6937,111.082,11.73 +2017-10-06 11:47:00,39.93,111.07,11.74 +2017-10-06 12:02:00,40.1175,111.137,11.74 +2017-10-06 12:17:00,37.9538,111.145,11.75 +2017-10-06 12:32:00,39.1312,111.405,11.78 +2017-10-06 12:47:00,37.5563,111.617,11.79 +2017-10-06 13:02:00,38.645,111.935,11.8 +2017-10-06 13:17:00,38.9825,112.285,11.8 +2017-10-06 13:32:00,38.645,112.68,11.8 +2017-10-06 13:47:00,39.7738,113.035,11.8 +2017-10-06 14:02:00,40.2162,113.367,11.8 +2017-10-06 14:17:00,38.5987,113.742,11.8 +2017-10-06 14:32:00,38.98,114.018,11.83 +2017-10-06 14:47:00,40.0212,114.315,11.85 +2017-10-06 15:02:00,38.695,114.465,11.85 +2017-10-06 15:17:00,40.4962,114.605,11.83 +2017-10-06 15:32:00,39.1312,114.63,11.81 +2017-10-06 15:47:00,38.0512,114.612,11.79 +2017-10-06 16:02:00,38.3012,114.622,11.79 +2017-10-06 16:17:00,39.2825,114.565,11.79 +2017-10-06 16:32:00,38.9337,114.49,11.78 +2017-10-06 16:47:00,39.18,114.417,11.77 +2017-10-06 17:02:00,39.8775,114.315,11.75 +2017-10-06 17:17:00,38.54,114.27,11.75 +2017-10-06 17:32:00,38.0525,114.257,11.76 +2017-10-06 17:47:00,37.805,114.24,11.76 +2017-10-06 18:02:00,37.0587,114.283,11.75 +2017-10-06 18:17:00,38.3538,114.342,11.75 +2017-10-06 18:32:00,39.5762,114.367,11.76 +2017-10-06 18:47:00,38.45,114.387,11.76 +2017-10-06 19:02:00,38.69,114.36,11.75 +2017-10-06 19:17:00,39.3312,114.28,11.75 +2017-10-06 19:32:00,39.9238,114.11,11.73 +2017-10-06 19:47:00,38.5025,113.9,11.72 +2017-10-06 20:02:00,41.0325,113.688,11.71 +2017-10-06 20:17:00,40.6925,113.462,11.7 +2017-10-06 20:32:00,40.07,113.232,11.69 +2017-10-06 20:47:00,40.0662,112.965,11.67 +2017-10-06 21:02:00,40.495,112.705,11.66 +2017-10-06 21:17:00,40.0662,112.35,11.64 +2017-10-06 21:32:00,39.675,112.0,11.63 +2017-10-06 21:47:00,40.0238,111.637,11.61 +2017-10-06 22:02:00,41.3675,111.245,11.6 +2017-10-06 22:17:00,41.62,110.878,11.58 +2017-10-06 22:32:00,40.7363,110.495,11.56 +2017-10-06 22:47:00,39.7262,110.097,11.56 +2017-10-06 23:02:00,41.2225,109.72,11.56 +2017-10-06 23:17:00,39.435,109.37,11.55 +2017-10-06 23:32:00,40.2625,109.012,11.53 +2017-10-06 23:47:00,40.7387,108.645,11.52 +2017-10-07 00:02:00,41.3237,108.26,11.51 +2017-10-07 00:17:00,40.3975,107.915,11.51 +2017-10-07 00:32:00,40.2588,107.622,11.49 +2017-10-07 00:47:00,40.9812,107.408,11.48 +2017-10-07 01:02:00,39.0262,107.272,11.46 +2017-10-07 01:17:00,41.1275,107.182,11.46 +2017-10-07 01:32:00,39.33,107.143,11.47 +2017-10-07 01:47:00,39.0788,107.13,11.45 +2017-10-07 02:02:00,40.1612,107.16,11.44 +2017-10-07 02:17:00,40.3462,107.15,11.43 +2017-10-07 02:32:00,38.8312,107.202,11.42 +2017-10-07 02:47:00,40.585,107.242,11.41 +2017-10-07 03:02:00,39.8225,107.322,11.39 +2017-10-07 03:17:00,39.4788,107.395,11.36 +2017-10-07 03:32:00,39.525,107.492,11.35 +2017-10-07 03:47:00,40.26,107.59,11.35 +2017-10-07 04:02:00,41.365,107.695,11.34 +2017-10-07 04:17:00,41.0275,107.742,11.33 +2017-10-07 04:32:00,41.2738,107.75,11.33 +2017-10-07 04:47:00,38.3512,107.747,11.33 +2017-10-07 05:02:00,40.9837,107.768,11.33 +2017-10-07 05:17:00,39.3812,107.847,11.32 +2017-10-07 05:32:00,39.4313,107.945,11.31 +2017-10-07 05:47:00,39.9262,108.087,11.31 +2017-10-07 06:02:00,40.59,108.227,11.31 +2017-10-07 06:17:00,39.5275,108.397,11.32 +2017-10-07 06:32:00,41.2712,108.54,11.32 +2017-10-07 06:47:00,40.115,108.625,11.33 +2017-10-07 07:02:00,42.26,108.695,11.35 +2017-10-07 07:17:00,41.1263,108.715,11.35 +2017-10-07 07:32:00,39.2775,108.755,11.35 +2017-10-07 07:47:00,41.7687,108.822,11.37 +2017-10-07 08:02:00,40.5387,108.967,11.4 +2017-10-07 08:17:00,40.3525,109.128,11.42 +2017-10-07 08:32:00,39.6263,109.272,11.45 +2017-10-07 08:47:00,39.7237,109.41,11.47 +2017-10-07 09:02:00,40.49,109.537,11.47 +2017-10-07 09:17:00,40.165,109.677,11.47 +2017-10-07 09:32:00,39.67,109.71,11.46 +2017-10-07 09:47:00,40.4925,109.787,11.47 +2017-10-07 10:02:00,40.6912,109.827,11.5 +2017-10-07 10:17:00,40.4925,109.947,11.52 +2017-10-07 10:32:00,40.1637,109.927,11.51 +2017-10-07 10:47:00,40.5413,109.97,11.5 +2017-10-07 11:02:00,39.7212,109.992,11.51 +2017-10-07 11:17:00,40.0662,110.045,11.52 +2017-10-07 11:32:00,39.1312,110.057,11.52 +2017-10-07 11:47:00,39.8225,110.067,11.53 +2017-10-07 12:02:00,38.1987,110.087,11.52 +2017-10-07 12:17:00,39.7237,110.165,11.52 +2017-10-07 12:32:00,40.3,110.262,11.51 +2017-10-07 12:47:00,40.6875,110.393,11.51 +2017-10-07 13:02:00,40.8862,110.525,11.5 +2017-10-07 13:17:00,39.8262,110.67,11.47 +2017-10-07 13:32:00,40.305,110.802,11.47 +2017-10-07 13:47:00,39.7738,110.992,11.46 +2017-10-07 14:02:00,39.6712,111.173,11.46 +2017-10-07 14:17:00,40.8838,111.36,11.44 +2017-10-07 14:32:00,40.3462,111.545,11.44 +2017-10-07 14:47:00,40.7887,111.717,11.44 +2017-10-07 15:02:00,38.6413,111.887,11.45 +2017-10-07 15:17:00,40.64,112.027,11.45 +2017-10-07 15:32:00,40.2087,112.152,11.45 +2017-10-07 15:47:00,37.755,112.275,11.44 +2017-10-07 16:02:00,37.9012,112.34,11.45 +2017-10-07 16:17:00,41.1687,112.378,11.46 +2017-10-07 16:32:00,38.5912,112.298,11.46 +2017-10-07 16:47:00,40.3475,112.18,11.46 +2017-10-07 17:02:00,39.625,112.062,11.46 +2017-10-07 17:17:00,40.2125,111.987,11.46 +2017-10-07 17:32:00,39.875,111.92,11.47 +2017-10-07 17:47:00,41.3175,111.837,11.47 +2017-10-07 18:02:00,39.4337,111.8,11.46 +2017-10-07 18:17:00,39.2288,111.757,11.46 +2017-10-07 18:32:00,39.9212,111.705,11.46 +2017-10-07 18:47:00,39.5275,111.622,11.46 +2017-10-07 19:02:00,39.7225,111.55,11.45 +2017-10-07 19:17:00,39.3288,111.477,11.45 +2017-10-07 19:32:00,40.4925,111.46,11.44 +2017-10-07 19:47:00,38.9287,111.427,11.43 +2017-10-07 20:02:00,38.7862,111.372,11.42 +2017-10-07 20:17:00,39.9712,111.345,11.42 +2017-10-07 20:32:00,39.0287,111.272,11.41 +2017-10-07 20:47:00,40.3025,111.16,11.39 +2017-10-07 21:02:00,40.4412,111.037,11.38 +2017-10-07 21:17:00,41.27,110.95,11.38 +2017-10-07 21:32:00,39.4788,110.9,11.37 +2017-10-07 21:47:00,39.8725,110.882,11.36 +2017-10-07 22:02:00,38.4925,110.915,11.34 +2017-10-07 22:17:00,39.2775,111.003,11.33 +2017-10-07 22:32:00,40.785,110.945,11.32 +2017-10-07 22:47:00,39.7738,111.035,11.31 +2017-10-07 23:02:00,41.1263,111.035,11.3 +2017-10-07 23:17:00,39.9662,111.055,11.28 +2017-10-07 23:32:00,41.9062,111.11,11.26 +2017-10-07 23:47:00,40.5375,111.11,11.25 +2017-10-08 00:02:00,41.1725,111.18,11.25 +2017-10-08 00:17:00,40.2562,111.265,11.25 +2017-10-08 00:32:00,40.5863,111.317,11.23 +2017-10-08 00:47:00,40.02,111.372,11.22 +2017-10-08 01:02:00,41.125,111.417,11.22 +2017-10-08 01:17:00,40.3012,111.432,11.22 +2017-10-08 01:32:00,41.22,111.427,11.21 +2017-10-08 01:47:00,40.2087,111.415,11.2 +2017-10-08 02:02:00,40.26,111.455,11.19 +2017-10-08 02:17:00,40.2125,111.497,11.19 +2017-10-08 02:32:00,39.675,111.56,11.19 +2017-10-08 02:47:00,41.2162,111.637,11.2 +2017-10-08 03:02:00,40.54,111.75,11.19 +2017-10-08 03:17:00,40.9313,111.855,11.18 +2017-10-08 03:32:00,38.0987,111.957,11.19 +2017-10-08 03:47:00,39.92,112.067,11.2 +2017-10-08 04:02:00,40.4425,112.2,11.2 +2017-10-08 04:17:00,40.5863,112.312,11.2 +2017-10-08 04:32:00,39.5737,112.408,11.19 +2017-10-08 04:47:00,41.3125,112.472,11.19 +2017-10-08 05:02:00,40.9337,112.562,11.2 +2017-10-08 05:17:00,39.075,112.65,11.2 +2017-10-08 05:32:00,39.5225,112.792,11.19 +2017-10-08 05:47:00,39.0287,112.882,11.19 +2017-10-08 06:02:00,39.5662,112.95,11.19 +2017-10-08 06:17:00,39.38,113.015,11.19 +2017-10-08 06:32:00,40.685,113.762,11.2 +2017-10-08 06:47:00,39.38,114.775,11.21 +2017-10-08 07:02:00,40.5875,115.22,11.21 +2017-10-08 07:17:00,38.2012,114.955,11.2 +2017-10-08 07:32:00,42.1562,114.4,11.2 +2017-10-08 07:47:00,38.2988,114.018,11.21 +2017-10-08 08:02:00,39.5737,113.872,11.22 +2017-10-08 08:17:00,40.11,113.775,11.24 +2017-10-08 08:32:00,40.93,113.732,11.25 +2017-10-08 08:47:00,39.5238,113.697,11.26 +2017-10-08 09:02:00,40.8337,113.707,11.27 +2017-10-08 09:17:00,41.4175,113.705,11.3 +2017-10-08 09:32:00,39.8737,113.75,11.32 +2017-10-08 09:47:00,39.4788,113.8,11.36 +2017-10-08 10:02:00,39.7725,113.875,11.4 +2017-10-08 10:17:00,40.8825,113.955,11.43 +2017-10-08 10:32:00,40.3012,114.048,11.44 +2017-10-08 10:47:00,41.3675,114.087,11.47 +2017-10-08 11:02:00,40.6875,114.155,11.46 +2017-10-08 11:17:00,39.725,114.158,11.47 +2017-10-08 11:32:00,40.1663,114.155,11.5 +2017-10-08 11:47:00,40.1125,114.158,11.55 +2017-10-08 12:02:00,40.3025,114.232,11.6 +2017-10-08 12:17:00,39.08,114.315,11.59 +2017-10-08 12:32:00,39.4287,114.423,11.58 +2017-10-08 12:47:00,38.7825,114.49,11.59 +2017-10-08 13:02:00,39.675,114.605,11.57 +2017-10-08 13:17:00,39.8737,114.71,11.57 +2017-10-08 13:32:00,39.285,114.857,11.58 +2017-10-08 13:47:00,38.3,114.987,11.58 +2017-10-08 14:02:00,39.6738,115.11,11.58 +2017-10-08 14:17:00,39.5725,115.2,11.58 +2017-10-08 14:32:00,39.67,115.272,11.59 +2017-10-08 14:47:00,40.3025,115.352,11.6 +2017-10-08 15:02:00,40.8825,115.42,11.61 +2017-10-08 15:17:00,41.075,115.507,11.61 +2017-10-08 15:32:00,39.7212,115.533,11.6 +2017-10-08 15:47:00,40.44,115.545,11.6 +2017-10-08 16:02:00,41.4688,115.505,11.6 +2017-10-08 16:17:00,40.3925,115.457,11.62 +2017-10-08 16:32:00,40.735,115.447,11.64 +2017-10-08 16:47:00,40.6413,115.49,11.64 +2017-10-08 17:02:00,40.305,115.545,11.65 +2017-10-08 17:17:00,39.6237,115.635,11.66 +2017-10-08 17:32:00,38.6937,115.722,11.66 +2017-10-08 17:47:00,40.4912,115.822,11.67 +2017-10-08 18:02:00,41.1225,115.923,11.66 +2017-10-08 18:17:00,41.57,116.04,11.65 +2017-10-08 18:32:00,39.8737,116.152,11.65 +2017-10-08 18:47:00,39.72,116.272,11.65 +2017-10-08 19:02:00,39.3275,116.367,11.65 +2017-10-08 19:17:00,39.8237,116.48,11.65 +2017-10-08 19:32:00,39.5775,116.57,11.64 +2017-10-08 19:47:00,39.4313,116.675,11.63 +2017-10-08 20:02:00,39.235,116.76,11.61 +2017-10-08 20:17:00,40.0687,116.795,11.61 +2017-10-08 20:32:00,40.69,116.78,11.6 +2017-10-08 20:47:00,38.9775,116.753,11.58 +2017-10-08 21:02:00,40.065,116.702,11.58 +2017-10-08 21:17:00,38.5938,116.737,11.58 +2017-10-08 21:32:00,40.6425,116.77,11.57 +2017-10-08 21:47:00,39.9212,116.822,11.55 +2017-10-08 22:02:00,40.9362,116.897,11.53 +2017-10-08 22:17:00,39.6263,116.96,11.51 +2017-10-08 22:32:00,39.5287,117.02,11.47 +2017-10-08 22:47:00,40.4437,117.077,11.44 +2017-10-08 23:02:00,38.6937,117.128,11.42 +2017-10-08 23:17:00,39.8275,117.165,11.37 +2017-10-08 23:32:00,40.2125,117.21,11.33 +2017-10-08 23:47:00,39.5788,117.24,11.29 +2017-10-09 00:02:00,38.5437,117.212,11.25 +2017-10-09 00:17:00,38.3988,117.192,11.21 +2017-10-09 00:32:00,38.3,117.185,11.18 +2017-10-09 00:47:00,40.165,117.16,11.15 +2017-10-09 01:02:00,39.925,117.143,11.13 +2017-10-09 01:17:00,39.8262,117.07,11.12 +2017-10-09 01:32:00,39.4812,116.96,11.1 +2017-10-09 01:47:00,40.3012,116.845,11.08 +2017-10-09 02:02:00,39.28,116.762,11.08 +2017-10-09 02:17:00,38.8337,116.725,11.06 +2017-10-09 02:32:00,38.4962,116.715,11.06 +2017-10-09 02:47:00,40.0662,116.722,11.05 +2017-10-09 03:02:00,38.0,116.735,11.05 +2017-10-09 03:17:00,40.0687,116.765,11.04 +2017-10-09 03:32:00,39.675,116.772,11.03 +2017-10-09 03:47:00,39.8737,116.787,11.02 +2017-10-09 04:02:00,40.0675,116.772,11.02 +2017-10-09 04:17:00,38.5425,116.777,11.01 +2017-10-09 04:32:00,40.54,116.8,11.01 +2017-10-09 04:47:00,40.5387,116.837,11.01 +2017-10-09 05:02:00,40.3975,116.852,11.01 +2017-10-09 05:17:00,39.5287,116.862,11.0 +2017-10-09 05:32:00,40.6912,116.84,10.99 +2017-10-09 05:47:00,39.7225,116.783,10.97 +2017-10-09 06:02:00,38.645,116.717,10.96 +2017-10-09 06:17:00,38.5975,116.637,10.95 +2017-10-09 06:32:00,40.6888,116.552,10.93 +2017-10-09 06:47:00,39.235,116.462,10.92 +2017-10-09 07:02:00,39.23,116.395,10.92 +2017-10-09 07:17:00,38.9812,116.402,10.93 +2017-10-09 07:32:00,40.0212,116.43,10.94 +2017-10-09 07:47:00,40.4925,116.497,10.95 +2017-10-09 08:02:00,39.4788,116.557,10.96 +2017-10-09 08:17:00,40.165,116.637,10.97 +2017-10-09 08:32:00,39.1787,116.71,10.98 +2017-10-09 08:47:00,39.3812,116.79,11.01 +2017-10-09 09:02:00,40.7875,116.887,11.02 +2017-10-09 09:17:00,38.2525,116.957,11.03 +2017-10-09 09:32:00,39.775,117.045,11.04 +2017-10-09 09:47:00,40.7387,117.102,11.04 +2017-10-09 10:02:00,41.42,117.097,11.02 +2017-10-09 10:17:00,40.69,117.097,11.03 +2017-10-09 10:32:00,39.2787,117.077,11.04 +2017-10-09 10:47:00,41.0812,117.035,11.05 +2017-10-09 11:02:00,39.2288,116.952,11.07 +2017-10-09 11:17:00,40.3512,116.878,11.09 +2017-10-09 11:32:00,38.2988,116.835,11.13 +2017-10-09 11:47:00,39.2288,116.842,11.15 +2017-10-09 12:02:00,40.1125,116.862,11.18 +2017-10-09 12:17:00,38.5938,116.925,11.23 +2017-10-09 12:32:00,40.015,116.965,11.24 +2017-10-09 12:47:00,38.9287,117.067,11.26 +2017-10-09 13:02:00,39.725,117.173,11.32 +2017-10-09 13:17:00,38.3487,117.257,11.36 +2017-10-09 13:32:00,40.0662,117.375,11.37 +2017-10-09 13:47:00,39.5275,117.515,11.37 +2017-10-09 14:02:00,39.1787,117.675,11.39 +2017-10-09 14:17:00,38.6475,117.9,11.42 +2017-10-09 14:32:00,39.7237,118.13,11.43 +2017-10-09 14:47:00,39.4325,118.4,11.43 +2017-10-09 15:02:00,38.9775,118.695,11.44 +2017-10-09 15:17:00,38.0025,118.95,11.44 +2017-10-09 15:32:00,39.0275,119.242,11.45 +2017-10-09 15:47:00,38.9775,119.52,11.46 +2017-10-09 16:02:00,39.0788,119.777,11.47 +2017-10-09 16:17:00,39.7738,120.06,11.48 +2017-10-09 16:32:00,38.7375,120.298,11.49 +2017-10-09 16:47:00,39.5762,120.56,11.49 +2017-10-09 17:02:00,38.4925,120.885,11.49 +2017-10-09 17:17:00,39.38,121.237,11.5 +2017-10-09 17:32:00,37.6038,121.56,11.5 +2017-10-09 17:47:00,39.7288,121.89,11.49 +2017-10-09 18:02:00,39.9712,122.202,11.49 +2017-10-09 18:17:00,38.9275,122.5,11.49 +2017-10-09 18:32:00,39.23,122.765,11.49 +2017-10-09 18:47:00,39.6725,123.0,11.5 +2017-10-09 19:02:00,36.7162,123.197,11.5 +2017-10-09 19:17:00,38.45,123.345,11.49 +2017-10-09 19:32:00,38.5975,123.503,11.49 +2017-10-09 19:47:00,39.4313,123.643,11.5 +2017-10-09 20:02:00,38.7875,123.768,11.5 +2017-10-09 20:17:00,38.7363,123.857,11.5 +2017-10-09 20:32:00,38.2513,123.9,11.5 +2017-10-09 20:47:00,38.1,123.91,11.5 +2017-10-09 21:02:00,38.5025,123.875,11.49 +2017-10-09 21:17:00,39.08,123.817,11.48 +2017-10-09 21:32:00,38.15,123.74,11.47 +2017-10-09 21:47:00,37.7537,123.697,11.45 +2017-10-09 22:02:00,38.83,123.632,11.43 +2017-10-09 22:17:00,40.9837,123.57,11.42 +2017-10-09 22:32:00,38.1512,123.505,11.4 +2017-10-09 22:47:00,39.9688,123.432,11.4 +2017-10-09 23:02:00,39.9238,123.36,11.38 +2017-10-09 23:17:00,38.55,123.285,11.37 +2017-10-09 23:32:00,38.3487,123.197,11.37 +2017-10-09 23:47:00,39.43,123.145,11.37 +2017-10-10 00:02:00,38.2012,123.097,11.37 +2017-10-10 00:17:00,38.1012,123.035,11.37 +2017-10-10 00:32:00,38.545,122.967,11.38 +2017-10-10 00:47:00,38.5925,122.938,11.39 +2017-10-10 01:02:00,39.0775,122.867,11.4 +2017-10-10 01:17:00,39.1825,122.768,11.4 +2017-10-10 01:32:00,38.8812,122.647,11.41 +2017-10-10 01:47:00,39.2862,122.522,11.41 +2017-10-10 02:02:00,39.825,122.435,11.41 +2017-10-10 02:17:00,39.3312,122.402,11.41 +2017-10-10 02:32:00,39.525,122.408,11.42 +2017-10-10 02:47:00,38.5462,122.438,11.42 +2017-10-10 03:02:00,39.4788,122.48,11.42 +2017-10-10 03:17:00,41.22,122.518,11.43 +2017-10-10 03:32:00,40.2562,122.58,11.42 +2017-10-10 03:47:00,36.8675,122.643,11.42 +2017-10-10 04:02:00,39.5275,122.68,11.41 +2017-10-10 04:17:00,40.2625,122.735,11.4 +2017-10-10 04:32:00,39.725,122.775,11.41 +2017-10-10 04:47:00,39.575,122.827,11.4 +2017-10-10 05:02:00,38.5987,122.87,11.4 +2017-10-10 05:17:00,39.5287,122.927,11.4 +2017-10-10 05:32:00,40.1125,122.982,11.4 +2017-10-10 05:47:00,40.5413,123.035,11.39 +2017-10-10 06:02:00,37.4025,123.082,11.38 +2017-10-10 06:17:00,39.0837,123.105,11.38 +2017-10-10 06:32:00,39.6762,123.13,11.37 +2017-10-10 06:47:00,38.495,123.15,11.36 +2017-10-10 07:02:00,38.8825,123.16,11.36 +2017-10-10 07:17:00,38.1512,123.185,11.36 +2017-10-10 07:32:00,39.5713,123.205,11.36 +2017-10-10 07:47:00,39.7762,123.257,11.36 +2017-10-10 08:02:00,38.4938,123.29,11.37 +2017-10-10 08:17:00,39.0837,123.337,11.4 +2017-10-10 08:32:00,39.28,123.387,11.41 +2017-10-10 08:47:00,36.865,123.42,11.41 +2017-10-10 09:02:00,38.2525,123.452,11.43 +2017-10-10 09:17:00,39.7762,123.55,11.44 +2017-10-10 09:32:00,38.7387,123.807,11.44 +2017-10-10 09:47:00,39.8275,124.052,11.48 +2017-10-10 10:02:00,40.7887,124.275,11.53 +2017-10-10 10:17:00,40.1175,124.462,11.54 +2017-10-10 10:32:00,39.5762,124.6,11.54 +2017-10-10 10:47:00,39.5775,124.69,11.54 +2017-10-10 11:02:00,39.5737,124.76,11.56 +2017-10-10 11:17:00,38.6012,124.775,11.59 +2017-10-10 11:32:00,39.2312,124.762,11.6 +2017-10-10 11:47:00,37.86,124.707,11.6 +2017-10-10 12:02:00,39.3312,124.617,11.62 +2017-10-10 12:17:00,37.9538,124.497,11.64 +2017-10-10 12:32:00,37.6025,124.402,11.66 +2017-10-10 12:47:00,40.0212,124.305,11.68 +2017-10-10 13:02:00,39.6237,124.262,11.7 +2017-10-10 13:17:00,39.8763,124.255,11.73 +2017-10-10 13:32:00,38.5962,124.268,11.76 +2017-10-10 13:47:00,38.4463,124.275,11.8 +2017-10-10 14:02:00,41.0312,124.292,11.8 +2017-10-10 14:17:00,39.0812,124.315,11.81 +2017-10-10 14:32:00,39.7237,124.337,11.82 +2017-10-10 14:47:00,38.5413,124.337,11.83 +2017-10-10 15:02:00,37.6537,124.357,11.85 +2017-10-10 15:17:00,40.7887,124.352,11.85 +2017-10-10 15:32:00,39.3812,124.365,11.85 +2017-10-10 15:47:00,39.5775,124.378,11.85 +2017-10-10 16:02:00,40.5925,124.347,11.85 +2017-10-10 16:17:00,37.5537,124.292,11.86 +2017-10-10 16:32:00,39.3262,124.182,11.86 +2017-10-10 16:47:00,40.1637,124.057,11.86 +2017-10-10 17:02:00,39.2337,123.908,11.85 +2017-10-10 17:17:00,40.2113,123.79,11.84 +2017-10-10 17:32:00,39.0812,123.71,11.82 +2017-10-10 17:47:00,40.115,123.647,11.81 +2017-10-10 18:02:00,39.3288,123.615,11.8 +2017-10-10 18:17:00,39.4362,123.572,11.81 +2017-10-10 18:32:00,38.8312,123.53,11.83 +2017-10-10 18:47:00,37.6562,123.5,11.83 +2017-10-10 19:02:00,38.835,123.46,11.81 +2017-10-10 19:17:00,39.0275,123.415,11.8 +2017-10-10 19:32:00,39.0812,123.355,11.8 +2017-10-10 19:47:00,37.5037,123.34,11.79 +2017-10-10 20:02:00,39.4337,123.302,11.78 +2017-10-10 20:17:00,40.3988,123.242,11.78 +2017-10-10 20:32:00,38.0013,123.137,11.79 +2017-10-10 20:47:00,38.55,123.022,11.81 +2017-10-10 21:02:00,39.08,122.885,11.82 +2017-10-10 21:17:00,38.0475,122.777,11.82 +2017-10-10 21:32:00,39.3838,122.688,11.83 +2017-10-10 21:47:00,38.2025,122.643,11.83 +2017-10-10 22:02:00,39.8775,122.615,11.83 +2017-10-10 22:17:00,37.9525,122.595,11.84 +2017-10-10 22:32:00,38.0025,122.587,11.85 +2017-10-10 22:47:00,38.6475,122.565,11.84 +2017-10-10 23:02:00,38.3037,122.545,11.85 +2017-10-10 23:17:00,38.8787,122.505,11.86 +2017-10-10 23:32:00,39.2312,122.495,11.85 +2017-10-10 23:47:00,37.1575,122.467,11.85 +2017-10-11 00:02:00,38.7862,122.438,11.87 +2017-10-11 00:17:00,39.1312,122.387,11.87 +2017-10-11 00:32:00,38.595,122.345,11.88 +2017-10-11 00:47:00,38.3487,122.275,11.88 +2017-10-11 01:02:00,38.7375,122.16,11.88 +2017-10-11 01:17:00,39.0788,122.03,11.87 +2017-10-11 01:32:00,38.0475,121.878,11.87 +2017-10-11 01:47:00,39.9725,121.78,11.87 +2017-10-11 02:02:00,38.2513,121.688,11.88 +2017-10-11 02:17:00,38.1025,121.592,11.89 +2017-10-11 02:32:00,38.3512,121.507,11.89 +2017-10-11 02:47:00,38.25,121.412,11.89 +2017-10-11 03:02:00,40.115,121.342,11.89 +2017-10-11 03:17:00,39.1312,121.283,11.89 +2017-10-11 03:32:00,38.0525,121.215,11.89 +2017-10-11 03:47:00,39.0287,121.16,11.88 +2017-10-11 04:02:00,39.0275,121.082,11.87 +2017-10-11 04:17:00,38.1,121.005,11.87 +2017-10-11 04:32:00,38.7363,120.923,11.88 +2017-10-11 04:47:00,37.655,120.85,11.89 +2017-10-11 05:02:00,38.545,120.747,11.89 +2017-10-11 05:17:00,39.1862,120.64,11.89 +2017-10-11 05:32:00,38.2525,120.505,11.89 +2017-10-11 05:47:00,38.6437,120.317,11.9 +2017-10-11 06:02:00,38.1512,120.125,11.9 +2017-10-11 06:17:00,38.7363,119.915,11.9 +2017-10-11 06:32:00,36.8162,119.732,11.91 +2017-10-11 06:47:00,39.135,119.605,11.9 +2017-10-11 07:02:00,39.2825,119.505,11.9 +2017-10-11 07:17:00,39.4825,119.472,11.93 +2017-10-11 07:32:00,38.4475,119.485,11.95 +2017-10-11 07:47:00,39.7275,119.48,11.98 +2017-10-11 08:02:00,38.6462,119.49,11.99 +2017-10-11 08:17:00,38.93,119.475,12.01 +2017-10-11 08:32:00,39.1263,119.497,12.02 +2017-10-11 08:47:00,40.0212,119.46,12.04 +2017-10-11 09:02:00,37.9037,119.34,12.07 +2017-10-11 09:17:00,38.4,119.17,12.12 +2017-10-11 09:32:00,39.08,118.995,12.14 +2017-10-11 09:47:00,38.595,118.81,12.18 +2017-10-11 10:02:00,39.0275,118.582,12.23 +2017-10-11 10:17:00,37.6562,118.46,12.29 +2017-10-11 10:32:00,38.6912,118.247,12.32 +2017-10-11 10:47:00,39.0275,118.185,12.33 +2017-10-11 11:02:00,39.1813,118.135,12.37 +2017-10-11 11:17:00,39.2325,118.08,12.43 +2017-10-11 11:32:00,39.0287,117.97,12.5 +2017-10-11 11:47:00,39.2312,117.893,12.52 +2017-10-11 12:02:00,37.95,117.81,12.5 +2017-10-11 12:17:00,38.6462,117.78,12.51 +2017-10-11 12:32:00,38.8337,117.765,12.5 +2017-10-11 12:47:00,37.0137,117.802,12.52 +2017-10-11 13:02:00,37.4512,117.79,12.55 +2017-10-11 13:17:00,38.0512,117.812,12.58 +2017-10-11 13:32:00,39.6725,117.825,12.6 +2017-10-11 13:47:00,39.33,117.8,12.63 +2017-10-11 14:02:00,40.2125,117.712,12.64 +2017-10-11 14:17:00,39.3288,117.637,12.66 +2017-10-11 14:32:00,38.7375,117.512,12.67 +2017-10-11 14:47:00,38.6925,117.347,12.68 +2017-10-11 15:02:00,38.3975,117.182,12.7 +2017-10-11 15:17:00,37.6562,116.942,12.69 +2017-10-11 15:32:00,39.9725,116.662,12.69 +2017-10-11 15:47:00,39.5812,116.29,12.7 +2017-10-11 16:02:00,38.4012,115.923,12.71 +2017-10-11 16:17:00,39.2812,115.572,12.72 +2017-10-11 16:32:00,39.5762,115.242,12.71 +2017-10-11 16:47:00,38.2513,114.912,12.71 +2017-10-11 17:02:00,38.45,114.602,12.72 +2017-10-11 17:17:00,37.605,114.315,12.74 +2017-10-11 17:32:00,38.5013,114.05,12.77 +2017-10-11 17:47:00,39.7275,113.827,12.78 +2017-10-11 18:02:00,39.6738,113.62,12.79 +2017-10-11 18:17:00,39.6775,113.442,12.82 +2017-10-11 18:32:00,37.555,113.305,12.84 +2017-10-11 18:47:00,38.4012,113.158,12.85 +2017-10-11 19:02:00,39.4337,113.06,12.84 +2017-10-11 19:17:00,40.02,112.995,12.85 +2017-10-11 19:32:00,39.4325,112.98,12.86 +2017-10-11 19:47:00,39.675,112.977,12.87 +2017-10-11 20:02:00,38.4487,112.952,12.85 +2017-10-11 20:17:00,40.2125,112.945,12.84 +2017-10-11 20:32:00,39.3337,112.94,12.83 +2017-10-11 20:47:00,38.3512,113.018,12.81 +2017-10-11 21:02:00,37.2525,113.105,12.8 +2017-10-11 21:17:00,38.6925,113.255,12.8 +2017-10-11 21:32:00,38.975,113.445,12.77 +2017-10-11 21:47:00,38.98,113.655,12.73 +2017-10-11 22:02:00,40.8862,113.923,12.73 +2017-10-11 22:17:00,38.9788,114.202,12.72 +2017-10-11 22:32:00,38.6475,114.503,12.7 +2017-10-11 22:47:00,39.2775,114.802,12.65 +2017-10-11 23:02:00,40.4912,115.147,12.61 +2017-10-11 23:17:00,38.6475,115.457,12.59 +2017-10-11 23:32:00,38.7862,115.798,12.58 +2017-10-11 23:47:00,40.1137,116.14,12.55 +2017-10-12 00:02:00,39.48,116.485,12.53 +2017-10-12 00:17:00,40.5863,116.772,12.5 +2017-10-12 00:32:00,37.4525,117.042,12.48 +2017-10-12 00:47:00,39.9262,117.29,12.47 +2017-10-12 01:02:00,37.9525,117.507,12.47 +2017-10-12 01:17:00,39.4287,117.727,12.44 +2017-10-12 01:32:00,37.8562,117.967,12.43 +2017-10-12 01:47:00,40.4437,118.197,12.42 +2017-10-12 02:02:00,40.4912,118.427,12.43 +2017-10-12 02:17:00,39.5287,118.7,12.45 +2017-10-12 02:32:00,38.9313,118.96,12.43 +2017-10-12 02:47:00,39.285,119.24,12.43 +2017-10-12 03:02:00,37.955,119.492,12.44 +2017-10-12 03:17:00,40.7412,119.75,12.44 +2017-10-12 03:32:00,39.4287,120.003,12.44 +2017-10-12 03:47:00,40.0662,120.232,12.44 +2017-10-12 04:02:00,39.9238,120.45,12.44 +2017-10-12 04:17:00,39.4812,120.628,12.44 +2017-10-12 04:32:00,39.0775,120.815,12.44 +2017-10-12 04:47:00,39.7288,120.962,12.46 +2017-10-12 05:02:00,37.555,121.102,12.46 +2017-10-12 05:17:00,40.0163,121.222,12.45 +2017-10-12 05:32:00,38.5938,121.285,12.45 +2017-10-12 05:47:00,39.8737,121.317,12.45 +2017-10-12 06:02:00,40.1637,121.327,12.46 +2017-10-12 06:17:00,40.7875,121.345,12.44 +2017-10-12 06:32:00,39.13,121.405,12.42 +2017-10-12 06:47:00,40.4938,121.442,12.4 +2017-10-12 07:02:00,39.6237,121.525,12.38 +2017-10-12 07:17:00,40.1687,121.607,12.41 +2017-10-12 07:32:00,39.2812,121.71,12.42 +2017-10-12 07:47:00,39.385,121.772,12.4 +2017-10-12 08:02:00,40.3988,121.832,12.39 +2017-10-12 08:17:00,40.4912,121.83,12.41 +2017-10-12 08:32:00,39.1813,121.893,12.42 +2017-10-12 08:47:00,40.445,121.825,12.43 +2017-10-12 09:02:00,39.725,121.887,12.45 +2017-10-12 09:17:00,40.0625,121.938,12.47 +2017-10-12 09:32:00,41.17,121.972,12.49 +2017-10-12 09:47:00,40.2588,122.025,12.49 +2017-10-12 10:02:00,40.0638,122.128,12.48 +2017-10-12 10:17:00,39.9688,122.287,12.5 +2017-10-12 10:32:00,40.7825,122.285,12.53 +2017-10-12 10:47:00,40.26,122.32,12.55 +2017-10-12 11:02:00,40.0638,122.375,12.59 +2017-10-12 11:17:00,39.9675,122.442,12.62 +2017-10-12 11:32:00,39.6762,122.46,12.67 +2017-10-12 11:47:00,40.3462,122.487,12.69 +2017-10-12 12:02:00,39.8275,122.525,12.7 +2017-10-12 12:17:00,40.1625,122.555,12.74 +2017-10-12 12:32:00,38.9775,122.57,12.75 +2017-10-12 12:47:00,40.2575,122.497,12.76 +2017-10-12 13:02:00,39.3825,122.52,12.79 +2017-10-12 13:17:00,39.4313,122.415,12.79 +2017-10-12 13:32:00,40.065,122.42,12.78 +2017-10-12 13:47:00,39.4325,122.455,12.79 +2017-10-12 14:02:00,38.9287,122.52,12.78 +2017-10-12 14:17:00,38.045,122.587,12.77 +2017-10-12 14:32:00,39.1813,122.64,12.75 +2017-10-12 14:47:00,39.8737,122.705,12.75 +2017-10-12 15:02:00,40.59,122.753,12.74 +2017-10-12 15:17:00,39.3812,122.787,12.75 +2017-10-12 15:32:00,41.6675,122.807,12.76 +2017-10-12 15:47:00,39.2812,122.847,12.75 +2017-10-12 16:02:00,40.395,122.905,12.75 +2017-10-12 16:17:00,39.4325,122.932,12.74 +2017-10-12 16:32:00,39.925,122.972,12.75 +2017-10-12 16:47:00,38.9313,122.98,12.73 +2017-10-12 17:02:00,39.4837,122.977,12.72 +2017-10-12 17:17:00,40.6912,122.942,12.72 +2017-10-12 17:32:00,39.5737,122.885,12.72 +2017-10-12 17:47:00,39.9212,122.783,12.71 +2017-10-12 18:02:00,38.8812,122.717,12.72 +2017-10-12 18:17:00,38.5,122.652,12.73 +2017-10-12 18:32:00,40.2125,122.662,12.73 +2017-10-12 18:47:00,40.255,122.658,12.73 +2017-10-12 19:02:00,39.7775,122.662,12.75 +2017-10-12 19:17:00,38.595,122.662,12.77 +2017-10-12 19:32:00,40.3025,122.675,12.76 +2017-10-12 19:47:00,41.2687,122.685,12.74 +2017-10-12 20:02:00,39.23,122.685,12.73 +2017-10-12 20:17:00,38.695,122.667,12.71 +2017-10-12 20:32:00,39.625,122.66,12.69 +2017-10-12 20:47:00,39.975,122.645,12.66 +2017-10-12 21:02:00,39.4837,122.64,12.65 +2017-10-12 21:17:00,40.1137,122.647,12.64 +2017-10-12 21:32:00,38.9825,122.64,12.64 +2017-10-12 21:47:00,40.0638,122.597,12.62 +2017-10-12 22:02:00,39.0788,122.505,12.6 +2017-10-12 22:17:00,39.975,122.39,12.58 +2017-10-12 22:32:00,40.2125,122.268,12.58 +2017-10-12 22:47:00,39.33,122.222,12.54 +2017-10-12 23:02:00,40.2575,122.19,12.51 +2017-10-12 23:17:00,40.8862,122.192,12.5 +2017-10-12 23:32:00,39.5737,122.202,12.49 +2017-10-12 23:47:00,39.08,122.232,12.48 +2017-10-13 00:02:00,39.97,122.247,12.48 +2017-10-13 00:17:00,38.6925,122.275,12.49 +2017-10-13 00:32:00,39.9688,122.31,12.47 +2017-10-13 00:47:00,38.7862,122.357,12.45 +2017-10-13 01:02:00,40.21,122.372,12.45 +2017-10-13 01:17:00,39.4337,122.405,12.44 +2017-10-13 01:32:00,39.33,122.447,12.42 +2017-10-13 01:47:00,38.4962,122.457,12.42 +2017-10-13 02:02:00,39.9688,122.505,12.43 +2017-10-13 02:17:00,40.4938,122.507,12.45 +2017-10-13 02:32:00,38.645,122.485,12.45 +2017-10-13 02:47:00,40.395,122.425,12.44 +2017-10-13 03:02:00,39.4337,122.367,12.43 +2017-10-13 03:17:00,39.0825,122.287,12.44 +2017-10-13 03:32:00,40.5387,122.235,12.43 +2017-10-13 03:47:00,38.5462,122.222,12.41 +2017-10-13 04:02:00,38.9337,122.22,12.38 +2017-10-13 04:17:00,39.6237,122.232,12.37 +2017-10-13 04:32:00,40.445,122.24,12.36 +2017-10-13 04:47:00,38.88,122.253,12.34 +2017-10-13 05:02:00,38.8312,122.27,12.32 +2017-10-13 05:17:00,40.84,122.3,12.29 +2017-10-13 05:32:00,39.0225,122.345,12.27 +2017-10-13 05:47:00,39.48,122.375,12.23 +2017-10-13 06:02:00,39.2312,122.387,12.24 +2017-10-13 06:17:00,39.7712,122.395,12.24 +2017-10-13 06:32:00,40.2588,122.362,12.21 +2017-10-13 06:47:00,38.5962,122.325,12.22 +2017-10-13 07:02:00,39.925,122.292,12.21 +2017-10-13 07:17:00,40.1162,122.25,12.2 +2017-10-13 07:32:00,39.9225,122.575,12.2 +2017-10-13 07:47:00,40.1625,123.22,12.22 +2017-10-13 08:02:00,38.1038,123.485,12.25 +2017-10-13 08:17:00,39.7288,123.28,12.27 +2017-10-13 08:32:00,38.74,122.925,12.28 +2017-10-13 08:47:00,38.935,122.62,12.3 +2017-10-13 09:02:00,38.545,122.395,12.33 +2017-10-13 09:17:00,41.0762,122.237,12.38 +2017-10-13 09:32:00,39.1787,122.122,12.39 +2017-10-13 09:47:00,40.2562,122.065,12.43 +2017-10-13 10:02:00,40.9825,122.07,12.48 +2017-10-13 10:17:00,41.5687,122.085,12.5 +2017-10-13 10:32:00,41.27,122.075,12.54 +2017-10-13 10:47:00,39.6237,122.003,12.62 +2017-10-13 11:02:00,41.0337,121.925,12.66 +2017-10-13 11:17:00,40.215,121.885,12.69 +2017-10-13 11:32:00,41.3175,121.862,12.73 +2017-10-13 11:47:00,39.6725,121.867,12.76 +2017-10-13 12:02:00,40.9812,121.902,12.77 +2017-10-13 12:17:00,39.1787,121.932,12.78 +2017-10-13 12:32:00,38.8825,121.987,12.8 +2017-10-13 12:47:00,40.215,122.007,12.83 +2017-10-13 13:02:00,40.0225,122.055,12.87 +2017-10-13 13:17:00,38.6937,122.135,12.89 +2017-10-13 13:32:00,39.6237,122.232,12.9 +2017-10-13 13:47:00,40.395,122.32,12.9 +2017-10-13 14:02:00,38.4,122.44,12.9 +2017-10-13 14:17:00,41.9087,122.565,12.9 +2017-10-13 14:32:00,39.8225,122.688,12.89 +2017-10-13 14:47:00,40.26,122.855,12.89 +2017-10-13 15:02:00,39.9225,123.007,12.89 +2017-10-13 15:17:00,41.5212,123.17,12.9 +2017-10-13 15:32:00,39.4337,123.342,12.93 +2017-10-13 15:47:00,40.4425,123.48,12.94 +2017-10-13 16:02:00,38.88,123.605,12.95 +2017-10-13 16:17:00,38.7887,123.772,12.95 +2017-10-13 16:32:00,40.3512,123.927,12.95 +2017-10-13 16:47:00,40.1162,124.122,12.96 +2017-10-13 17:02:00,40.07,124.317,12.96 +2017-10-13 17:17:00,39.5275,124.48,12.95 +2017-10-13 17:32:00,40.8375,124.673,12.96 +2017-10-13 17:47:00,39.6225,124.85,12.99 +2017-10-13 18:02:00,39.2775,125.042,13.0 +2017-10-13 18:17:00,40.1137,125.207,13.02 +2017-10-13 18:32:00,40.7887,125.378,13.03 +2017-10-13 18:47:00,41.7687,125.512,13.02 +2017-10-13 19:02:00,41.5238,125.643,13.01 +2017-10-13 19:17:00,39.13,125.735,13.03 +2017-10-13 19:32:00,39.6738,125.827,13.03 +2017-10-13 19:47:00,40.49,125.91,13.03 +2017-10-13 20:02:00,40.165,125.992,13.02 +2017-10-13 20:17:00,40.26,126.015,13.0 +2017-10-13 20:32:00,40.3487,125.997,12.99 +2017-10-13 20:47:00,39.7738,125.925,12.98 +2017-10-13 21:02:00,40.7913,125.852,12.97 +2017-10-13 21:17:00,39.9275,125.792,12.95 +2017-10-13 21:32:00,39.4812,125.747,12.93 +2017-10-13 21:47:00,40.5887,125.717,12.92 +2017-10-13 22:02:00,40.1637,125.7,12.9 +2017-10-13 22:17:00,40.2612,125.67,12.89 +2017-10-13 22:32:00,40.2575,125.652,12.87 +2017-10-13 22:47:00,40.6925,125.637,12.85 +2017-10-13 23:02:00,40.7887,125.635,12.84 +2017-10-13 23:17:00,39.1362,125.62,12.85 +2017-10-13 23:32:00,39.4788,125.592,12.85 +2017-10-13 23:47:00,39.625,125.557,12.85 +2017-10-14 00:02:00,39.0312,125.533,12.85 +2017-10-14 00:17:00,40.9837,125.49,12.84 +2017-10-14 00:32:00,40.5437,125.425,12.84 +2017-10-14 00:47:00,40.4962,125.302,12.84 +2017-10-14 01:02:00,40.215,125.165,12.83 +2017-10-14 01:17:00,41.1762,125.027,12.83 +2017-10-14 01:32:00,40.7412,124.895,12.84 +2017-10-14 01:47:00,41.2762,124.79,12.85 +2017-10-14 02:02:00,39.5312,124.695,12.83 +2017-10-14 02:17:00,39.2812,124.595,12.83 +2017-10-14 02:32:00,39.5762,124.48,12.84 +2017-10-14 02:47:00,39.4325,124.417,12.83 +2017-10-14 03:02:00,39.9712,124.332,12.82 +2017-10-14 03:17:00,40.8337,124.292,12.82 +2017-10-14 03:32:00,41.9625,124.277,12.82 +2017-10-14 03:47:00,40.0675,124.295,12.8 +2017-10-14 04:02:00,40.49,124.307,12.76 +2017-10-14 04:17:00,39.7237,124.29,12.74 +2017-10-14 04:32:00,40.59,124.275,12.73 +2017-10-14 04:47:00,40.1675,124.25,12.73 +2017-10-14 05:02:00,40.5875,124.21,12.72 +2017-10-14 05:17:00,40.1137,124.155,12.68 +2017-10-14 05:32:00,40.6888,124.055,12.65 +2017-10-14 05:47:00,39.5762,123.917,12.62 +2017-10-14 06:02:00,40.1137,123.76,12.6 +2017-10-14 06:17:00,38.8812,123.607,12.59 +2017-10-14 06:32:00,39.7237,123.47,12.59 +2017-10-14 06:47:00,40.64,123.385,12.58 +2017-10-14 07:02:00,41.1263,123.322,12.58 +2017-10-14 07:17:00,40.255,123.3,12.57 +2017-10-14 07:32:00,40.7325,123.302,12.57 +2017-10-14 07:47:00,41.075,123.29,12.58 +2017-10-14 08:02:00,40.1162,123.29,12.59 +2017-10-14 08:17:00,40.1637,124.075,12.59 +2017-10-14 08:32:00,39.1825,125.062,12.62 +2017-10-14 08:47:00,41.0312,125.505,12.65 +2017-10-14 09:02:00,39.1813,125.412,12.63 +2017-10-14 09:17:00,39.6263,124.783,12.67 +2017-10-14 09:32:00,40.3525,124.095,12.71 +2017-10-14 09:47:00,40.3525,123.548,12.76 +2017-10-14 10:02:00,41.72,123.152,12.81 +2017-10-14 10:17:00,40.3063,122.88,12.87 +2017-10-14 10:32:00,38.7837,122.725,12.91 +2017-10-14 10:47:00,38.7837,122.64,12.96 +2017-10-14 11:02:00,39.97,122.552,13.0 +2017-10-14 11:17:00,41.3213,122.51,13.05 +2017-10-14 11:32:00,39.6775,122.535,13.09 +2017-10-14 11:47:00,40.1637,122.535,13.1 +2017-10-14 12:02:00,40.785,122.537,13.11 +2017-10-14 12:17:00,39.9238,122.527,13.14 +2017-10-14 12:32:00,40.9825,122.503,13.17 +2017-10-14 12:47:00,39.7775,122.472,13.21 +2017-10-14 13:02:00,40.065,122.39,13.23 +2017-10-14 13:17:00,40.3975,122.26,13.25 +2017-10-14 13:32:00,40.9375,122.152,13.28 +2017-10-14 13:47:00,40.0725,122.075,13.28 +2017-10-14 14:02:00,40.7887,122.09,13.3 +2017-10-14 14:17:00,39.9725,122.097,13.3 +2017-10-14 14:32:00,41.315,122.132,13.31 +2017-10-14 14:47:00,39.97,122.12,13.29 +2017-10-14 15:02:00,40.3975,122.112,13.3 +2017-10-14 15:17:00,40.9825,122.115,13.31 +2017-10-14 15:32:00,40.0175,122.143,13.33 +2017-10-14 15:47:00,40.4887,122.143,13.34 +2017-10-14 16:02:00,41.5687,122.15,13.36 +2017-10-14 16:17:00,40.115,122.173,13.38 +2017-10-14 16:32:00,39.085,122.167,13.39 +2017-10-14 16:47:00,40.3512,122.175,13.41 +2017-10-14 17:02:00,39.485,122.147,13.44 +2017-10-14 17:17:00,40.2125,122.128,13.46 +2017-10-14 17:32:00,40.2113,122.03,13.48 +2017-10-14 17:47:00,40.0662,121.925,13.51 +2017-10-14 18:02:00,40.84,121.837,13.53 +2017-10-14 18:17:00,39.1362,121.755,13.56 +2017-10-14 18:32:00,39.4825,121.722,13.58 +2017-10-14 18:47:00,40.8375,121.712,13.59 +2017-10-14 19:02:00,40.59,121.697,13.61 +2017-10-14 19:17:00,41.37,121.737,13.63 +2017-10-14 19:32:00,41.035,121.787,13.64 +2017-10-14 19:47:00,39.1825,121.85,13.65 +2017-10-14 20:02:00,40.4475,121.905,13.65 +2017-10-14 20:17:00,40.17,121.935,13.66 +2017-10-14 20:32:00,39.63,121.94,13.65 +2017-10-14 20:47:00,38.6975,121.93,13.65 +2017-10-14 21:02:00,40.7438,121.952,13.63 +2017-10-14 21:17:00,39.4362,121.985,13.62 +2017-10-14 21:32:00,40.2637,121.997,13.6 +2017-10-14 21:47:00,39.5812,121.975,13.58 +2017-10-14 22:02:00,38.55,121.89,13.55 +2017-10-14 22:17:00,39.6312,121.792,13.52 +2017-10-14 22:32:00,39.185,121.732,13.49 +2017-10-14 22:47:00,38.3575,121.702,13.46 +2017-10-14 23:02:00,39.7775,121.69,13.44 +2017-10-14 23:17:00,39.385,121.705,13.42 +2017-10-14 23:32:00,41.8675,121.715,13.39 +2017-10-14 23:47:00,39.8812,121.737,13.38 +2017-10-15 00:02:00,40.5462,121.735,13.38 +2017-10-15 00:17:00,40.5925,121.775,13.36 +2017-10-15 00:32:00,39.1875,121.798,13.37 +2017-10-15 00:47:00,41.82,121.827,13.37 +2017-10-15 01:02:00,40.9887,121.86,13.37 +2017-10-15 01:17:00,38.455,121.875,13.37 +2017-10-15 01:32:00,39.3375,121.885,13.38 +2017-10-15 01:47:00,39.9762,121.915,13.37 +2017-10-15 02:02:00,39.83,121.915,13.38 +2017-10-15 02:17:00,39.5775,121.878,13.39 +2017-10-15 02:32:00,38.3063,121.812,13.39 +2017-10-15 02:47:00,41.5238,121.73,13.38 +2017-10-15 03:02:00,38.9837,121.667,13.37 +2017-10-15 03:17:00,39.1862,121.622,13.37 +2017-10-15 03:32:00,39.78,121.605,13.36 +2017-10-15 03:47:00,40.745,121.605,13.34 +2017-10-15 04:02:00,39.4863,121.62,13.31 +2017-10-15 04:17:00,40.1637,121.67,13.28 +2017-10-15 04:32:00,38.3512,121.71,13.26 +2017-10-15 04:47:00,40.4012,121.73,13.23 +2017-10-15 05:02:00,40.2612,121.755,13.21 +2017-10-15 05:17:00,40.4962,121.79,13.18 +2017-10-15 05:32:00,38.4037,121.815,13.14 +2017-10-15 05:47:00,39.875,121.835,13.1 +2017-10-15 06:02:00,39.0875,121.85,13.08 +2017-10-15 06:17:00,41.7725,121.862,13.04 +2017-10-15 06:32:00,41.5238,121.865,13.01 +2017-10-15 06:47:00,42.0112,121.89,12.98 +2017-10-15 07:02:00,40.2625,121.902,12.96 +2017-10-15 07:17:00,39.035,121.902,12.94 +2017-10-15 07:32:00,39.1837,121.89,12.94 +2017-10-15 07:47:00,39.135,121.867,12.93 +2017-10-15 08:02:00,38.5013,121.945,12.92 +2017-10-15 08:17:00,38.8875,122.11,12.93 +2017-10-15 08:32:00,41.225,122.155,12.94 +2017-10-15 08:47:00,40.3087,122.027,12.94 +2017-10-15 09:02:00,40.1663,121.795,12.95 +2017-10-15 09:17:00,37.7087,121.602,12.97 +2017-10-15 09:32:00,40.0262,121.505,13.0 +2017-10-15 09:47:00,39.975,121.432,13.02 +2017-10-15 10:02:00,40.84,121.4,13.05 +2017-10-15 10:17:00,41.3688,121.415,13.09 +2017-10-15 10:32:00,40.3525,121.43,13.11 +2017-10-15 10:47:00,40.5462,121.47,13.15 +2017-10-15 11:02:00,39.1338,121.535,13.2 +2017-10-15 11:17:00,41.035,121.582,13.23 +2017-10-15 11:32:00,40.2188,121.647,13.27 +2017-10-15 11:47:00,40.1212,121.682,13.31 +2017-10-15 12:02:00,40.1175,121.712,13.33 +2017-10-15 12:17:00,41.3737,121.768,13.37 +2017-10-15 12:32:00,40.265,121.805,13.39 +2017-10-15 12:47:00,39.88,121.807,13.42 +2017-10-15 13:02:00,40.065,121.85,13.43 +2017-10-15 13:17:00,39.7288,121.822,13.44 +2017-10-15 13:32:00,39.2862,121.802,13.46 +2017-10-15 13:47:00,39.9275,121.787,13.47 +2017-10-15 14:02:00,39.5325,121.792,13.48 +2017-10-15 14:17:00,40.3538,121.787,13.48 +2017-10-15 14:32:00,38.9313,121.82,13.49 +2017-10-15 14:47:00,38.2025,121.84,13.49 +2017-10-15 15:02:00,40.6437,121.875,13.51 +2017-10-15 15:17:00,39.8288,121.91,13.52 +2017-10-15 15:32:00,39.2325,121.927,13.53 +2017-10-15 15:47:00,39.5312,121.947,13.54 +2017-10-15 16:02:00,40.2625,121.972,13.55 +2017-10-15 16:17:00,39.3838,121.987,13.57 +2017-10-15 16:32:00,38.5488,122.018,13.59 +2017-10-15 16:47:00,40.0225,122.045,13.61 +2017-10-15 17:02:00,37.66,122.07,13.62 +2017-10-15 17:17:00,39.3363,122.092,13.64 +2017-10-15 17:32:00,39.18,122.097,13.65 +2017-10-15 17:47:00,38.7887,122.082,13.68 +2017-10-15 18:02:00,39.03,122.05,13.69 +2017-10-15 18:17:00,39.3862,122.022,13.71 +2017-10-15 18:32:00,38.5987,122.018,13.73 +2017-10-15 18:47:00,39.4412,122.033,13.75 +2017-10-15 19:02:00,39.8838,122.018,13.77 +2017-10-15 19:17:00,38.055,122.012,13.78 +2017-10-15 19:32:00,39.5362,121.997,13.8 +2017-10-15 19:47:00,39.385,122.033,13.8 +2017-10-15 20:02:00,39.9313,122.052,13.79 +2017-10-15 20:17:00,39.83,122.065,13.79 +2017-10-15 20:32:00,39.7762,122.095,13.79 +2017-10-15 20:47:00,41.2225,122.112,13.79 +2017-10-15 21:02:00,38.305,122.13,13.78 +2017-10-15 21:17:00,40.8862,122.135,13.76 +2017-10-15 21:32:00,39.2837,122.152,13.73 +2017-10-15 21:47:00,40.5437,122.165,13.71 +2017-10-15 22:02:00,39.2825,122.175,13.69 +2017-10-15 22:17:00,39.8825,122.143,13.66 +2017-10-15 22:32:00,38.7925,122.08,13.64 +2017-10-15 22:47:00,39.485,122.052,13.61 +2017-10-15 23:02:00,40.5437,122.0,13.59 +2017-10-15 23:17:00,39.78,122.005,13.58 +2017-10-15 23:32:00,38.8375,121.992,13.57 +2017-10-15 23:47:00,38.8838,121.997,13.55 +2017-10-16 00:02:00,39.1837,121.992,13.55 +2017-10-16 00:17:00,39.8737,121.997,13.54 +2017-10-16 00:32:00,39.1387,122.027,13.53 +2017-10-16 00:47:00,39.3875,122.03,13.52 +2017-10-16 01:02:00,38.2038,122.042,13.53 +2017-10-16 01:17:00,39.6787,122.045,13.52 +2017-10-16 01:32:00,40.4487,122.045,13.52 +2017-10-16 01:47:00,39.4362,122.05,13.51 +2017-10-16 02:02:00,37.4538,122.01,13.52 +2017-10-16 02:17:00,39.5812,121.947,13.52 +2017-10-16 02:32:00,39.0812,121.86,13.51 +2017-10-16 02:47:00,39.7275,121.783,13.51 +2017-10-16 03:02:00,39.9287,121.727,13.5 +2017-10-16 03:17:00,40.0225,121.71,13.48 +2017-10-16 03:32:00,40.6937,121.682,13.48 +2017-10-16 03:47:00,39.9287,121.675,13.45 +2017-10-16 04:02:00,40.0212,121.688,13.42 +2017-10-16 04:17:00,39.7288,121.72,13.4 +2017-10-16 04:32:00,39.0837,121.712,13.37 +2017-10-16 04:47:00,39.485,121.715,13.33 +2017-10-16 05:02:00,39.5312,121.72,13.31 +2017-10-16 05:17:00,38.4525,121.742,13.27 +2017-10-16 05:32:00,39.53,121.745,13.24 +2017-10-16 05:47:00,38.8387,121.75,13.2 +2017-10-16 06:02:00,39.6275,121.745,13.17 +2017-10-16 06:17:00,39.3875,121.71,13.13 +2017-10-16 06:32:00,39.135,121.658,13.1 +2017-10-16 06:47:00,40.2612,121.592,13.07 +2017-10-16 07:02:00,39.925,121.51,13.05 +2017-10-16 07:17:00,39.7738,121.46,13.03 +2017-10-16 07:32:00,40.0238,121.425,13.02 +2017-10-16 07:47:00,40.3525,121.41,13.01 +2017-10-16 08:02:00,38.9825,121.417,13.0 +2017-10-16 08:17:00,38.9325,121.432,12.99 +2017-10-16 08:32:00,40.2162,121.455,13.0 +2017-10-16 08:47:00,39.185,121.482,13.0 +2017-10-16 09:02:00,39.9737,121.512,13.02 +2017-10-16 09:17:00,39.4362,121.533,13.04 +2017-10-16 09:32:00,38.6963,121.57,13.05 +2017-10-16 09:47:00,40.4975,121.602,13.08 +2017-10-16 10:02:00,39.0863,121.628,13.1 +2017-10-16 10:17:00,40.0713,121.64,13.14 +2017-10-16 10:32:00,39.83,121.685,13.17 +2017-10-16 10:47:00,39.3363,121.71,13.21 +2017-10-16 11:02:00,39.0312,121.742,13.25 +2017-10-16 11:17:00,38.4987,121.777,13.28 +2017-10-16 11:32:00,39.9287,121.802,13.32 +2017-10-16 11:47:00,40.2637,121.815,13.35 +2017-10-16 12:02:00,37.705,121.837,13.38 +2017-10-16 12:17:00,39.9762,121.875,13.41 +2017-10-16 12:32:00,39.8275,121.915,13.44 +2017-10-16 12:47:00,39.9287,121.938,13.47 +2017-10-16 13:02:00,38.2537,121.985,13.5 +2017-10-16 13:17:00,40.1687,122.035,13.52 +2017-10-16 13:32:00,38.3037,122.057,13.54 +2017-10-16 13:47:00,40.0675,122.107,13.55 +2017-10-16 14:02:00,40.2663,122.16,13.56 +2017-10-16 14:17:00,38.4037,122.195,13.57 +2017-10-16 14:32:00,39.4375,122.255,13.58 +2017-10-16 14:47:00,38.2562,122.295,13.58 +2017-10-16 15:02:00,36.9212,122.337,13.59 +2017-10-16 15:17:00,39.2325,122.372,13.6 +2017-10-16 15:32:00,40.0238,122.412,13.62 +2017-10-16 15:47:00,39.5812,122.44,13.63 +2017-10-16 16:02:00,38.8875,122.467,13.65 +2017-10-16 16:17:00,39.58,122.487,13.65 +2017-10-16 16:32:00,41.1275,122.51,13.65 +2017-10-16 16:47:00,38.0037,122.495,13.67 +2017-10-16 17:02:00,37.8075,122.5,13.68 +2017-10-16 17:17:00,38.98,122.48,13.69 +2017-10-16 17:32:00,40.0212,122.475,13.69 +2017-10-16 17:47:00,39.88,122.452,13.7 +2017-10-16 18:02:00,39.3838,122.408,13.72 +2017-10-16 18:17:00,39.7775,122.362,13.74 +2017-10-16 18:32:00,39.1338,122.322,13.75 +2017-10-16 18:47:00,40.02,122.287,13.77 +2017-10-16 19:02:00,39.9788,122.25,13.78 +2017-10-16 19:17:00,39.285,122.225,13.79 +2017-10-16 19:32:00,38.8387,122.185,13.79 +2017-10-16 19:47:00,40.0725,122.15,13.79 +2017-10-16 20:02:00,40.0725,122.102,13.78 +2017-10-16 20:17:00,38.9337,122.095,13.77 +2017-10-16 20:32:00,37.0187,122.065,13.76 +2017-10-16 20:47:00,37.0713,121.99,13.77 +2017-10-16 21:02:00,38.405,121.897,13.77 +2017-10-16 21:17:00,38.5013,121.762,13.75 +2017-10-16 21:32:00,38.5525,121.67,13.74 +2017-10-16 21:47:00,40.9362,121.572,13.72 +2017-10-16 22:02:00,38.5488,121.525,13.71 +2017-10-16 22:17:00,38.6975,121.47,13.68 +2017-10-16 22:32:00,38.5037,121.45,13.67 +2017-10-16 22:47:00,38.6,121.41,13.67 +2017-10-16 23:02:00,37.6113,121.367,13.65 +2017-10-16 23:17:00,38.9362,121.362,13.65 +2017-10-16 23:32:00,39.1362,121.342,13.64 +2017-10-16 23:47:00,40.2612,121.312,13.64 +2017-10-17 00:02:00,38.745,121.31,13.64 +2017-10-17 00:17:00,39.6813,121.277,13.64 +2017-10-17 00:32:00,39.9287,121.257,13.65 +2017-10-17 00:47:00,40.4475,121.257,13.66 +2017-10-17 01:02:00,39.3363,121.26,13.67 +2017-10-17 01:17:00,38.3063,121.242,13.67 +2017-10-17 01:32:00,39.385,121.245,13.66 +2017-10-17 01:47:00,39.185,121.212,13.66 +2017-10-17 02:02:00,40.7925,121.173,13.68 +2017-10-17 02:17:00,39.3875,121.112,13.67 +2017-10-17 02:32:00,38.4025,121.045,13.66 +2017-10-17 02:47:00,39.7312,120.952,13.65 +2017-10-17 03:02:00,38.7875,120.857,13.64 +2017-10-17 03:17:00,39.8288,120.768,13.63 +2017-10-17 03:32:00,39.9287,120.762,13.62 +2017-10-17 03:47:00,40.3087,120.74,13.61 +2017-10-17 04:02:00,37.71,120.742,13.6 +2017-10-17 04:17:00,38.8887,120.737,13.58 +2017-10-17 04:32:00,38.7425,120.765,13.56 +2017-10-17 04:47:00,39.58,120.783,13.54 +2017-10-17 05:02:00,40.645,120.783,13.52 +2017-10-17 05:17:00,39.58,120.805,13.5 +2017-10-17 05:32:00,40.2175,120.785,13.47 +2017-10-17 05:47:00,39.4362,120.795,13.44 +2017-10-17 06:02:00,39.5337,120.735,13.41 +2017-10-17 06:17:00,38.3063,120.725,13.38 +2017-10-17 06:32:00,37.8625,120.715,13.35 +2017-10-17 06:47:00,37.8613,120.682,13.32 +2017-10-17 07:02:00,39.3862,120.667,13.3 +2017-10-17 07:17:00,41.67,120.632,13.29 +2017-10-17 07:32:00,41.2262,120.617,13.28 +2017-10-17 07:47:00,40.0725,120.607,13.29 +2017-10-17 08:02:00,40.9375,120.595,13.29 +2017-10-17 08:17:00,39.975,120.595,13.3 +2017-10-17 08:32:00,40.545,120.625,13.3 +2017-10-17 08:47:00,38.9337,120.852,13.31 +2017-10-17 09:02:00,40.3087,120.992,13.32 +2017-10-17 09:17:00,38.1525,121.027,13.32 +2017-10-17 09:32:00,27.7113,121.1,13.33 +2017-10-17 09:45:58,37.81,121.025,13.35 +2017-10-17 10:02:00,38.6987,120.962,13.4 +2017-10-17 10:15:53,37.925,120.867,13.43 +2017-10-17 10:32:00,39.6287,120.827,13.45 +2017-10-17 10:47:00,38.2562,120.762,13.48 +2017-10-17 11:02:00,37.71,120.732,13.51 +2017-10-17 11:17:00,37.2087,120.695,13.54 +2017-10-17 11:32:00,39.88,120.665,13.57 +2017-10-17 11:47:00,38.7913,120.665,13.59 +2017-10-17 12:02:00,38.0088,120.662,13.6 +2017-10-17 12:17:00,37.2125,120.67,13.62 +2017-10-17 12:32:00,37.9575,120.667,13.65 +2017-10-17 12:47:00,38.9375,120.675,13.69 +2017-10-17 13:02:00,37.3063,120.682,13.7 +2017-10-17 13:17:00,38.1062,120.685,13.71 +2017-10-17 13:32:00,39.2375,120.707,13.72 +2017-10-17 13:47:00,38.36,120.712,13.74 +2017-10-17 14:02:00,37.7075,120.735,13.74 +2017-10-17 14:17:00,38.055,120.745,13.73 +2017-10-17 14:32:00,38.7412,120.747,13.73 +2017-10-17 14:47:00,38.6975,120.762,13.72 +2017-10-17 15:02:00,38.0088,120.762,13.73 +2017-10-17 15:17:00,38.8862,120.772,13.74 +2017-10-17 15:32:00,37.4562,120.768,13.75 +2017-10-17 15:47:00,37.4575,120.765,13.76 +2017-10-17 16:02:00,37.9125,120.783,13.77 +2017-10-17 16:17:00,38.0088,120.78,13.77 +2017-10-17 16:32:00,38.6963,120.777,13.77 +2017-10-17 16:47:00,40.5025,120.755,13.77 +2017-10-17 17:02:00,37.4112,120.742,13.77 +2017-10-17 17:17:00,38.6025,120.707,13.77 +2017-10-17 17:32:00,37.7637,120.715,13.77 +2017-10-17 17:47:00,37.6125,120.695,13.78 +2017-10-17 18:02:00,37.1637,120.68,13.8 +2017-10-17 18:17:00,38.89,120.647,13.81 +2017-10-17 18:32:00,37.7113,120.625,13.82 +2017-10-17 18:47:00,37.6087,120.63,13.83 +2017-10-17 19:02:00,39.1862,120.612,13.85 +2017-10-17 19:17:00,38.7462,120.572,13.86 +2017-10-17 19:32:00,37.2125,120.55,13.86 +2017-10-17 19:47:00,37.6575,120.51,13.85 +2017-10-17 20:02:00,37.61,120.435,13.83 +2017-10-17 20:17:00,39.2337,120.345,13.82 +2017-10-17 20:32:00,37.8613,120.253,13.82 +2017-10-17 20:47:00,37.8587,120.165,13.8 +2017-10-17 21:02:00,38.305,120.102,13.78 +2017-10-17 21:17:00,38.79,120.05,13.76 +2017-10-17 21:32:00,39.135,120.048,13.73 +2017-10-17 21:47:00,37.31,120.022,13.71 +2017-10-17 22:02:00,38.3075,120.007,13.7 +2017-10-17 22:17:00,38.3587,120.01,13.67 +2017-10-17 22:32:00,38.7937,120.012,13.65 +2017-10-17 22:47:00,37.5612,120.01,13.62 +2017-10-17 23:02:00,38.0088,119.99,13.6 +2017-10-17 23:17:00,39.0337,119.98,13.59 +2017-10-17 23:32:00,37.7087,119.965,13.58 +2017-10-17 23:47:00,39.3375,119.977,13.57 +2017-10-18 00:02:00,38.6038,119.977,13.55 +2017-10-18 00:17:00,37.4538,119.982,13.56 +2017-10-18 00:32:00,37.21,119.987,13.55 +2017-10-18 00:47:00,38.1575,119.965,13.55 +2017-10-18 01:02:00,38.7925,119.962,13.55 +2017-10-18 01:17:00,38.595,119.932,13.54 +2017-10-18 01:32:00,37.8125,119.925,13.54 +2017-10-18 01:47:00,37.76,119.91,13.55 +2017-10-18 02:02:00,37.6113,119.882,13.56 +2017-10-18 02:17:00,37.76,119.862,13.56 +2017-10-18 02:32:00,38.505,119.842,13.57 +2017-10-18 02:47:00,38.2075,119.82,13.57 +2017-10-18 03:02:00,38.5037,119.815,13.57 +2017-10-18 03:17:00,38.0587,119.798,13.57 +2017-10-18 03:32:00,37.515,119.807,13.55 +2017-10-18 03:47:00,37.5625,119.783,13.54 +2017-10-18 04:02:00,38.4075,119.77,13.51 +2017-10-18 04:17:00,37.4538,119.727,13.48 +2017-10-18 04:32:00,38.5537,119.673,13.46 +2017-10-18 04:47:00,38.205,119.592,13.45 +2017-10-18 05:02:00,39.835,119.545,13.43 +2017-10-18 05:17:00,38.5512,119.5,13.39 +2017-10-18 05:32:00,37.8125,119.47,13.36 +2017-10-18 05:47:00,37.6612,119.45,13.33 +2017-10-18 06:02:00,39.1375,119.44,13.28 +2017-10-18 06:17:00,38.0587,119.447,13.23 +2017-10-18 06:32:00,38.74,119.47,13.19 +2017-10-18 06:47:00,37.3112,119.47,13.17 +2017-10-18 07:02:00,37.81,119.505,13.17 +2017-10-18 07:17:00,39.6312,119.527,13.14 +2017-10-18 07:32:00,37.9125,119.555,13.12 +2017-10-18 07:47:00,37.0175,119.572,13.1 +2017-10-18 08:02:00,37.0713,119.595,13.09 +2017-10-18 08:17:00,38.0563,119.635,13.08 +2017-10-18 08:32:00,36.92,119.643,13.07 +2017-10-18 08:47:00,38.3562,119.667,13.06 +2017-10-18 09:02:00,37.71,119.702,13.06 +2017-10-18 09:17:00,38.3587,119.737,13.07 +2017-10-18 09:32:00,38.935,119.792,13.09 +2017-10-18 09:47:00,38.7012,119.852,13.1 +2017-10-18 10:02:00,38.5025,119.867,13.12 +2017-10-18 10:17:00,39.0837,119.93,13.12 +2017-10-18 10:32:00,38.255,119.955,13.14 +2017-10-18 10:47:00,38.6012,120.0,13.15 +2017-10-18 11:02:00,39.0837,120.04,13.16 +2017-10-18 11:17:00,37.6587,120.085,13.18 +2017-10-18 11:32:00,38.6,120.128,13.21 +2017-10-18 11:47:00,39.1888,120.18,13.22 +2017-10-18 12:02:00,38.7,120.21,13.24 +2017-10-18 12:17:00,38.935,120.247,13.25 +2017-10-18 12:32:00,38.1062,120.24,13.26 +2017-10-18 12:47:00,37.51,120.235,13.28 +2017-10-18 13:02:00,39.0337,120.217,13.3 +2017-10-18 13:17:00,39.1862,120.22,13.3 +2017-10-18 13:32:00,38.8862,120.262,13.3 +2017-10-18 13:47:00,40.025,120.268,13.3 +2017-10-18 14:02:00,39.2387,120.277,13.3 +2017-10-18 14:17:00,38.2562,120.292,13.3 +2017-10-18 14:32:00,38.105,120.32,13.3 +2017-10-18 14:47:00,39.1387,120.345,13.31 +2017-10-18 15:02:00,36.9212,120.35,13.33 +2017-10-18 15:17:00,38.3587,120.385,13.34 +2017-10-18 15:32:00,37.9112,120.393,13.33 +2017-10-18 15:47:00,37.7087,120.402,13.33 +2017-10-18 16:02:00,39.2337,120.408,13.33 +2017-10-18 16:17:00,38.155,120.402,13.33 +2017-10-18 16:32:00,38.935,120.41,13.32 +2017-10-18 16:47:00,38.6537,120.405,13.32 +2017-10-18 17:02:00,40.17,120.387,13.31 +2017-10-18 17:17:00,38.055,120.402,13.32 +2017-10-18 17:32:00,37.5625,120.375,13.32 +2017-10-18 17:47:00,38.2562,120.38,13.32 +2017-10-18 18:02:00,37.9575,120.347,13.32 +2017-10-18 18:17:00,38.985,120.327,13.31 +2017-10-18 18:32:00,39.2875,120.292,13.31 +2017-10-18 18:47:00,38.6488,120.262,13.32 +2017-10-18 19:02:00,38.5475,120.232,13.32 +2017-10-18 19:17:00,36.8225,120.182,13.31 +2017-10-18 19:32:00,38.7462,120.135,13.3 +2017-10-18 19:47:00,39.1375,120.037,13.3 +2017-10-18 20:02:00,39.8262,119.942,13.3 +2017-10-18 20:17:00,38.55,119.847,13.3 +2017-10-18 20:32:00,37.0187,119.787,13.29 +2017-10-18 20:47:00,38.4037,119.753,13.28 +2017-10-18 21:02:00,39.485,119.705,13.27 +2017-10-18 21:17:00,37.7637,119.682,13.27 +2017-10-18 21:32:00,39.3862,119.673,13.26 +2017-10-18 21:47:00,39.9775,119.667,13.25 +2017-10-18 22:02:00,36.8712,119.658,13.22 +2017-10-18 22:17:00,38.6012,119.66,13.2 +2017-10-18 22:32:00,36.7213,119.662,13.17 +2017-10-18 22:47:00,38.2062,119.662,13.14 +2017-10-18 23:02:00,38.105,119.673,13.11 +2017-10-18 23:17:00,39.0337,119.685,13.08 +2017-10-18 23:32:00,39.2363,119.702,13.06 +2017-10-18 23:47:00,38.8363,119.71,13.03 +2017-10-19 00:02:00,39.185,119.742,13.02 +2017-10-19 00:17:00,39.085,119.753,13.01 +2017-10-19 00:32:00,39.1338,119.772,12.99 +2017-10-19 00:47:00,38.7387,119.787,12.99 +2017-10-19 01:02:00,38.8838,119.805,12.98 +2017-10-19 01:17:00,38.7363,119.825,12.98 +2017-10-19 01:32:00,38.6987,119.832,12.97 +2017-10-19 01:47:00,38.255,119.857,12.98 +2017-10-19 02:02:00,38.7875,119.88,12.97 +2017-10-19 02:17:00,39.53,119.895,12.97 +2017-10-19 02:32:00,37.5563,119.917,12.97 +2017-10-19 02:47:00,38.5437,119.923,12.97 +2017-10-19 03:02:00,37.305,119.927,12.97 +2017-10-19 03:17:00,39.2837,119.95,12.96 +2017-10-19 03:32:00,39.2837,119.972,12.96 +2017-10-19 03:47:00,38.9325,119.952,12.95 +2017-10-19 04:02:00,37.5112,119.932,12.94 +2017-10-19 04:17:00,39.4362,119.902,12.93 +2017-10-19 04:32:00,39.4825,119.865,12.93 +2017-10-19 04:47:00,37.9575,119.847,12.92 +2017-10-19 05:02:00,38.255,119.837,12.91 +2017-10-19 05:17:00,38.6963,119.827,12.9 +2017-10-19 05:32:00,37.71,119.842,12.89 +2017-10-19 05:47:00,37.5025,119.827,12.88 +2017-10-19 06:02:00,37.6587,119.857,12.86 +2017-10-19 06:17:00,39.3325,119.88,12.84 +2017-10-19 06:32:00,38.0537,119.897,12.82 +2017-10-19 06:47:00,37.5575,119.927,12.82 +2017-10-19 07:02:00,39.3363,119.947,12.82 +2017-10-19 07:17:00,38.4037,119.927,12.81 +2017-10-19 07:32:00,36.5725,119.942,12.79 +2017-10-19 07:47:00,37.7087,119.98,12.78 +2017-10-19 08:02:00,36.8225,120.085,12.79 +2017-10-19 08:17:00,38.2062,120.302,12.84 +2017-10-19 08:32:00,38.7925,120.562,12.87 +2017-10-19 08:47:00,37.7075,120.88,12.86 +2017-10-19 09:02:00,38.2038,121.23,12.85 +2017-10-19 09:17:00,37.9075,121.677,12.84 +2017-10-19 09:32:00,38.1562,122.197,12.89 +2017-10-19 09:47:00,38.7425,122.695,12.93 +2017-10-19 10:02:00,38.6963,123.188,12.94 +2017-10-19 10:17:00,39.3887,123.6,12.97 +2017-10-19 10:32:00,38.455,123.925,13.0 +2017-10-19 10:47:00,39.1813,124.145,13.03 +2017-10-19 11:02:00,39.2337,124.212,13.07 +2017-10-19 11:17:00,37.41,124.052,13.08 +2017-10-19 11:32:00,38.305,123.587,13.07 +2017-10-19 11:47:00,39.0837,122.992,13.08 +2017-10-19 12:02:00,38.4037,122.408,13.11 +2017-10-19 12:17:00,39.3862,121.92,13.12 +2017-10-19 12:32:00,37.91,121.512,13.16 +2017-10-19 12:47:00,37.9575,121.255,13.2 +2017-10-19 13:02:00,38.5025,121.072,13.23 +2017-10-19 13:17:00,38.055,120.952,13.23 +2017-10-19 13:32:00,39.335,120.845,13.23 +2017-10-19 13:47:00,37.61,120.753,13.24 +2017-10-19 14:02:00,37.5575,120.702,13.26 +2017-10-19 14:17:00,38.2038,120.655,13.26 +2017-10-19 14:32:00,37.5587,120.58,13.26 +2017-10-19 14:47:00,37.8125,120.567,13.26 +2017-10-19 15:02:00,37.9087,120.567,13.27 +2017-10-19 15:17:00,39.435,120.56,13.28 +2017-10-19 15:32:00,39.63,120.595,13.28 +2017-10-19 15:47:00,38.055,120.607,13.3 +2017-10-19 16:02:00,38.0537,120.64,13.31 +2017-10-19 16:17:00,37.3575,120.655,13.33 +2017-10-19 16:32:00,36.38,120.68,13.33 +2017-10-19 16:47:00,36.72,120.702,13.35 +2017-10-19 17:02:00,39.0863,120.732,13.36 +2017-10-19 17:17:00,38.255,120.762,13.37 +2017-10-19 17:32:00,40.5925,120.807,13.38 +2017-10-19 17:47:00,39.8775,120.85,13.4 +2017-10-19 18:02:00,37.2575,120.908,13.42 +2017-10-19 18:17:00,38.55,120.952,13.44 +2017-10-19 18:32:00,37.1612,120.977,13.45 +2017-10-19 18:47:00,38.5987,121.027,13.46 +2017-10-19 19:02:00,39.185,121.057,13.47 +2017-10-19 19:17:00,37.4037,121.08,13.47 +2017-10-19 19:32:00,37.5575,121.1,13.46 +2017-10-19 19:47:00,37.7588,121.122,13.44 +2017-10-19 20:02:00,38.5475,121.137,13.43 +2017-10-19 20:17:00,39.0287,121.152,13.42 +2017-10-19 20:32:00,38.3538,121.16,13.41 +2017-10-19 20:47:00,37.7588,121.195,13.4 +2017-10-19 21:02:00,39.575,121.217,13.4 +2017-10-19 21:17:00,37.8575,121.205,13.4 +2017-10-19 21:32:00,37.355,121.225,13.39 +2017-10-19 21:47:00,36.7712,121.23,13.37 +2017-10-19 22:02:00,37.705,121.235,13.34 +2017-10-19 22:17:00,37.5062,121.235,13.31 +2017-10-19 22:32:00,37.305,121.25,13.27 +2017-10-19 22:47:00,36.82,121.25,13.26 +2017-10-19 23:02:00,38.405,121.268,13.26 +2017-10-19 23:17:00,38.0037,121.268,13.24 +2017-10-19 23:32:00,37.3075,121.283,13.21 +2017-10-19 23:47:00,38.6537,121.268,13.2 +2017-10-20 00:02:00,37.76,121.27,13.18 +2017-10-20 00:17:00,39.5312,121.272,13.17 +2017-10-20 00:32:00,37.8087,121.247,13.17 +2017-10-20 00:47:00,38.1537,121.237,13.17 +2017-10-20 01:02:00,37.6012,121.24,13.16 +2017-10-20 01:17:00,38.3075,121.227,13.13 +2017-10-20 01:32:00,39.385,121.222,13.11 +2017-10-20 01:47:00,37.9525,121.207,13.12 +2017-10-20 02:02:00,37.6075,121.207,13.15 +2017-10-20 02:17:00,38.1012,121.19,13.17 +2017-10-20 02:32:00,38.55,121.18,13.19 +2017-10-20 02:47:00,38.055,121.15,13.19 +2017-10-20 03:02:00,38.6012,121.117,13.19 +2017-10-20 03:17:00,38.6987,121.077,13.18 +2017-10-20 03:32:00,38.8387,121.027,13.14 +2017-10-20 03:47:00,37.3575,120.992,13.1 +2017-10-20 04:02:00,37.455,120.947,13.05 +2017-10-20 04:17:00,38.7862,120.91,13.03 +2017-10-20 04:32:00,38.8838,120.865,13.04 +2017-10-20 04:47:00,38.205,120.83,13.06 +2017-10-20 05:02:00,37.1125,120.783,13.09 +2017-10-20 05:17:00,37.7575,120.753,13.09 +2017-10-20 05:32:00,38.1562,120.73,13.07 +2017-10-20 05:47:00,37.6125,120.697,13.06 +2017-10-20 06:02:00,38.4025,120.675,13.05 +2017-10-20 06:17:00,38.7412,120.67,13.06 +2017-10-20 06:32:00,38.9313,120.637,13.05 +2017-10-20 06:47:00,37.7575,120.64,13.03 +2017-10-20 07:02:00,38.1025,120.62,13.01 +2017-10-20 07:17:00,37.86,120.605,12.96 +2017-10-20 07:32:00,38.745,120.595,12.93 +2017-10-20 07:47:00,38.0525,120.59,12.91 +2017-10-20 08:02:00,38.8838,120.562,12.9 +2017-10-20 08:17:00,37.2062,120.52,12.87 +2017-10-20 08:32:00,38.8363,120.575,12.85 +2017-10-20 08:47:00,36.7213,120.812,12.83 +2017-10-20 09:02:00,37.4037,120.73,12.82 +2017-10-20 09:17:00,38.6475,120.395,12.81 +2017-10-20 09:32:00,38.355,120.027,12.78 +2017-10-20 09:47:00,37.3037,119.702,12.77 +2017-10-20 10:02:00,37.86,119.457,12.77 +2017-10-20 10:17:00,38.2,119.3,12.78 +2017-10-20 10:32:00,39.1312,119.222,12.77 +2017-10-20 10:47:00,38.7363,119.128,12.76 +2017-10-20 11:02:00,39.1325,119.122,12.77 +2017-10-20 11:17:00,39.03,119.137,12.77 +2017-10-20 11:32:00,38.7875,119.19,12.79 +2017-10-20 11:47:00,39.0287,119.3,12.8 +2017-10-20 12:02:00,37.115,119.435,12.79 +2017-10-20 12:17:00,39.135,119.545,12.79 +2017-10-20 12:32:00,38.205,119.697,12.81 +2017-10-20 12:47:00,39.5775,119.845,12.84 +2017-10-20 13:02:00,38.1537,119.995,12.86 +2017-10-20 13:17:00,38.1025,120.13,12.86 +2017-10-20 13:32:00,37.4525,120.28,12.86 +2017-10-20 13:47:00,38.4,120.4,12.86 +2017-10-20 14:02:00,37.605,120.535,12.86 +2017-10-20 14:17:00,38.005,120.64,12.86 +2017-10-20 14:32:00,38.935,120.737,12.87 +2017-10-20 14:47:00,38.1525,120.815,12.87 +2017-10-20 15:02:00,37.56,120.878,12.87 +2017-10-20 15:17:00,38.4975,120.927,12.88 +2017-10-20 15:32:00,38.005,120.957,12.9 +2017-10-20 15:47:00,38.5013,120.967,12.9 +2017-10-20 16:02:00,37.3587,120.952,12.9 +2017-10-20 16:17:00,38.9337,120.93,12.88 +2017-10-20 16:32:00,36.5238,120.98,12.87 +2017-10-20 16:47:00,38.7387,121.005,12.87 +2017-10-20 17:02:00,37.8613,120.972,12.85 +2017-10-20 17:17:00,39.7738,120.93,12.82 +2017-10-20 17:32:00,36.6687,120.86,12.79 +2017-10-20 17:47:00,38.3063,120.775,12.77 +2017-10-20 18:02:00,38.2513,120.67,12.76 +2017-10-20 18:17:00,38.0062,120.572,12.74 +2017-10-20 18:32:00,38.3037,120.477,12.72 +2017-10-20 18:47:00,38.8375,120.38,12.7 +2017-10-20 19:02:00,38.3575,120.285,12.69 +2017-10-20 19:17:00,37.8138,120.182,12.66 +2017-10-20 19:32:00,37.9112,120.082,12.65 +2017-10-20 19:47:00,36.1862,119.992,12.62 +2017-10-20 20:02:00,38.4987,119.905,12.59 +2017-10-20 20:17:00,39.1813,119.82,12.57 +2017-10-20 20:32:00,39.6787,119.737,12.55 +2017-10-20 20:47:00,38.355,119.717,12.54 +2017-10-20 21:02:00,39.235,119.705,12.54 +2017-10-20 21:17:00,37.8125,119.742,12.53 +2017-10-20 21:32:00,39.7312,119.727,12.49 +2017-10-20 21:47:00,39.53,119.707,12.47 +2017-10-20 22:02:00,38.2075,119.67,12.46 +2017-10-20 22:17:00,37.4037,119.632,12.46 +2017-10-20 22:32:00,38.9337,119.58,12.45 +2017-10-20 22:47:00,39.6787,119.515,12.44 +2017-10-20 23:02:00,39.1325,119.452,12.43 +2017-10-20 23:17:00,38.205,119.37,12.42 +2017-10-20 23:32:00,38.0575,119.302,12.41 +2017-10-20 23:47:00,37.7612,119.25,12.41 +2017-10-21 00:02:00,39.9788,119.18,12.41 +2017-10-21 00:17:00,38.1025,119.107,12.41 +2017-10-21 00:32:00,37.1162,119.067,12.41 +2017-10-21 00:47:00,38.8875,119.0,12.41 +2017-10-21 01:02:00,39.2363,118.957,12.39 +2017-10-21 01:17:00,37.955,118.935,12.37 +2017-10-21 01:32:00,39.68,118.952,12.36 +2017-10-21 01:47:00,38.255,119.007,12.36 +2017-10-21 02:02:00,39.235,119.025,12.35 +2017-10-21 02:17:00,38.0537,119.027,12.34 +2017-10-21 02:32:00,39.0837,119.027,12.33 +2017-10-21 02:47:00,39.625,119.01,12.33 +2017-10-21 03:02:00,39.6762,118.982,12.33 +2017-10-21 03:17:00,37.8112,118.91,12.32 +2017-10-21 03:32:00,39.4837,118.872,12.29 +2017-10-21 03:47:00,39.3875,118.8,12.26 +2017-10-21 04:02:00,37.7575,118.777,12.26 +2017-10-21 04:17:00,38.5512,118.695,12.25 +2017-10-21 04:32:00,39.5325,118.65,12.23 +2017-10-21 04:47:00,37.71,118.602,12.23 +2017-10-21 05:02:00,38.6963,118.562,12.22 +2017-10-21 05:17:00,38.4987,118.51,12.21 +2017-10-21 05:32:00,39.135,118.457,12.2 +2017-10-21 05:47:00,39.8775,118.415,12.19 +2017-10-21 06:02:00,39.1375,118.385,12.19 +2017-10-21 06:17:00,39.7775,118.41,12.17 +2017-10-21 06:32:00,37.9575,118.455,12.16 +2017-10-21 06:47:00,39.6275,118.48,12.16 +2017-10-21 07:02:00,38.9812,118.477,12.15 +2017-10-21 07:17:00,38.5987,118.462,12.14 +2017-10-21 07:32:00,39.7275,118.438,12.14 +2017-10-21 07:47:00,40.35,118.41,12.14 +2017-10-21 08:02:00,38.3587,118.357,12.15 +2017-10-21 08:17:00,39.2837,118.357,12.15 +2017-10-21 08:32:00,36.82,118.312,12.13 +2017-10-21 08:47:00,37.9575,118.257,12.13 +2017-10-21 09:02:00,38.2038,118.185,12.14 +2017-10-21 09:17:00,37.9562,118.092,12.14 +2017-10-21 09:32:00,37.26,118.012,12.14 +2017-10-21 09:47:00,38.1587,117.925,12.14 +2017-10-21 10:02:00,39.0875,117.862,12.15 +2017-10-21 10:17:00,39.3862,117.852,12.17 +2017-10-21 10:32:00,40.495,117.905,12.22 +2017-10-21 10:47:00,40.3112,117.932,12.26 +2017-10-21 11:02:00,40.1162,117.957,12.28 +2017-10-21 11:17:00,38.3525,117.977,12.27 +2017-10-21 11:32:00,38.7412,117.96,12.25 +2017-10-21 11:47:00,38.6488,117.947,12.26 +2017-10-21 12:02:00,38.4025,117.927,12.26 +2017-10-21 12:17:00,37.865,117.917,12.25 +2017-10-21 12:32:00,38.2537,117.855,12.22 +2017-10-21 12:47:00,39.78,117.812,12.22 +2017-10-21 13:02:00,40.1675,117.762,12.24 +2017-10-21 13:17:00,37.5062,117.705,12.25 +2017-10-21 13:32:00,38.6937,117.625,12.27 +2017-10-21 13:47:00,39.185,117.57,12.29 +2017-10-21 14:02:00,38.205,117.602,12.29 +2017-10-21 14:17:00,39.0312,117.625,12.3 +2017-10-21 14:32:00,40.1175,117.662,12.3 +2017-10-21 14:47:00,37.7087,117.675,12.3 +2017-10-21 15:02:00,39.0312,117.68,12.31 +2017-10-21 15:17:00,38.055,117.675,12.3 +2017-10-21 15:32:00,37.4538,117.652,12.31 +2017-10-21 15:47:00,39.3337,117.635,12.32 +2017-10-21 16:02:00,39.9212,117.597,12.32 +2017-10-21 16:17:00,39.8288,117.55,12.32 +2017-10-21 16:32:00,39.58,117.5,12.31 +2017-10-21 16:47:00,39.03,117.43,12.31 +2017-10-21 17:02:00,37.5088,117.382,12.31 +2017-10-21 17:17:00,38.5,117.325,12.31 +2017-10-21 17:32:00,39.385,117.283,12.31 +2017-10-21 17:47:00,37.9075,117.283,12.32 +2017-10-21 18:02:00,38.5512,117.342,12.33 +2017-10-21 18:17:00,39.3825,117.38,12.35 +2017-10-21 18:32:00,39.085,117.405,12.37 +2017-10-21 18:47:00,37.9575,117.405,12.38 +2017-10-21 19:02:00,38.8375,117.393,12.39 +2017-10-21 19:17:00,38.8325,117.357,12.39 +2017-10-21 19:32:00,38.98,117.305,12.39 +2017-10-21 19:47:00,39.2837,117.25,12.39 +2017-10-21 20:02:00,36.9187,117.182,12.36 +2017-10-21 20:17:00,37.1137,117.097,12.35 +2017-10-21 20:32:00,38.4525,117.042,12.34 +2017-10-21 20:47:00,37.86,116.972,12.34 +2017-10-21 21:02:00,38.885,116.932,12.33 +2017-10-21 21:17:00,38.785,116.945,12.32 +2017-10-21 21:32:00,38.6462,116.99,12.3 +2017-10-21 21:47:00,39.2325,117.045,12.28 +2017-10-21 22:02:00,39.3312,117.092,12.26 +2017-10-21 22:17:00,38.3075,117.137,12.25 +2017-10-21 22:32:00,38.5475,117.215,12.24 +2017-10-21 22:47:00,38.9337,117.312,12.23 +2017-10-21 23:02:00,39.7762,117.417,12.22 +2017-10-21 23:17:00,38.1537,117.522,12.22 +2017-10-21 23:32:00,37.81,117.575,12.23 +2017-10-21 23:47:00,37.455,117.612,12.23 +2017-10-22 00:02:00,37.1625,117.63,12.22 +2017-10-22 00:17:00,36.965,117.592,12.22 +2017-10-22 00:32:00,38.505,117.602,12.21 +2017-10-22 00:47:00,38.5962,117.617,12.21 +2017-10-22 01:02:00,40.2637,117.665,12.2 +2017-10-22 01:17:00,39.6775,117.725,12.19 +2017-10-22 01:32:00,38.745,117.765,12.18 +2017-10-22 01:47:00,39.435,117.777,12.19 +2017-10-22 02:02:00,39.1825,117.785,12.18 +2017-10-22 02:17:00,39.6312,117.783,12.18 +2017-10-22 02:32:00,37.8587,117.765,12.17 +2017-10-22 02:47:00,38.695,117.73,12.15 +2017-10-22 03:02:00,39.6287,117.69,12.15 +2017-10-22 03:17:00,38.055,117.637,12.15 +2017-10-22 03:32:00,38.1575,117.577,12.15 +2017-10-22 03:47:00,38.8375,117.525,12.14 +2017-10-22 04:02:00,38.6475,117.467,12.12 +2017-10-22 04:17:00,38.8812,117.46,12.1 +2017-10-22 04:32:00,39.285,117.505,12.09 +2017-10-22 04:47:00,39.2363,117.555,12.09 +2017-10-22 05:02:00,38.65,117.567,12.08 +2017-10-22 05:17:00,38.935,117.577,12.07 +2017-10-22 05:32:00,38.4512,117.58,12.06 +2017-10-22 05:47:00,39.2312,117.567,12.04 +2017-10-22 06:02:00,38.5,117.555,12.02 +2017-10-22 06:17:00,39.5775,117.525,12.0 +2017-10-22 06:32:00,37.61,117.487,12.0 +2017-10-22 06:47:00,39.7775,117.457,11.98 +2017-10-22 07:02:00,39.0863,117.432,11.98 +2017-10-22 07:17:00,38.9325,117.417,11.98 +2017-10-22 07:32:00,39.9762,117.412,11.97 +2017-10-22 07:47:00,38.6937,117.408,11.95 +2017-10-22 08:02:00,36.62,117.423,11.94 +2017-10-22 08:17:00,36.9688,117.43,11.94 +2017-10-22 08:32:00,37.4087,117.397,11.94 +2017-10-22 08:47:00,39.135,117.37,11.94 +2017-10-22 09:02:00,37.2537,117.325,11.95 +2017-10-22 09:17:00,38.5975,117.277,11.94 +2017-10-22 09:32:00,39.0825,117.235,11.94 +2017-10-22 09:47:00,40.4475,117.182,11.96 +2017-10-22 10:02:00,39.335,117.173,12.0 +2017-10-22 10:17:00,38.45,117.15,12.02 +2017-10-22 10:32:00,38.0512,117.102,12.04 +2017-10-22 10:47:00,39.2325,117.062,12.03 +2017-10-22 11:02:00,37.5587,117.045,12.03 +2017-10-22 11:17:00,39.6825,117.045,12.03 +2017-10-22 11:32:00,39.435,117.067,12.02 +2017-10-22 11:47:00,36.8213,117.12,12.02 +2017-10-22 12:02:00,37.7075,117.192,12.02 +2017-10-22 12:17:00,37.2075,117.235,12.02 +2017-10-22 12:32:00,38.9325,117.26,12.03 +2017-10-22 12:47:00,38.4525,117.275,12.04 +2017-10-22 13:02:00,38.0025,117.275,12.06 +2017-10-22 13:17:00,37.9062,117.27,12.07 +2017-10-22 13:32:00,38.5,117.26,12.09 +2017-10-22 13:47:00,38.785,117.242,12.09 +2017-10-22 14:02:00,39.03,117.237,12.08 +2017-10-22 14:17:00,38.55,117.21,12.07 +2017-10-22 14:32:00,39.2812,117.165,12.06 +2017-10-22 14:47:00,38.5962,117.14,12.05 +2017-10-22 15:02:00,38.9825,117.155,12.05 +2017-10-22 15:17:00,38.2525,117.205,12.04 +2017-10-22 15:32:00,40.4512,117.292,12.06 +2017-10-22 15:47:00,38.9337,117.345,12.05 +2017-10-22 16:02:00,38.5,117.375,12.05 +2017-10-22 16:17:00,37.9075,117.365,12.05 +2017-10-22 16:32:00,39.0812,117.355,12.05 +2017-10-22 16:47:00,38.74,117.317,12.05 +2017-10-22 17:02:00,37.8613,117.292,12.05 +2017-10-22 17:17:00,38.9863,117.277,12.04 +2017-10-22 17:32:00,39.9737,117.245,12.03 +2017-10-22 17:47:00,37.7075,117.225,12.03 +2017-10-22 18:02:00,38.8363,117.2,12.03 +2017-10-22 18:17:00,38.8862,117.17,12.04 +2017-10-22 18:32:00,38.8887,117.182,12.04 +2017-10-22 18:47:00,38.355,117.24,12.02 +2017-10-22 19:02:00,39.0825,117.36,12.02 +2017-10-22 19:17:00,39.435,117.477,12.0 +2017-10-22 19:32:00,38.2025,117.59,11.99 +2017-10-22 19:47:00,38.6963,117.677,11.96 +2017-10-22 20:02:00,38.45,117.725,11.94 +2017-10-22 20:17:00,39.6287,117.747,11.92 +2017-10-22 20:32:00,38.74,117.76,11.9 +2017-10-22 20:47:00,39.0837,117.762,11.89 +2017-10-22 21:02:00,38.2025,117.768,11.86 +2017-10-22 21:17:00,38.835,117.772,11.84 +2017-10-22 21:32:00,37.5563,117.772,11.81 +2017-10-22 21:47:00,38.4037,117.762,11.79 +2017-10-22 22:02:00,38.3037,117.772,11.77 +2017-10-22 22:17:00,37.1137,117.78,11.75 +2017-10-22 22:32:00,37.9062,117.82,11.72 +2017-10-22 22:47:00,38.7887,117.882,11.71 +2017-10-22 23:02:00,38.9337,117.95,11.69 +2017-10-22 23:17:00,38.6937,117.99,11.68 +2017-10-22 23:32:00,39.53,118.03,11.68 +2017-10-22 23:47:00,39.1862,118.055,11.68 +2017-10-23 00:02:00,39.3875,118.057,11.67 +2017-10-23 00:17:00,37.7062,118.057,11.67 +2017-10-23 00:32:00,38.0025,118.042,11.65 +2017-10-23 00:47:00,38.7412,118.02,11.64 +2017-10-23 01:02:00,38.6925,117.99,11.63 +2017-10-23 01:17:00,38.45,117.98,11.6 +2017-10-23 01:32:00,38.3087,117.972,11.59 +2017-10-23 01:47:00,38.6488,117.995,11.57 +2017-10-23 02:02:00,39.1813,118.04,11.57 +2017-10-23 02:17:00,37.4525,118.102,11.56 +2017-10-23 02:32:00,38.305,118.152,11.57 +2017-10-23 02:47:00,39.03,118.155,11.57 +2017-10-23 03:02:00,37.6062,118.14,11.57 +2017-10-23 03:17:00,38.355,118.122,11.57 +2017-10-23 03:32:00,36.82,118.112,11.57 +2017-10-23 03:47:00,39.6762,118.08,11.56 +2017-10-23 04:02:00,37.7625,118.037,11.56 +2017-10-23 04:17:00,39.1825,118.0,11.56 +2017-10-23 04:32:00,37.9075,117.96,11.56 +2017-10-23 04:47:00,39.1387,117.925,11.55 +2017-10-23 05:02:00,38.2525,117.867,11.54 +2017-10-23 05:17:00,38.8363,117.88,11.52 +2017-10-23 05:32:00,37.9075,117.917,11.5 +2017-10-23 05:47:00,38.6987,117.955,11.48 +2017-10-23 06:02:00,38.5525,118.01,11.46 +2017-10-23 06:17:00,38.9337,118.02,11.45 +2017-10-23 06:32:00,38.0025,118.035,11.43 +2017-10-23 06:47:00,40.3075,118.015,11.43 +2017-10-23 07:02:00,40.2625,118.012,11.42 +2017-10-23 07:17:00,37.9525,118.022,11.42 +2017-10-23 07:32:00,39.7775,118.012,11.4 +2017-10-23 07:47:00,39.78,117.992,11.4 +2017-10-23 08:02:00,39.085,117.987,11.4 +2017-10-23 08:17:00,37.4512,117.972,11.4 +2017-10-23 08:32:00,39.7775,117.955,11.41 +2017-10-23 08:47:00,38.935,117.932,11.42 +2017-10-23 09:02:00,39.3838,117.91,11.43 +2017-10-23 09:17:00,39.825,117.878,11.45 +2017-10-23 09:32:00,38.5512,117.85,11.48 +2017-10-23 09:47:00,40.1175,117.835,11.49 +2017-10-23 10:02:00,38.4538,117.837,11.49 +2017-10-23 10:17:00,38.8337,117.865,11.5 +2017-10-23 10:32:00,40.2175,117.952,11.51 +2017-10-23 10:47:00,39.8787,118.012,11.52 +2017-10-23 11:02:00,40.2612,118.048,11.53 +2017-10-23 11:17:00,38.0537,118.075,11.55 +2017-10-23 11:32:00,37.405,118.07,11.58 +2017-10-23 11:47:00,38.2038,118.03,11.59 +2017-10-23 12:02:00,37.9575,118.302,11.6 +2017-10-23 12:17:00,39.385,118.565,11.62 +2017-10-23 12:32:00,37.065,118.622,11.65 +2017-10-23 12:47:00,40.265,118.537,11.68 +2017-10-23 13:02:00,38.9325,118.317,11.7 +2017-10-23 13:17:00,40.2625,118.122,11.7 +2017-10-23 13:32:00,38.9837,117.962,11.71 +2017-10-23 13:47:00,40.2625,117.792,11.73 +2017-10-23 14:02:00,38.6488,117.712,11.75 +2017-10-23 14:17:00,39.2325,117.645,11.74 +2017-10-23 14:32:00,38.3538,117.595,11.73 +2017-10-23 14:47:00,39.7275,117.557,11.73 +2017-10-23 15:02:00,37.9562,117.565,11.73 +2017-10-23 15:17:00,37.5625,117.615,11.72 +2017-10-23 15:32:00,39.73,117.69,11.72 +2017-10-23 15:47:00,38.6012,117.715,11.71 +2017-10-23 16:02:00,38.8337,117.725,11.72 +2017-10-23 16:17:00,38.1,117.68,11.72 +2017-10-23 16:32:00,38.3087,117.645,11.73 +2017-10-23 16:47:00,38.935,117.565,11.73 +2017-10-23 17:02:00,38.79,117.497,11.72 +2017-10-23 17:17:00,39.58,117.423,11.72 +2017-10-23 17:32:00,40.3525,117.33,11.72 +2017-10-23 17:47:00,38.55,117.242,11.74 +2017-10-23 18:02:00,38.1537,117.165,11.76 +2017-10-23 18:17:00,37.6537,117.18,11.75 +2017-10-23 18:32:00,38.8363,117.205,11.74 +2017-10-23 18:47:00,39.675,117.225,11.72 +2017-10-23 19:02:00,38.8363,117.197,11.72 +2017-10-23 19:17:00,39.3838,117.135,11.73 +2017-10-23 19:32:00,39.1387,117.077,11.73 +2017-10-23 19:47:00,38.1512,117.055,11.72 +2017-10-23 20:02:00,38.3063,117.077,11.71 +2017-10-23 20:17:00,39.3838,117.092,11.71 +2017-10-23 20:32:00,39.2337,117.1,11.71 +2017-10-23 20:47:00,38.9837,117.08,11.72 +2017-10-23 21:02:00,39.2375,117.05,11.74 +2017-10-23 21:17:00,39.58,116.99,11.73 +2017-10-23 21:32:00,40.6925,116.957,11.72 +2017-10-23 21:47:00,39.53,116.962,11.72 +2017-10-23 22:02:00,38.1537,116.982,11.72 +2017-10-23 22:17:00,39.675,116.97,11.71 +2017-10-23 22:32:00,39.8775,116.942,11.7 +2017-10-23 22:47:00,39.4837,116.92,11.68 +2017-10-23 23:02:00,37.7625,116.852,11.68 +2017-10-23 23:17:00,38.3087,116.807,11.67 +2017-10-23 23:32:00,37.9525,116.75,11.66 +2017-10-23 23:47:00,39.53,116.695,11.66 +2017-10-24 00:02:00,38.6462,116.617,11.66 +2017-10-24 00:17:00,39.385,116.57,11.67 +2017-10-24 00:32:00,40.1663,116.507,11.66 +2017-10-24 00:47:00,37.8112,116.465,11.65 +2017-10-24 01:02:00,38.695,116.447,11.64 +2017-10-24 01:17:00,38.6462,116.48,11.64 +2017-10-24 01:32:00,39.3337,116.537,11.63 +2017-10-24 01:47:00,38.1025,116.575,11.63 +2017-10-24 02:02:00,39.58,116.605,11.63 +2017-10-24 02:17:00,40.0687,116.585,11.64 +2017-10-24 02:32:00,39.6263,116.57,11.64 +2017-10-24 02:47:00,38.5,116.555,11.64 +2017-10-24 03:02:00,38.6912,116.505,11.63 +2017-10-24 03:17:00,39.1362,116.49,11.61 +2017-10-24 03:32:00,39.385,116.46,11.6 +2017-10-24 03:47:00,38.9337,116.427,11.6 +2017-10-24 04:02:00,39.5788,116.408,11.6 +2017-10-24 04:17:00,38.9837,116.435,11.59 +2017-10-24 04:32:00,38.6462,116.482,11.59 +2017-10-24 04:47:00,38.7887,116.522,11.6 +2017-10-24 05:02:00,38.2513,116.55,11.6 +2017-10-24 05:17:00,37.9525,116.587,11.6 +2017-10-24 05:32:00,38.3538,116.587,11.6 +2017-10-24 05:47:00,39.2787,116.557,11.6 +2017-10-24 06:02:00,38.5475,116.512,11.59 +2017-10-24 06:17:00,38.645,116.44,11.59 +2017-10-24 06:32:00,39.5788,116.4,11.59 +2017-10-24 06:47:00,39.3337,116.405,11.59 +2017-10-24 07:02:00,39.2837,116.467,11.58 +2017-10-24 07:17:00,39.0325,116.533,11.58 +2017-10-24 07:32:00,39.9262,116.57,11.6 +2017-10-24 07:47:00,38.1038,116.607,11.61 +2017-10-24 08:02:00,40.3988,116.645,11.61 +2017-10-24 08:17:00,39.1825,116.655,11.6 +2017-10-24 08:32:00,38.5475,116.66,11.62 +2017-10-24 08:47:00,38.4487,116.667,11.63 +2017-10-24 09:02:00,38.3063,116.673,11.65 +2017-10-24 09:17:00,39.23,116.673,11.66 +2017-10-24 09:32:00,39.1825,116.675,11.67 +2017-10-24 09:47:00,39.775,116.682,11.68 +2017-10-24 10:02:00,38.6,116.715,11.7 +2017-10-24 10:17:00,38.5,116.79,11.73 +2017-10-24 10:32:00,38.8375,116.86,11.75 +2017-10-24 10:47:00,38.305,116.927,11.76 +2017-10-24 11:02:00,39.3838,117.005,11.77 +2017-10-24 11:17:00,39.9725,117.05,11.79 +2017-10-24 11:32:00,39.9262,117.072,11.81 +2017-10-24 11:47:00,39.18,117.097,11.82 +2017-10-24 12:02:00,37.6562,117.112,11.82 +2017-10-24 12:17:00,38.8825,117.21,11.85 +2017-10-24 12:32:00,37.5512,117.647,11.87 +2017-10-24 12:47:00,38.55,117.893,11.88 +2017-10-24 13:02:00,38.645,117.95,11.9 +2017-10-24 13:17:00,39.7262,117.822,11.9 +2017-10-24 13:32:00,39.8737,117.57,11.92 +2017-10-24 13:47:00,38.1537,117.352,11.93 +2017-10-24 14:02:00,38.885,117.222,11.97 +2017-10-24 14:17:00,39.8288,117.2,11.95 +2017-10-24 14:32:00,38.3988,117.16,11.96 +2017-10-24 14:47:00,37.2087,117.16,11.96 +2017-10-24 15:02:00,39.7738,117.147,11.96 +2017-10-24 15:17:00,40.3538,117.117,11.97 +2017-10-24 15:32:00,39.8275,117.13,11.98 +2017-10-24 15:47:00,37.7562,117.132,11.97 +2017-10-24 16:02:00,38.5975,117.132,11.97 +2017-10-24 16:17:00,38.5,117.132,11.98 +2017-10-24 16:32:00,37.7575,117.128,11.99 +2017-10-24 16:47:00,39.0812,117.117,12.0 +2017-10-24 17:02:00,38.3075,117.13,11.99 +2017-10-24 17:17:00,38.45,117.182,11.99 +2017-10-24 17:32:00,40.215,117.26,11.99 +2017-10-24 17:47:00,38.9337,117.365,12.0 +2017-10-24 18:02:00,37.2588,117.438,12.01 +2017-10-24 18:17:00,39.0812,117.497,12.02 +2017-10-24 18:32:00,40.2125,117.55,12.03 +2017-10-24 18:47:00,40.0713,117.552,12.04 +2017-10-24 19:02:00,40.26,117.542,12.04 +2017-10-24 19:17:00,38.9337,117.542,12.05 +2017-10-24 19:32:00,37.3575,117.527,12.05 +2017-10-24 19:47:00,39.1837,117.542,12.05 +2017-10-24 20:02:00,37.7075,117.527,12.04 +2017-10-24 20:17:00,38.4962,117.54,12.04 +2017-10-24 20:32:00,38.205,117.59,12.04 +2017-10-24 20:47:00,39.825,117.66,12.04 +2017-10-24 21:02:00,39.9262,117.73,12.04 +2017-10-24 21:17:00,38.7387,117.787,12.04 +2017-10-24 21:32:00,38.985,117.83,12.04 +2017-10-24 21:47:00,38.7862,117.827,12.03 +2017-10-24 22:02:00,37.5575,117.807,12.01 +2017-10-24 22:17:00,38.9337,117.785,12.0 +2017-10-24 22:32:00,39.53,117.742,11.99 +2017-10-24 22:47:00,39.0325,117.7,11.98 +2017-10-24 23:02:00,40.545,117.658,11.98 +2017-10-24 23:17:00,38.5462,117.632,11.99 +2017-10-24 23:32:00,38.5975,117.605,12.0 +2017-10-24 23:47:00,38.695,117.58,12.01 +2017-10-25 00:02:00,37.5575,117.602,12.01 +2017-10-25 00:17:00,39.135,117.662,12.03 +2017-10-25 00:32:00,38.885,117.717,12.02 +2017-10-25 00:47:00,38.6975,117.75,12.02 +2017-10-25 01:02:00,38.695,117.762,12.03 +2017-10-25 01:17:00,40.2625,117.775,12.02 +2017-10-25 01:32:00,41.0812,117.768,12.04 +2017-10-25 01:47:00,38.2038,117.755,12.04 +2017-10-25 02:02:00,39.7288,117.727,12.06 +2017-10-25 02:17:00,38.8838,117.697,12.08 +2017-10-25 02:32:00,38.7913,117.65,12.08 +2017-10-25 02:47:00,39.6275,117.595,12.07 +2017-10-25 03:02:00,38.055,117.592,12.06 +2017-10-25 03:17:00,39.6312,117.635,12.06 +2017-10-25 03:32:00,38.3025,117.692,12.06 +2017-10-25 03:47:00,37.815,117.74,12.07 +2017-10-25 04:02:00,39.5312,117.76,12.06 +2017-10-25 04:17:00,40.2162,117.762,12.05 +2017-10-25 04:32:00,39.135,117.735,12.06 +2017-10-25 04:47:00,38.4037,117.702,12.07 +2017-10-25 05:02:00,39.0837,117.66,12.09 +2017-10-25 05:17:00,38.2562,117.615,12.09 +2017-10-25 05:32:00,39.4375,117.565,12.09 +2017-10-25 05:47:00,39.4837,117.56,12.08 +2017-10-25 06:02:00,38.5488,117.582,12.06 +2017-10-25 06:17:00,39.6338,117.622,12.06 +2017-10-25 06:32:00,39.0825,117.625,12.05 +2017-10-25 06:47:00,39.485,117.64,12.04 +2017-10-25 07:02:00,38.785,117.637,12.04 +2017-10-25 07:17:00,39.24,117.655,12.05 +2017-10-25 07:32:00,39.4362,117.655,12.08 +2017-10-25 07:47:00,39.4375,117.647,12.12 +2017-10-25 08:02:00,39.2837,117.612,12.14 +2017-10-25 08:17:00,39.0837,117.587,12.16 +2017-10-25 08:32:00,38.305,117.507,12.18 +2017-10-25 08:47:00,40.0713,117.467,12.2 +2017-10-25 09:02:00,39.2825,117.425,12.22 +2017-10-25 09:17:00,39.2825,117.367,12.22 +2017-10-25 09:32:00,39.4812,117.375,12.26 +2017-10-25 09:47:00,38.4,117.372,12.28 +2017-10-25 10:02:00,38.1038,117.357,12.33 +2017-10-25 10:17:00,40.07,117.342,12.37 +2017-10-25 10:32:00,37.9087,117.34,12.39 +2017-10-25 10:47:00,39.5775,117.315,12.41 +2017-10-25 11:02:00,38.0537,117.29,12.42 +2017-10-25 11:17:00,38.2525,117.283,12.47 +2017-10-25 11:32:00,38.6488,117.22,12.53 +2017-10-25 11:47:00,39.7762,117.253,12.57 +2017-10-25 12:02:00,38.5475,117.262,12.59 +2017-10-25 13:47:00,39.185,116.947,12.64 +2017-10-25 14:02:00,38.305,116.912,12.64 +2017-10-25 14:17:00,38.9825,116.9,12.64 +2017-10-25 14:32:00,38.6475,116.86,12.66 +2017-10-25 14:47:00,38.8825,116.817,12.68 +2017-10-25 15:02:00,40.1175,116.795,12.69 +2017-10-25 15:17:00,39.135,116.795,12.69 +2017-10-25 15:32:00,37.4062,116.81,12.7 +2017-10-25 15:47:00,37.5088,116.787,12.71 +2017-10-25 16:02:00,38.9313,116.812,12.73 +2017-10-25 16:17:00,37.905,116.787,12.73 +2017-10-25 16:32:00,38.5488,116.79,12.74 +2017-10-25 16:47:00,37.0175,116.765,12.74 +2017-10-25 17:02:00,37.755,116.777,12.75 +2017-10-25 17:17:00,37.4012,116.768,12.75 +2017-10-25 17:32:00,37.1137,116.783,12.75 +2017-10-25 17:47:00,39.8787,116.76,12.75 +2017-10-25 18:02:00,37.8125,116.737,12.76 +2017-10-25 18:17:00,37.7075,116.64,12.77 +2017-10-25 18:32:00,39.4875,116.537,12.78 +2017-10-25 18:47:00,38.7925,116.44,12.79 +2017-10-25 19:02:00,38.1038,116.37,12.8 +2017-10-25 19:17:00,39.0325,116.295,12.81 +2017-10-25 19:32:00,38.6512,116.262,12.82 +2017-10-25 19:47:00,38.4012,116.262,12.82 +2017-10-25 20:02:00,37.1162,116.237,12.82 +2017-10-25 20:17:00,38.0563,116.222,12.83 +2017-10-25 20:32:00,38.4525,116.205,12.83 +2017-10-25 20:47:00,38.3075,116.212,12.84 +2017-10-25 21:02:00,38.7387,116.185,12.84 +2017-10-25 21:17:00,38.0062,116.18,12.84 +2017-10-25 21:32:00,37.0675,116.18,12.82 +2017-10-25 21:47:00,36.2862,116.175,12.8 +2017-10-25 22:02:00,37.76,116.165,12.77 +2017-10-25 22:17:00,38.205,116.188,12.75 +2017-10-25 22:32:00,37.3075,116.192,12.72 +2017-10-25 22:47:00,38.5525,116.21,12.7 +2017-10-25 23:02:00,38.98,116.207,12.68 +2017-10-25 23:17:00,38.5987,116.15,12.67 +2017-10-25 23:32:00,38.7438,116.08,12.65 +2017-10-25 23:47:00,37.0163,115.975,12.62 +2017-10-26 00:02:00,37.9562,115.887,12.61 +2017-10-26 00:17:00,40.0262,115.822,12.6 +2017-10-26 00:32:00,38.3025,115.798,12.6 +2017-10-26 00:47:00,38.0013,115.753,12.6 +2017-10-26 01:02:00,37.5062,115.722,12.6 +2017-10-26 01:17:00,37.8562,115.712,12.58 +2017-10-26 01:32:00,38.3525,115.72,12.57 +2017-10-26 01:47:00,38.5013,115.72,12.56 +2017-10-26 02:02:00,38.0025,115.747,12.56 +2017-10-26 02:17:00,37.3087,115.753,12.58 +2017-10-26 02:32:00,39.88,115.785,12.58 +2017-10-26 02:47:00,38.6475,115.802,12.59 +2017-10-26 03:02:00,37.86,115.802,12.59 +2017-10-26 03:17:00,39.975,115.817,12.59 +2017-10-26 03:32:00,39.3337,115.812,12.59 +2017-10-26 03:47:00,38.4512,115.81,12.59 +2017-10-26 04:02:00,38.455,115.79,12.57 +2017-10-26 04:17:00,37.91,115.735,12.56 +2017-10-26 04:32:00,39.0887,115.665,12.56 +2017-10-26 04:47:00,37.2575,115.585,12.56 +2017-10-26 05:02:00,40.2612,115.507,12.56 +2017-10-26 05:17:00,38.2025,115.425,12.54 +2017-10-26 05:32:00,37.7062,115.365,12.52 +2017-10-26 05:47:00,39.7775,115.332,12.51 +2017-10-26 06:02:00,38.6475,115.285,12.49 +2017-10-26 06:17:00,38.5,115.262,12.48 +2017-10-26 06:32:00,38.2025,115.24,12.46 +2017-10-26 06:47:00,37.9075,115.255,12.44 +2017-10-26 07:02:00,38.935,115.255,12.44 +2017-10-26 07:17:00,38.5,115.275,12.43 +2017-10-26 07:32:00,37.355,115.867,12.43 +2017-10-26 07:47:00,38.1987,116.537,12.42 +2017-10-26 08:02:00,38.5475,116.91,12.42 +2017-10-26 08:17:00,37.2062,116.915,12.39 +2017-10-26 08:32:00,38.8363,116.527,12.39 +2017-10-26 08:47:00,39.9275,116.077,12.42 +2017-10-26 09:02:00,39.2325,115.628,12.44 +2017-10-26 09:17:00,39.4337,115.31,12.48 +2017-10-26 09:32:00,38.3037,115.05,12.5 +2017-10-26 09:47:00,38.695,114.95,12.52 +2017-10-26 10:02:00,38.74,114.94,12.53 +2017-10-26 10:17:00,38.36,114.975,12.56 +2017-10-26 10:32:00,39.3875,114.952,12.58 +2017-10-26 10:47:00,38.5025,114.947,12.6 +2017-10-26 11:02:00,38.105,114.967,12.62 +2017-10-26 11:17:00,38.55,114.95,12.64 +2017-10-26 11:32:00,38.255,114.965,12.65 +2017-10-26 11:47:00,38.2012,114.995,12.66 +2017-10-26 12:02:00,39.88,115.033,12.68 +2017-10-26 12:17:00,39.0325,115.087,12.68 +2017-10-26 12:32:00,37.955,115.122,12.7 +2017-10-26 12:47:00,37.7075,115.115,12.7 +2017-10-26 13:02:00,38.1562,115.095,12.71 +2017-10-26 13:17:00,37.6587,115.012,12.73 +2017-10-26 13:32:00,39.0837,114.912,12.73 +2017-10-26 13:47:00,38.25,114.847,12.74 +2017-10-26 14:02:00,39.4337,114.807,12.73 +2017-10-26 14:17:00,38.8363,114.82,12.72 +2017-10-26 14:32:00,39.63,114.825,12.72 +2017-10-26 14:47:00,38.155,114.827,12.7 +2017-10-26 15:02:00,39.0325,114.89,12.7 +2017-10-26 15:17:00,40.0238,114.92,12.69 +2017-10-26 15:32:00,39.7775,114.942,12.69 +2017-10-26 15:47:00,38.3075,114.98,12.69 +2017-10-26 16:02:00,37.8087,115.02,12.69 +2017-10-26 16:17:00,38.4538,115.07,12.69 +2017-10-26 16:32:00,38.8375,115.095,12.7 +2017-10-26 16:47:00,38.9337,115.107,12.71 +2017-10-26 17:02:00,39.135,115.11,12.72 +2017-10-26 17:17:00,38.355,115.105,12.72 +2017-10-26 17:32:00,37.5075,115.097,12.7 +2017-10-26 17:47:00,38.2575,115.092,12.71 +2017-10-26 18:02:00,38.205,115.085,12.72 +2017-10-26 18:17:00,39.1888,115.03,12.75 +2017-10-26 18:32:00,39.4825,114.95,12.74 +2017-10-26 18:47:00,37.8613,114.845,12.73 +2017-10-26 19:02:00,38.5537,114.777,12.74 +2017-10-26 19:17:00,37.66,114.715,12.75 +2017-10-26 19:32:00,38.6012,114.685,12.76 +2017-10-26 19:47:00,38.6963,114.67,12.76 +2017-10-26 20:02:00,38.3075,114.685,12.73 +2017-10-26 20:17:00,38.7875,114.697,12.72 +2017-10-26 20:32:00,38.305,114.735,12.72 +2017-10-26 20:47:00,39.335,114.762,12.73 +2017-10-26 21:02:00,38.155,114.8,12.73 +2017-10-26 21:17:00,38.0037,114.842,12.73 +2017-10-26 21:32:00,38.4037,114.865,12.73 +2017-10-26 21:47:00,36.24,114.9,12.73 +2017-10-26 22:02:00,39.1387,114.927,12.73 +2017-10-26 22:17:00,38.5025,114.982,12.71 +2017-10-26 22:32:00,38.5025,114.99,12.69 +2017-10-26 22:47:00,38.355,114.985,12.68 +2017-10-26 23:02:00,38.505,114.927,12.68 +2017-10-26 23:17:00,38.4538,114.83,12.67 +2017-10-26 23:32:00,37.3037,114.783,12.67 +2017-10-26 23:47:00,40.3063,114.742,12.67 +2017-10-27 00:02:00,37.4538,114.745,12.66 +2017-10-27 00:17:00,38.6025,114.755,12.65 +2017-10-27 00:32:00,37.1637,114.747,12.65 +2017-10-27 00:47:00,38.695,114.762,12.64 +2017-10-27 01:02:00,38.9325,114.765,12.61 +2017-10-27 01:17:00,37.405,114.775,12.59 +2017-10-27 01:32:00,38.6012,114.798,12.56 +2017-10-27 01:47:00,37.9112,114.802,12.56 +2017-10-27 02:02:00,40.0737,114.837,12.57 +2017-10-27 02:17:00,38.9825,114.85,12.56 +2017-10-27 02:32:00,38.1,114.857,12.55 +2017-10-27 02:47:00,37.8613,114.872,12.56 +2017-10-27 03:02:00,38.5,114.897,12.55 +2017-10-27 03:17:00,39.58,114.923,12.54 +2017-10-27 03:32:00,37.1162,114.917,12.54 +2017-10-27 03:47:00,38.5488,114.94,12.54 +2017-10-27 04:02:00,37.81,114.925,12.52 +2017-10-27 04:17:00,38.0525,114.862,12.51 +2017-10-27 04:32:00,37.7562,114.81,12.52 +2017-10-27 04:47:00,38.355,114.72,12.52 +2017-10-27 05:02:00,38.7012,114.682,12.51 +2017-10-27 05:17:00,39.5788,114.655,12.49 +2017-10-27 05:32:00,37.3063,114.662,12.48 +2017-10-27 05:47:00,38.8862,114.655,12.46 +2017-10-27 06:02:00,38.455,114.64,12.45 +2017-10-27 06:17:00,37.355,114.615,12.46 +2017-10-27 06:32:00,38.79,114.585,12.47 +2017-10-27 06:47:00,37.8587,114.585,12.45 +2017-10-27 07:02:00,38.0537,114.6,12.42 +2017-10-27 07:17:00,39.7762,114.602,12.43 +2017-10-27 07:32:00,39.9275,114.628,12.44 +2017-10-27 07:47:00,37.9075,114.637,12.44 +2017-10-27 08:02:00,38.3075,114.645,12.43 +2017-10-27 08:17:00,38.6025,114.65,12.44 +2017-10-27 08:32:00,39.1875,114.622,12.43 +2017-10-27 08:47:00,39.3375,114.565,12.44 +2017-10-27 09:02:00,40.7438,114.64,12.44 +2017-10-27 09:17:00,38.55,114.555,12.45 +2017-10-27 09:32:00,38.2537,114.465,12.44 +2017-10-27 09:47:00,38.2025,114.402,12.42 +2017-10-27 10:02:00,38.3538,114.315,12.41 +2017-10-27 10:17:00,38.9812,114.188,12.37 +2017-10-27 10:32:00,36.5225,113.985,12.35 +2017-10-27 10:47:00,39.235,114.042,12.32 +2017-10-27 11:02:00,37.8112,114.02,12.36 +2017-10-27 11:17:00,38.9812,114.01,12.44 +2017-10-27 11:32:00,38.65,114.02,12.47 +2017-10-27 11:47:00,37.305,114.033,12.47 +2017-10-27 12:02:00,38.155,114.087,12.48 +2017-10-27 12:17:00,38.8363,114.112,12.48 +2017-10-27 12:32:00,37.4025,114.185,12.49 +2017-10-27 12:47:00,37.3037,114.22,12.49 +2017-10-27 13:02:00,38.5013,114.255,12.52 +2017-10-27 13:17:00,38.455,114.277,12.54 +2017-10-27 13:32:00,37.955,114.347,12.56 +2017-10-27 13:47:00,37.9538,114.39,12.6 +2017-10-27 14:02:00,38.1537,114.42,12.59 +2017-10-27 14:17:00,38.8825,114.452,12.56 +2017-10-27 14:32:00,38.545,114.485,12.53 +2017-10-27 14:47:00,38.8375,114.472,12.53 +2017-10-27 15:02:00,39.5788,114.472,12.51 +2017-10-27 15:17:00,38.6475,114.44,12.51 +2017-10-27 15:32:00,38.5025,114.352,12.5 +2017-10-27 15:47:00,39.725,114.23,12.49 +2017-10-27 16:02:00,38.6488,114.152,12.46 +2017-10-27 16:17:00,38.9325,114.107,12.45 +2017-10-27 16:32:00,37.8613,114.062,12.43 +2017-10-27 16:47:00,37.9062,114.062,12.44 +2017-10-27 17:02:00,39.6275,114.077,12.42 +2017-10-27 17:17:00,39.775,114.07,12.4 +2017-10-27 17:32:00,38.0037,114.08,12.38 +2017-10-27 17:47:00,37.7113,114.11,12.35 +2017-10-27 18:02:00,38.7438,114.12,12.32 +2017-10-27 18:17:00,37.9538,114.165,12.31 +2017-10-27 18:32:00,39.4863,114.185,12.32 +2017-10-27 18:47:00,36.82,114.222,12.31 +2017-10-27 19:02:00,38.2038,114.242,12.29 +2017-10-27 19:17:00,38.1537,114.222,12.27 +2017-10-27 19:32:00,38.7925,114.247,12.25 +2017-10-27 19:47:00,39.285,114.268,12.23 +2017-10-27 20:02:00,38.9812,114.265,12.22 +2017-10-27 20:17:00,38.1038,114.28,12.2 +2017-10-27 20:32:00,39.0825,114.287,12.18 +2017-10-27 20:47:00,37.3562,114.268,12.18 +2017-10-27 21:02:00,37.8613,114.202,12.18 +2017-10-27 21:17:00,39.1375,114.143,12.18 +2017-10-27 21:32:00,39.085,114.06,12.19 +2017-10-27 21:47:00,38.3538,114.055,12.16 +2017-10-27 22:02:00,39.8237,114.015,12.14 +2017-10-27 22:17:00,38.4987,114.052,12.13 +2017-10-27 22:32:00,39.0312,114.037,12.12 +2017-10-27 22:47:00,38.1537,114.052,12.1 +2017-10-27 23:02:00,38.6437,114.072,12.06 +2017-10-27 23:17:00,38.6012,114.1,12.02 +2017-10-27 23:32:00,39.6762,114.11,12.0 +2017-10-27 23:47:00,39.3325,114.13,11.99 +2017-10-28 00:02:00,38.1062,114.162,11.98 +2017-10-28 00:17:00,38.79,114.18,11.96 +2017-10-28 00:32:00,38.5013,114.185,11.95 +2017-10-28 00:47:00,38.0062,114.225,11.93 +2017-10-28 01:02:00,38.5,114.247,11.9 +2017-10-28 01:17:00,38.1012,114.257,11.88 +2017-10-28 01:32:00,38.6038,114.245,11.85 +2017-10-28 01:47:00,37.8138,114.28,11.81 +2017-10-28 02:02:00,36.9175,114.287,11.8 +2017-10-28 02:17:00,37.5563,114.305,11.8 +2017-10-28 02:32:00,38.5525,114.287,11.8 +2017-10-28 02:47:00,38.255,114.202,11.79 +2017-10-28 03:02:00,38.6488,114.155,11.77 +2017-10-28 03:17:00,39.7787,114.062,11.76 +2017-10-28 03:32:00,38.9863,114.037,11.74 +2017-10-28 03:47:00,38.205,114.045,11.73 +2017-10-28 04:02:00,37.5612,114.04,11.72 +2017-10-28 04:17:00,39.435,114.0,11.7 +2017-10-28 04:32:00,38.645,114.018,11.68 +2017-10-28 04:47:00,40.6925,114.022,11.66 +2017-10-28 05:02:00,39.6775,114.027,11.66 +2017-10-28 05:17:00,38.6925,113.935,11.65 +2017-10-28 05:32:00,39.4812,113.87,11.62 +2017-10-28 05:47:00,38.6012,113.762,11.6 +2017-10-28 06:02:00,39.1375,113.745,11.59 +2017-10-28 06:17:00,40.74,113.707,11.58 +2017-10-28 06:32:00,39.6312,113.902,11.56 +2017-10-28 06:47:00,40.6462,114.042,11.55 +2017-10-28 07:02:00,39.285,114.105,11.54 +2017-10-28 07:17:00,38.1525,114.097,11.53 +2017-10-28 07:32:00,38.4538,114.06,11.52 +2017-10-28 07:47:00,37.6075,114.02,11.51 +2017-10-28 08:02:00,39.78,113.992,11.51 +2017-10-28 08:17:00,40.3037,113.947,11.49 +2017-10-28 08:32:00,39.0837,113.905,11.48 +2017-10-28 08:47:00,38.45,113.865,11.48 +2017-10-28 09:02:00,39.4837,113.867,11.48 +2017-10-28 09:17:00,39.0912,113.887,11.48 +2017-10-28 09:32:00,38.4012,113.772,11.47 +2017-10-28 09:47:00,39.8763,113.827,11.47 +2017-10-28 10:02:00,38.6937,113.753,11.47 +2017-10-28 10:17:00,39.8262,113.675,11.48 +2017-10-28 10:32:00,38.3562,113.737,11.47 +2017-10-28 10:47:00,38.74,113.73,11.47 +2017-10-28 11:02:00,39.135,113.68,11.48 +2017-10-28 11:17:00,39.235,113.535,11.47 +2017-10-28 11:32:00,40.1675,113.412,11.47 +2017-10-28 11:47:00,38.1525,113.427,11.46 +2017-10-28 12:02:00,38.7425,113.352,11.44 +2017-10-28 12:17:00,38.305,113.347,11.44 +2017-10-28 12:32:00,38.3525,113.37,11.44 +2017-10-28 12:47:00,38.9313,113.332,11.46 +2017-10-28 13:02:00,38.3525,113.307,11.44 +2017-10-28 13:17:00,38.8325,113.34,11.43 +2017-10-28 13:32:00,38.6462,113.382,11.42 +2017-10-28 13:47:00,39.9275,113.4,11.42 +2017-10-28 14:02:00,38.7375,113.432,11.41 +2017-10-28 14:17:00,37.2537,113.442,11.4 +2017-10-28 14:32:00,39.4837,113.503,11.38 +2017-10-28 14:47:00,40.305,113.503,11.36 +2017-10-28 15:02:00,38.7375,113.527,11.34 +2017-10-28 15:17:00,38.3988,113.497,11.33 +2017-10-28 15:32:00,39.0262,113.497,11.32 +2017-10-28 15:47:00,39.775,113.53,11.3 +2017-10-28 16:02:00,39.725,113.492,11.29 +2017-10-28 16:17:00,38.2513,113.39,11.29 +2017-10-28 16:32:00,38.1525,113.242,11.28 +2017-10-28 16:47:00,38.835,113.195,11.28 +2017-10-28 17:02:00,37.3538,113.132,11.26 +2017-10-28 17:17:00,39.335,113.09,11.25 +2017-10-28 17:32:00,38.74,113.06,11.25 +2017-10-28 17:47:00,39.1375,113.02,11.24 +2017-10-28 18:02:00,39.925,112.952,11.23 +2017-10-28 18:17:00,41.0325,112.915,11.22 +2017-10-28 18:32:00,40.5413,112.942,11.21 +2017-10-28 18:47:00,38.7375,112.927,11.2 +2017-10-28 19:02:00,37.8075,112.895,11.2 +2017-10-28 19:17:00,39.9725,112.812,11.19 +2017-10-28 19:32:00,39.4375,112.8,11.17 +2017-10-28 19:47:00,38.2038,112.77,11.15 +2017-10-28 20:02:00,37.9062,112.75,11.14 +2017-10-28 20:17:00,38.935,112.715,11.14 +2017-10-28 20:32:00,38.8375,112.69,11.12 +2017-10-28 20:47:00,39.6287,112.64,11.11 +2017-10-28 21:02:00,38.79,112.587,11.09 +2017-10-28 21:17:00,38.305,112.5,11.08 +2017-10-28 21:32:00,37.1625,112.302,11.08 +2017-10-28 21:47:00,38.8838,112.192,11.07 +2017-10-28 22:02:00,40.0163,112.027,11.07 +2017-10-28 22:17:00,41.0337,111.917,11.06 +2017-10-28 22:32:00,39.6775,111.762,11.05 +2017-10-28 22:47:00,39.235,111.655,11.05 +2017-10-28 23:02:00,40.1162,111.585,11.05 +2017-10-28 23:17:00,38.7387,111.49,11.05 +2017-10-28 23:32:00,39.775,111.382,11.04 +2017-10-28 23:47:00,38.8825,111.345,11.03 +2017-10-29 00:02:00,38.4525,111.235,11.04 +2017-10-29 00:17:00,38.9812,111.255,11.05 +2017-10-29 01:31:39,39.0312,111.197,11.05 +2017-10-29 01:47:00,40.2575,111.158,11.05 +2017-10-29 02:02:00,39.9737,111.075,11.06 +2017-10-29 02:17:00,38.7875,111.09,11.05 +2017-10-29 02:32:00,39.0275,111.117,11.06 +2017-10-29 02:47:00,39.2312,111.09,11.08 +2017-10-29 03:02:00,39.485,111.102,11.08 +2017-10-29 03:17:00,39.8312,110.995,11.07 +2017-10-29 03:32:00,37.5612,110.96,11.07 +2017-10-29 03:47:00,39.7762,110.847,11.08 +2017-10-29 04:02:00,39.33,110.878,11.08 +2017-10-29 04:17:00,40.445,110.58,11.07 +2017-10-29 04:32:00,38.8862,110.525,11.06 +2017-10-29 04:47:00,39.385,110.432,11.06 +2017-10-29 05:02:00,39.2312,110.378,11.06 +2017-10-29 05:17:00,38.205,110.378,11.04 +2017-10-29 05:32:00,39.7762,110.665,11.01 +2017-10-29 05:47:00,40.1188,111.102,10.99 +2017-10-29 06:02:00,40.1188,111.732,10.96 +2017-10-29 06:17:00,40.3075,112.25,10.95 +2017-10-29 06:32:00,40.7375,112.342,10.98 +2017-10-29 06:47:00,40.8387,112.575,10.98 +2017-10-29 07:02:00,40.305,112.57,10.91 +2017-10-29 07:17:00,39.6287,112.497,10.9 +2017-10-29 07:32:00,39.58,112.46,10.88 +2017-10-29 07:32:01,39.975,111.837,10.7 +2017-10-29 07:47:00,39.135,112.33,10.84 +2017-10-29 07:47:01,40.6937,111.615,10.68 +2017-10-29 08:02:00,40.4938,112.04,10.77 +2017-10-29 08:02:01,39.3337,111.552,10.68 +2017-10-29 08:17:00,41.5238,111.835,10.72 +2017-10-29 08:17:01,38.6963,111.75,10.69 +2017-10-29 08:32:01,39.4337,112.027,10.66 +2017-10-29 08:47:01,40.4987,112.45,10.64 +2017-10-29 09:02:01,38.3988,112.78,10.62 +2017-10-29 09:17:01,40.8875,113.04,10.63 +2017-10-29 09:32:01,41.7725,113.155,10.63 +2017-10-29 09:47:01,39.5812,113.152,10.62 +2017-10-29 10:02:01,40.6413,113.005,10.59 +2017-10-29 10:17:01,40.5875,113.067,10.57 +2017-10-29 10:32:01,40.305,113.202,10.56 +2017-10-29 10:47:01,39.6312,113.143,10.56 +2017-10-29 11:02:01,39.9238,113.097,10.57 +2017-10-29 11:17:01,40.165,113.077,10.57 +2017-10-29 11:32:01,40.445,113.315,10.57 +2017-10-29 11:47:01,39.6762,113.292,10.56 +2017-10-29 12:02:01,39.9737,113.45,10.55 +2017-10-29 12:17:01,40.35,113.522,10.53 +2017-10-29 12:32:01,40.0212,113.65,10.52 +2017-10-29 12:47:01,40.4938,113.762,10.5 +2017-10-29 13:02:01,39.0825,113.885,10.48 +2017-10-29 13:17:01,40.6425,113.995,10.46 +2017-10-29 13:32:01,39.2825,114.012,10.45 +2017-10-29 13:47:01,39.3838,114.037,10.44 +2017-10-29 14:02:01,39.1325,114.095,10.43 +2017-10-29 14:17:01,42.21,114.2,10.42 +2017-10-29 14:32:01,41.1725,114.322,10.43 +2017-10-29 14:47:01,40.79,114.46,10.43 +2017-10-29 15:02:01,39.23,114.702,10.43 +2017-10-29 15:17:01,38.9825,114.878,10.41 +2017-10-29 15:32:01,40.4012,115.045,10.39 +2017-10-29 15:47:01,41.17,115.197,10.39 +2017-10-29 16:02:01,40.115,115.33,10.39 +2017-10-29 16:17:01,40.0212,115.435,10.37 +2017-10-29 16:32:01,41.6212,115.505,10.36 +2017-10-29 16:47:01,41.2775,115.63,10.36 +2017-10-29 17:02:01,40.74,115.692,10.37 +2017-10-29 17:17:01,39.53,115.755,10.36 +2017-10-29 17:32:01,40.4475,115.805,10.37 +2017-10-29 17:47:01,39.6787,115.845,10.36 +2017-10-29 18:02:01,39.8262,115.832,10.37 +2017-10-29 18:17:01,39.3288,115.81,10.36 +2017-10-29 18:32:01,38.4975,115.747,10.36 +2017-10-29 18:47:01,40.8887,115.645,10.35 +2017-10-29 19:02:01,40.495,115.503,10.35 +2017-10-29 19:17:01,40.1663,115.382,10.35 +2017-10-29 19:32:01,41.1738,115.272,10.35 +2017-10-29 19:47:01,39.7262,115.245,10.33 +2017-10-29 20:02:01,40.5475,115.217,10.31 +2017-10-29 20:17:01,40.2612,115.202,10.28 +2017-10-29 20:32:01,40.35,115.17,10.27 +2017-10-29 20:47:01,41.52,115.158,10.24 +2017-10-29 21:02:01,39.3838,115.152,10.2 +2017-10-29 21:17:01,39.18,115.132,10.17 +2017-10-29 21:32:01,39.8262,115.15,10.13 +2017-10-29 21:47:01,39.9712,115.13,10.09 +2017-10-29 22:02:01,38.25,115.115,10.05 +2017-10-29 22:17:01,40.165,115.082,10.0 +2017-10-29 22:32:01,42.0062,115.087,9.94 +2017-10-29 22:47:01,40.2575,115.05,9.91 +2017-10-29 23:02:01,40.6375,115.045,9.86 +2017-10-29 23:17:01,39.925,115.02,9.81 +2017-10-29 23:32:01,40.8375,115.01,9.75 +2017-10-29 23:47:01,42.1025,115.025,9.71 +2017-10-30 00:02:01,41.32,114.997,9.68 +2017-10-30 00:17:01,41.6175,115.007,9.65 +2017-10-30 00:32:01,39.9737,114.97,9.62 +2017-10-30 00:47:01,39.1312,114.917,9.59 +2017-10-30 01:02:01,40.7363,114.82,9.56 +2017-10-30 01:17:01,40.07,114.702,9.53 +2017-10-30 01:32:01,39.4788,114.643,9.5 +2017-10-30 01:47:01,38.1475,114.612,9.48 +2017-10-30 02:02:01,40.2588,114.587,9.46 +2017-10-30 02:17:01,39.33,114.592,9.45 +2017-10-30 02:32:01,41.175,114.607,9.42 +2017-10-30 02:47:01,40.4887,114.622,9.4 +2017-10-30 03:02:01,40.0225,114.632,9.39 +2017-10-30 03:17:01,39.58,114.658,9.37 +2017-10-30 03:32:01,40.495,114.682,9.35 +2017-10-30 03:47:01,39.2312,114.725,9.34 +2017-10-30 04:02:01,41.4262,114.712,9.32 +2017-10-30 04:17:01,40.495,114.745,9.3 +2017-10-30 04:32:01,40.2175,114.762,9.29 +2017-10-30 04:47:01,42.0112,114.81,9.27 +2017-10-30 05:02:01,38.1038,114.845,9.25 +2017-10-30 05:17:01,40.7925,114.875,9.23 +2017-10-30 05:32:01,39.435,114.887,9.2 +2017-10-30 05:47:01,38.5488,114.91,9.17 +2017-10-30 06:02:01,38.65,114.912,9.14 +2017-10-30 06:17:01,41.7725,114.915,9.11 +2017-10-30 06:32:01,39.2312,114.842,9.09 +2017-10-30 06:47:01,39.6738,114.727,9.06 +2017-10-30 07:02:01,39.8262,114.62,9.04 +2017-10-30 07:17:01,40.0687,114.487,9.01 +2017-10-30 07:32:01,38.7412,114.412,8.98 +2017-10-30 07:47:01,40.4975,114.327,8.96 +2017-10-30 08:02:01,40.215,114.287,8.94 +2017-10-30 08:17:01,40.305,114.302,8.92 +2017-10-30 08:32:01,40.1188,114.283,8.91 +2017-10-30 08:47:01,40.6413,114.332,8.89 +2017-10-30 09:02:01,40.6413,114.317,8.89 +2017-10-30 09:17:01,40.7387,114.305,8.89 +2017-10-30 09:32:01,40.3075,114.298,8.88 +2017-10-30 09:47:01,40.7375,114.29,8.86 +2017-10-30 10:02:01,40.6425,114.298,8.86 +2017-10-30 10:17:01,40.985,114.275,8.86 +2017-10-30 10:32:01,40.35,114.155,8.86 +2017-10-30 10:47:01,41.4238,114.055,8.86 +2017-10-30 11:02:01,41.62,113.98,8.86 +2017-10-30 11:17:01,40.0662,113.947,8.87 +2017-10-30 11:32:01,40.3525,113.935,8.88 +2017-10-30 11:47:01,41.6188,113.967,8.87 +2017-10-30 12:02:01,38.98,113.987,8.85 +2017-10-30 12:17:01,39.9262,114.06,8.85 +2017-10-30 12:32:01,40.0187,114.128,8.86 +2017-10-30 12:47:01,39.7787,114.188,8.86 +2017-10-30 13:02:01,40.495,114.295,8.85 +2017-10-30 13:17:01,41.1738,114.36,8.87 +2017-10-30 13:32:01,38.9812,114.457,8.85 +2017-10-30 13:47:01,40.3475,114.545,8.85 +2017-10-30 14:02:01,39.0812,114.6,8.83 +2017-10-30 14:17:01,39.4337,114.635,8.83 +2017-10-30 14:32:01,40.4975,114.675,8.81 +2017-10-30 14:47:01,39.9262,114.735,8.8 +2017-10-30 15:02:01,39.4337,114.8,8.81 +2017-10-30 15:17:01,40.5413,114.847,8.82 +2017-10-30 15:32:01,40.26,114.92,8.82 +2017-10-30 15:47:01,41.225,114.987,8.82 +2017-10-30 16:02:01,38.1537,115.0,8.82 +2017-10-30 16:17:01,40.2675,115.007,8.83 +2017-10-30 16:32:01,38.1475,114.992,8.85 +2017-10-30 16:47:01,41.0788,115.015,8.86 +2017-10-30 17:02:01,38.9325,115.07,8.87 +2017-10-30 17:17:01,40.9362,115.13,8.88 +2017-10-30 17:32:01,41.7175,115.165,8.89 +2017-10-30 17:47:01,40.6437,115.25,8.9 +2017-10-30 18:02:01,41.2725,115.3,8.9 +2017-10-30 18:17:01,39.675,115.342,8.91 +2017-10-30 18:32:01,40.0163,115.387,8.92 +2017-10-30 18:47:01,39.5775,115.417,8.93 +2017-10-30 19:02:01,39.8763,115.445,8.93 +2017-10-30 19:17:01,40.6362,115.452,8.93 +2017-10-30 19:32:01,40.395,115.47,8.92 +2017-10-30 19:47:01,40.11,115.465,8.91 +2017-10-30 20:02:01,41.8637,115.465,8.91 +2017-10-30 20:17:01,39.8225,115.475,8.89 +2017-10-30 20:32:01,40.935,115.45,8.88 +2017-10-30 20:47:01,41.8613,115.423,8.86 +2017-10-30 21:02:01,39.7738,115.402,8.84 +2017-10-30 21:17:01,39.9225,115.307,8.82 +2017-10-30 21:32:01,40.0212,115.197,8.78 +2017-10-30 21:47:01,39.8237,115.045,8.75 +2017-10-30 22:02:01,41.125,114.945,8.72 +2017-10-30 22:17:01,40.6387,114.847,8.69 +2017-10-30 22:32:01,40.0163,114.777,8.66 +2017-10-30 22:47:01,40.69,114.735,8.63 +2017-10-30 23:02:01,38.7837,114.677,8.61 +2017-10-30 23:17:01,40.7363,114.658,8.59 +2017-10-30 23:32:01,39.1325,114.635,8.57 +2017-10-30 23:47:01,41.3675,114.59,8.56 +2017-10-31 00:02:01,40.69,114.55,8.55 +2017-10-31 00:17:01,39.5275,114.495,8.54 +2017-10-31 00:32:01,40.5413,114.44,8.53 +2017-10-31 00:47:01,40.6387,114.4,8.52 +2017-10-31 01:02:01,40.445,114.337,8.51 +2017-10-31 01:17:01,39.9287,114.292,8.51 +2017-10-31 01:32:01,38.7862,114.237,8.51 +2017-10-31 01:47:01,41.0312,114.197,8.52 +2017-10-31 02:02:01,38.975,114.152,8.53 +2017-10-31 02:17:01,39.3787,114.1,8.53 +2017-10-31 02:32:01,40.5387,114.035,8.53 +2017-10-31 02:47:01,39.7225,113.967,8.53 +2017-10-31 03:02:01,39.9712,113.915,8.53 +2017-10-31 03:17:01,42.0537,113.87,8.53 +2017-10-31 03:32:01,40.5837,113.75,8.54 +2017-10-31 03:47:01,40.2087,113.605,8.55 +2017-10-31 04:02:01,38.8775,113.442,8.55 +2017-10-31 04:17:01,39.8775,113.307,8.53 +2017-10-31 04:32:01,39.8262,113.188,8.53 +2017-10-31 04:47:01,38.2513,113.117,8.52 +2017-10-31 05:02:01,40.0687,113.055,8.51 +2017-10-31 05:17:01,39.7237,113.01,8.5 +2017-10-31 05:32:01,39.725,112.97,8.48 +2017-10-31 05:47:01,40.2087,112.947,8.47 +2017-10-31 06:02:01,39.43,112.923,8.46 +2017-10-31 06:17:01,41.1275,112.902,8.45 +2017-10-31 06:32:01,40.1637,112.857,8.44 +2017-10-31 06:47:01,39.9712,112.832,8.43 +2017-10-31 07:02:01,40.6425,112.81,8.41 +2017-10-31 07:17:01,40.64,112.787,8.41 +2017-10-31 07:32:01,39.9675,112.762,8.41 +2017-10-31 07:47:01,38.8825,112.742,8.42 +2017-10-31 08:02:01,40.26,112.705,8.41 +2017-10-31 08:17:01,40.3487,112.692,8.42 +2017-10-31 08:32:01,39.2288,112.655,8.43 +2017-10-31 08:47:01,40.9837,112.625,8.45 +2017-10-31 09:02:01,40.7875,112.59,8.45 +2017-10-31 09:17:01,38.8812,112.497,8.45 +2017-10-31 09:32:01,39.8763,112.385,8.45 +2017-10-31 09:47:01,39.7237,112.197,8.45 +2017-10-31 10:02:01,41.5687,112.067,8.47 +2017-10-31 10:17:01,39.9238,111.935,8.48 +2017-10-31 10:32:01,40.115,111.827,8.48 +2017-10-31 10:47:01,41.5187,111.792,8.48 +2017-10-31 11:02:01,41.4688,111.755,8.49 +2017-10-31 11:17:01,40.3012,111.74,8.52 +2017-10-31 11:32:01,40.4425,111.72,8.57 +2017-10-31 11:47:01,41.22,111.715,8.58 +2017-10-31 12:02:01,38.5462,111.717,8.59 +2017-10-31 12:17:01,40.2113,111.7,8.6 +2017-10-31 12:32:01,40.5362,111.715,8.61 +2017-10-31 12:47:01,40.02,111.722,8.61 +2017-10-31 13:02:01,40.3475,111.697,8.6 +2017-10-31 13:17:01,41.7188,111.688,8.61 +2017-10-31 13:32:01,40.395,111.702,8.62 +2017-10-31 13:47:01,39.82,111.697,8.63 +2017-10-31 14:02:01,40.7837,111.69,8.64 +2017-10-31 14:17:01,40.2588,111.667,8.65 +2017-10-31 14:32:01,40.0662,111.605,8.65 +2017-10-31 14:47:01,42.0587,111.525,8.65 +2017-10-31 15:02:01,41.6663,111.442,8.66 +2017-10-31 15:17:01,40.8387,111.332,8.66 +2017-10-31 15:32:01,39.5287,111.217,8.67 +2017-10-31 15:47:01,41.3662,111.102,8.66 +2017-10-31 16:02:01,41.37,111.03,8.65 +2017-10-31 16:17:01,40.7375,110.97,8.66 +2017-10-31 16:32:01,39.03,110.905,8.67 +2017-10-31 16:47:01,40.6925,110.885,8.67 +2017-10-31 17:02:01,40.0662,110.855,8.67 +2017-10-31 17:17:01,38.9325,110.84,8.66 +2017-10-31 17:32:01,39.28,110.855,8.66 +2017-10-31 17:47:01,39.6738,110.837,8.68 +2017-10-31 18:02:01,40.5887,110.825,8.69 +2017-10-31 18:17:01,40.5413,110.783,8.7 +2017-10-31 18:32:01,39.3838,110.772,8.7 +2017-10-31 18:47:01,39.6237,110.76,8.7 +2017-10-31 19:02:01,41.2225,110.74,8.7 +2017-10-31 19:17:01,42.2588,110.722,8.71 +2017-10-31 19:32:01,38.7825,110.702,8.71 +2017-10-31 19:47:01,40.3962,110.692,8.71 +2017-10-31 20:02:01,39.5788,110.658,8.7 +2017-10-31 20:17:01,40.79,110.625,8.7 +2017-10-31 20:32:01,38.6912,110.597,8.7 +2017-10-31 20:47:01,41.3187,110.56,8.69 +2017-10-31 21:02:01,41.0775,110.5,8.68 +2017-10-31 21:17:01,38.4962,110.395,8.67 +2017-10-31 21:32:01,40.9837,110.283,8.67 +2017-10-31 21:47:01,39.3825,110.175,8.67 +2017-10-31 22:02:01,40.395,110.135,8.66 +2017-10-31 22:17:01,39.4788,110.072,8.65 +2017-10-31 22:32:01,39.3787,110.04,8.65 +2017-10-31 22:47:01,41.3187,110.003,8.65 +2017-10-31 23:02:01,41.32,109.985,8.64 +2017-10-31 23:17:01,40.1625,109.967,8.63 +2017-10-31 23:32:01,41.125,109.938,8.61 +2017-10-31 23:47:01,39.6762,109.92,8.6 +2017-11-01 00:02:01,39.675,109.927,8.6 +2017-11-01 00:17:01,40.0187,109.908,8.59 +2017-11-01 00:32:01,40.6413,109.92,8.58 +2017-11-01 00:47:01,39.4825,109.902,8.58 +2017-11-01 01:02:01,41.9087,109.925,8.58 +2017-11-01 01:17:01,40.6375,109.895,8.58 +2017-11-01 01:32:01,39.5262,109.887,8.58 +2017-11-01 01:47:01,40.4925,109.882,8.57 +2017-11-01 02:02:01,39.8275,109.875,8.57 +2017-11-01 02:17:01,40.49,109.872,8.56 +2017-11-01 02:32:01,41.1738,109.83,8.57 +2017-11-01 02:47:01,40.7825,109.772,8.58 +2017-11-01 03:02:01,39.8725,109.682,8.6 +2017-11-01 03:17:01,39.875,109.585,8.61 +2017-11-01 03:32:01,40.9837,109.5,8.6 +2017-11-01 03:47:01,40.7375,109.432,8.61 +2017-11-01 04:02:01,40.3975,109.412,8.62 +2017-11-01 04:17:01,39.3262,109.393,8.63 +2017-11-01 04:32:01,41.96,109.372,8.63 +2017-11-01 04:47:01,42.0062,109.357,8.64 +2017-11-01 05:02:01,41.2225,109.357,8.65 +2017-11-01 05:17:01,40.9875,109.342,8.65 +2017-11-01 05:32:01,41.86,109.342,8.67 +2017-11-01 05:47:01,40.35,109.337,8.68 +2017-11-01 06:02:01,40.4925,109.327,8.67 +2017-11-01 06:17:01,40.3475,109.327,8.68 +2017-11-01 06:32:01,40.3487,109.315,8.68 +2017-11-01 06:47:01,40.0662,109.31,8.68 +2017-11-01 07:02:01,40.9388,109.277,8.68 +2017-11-01 07:17:01,41.1712,109.283,8.67 +2017-11-01 07:32:01,39.4313,109.27,8.67 +2017-11-01 07:47:01,41.1237,109.237,8.68 +2017-11-01 08:02:01,39.875,109.197,8.69 +2017-11-01 08:17:01,40.0187,109.518,8.69 +2017-11-01 08:32:01,40.49,110.283,8.7 +2017-11-01 08:47:01,39.925,110.167,8.72 +2017-11-01 09:02:01,39.7712,107.71,8.74 +2017-11-01 09:17:01,39.6725,105.585,8.75 +2017-11-01 09:32:01,39.53,104.245,8.78 +2017-11-01 09:47:01,40.0687,103.475,8.8 +2017-11-01 10:02:01,39.825,103.105,8.82 +2017-11-01 10:17:01,40.8838,103.03,8.84 +2017-11-01 10:32:01,40.7387,103.105,8.88 +2017-11-01 10:47:01,41.4238,103.242,8.91 +2017-11-01 11:02:01,40.5887,103.425,8.92 +2017-11-01 11:17:01,40.8375,103.662,8.92 +2017-11-01 11:32:01,41.2237,103.93,8.94 +2017-11-01 11:47:01,40.2637,104.23,8.97 +2017-11-01 12:02:01,41.1738,104.417,8.98 +2017-11-01 12:17:01,40.9375,104.632,8.99 +2017-11-01 12:32:01,40.1675,104.852,9.0 +2017-11-01 12:47:01,41.525,105.062,9.02 +2017-11-01 13:02:01,40.17,105.268,9.02 +2017-11-01 13:17:01,41.4238,105.462,9.03 +2017-11-01 13:32:01,41.08,105.64,9.04 +2017-11-01 13:47:01,40.745,105.81,9.05 +2017-11-01 14:02:01,39.88,105.957,9.06 +2017-11-01 14:17:01,40.0225,106.107,9.07 +2017-11-01 14:32:01,40.5413,106.237,9.08 +2017-11-01 14:47:01,38.885,106.327,9.07 +2017-11-01 15:02:01,40.9362,106.412,9.05 +2017-11-01 15:17:01,40.02,106.485,9.06 +2017-11-01 15:32:01,39.4337,106.56,9.07 +2017-11-01 15:47:01,40.6912,106.622,9.07 +2017-11-01 16:02:01,40.2137,106.697,9.07 +2017-11-01 16:17:01,40.1687,106.75,9.07 +2017-11-01 16:32:01,39.7775,106.805,9.06 +2017-11-01 16:47:01,40.94,106.855,9.06 +2017-11-01 17:02:01,40.8887,106.905,9.08 +2017-11-01 17:17:01,41.0825,106.93,9.08 +2017-11-01 17:32:01,38.5987,106.935,9.08 +2017-11-01 17:47:01,40.84,106.94,9.08 +2017-11-01 18:02:01,40.8425,106.915,9.09 +2017-11-01 18:17:01,40.8412,106.85,9.11 +2017-11-01 18:32:01,40.3962,106.78,9.12 +2017-11-01 18:47:01,40.2612,106.69,9.12 +2017-11-01 19:02:01,40.4987,106.62,9.11 +2017-11-01 19:17:01,40.3562,106.512,9.12 +2017-11-01 19:32:01,40.8875,106.425,9.13 +2017-11-01 19:47:01,40.215,106.352,9.14 +2017-11-01 20:02:01,39.0337,106.272,9.15 +2017-11-01 20:17:01,39.5775,106.212,9.15 +2017-11-01 20:32:01,40.84,106.12,9.16 +2017-11-01 20:47:01,41.525,105.995,9.17 +2017-11-01 21:02:01,41.0362,105.795,9.18 +2017-11-01 21:17:01,40.2113,105.652,9.18 +2017-11-01 21:32:01,40.0225,105.555,9.19 +2017-11-01 21:47:01,40.4987,105.485,9.19 +2017-11-01 22:02:01,40.8387,105.445,9.19 +2017-11-01 22:17:01,41.0337,105.445,9.2 +2017-11-01 22:32:01,40.74,105.457,9.2 +2017-11-01 22:47:01,39.8312,105.475,9.2 +2017-11-01 23:02:01,42.0612,105.512,9.2 +2017-11-01 23:17:01,40.4437,105.542,9.2 +2017-11-01 23:32:01,40.695,105.575,9.2 +2017-11-01 23:47:01,39.2337,105.617,9.19 +2017-11-02 00:02:01,41.4262,105.665,9.19 +2017-11-02 00:17:01,40.8887,105.712,9.18 +2017-11-02 00:32:01,41.3725,105.762,9.19 +2017-11-02 00:47:01,40.5413,105.82,9.19 +2017-11-02 01:02:01,39.78,105.87,9.2 +2017-11-02 01:17:01,39.9275,105.92,9.2 +2017-11-02 01:32:01,40.07,106.0,9.21 +2017-11-02 01:47:01,38.6475,106.042,9.19 +2017-11-02 02:02:01,40.6413,106.12,9.19 +2017-11-02 02:17:01,39.5788,106.175,9.2 +2017-11-02 02:32:01,39.1825,106.235,9.19 +2017-11-02 02:47:01,40.6425,106.285,9.19 +2017-11-02 03:02:01,41.2762,106.305,9.2 +2017-11-02 03:17:01,39.5762,106.32,9.21 +2017-11-02 03:32:01,41.72,106.332,9.22 +2017-11-02 03:47:01,39.675,106.34,9.21 +2017-11-02 04:02:01,40.6912,106.357,9.21 +2017-11-02 04:17:01,40.5025,106.357,9.21 +2017-11-02 04:32:01,41.275,106.35,9.21 +2017-11-02 04:47:01,40.9863,106.382,9.21 +2017-11-02 05:02:01,40.5875,106.408,9.22 +2017-11-02 05:17:01,41.13,106.432,9.22 +2017-11-02 05:32:01,40.3063,106.47,9.24 +2017-11-02 05:47:01,39.725,106.492,9.24 +2017-11-02 06:02:01,39.5262,106.505,9.25 +2017-11-02 06:17:01,40.985,106.527,9.25 +2017-11-02 06:32:01,41.6725,106.555,9.24 +2017-11-02 06:47:01,40.12,106.555,9.24 +2017-11-02 07:02:01,40.1675,106.58,9.25 +2017-11-02 07:17:01,39.9262,106.582,9.26 +2017-11-02 07:32:01,41.5713,106.548,9.27 +2017-11-02 07:47:01,42.1125,106.438,9.27 +2017-11-02 08:02:01,41.4238,106.322,9.29 +2017-11-02 08:17:01,41.08,106.295,9.28 +2017-11-02 08:32:01,42.005,106.24,9.28 +2017-11-02 08:47:01,40.165,106.235,9.3 +2017-11-02 09:02:01,40.9887,106.312,9.33 +2017-11-02 09:17:01,40.6425,106.397,9.38 +2017-11-02 09:32:01,42.8887,106.497,9.44 +2017-11-02 09:47:01,41.7225,106.617,9.48 +2017-11-02 10:02:01,41.3725,106.707,9.48 +2017-11-02 10:17:01,41.915,106.792,9.49 +2017-11-02 10:32:01,42.5037,107.087,9.5 +2017-11-02 10:47:01,42.5037,108.09,9.5 +2017-11-02 11:02:01,42.4562,108.837,9.51 +2017-11-02 11:17:01,42.2113,109.285,9.48 +2017-11-02 11:32:01,43.2262,109.28,9.48 +2017-11-02 11:47:01,42.0575,108.393,9.53 +2017-11-02 12:02:01,41.425,107.485,9.58 +2017-11-02 12:17:01,41.2687,106.822,9.62 +2017-11-02 12:32:01,42.01,106.372,9.66 +2017-11-02 12:47:01,41.77,106.972,9.66 +2017-11-02 13:02:01,41.6237,108.097,9.65 +2017-11-02 13:17:01,42.2125,108.795,9.64 +2017-11-02 13:32:01,42.105,109.065,9.61 +2017-11-02 13:47:01,41.4238,108.257,9.59 +2017-11-02 14:02:01,41.9613,106.952,9.6 +2017-11-02 14:17:01,41.4712,105.95,9.62 +2017-11-02 14:32:01,41.6225,105.317,9.62 +2017-11-02 14:47:01,42.0088,104.912,9.64 +2017-11-02 15:02:01,42.5075,104.71,9.66 +2017-11-02 15:17:01,42.31,104.65,9.66 +2017-11-02 15:32:01,43.3237,104.688,9.64 +2017-11-02 15:47:01,43.8387,104.765,9.63 +2017-11-02 16:02:01,43.695,104.875,9.64 +2017-11-02 16:17:01,43.6925,105.015,9.64 +2017-11-02 16:32:01,42.5062,105.162,9.61 +2017-11-02 16:47:01,41.9125,105.305,9.59 +2017-11-02 17:02:01,41.2262,105.452,9.58 +2017-11-02 17:17:01,40.3063,105.592,9.57 +2017-11-02 17:32:01,41.37,105.732,9.56 +2017-11-02 17:47:01,40.4475,105.872,9.56 +2017-11-02 18:02:01,40.8375,105.99,9.56 +2017-11-02 18:17:01,40.9362,106.092,9.55 +2017-11-02 18:32:01,40.7438,106.195,9.55 +2017-11-02 18:47:01,40.07,106.272,9.55 +2017-11-02 19:02:01,39.925,106.372,9.57 +2017-11-02 19:17:01,41.1762,106.42,9.57 +2017-11-02 19:32:01,39.9287,106.4,9.59 +2017-11-02 19:47:01,42.5062,106.345,9.6 +2017-11-02 20:02:01,40.7925,106.32,9.61 +2017-11-02 20:17:01,40.2612,106.292,9.6 +2017-11-02 20:32:01,40.215,106.31,9.6 +2017-11-02 20:47:01,40.2637,106.335,9.59 +2017-11-02 21:02:01,42.8412,106.378,9.58 +2017-11-02 21:17:01,40.9863,106.438,9.58 +2017-11-02 21:32:01,40.1675,106.48,9.58 +2017-11-02 21:47:01,39.6762,106.55,9.59 +2017-11-02 22:02:01,42.6937,106.6,9.59 +2017-11-02 22:17:01,42.8425,106.667,9.59 +2017-11-02 22:32:01,41.865,106.72,9.57 +2017-11-02 22:47:01,41.6687,106.8,9.56 +2017-11-02 23:02:01,40.495,106.865,9.55 +2017-11-02 23:17:01,41.1263,106.925,9.51 +2017-11-02 23:32:01,40.84,107.0,9.49 +2017-11-02 23:47:01,41.9112,107.052,9.47 +2017-11-03 00:02:01,43.0375,107.13,9.47 +2017-11-03 00:17:01,40.7913,107.215,9.45 +2017-11-03 00:32:01,41.4737,107.28,9.43 +2017-11-03 00:47:01,40.7937,107.342,9.41 +2017-11-03 01:02:01,39.8262,107.412,9.4 +2017-11-03 01:17:01,42.0612,107.47,9.41 +2017-11-03 01:32:01,40.7387,107.487,9.41 +2017-11-03 01:47:01,41.3725,107.455,9.41 +2017-11-03 02:02:01,41.0812,107.408,9.41 +2017-11-03 02:17:01,41.3262,107.393,9.39 +2017-11-03 02:32:01,40.5912,107.41,9.4 +2017-11-03 02:47:01,40.7412,107.455,9.4 +2017-11-03 03:02:01,40.985,107.503,9.4 +2017-11-03 03:17:01,41.3725,107.567,9.4 +2017-11-03 03:32:01,41.3225,107.655,9.39 +2017-11-03 03:47:01,41.82,107.742,9.39 +2017-11-03 04:02:01,39.7775,107.832,9.39 +2017-11-03 04:17:01,42.455,107.935,9.39 +2017-11-03 04:32:01,40.5912,108.042,9.4 +2017-11-03 04:47:01,41.0775,108.125,9.4 +2017-11-03 05:02:01,40.4463,108.23,9.39 +2017-11-03 05:17:01,40.2625,108.325,9.39 +2017-11-03 05:32:01,42.6,108.412,9.4 +2017-11-03 05:47:01,39.925,108.503,9.41 +2017-11-03 06:02:01,40.0687,108.592,9.4 +2017-11-03 06:17:01,39.68,108.673,9.4 +2017-11-03 06:32:01,40.6475,108.727,9.37 +2017-11-03 06:47:01,40.5912,108.765,9.36 +2017-11-03 07:02:01,42.5587,108.755,9.35 +2017-11-03 07:17:01,40.6937,108.725,9.34 +2017-11-03 07:32:01,40.745,108.702,9.32 +2017-11-03 07:47:01,41.4313,108.688,9.31 +2017-11-03 08:02:01,41.1325,108.707,9.3 +2017-11-03 08:17:01,42.9938,108.747,9.3 +2017-11-03 08:32:01,39.9313,108.812,9.32 +2017-11-03 08:47:01,40.4037,108.878,9.34 +2017-11-03 09:02:01,40.545,108.975,9.35 +2017-11-03 09:17:01,41.5275,109.075,9.36 +2017-11-03 09:32:01,40.5987,109.212,9.37 +2017-11-03 09:47:01,41.625,109.298,9.39 +2017-11-03 10:02:01,40.8887,109.425,9.41 +2017-11-03 10:17:01,40.845,109.512,9.42 +2017-11-03 10:32:01,41.82,109.585,9.43 +2017-11-03 10:47:01,41.3725,109.645,9.46 +2017-11-03 11:02:01,40.9425,109.7,9.49 +2017-11-03 11:17:01,42.3625,109.765,9.5 +2017-11-03 11:32:01,40.8425,109.812,9.52 +2017-11-03 11:47:01,41.2812,109.847,9.54 +2017-11-03 12:02:01,40.9412,109.87,9.54 +2017-11-03 12:17:01,40.5488,109.87,9.56 +2017-11-03 12:32:01,41.7725,109.865,9.57 +2017-11-03 12:47:01,40.5,109.87,9.57 +2017-11-03 13:02:01,40.2212,109.893,9.57 +2017-11-03 13:17:01,40.6462,109.925,9.58 +2017-11-03 13:32:01,39.2913,109.962,9.61 +2017-11-03 13:47:01,42.555,110.022,9.62 +2017-11-03 14:02:01,39.5825,110.097,9.63 +2017-11-03 14:17:01,41.4788,110.205,9.64 +2017-11-03 14:32:01,41.7212,110.322,9.64 +2017-11-03 14:47:01,39.335,110.472,9.66 +2017-11-03 15:02:01,41.1762,110.625,9.69 +2017-11-03 15:17:01,41.7188,110.783,9.69 +2017-11-03 15:32:01,40.4962,110.94,9.67 +2017-11-03 15:47:01,39.8275,111.092,9.67 +2017-11-03 16:02:01,38.9337,111.257,9.68 +2017-11-03 16:17:01,40.79,111.393,9.7 +2017-11-03 16:32:01,41.96,111.492,9.73 +2017-11-03 16:47:01,40.935,111.585,9.75 +2017-11-03 17:02:01,40.6937,111.597,9.76 +2017-11-03 17:17:01,41.3688,111.595,9.77 +2017-11-03 17:32:01,39.675,111.557,9.79 +2017-11-03 17:47:01,40.1175,111.527,9.8 +2017-11-03 18:02:01,41.2237,111.47,9.81 +2017-11-03 18:17:01,41.4775,111.39,9.8 +2017-11-03 18:32:01,39.4362,111.33,9.81 +2017-11-03 18:47:01,41.3725,111.265,9.81 +2017-11-03 19:02:01,40.6912,111.205,9.82 +2017-11-03 19:17:01,41.4725,111.122,9.84 +2017-11-03 19:32:01,41.175,111.072,9.85 +2017-11-03 19:47:01,41.5725,111.0,9.85 +2017-11-03 20:02:01,40.5925,110.935,9.84 +2017-11-03 20:17:01,41.8175,110.885,9.85 +2017-11-03 20:32:01,41.6237,110.817,9.83 +2017-11-03 20:47:01,40.79,110.753,9.83 +2017-11-03 21:02:01,40.8875,110.692,9.82 +2017-11-03 21:17:01,42.6975,110.643,9.8 +2017-11-03 21:32:01,40.4012,110.61,9.79 +2017-11-03 21:47:01,40.6437,110.552,9.76 +2017-11-03 22:02:01,40.9875,110.505,9.72 +2017-11-03 22:17:01,41.7237,110.482,9.69 +2017-11-03 22:32:01,39.1813,110.455,9.66 +2017-11-03 22:47:01,40.6925,110.423,9.63 +2017-11-03 23:02:01,40.5425,110.382,9.59 +2017-11-03 23:17:01,40.7387,110.332,9.55 +2017-11-03 23:32:01,41.4725,110.25,9.5 +2017-11-03 23:47:01,39.385,110.15,9.46 +2017-11-04 00:02:01,41.6762,110.06,9.43 +2017-11-04 00:17:01,40.79,110.005,9.41 +2017-11-04 00:32:01,40.695,109.942,9.39 +2017-11-04 00:47:01,39.3375,109.932,9.35 +2017-11-04 01:02:01,39.9287,109.912,9.33 +2017-11-04 01:17:01,40.745,109.912,9.31 +2017-11-04 01:32:01,38.885,109.912,9.3 +2017-11-04 01:47:01,40.17,109.925,9.28 +2017-11-04 02:02:01,39.4375,109.94,9.26 +2017-11-04 02:17:01,40.4925,109.957,9.25 +2017-11-04 02:32:01,40.5462,109.982,9.25 +2017-11-04 02:47:01,40.84,109.99,9.23 +2017-11-04 03:02:01,40.165,110.01,9.22 +2017-11-04 03:17:01,39.5275,110.03,9.22 +2017-11-04 03:32:01,39.675,110.055,9.21 +2017-11-04 03:47:01,41.2225,110.052,9.2 +2017-11-04 04:02:01,40.885,110.087,9.19 +2017-11-04 04:17:01,41.1738,110.117,9.18 +2017-11-04 04:32:01,39.8275,110.115,9.18 +2017-11-04 04:47:01,40.835,110.132,9.18 +2017-11-04 05:02:01,39.73,110.167,9.18 +2017-11-04 05:17:01,40.74,110.177,9.17 +2017-11-04 05:32:01,40.8862,110.185,9.16 +2017-11-04 05:47:01,40.8412,110.175,9.17 +2017-11-04 06:02:01,40.6975,110.15,9.17 +2017-11-04 06:17:01,41.5675,110.097,9.16 +2017-11-04 06:32:01,41.1712,110.035,9.16 +2017-11-04 06:47:01,39.775,109.972,9.14 +2017-11-04 07:02:01,40.1675,109.945,9.14 +2017-11-04 07:17:01,39.9737,109.923,9.14 +2017-11-04 07:32:01,41.6725,109.917,9.14 +2017-11-04 07:47:01,39.9275,109.932,9.14 +2017-11-04 08:02:01,41.67,109.962,9.13 +2017-11-04 08:17:01,40.1175,109.995,9.14 +2017-11-04 08:32:01,40.84,110.027,9.14 +2017-11-04 08:47:01,39.78,110.062,9.14 +2017-11-04 09:02:01,41.815,110.1,9.15 +2017-11-04 09:17:01,39.9762,110.16,9.16 +2017-11-04 09:32:01,41.3737,110.2,9.17 +2017-11-04 09:47:01,40.215,110.268,9.17 +2017-11-04 10:02:01,40.7887,110.332,9.19 +2017-11-04 10:17:01,41.1762,110.397,9.2 +2017-11-04 10:32:01,40.695,110.465,9.23 +2017-11-04 10:47:01,40.6925,110.52,9.24 +2017-11-04 11:02:01,40.3975,110.592,9.26 +2017-11-04 11:17:01,41.18,110.63,9.3 +2017-11-04 11:32:01,40.4,110.692,9.31 +2017-11-04 11:47:01,41.475,110.732,9.31 +2017-11-04 12:02:01,40.695,110.757,9.32 +2017-11-04 12:17:01,39.9287,110.77,9.32 +2017-11-04 12:32:01,39.6787,110.77,9.32 +2017-11-04 12:47:01,40.0713,110.772,9.32 +2017-11-04 13:02:01,40.8875,110.783,9.33 +2017-11-04 13:17:01,39.8288,110.805,9.34 +2017-11-04 13:32:01,41.3763,110.827,9.36 +2017-11-04 13:47:01,39.9737,110.852,9.37 +2017-11-04 14:02:01,40.3525,110.878,9.37 +2017-11-04 14:17:01,40.6925,110.91,9.36 +2017-11-04 14:32:01,40.1162,110.945,9.36 +2017-11-04 14:47:01,40.305,110.98,9.37 +2017-11-04 15:02:01,40.9388,111.012,9.39 +2017-11-04 15:17:01,40.645,111.048,9.37 +2017-11-04 15:32:01,40.5437,111.075,9.37 +2017-11-04 15:47:01,40.3975,111.12,9.38 +2017-11-04 16:02:01,40.6937,111.143,9.38 +2017-11-04 16:17:01,41.1725,111.18,9.41 +2017-11-04 16:32:01,40.7913,111.192,9.42 +2017-11-04 16:47:01,40.4463,111.212,9.42 +2017-11-04 17:02:01,40.0713,111.237,9.43 +2017-11-04 17:17:01,40.4,111.262,9.43 +2017-11-04 17:32:01,39.8763,111.287,9.45 +2017-11-04 17:47:01,39.3862,111.315,9.45 +2017-11-04 18:02:01,40.8375,111.365,9.45 +2017-11-04 18:17:01,39.435,111.39,9.46 +2017-11-04 18:32:01,40.885,111.415,9.47 +2017-11-04 18:47:01,40.0225,111.408,9.49 +2017-11-04 19:02:01,40.4463,111.405,9.5 +2017-11-04 19:17:01,39.93,111.42,9.5 +2017-11-04 19:32:01,40.835,111.435,9.49 +2017-11-04 19:47:01,40.6963,111.47,9.49 +2017-11-04 20:02:01,41.3237,111.492,9.51 +2017-11-04 20:17:01,40.8862,111.52,9.51 +2017-11-04 20:32:01,40.79,111.572,9.51 +2017-11-04 20:47:01,41.5662,111.635,9.48 +2017-11-04 21:02:01,40.6912,111.673,9.47 +2017-11-04 21:17:01,40.84,111.74,9.47 +2017-11-04 21:32:01,41.8175,111.805,9.45 +2017-11-04 21:47:01,39.9762,111.872,9.43 +2017-11-04 22:02:01,40.5425,111.927,9.42 +2017-11-04 22:17:01,40.6387,112.003,9.41 +2017-11-04 22:32:01,40.84,112.075,9.4 +2017-11-04 22:47:01,41.42,112.13,9.4 +2017-11-04 23:02:01,40.2612,112.215,9.39 +2017-11-04 23:17:01,40.3087,112.305,9.37 +2017-11-04 23:32:01,40.9375,112.355,9.34 +2017-11-04 23:47:01,41.0825,112.427,9.33 +2017-11-05 00:02:01,40.3075,112.507,9.34 +2017-11-05 00:17:01,39.9737,112.565,9.35 +2017-11-05 00:32:01,41.5737,112.632,9.33 +2017-11-05 00:47:01,40.265,112.695,9.34 +2017-11-05 01:02:01,40.3063,112.757,9.35 +2017-11-05 01:17:01,38.6475,112.81,9.35 +2017-11-05 01:32:01,40.6912,112.878,9.34 +2017-11-05 01:47:01,41.2762,112.942,9.35 +2017-11-05 02:02:01,40.935,113.012,9.34 +2017-11-05 02:17:01,41.2237,113.092,9.33 +2017-11-05 02:32:01,40.935,113.155,9.34 +2017-11-05 02:47:01,40.3037,113.222,9.37 +2017-11-05 03:02:01,40.9837,113.292,9.37 +2017-11-05 03:17:01,41.2738,113.382,9.36 +2017-11-05 03:32:01,39.8763,113.447,9.37 +2017-11-05 03:47:01,41.67,113.522,9.37 +2017-11-05 04:02:01,40.4962,113.602,9.36 +2017-11-05 04:17:01,40.5925,113.673,9.35 +2017-11-05 04:32:01,39.2325,113.747,9.36 +2017-11-05 04:47:01,40.7913,113.802,9.35 +2017-11-05 05:02:01,40.595,113.855,9.35 +2017-11-05 05:17:01,39.83,113.938,9.36 +2017-11-05 05:32:01,40.9912,113.99,9.37 +2017-11-05 05:47:01,41.5737,114.067,9.36 +2017-11-05 06:02:01,40.0725,114.12,9.37 +2017-11-05 06:17:01,40.2188,114.177,9.36 +2017-11-05 06:32:01,39.4875,114.232,9.35 +2017-11-05 06:47:01,40.12,114.27,9.32 +2017-11-05 07:02:01,41.0775,114.302,9.3 +2017-11-05 07:17:01,40.89,114.33,9.28 +2017-11-05 07:32:01,41.4775,114.378,9.27 +2017-11-05 07:47:01,39.93,114.415,9.28 +2017-11-05 08:02:01,40.8438,114.477,9.28 +2017-11-05 08:17:01,41.6738,114.535,9.27 +2017-11-05 08:32:01,40.6488,114.628,9.28 +2017-11-05 08:47:01,40.2212,114.702,9.28 +2017-11-05 09:02:01,42.2113,114.777,9.28 +2017-11-05 09:17:01,39.9287,114.9,9.29 +2017-11-05 09:32:01,41.1775,115.117,9.29 +2017-11-05 09:47:01,39.9287,115.408,9.29 +2017-11-05 10:02:01,40.7913,115.695,9.28 +2017-11-05 10:17:01,41.3712,116.027,9.3 +2017-11-05 10:32:01,42.4025,116.345,9.29 +2017-11-05 10:47:01,40.305,116.66,9.29 +2017-11-05 11:02:01,40.6937,116.955,9.3 +2017-11-05 11:17:01,39.1837,117.202,9.31 +2017-11-05 11:32:01,42.7875,117.412,9.32 +2017-11-05 11:47:01,40.9375,117.64,9.33 +2017-11-05 12:02:01,41.5187,117.832,9.33 +2017-11-05 12:17:01,40.5925,117.982,9.33 +2017-11-05 12:32:01,38.4062,118.09,9.34 +2017-11-05 12:47:01,41.3675,118.18,9.35 +2017-11-05 13:02:01,39.2337,118.242,9.37 +2017-11-05 13:17:01,40.74,118.305,9.38 +2017-11-05 13:32:01,41.3187,118.355,9.38 +2017-11-05 13:47:01,39.88,118.375,9.39 +2017-11-05 14:02:01,39.3337,118.393,9.4 +2017-11-05 14:17:01,41.0337,118.402,9.41 +2017-11-05 14:32:01,39.7775,118.423,9.42 +2017-11-05 14:47:01,39.97,118.415,9.43 +2017-11-05 15:02:01,42.1575,118.412,9.43 +2017-11-05 15:17:01,41.3237,118.425,9.44 +2017-11-05 15:32:01,39.6287,118.435,9.44 +2017-11-05 15:47:01,41.6212,118.442,9.46 +2017-11-05 16:02:01,41.035,118.465,9.45 +2017-11-05 16:17:01,39.4362,118.482,9.45 +2017-11-05 16:32:01,40.3087,118.507,9.44 +2017-11-05 16:47:01,40.2125,118.52,9.44 +2017-11-05 17:02:01,39.5275,118.537,9.44 +2017-11-05 17:17:01,40.6925,118.57,9.42 +2017-11-05 17:32:01,40.845,118.56,9.41 +2017-11-05 17:47:01,41.0812,118.577,9.4 +2017-11-05 18:02:01,40.985,118.575,9.4 +2017-11-05 18:17:01,41.5675,118.592,9.39 +2017-11-05 18:32:01,41.2237,118.607,9.39 +2017-11-05 18:47:01,41.1738,118.617,9.37 +2017-11-05 19:02:01,40.935,118.63,9.36 +2017-11-05 19:17:01,39.7262,118.643,9.34 +2017-11-05 19:32:01,40.2113,118.662,9.34 +2017-11-05 19:47:01,40.69,118.667,9.33 +2017-11-05 20:02:01,41.6738,118.695,9.32 +2017-11-05 20:17:01,38.98,118.707,9.3 +2017-11-05 20:32:01,41.1263,118.74,9.3 +2017-11-05 20:47:01,41.9112,118.755,9.29 +2017-11-05 21:02:01,40.3512,118.768,9.28 +2017-11-05 21:17:01,39.6237,118.77,9.26 +2017-11-05 21:32:01,39.9762,118.77,9.24 +2017-11-05 21:47:01,40.165,118.75,9.23 +2017-11-05 22:02:01,39.6787,118.77,9.22 +2017-11-05 22:17:01,41.1237,118.77,9.2 +2017-11-05 22:32:01,40.835,118.787,9.19 +2017-11-05 22:47:01,40.6387,118.812,9.18 +2017-11-05 23:02:01,39.1837,118.832,9.17 +2017-11-05 23:17:01,41.4712,118.85,9.16 +2017-11-05 23:32:01,40.8825,118.882,9.15 +2017-11-05 23:47:01,41.52,118.917,9.14 +2017-11-06 00:02:01,40.5425,118.955,9.12 +2017-11-06 00:17:01,40.2588,118.995,9.1 +2017-11-06 00:32:01,40.835,119.018,9.09 +2017-11-06 00:47:01,40.4938,119.05,9.09 +2017-11-06 01:02:01,40.4475,119.075,9.08 +2017-11-06 01:17:01,40.215,119.1,9.06 +2017-11-06 01:32:01,40.0713,119.11,9.05 +2017-11-06 01:47:01,40.5413,119.13,9.04 +2017-11-06 02:02:01,40.9375,119.137,9.03 +2017-11-06 02:17:01,39.2363,119.16,9.02 +2017-11-06 02:32:01,40.7412,119.165,9.02 +2017-11-06 02:47:01,40.445,119.147,9.0 +2017-11-06 03:02:01,40.5462,119.143,8.98 +2017-11-06 03:17:01,40.7887,119.132,8.97 +2017-11-06 03:32:01,39.6813,119.1,8.96 +2017-11-06 03:47:01,38.7837,119.048,8.94 +2017-11-06 04:02:01,40.6912,119.0,8.93 +2017-11-06 04:17:01,40.5437,118.94,8.92 +2017-11-06 04:32:01,40.4,118.882,8.89 +2017-11-06 04:47:01,40.5925,118.82,8.86 +2017-11-06 05:02:01,40.4463,118.78,8.84 +2017-11-06 05:17:01,41.2188,118.727,8.81 +2017-11-06 05:32:01,40.1162,118.685,8.79 +2017-11-06 05:47:01,42.5037,118.635,8.77 +2017-11-06 06:02:01,40.4437,118.62,8.75 +2017-11-06 06:17:01,39.53,118.565,8.71 +2017-11-06 06:32:01,41.6188,118.533,8.69 +2017-11-06 06:47:01,39.6762,118.495,8.68 +2017-11-06 07:02:01,41.1725,118.447,8.68 +2017-11-06 07:17:01,40.3525,118.402,8.65 +2017-11-06 07:32:01,40.7875,118.352,8.63 +2017-11-06 07:47:01,41.8625,118.275,8.63 +2017-11-06 08:02:01,40.1675,118.22,8.62 +2017-11-06 08:17:01,40.8875,118.145,8.62 +2017-11-06 08:32:01,40.5425,118.09,8.62 +2017-11-06 08:47:01,39.4812,118.037,8.62 +2017-11-06 09:02:01,41.1725,117.977,8.61 +2017-11-06 09:17:01,39.2787,117.957,8.6 +2017-11-06 09:32:01,40.7862,117.915,8.6 +2017-11-06 09:47:01,39.9262,117.885,8.6 +2017-11-06 10:02:01,41.47,117.87,8.6 +2017-11-06 10:17:01,40.305,117.84,8.62 +2017-11-06 10:32:01,40.2162,117.84,8.63 +2017-11-06 10:47:01,40.7412,117.827,8.64 +2017-11-06 11:02:01,42.3562,117.827,8.64 +2017-11-06 11:17:01,40.4975,117.815,8.64 +2017-11-06 11:32:01,40.9863,117.827,8.62 +2017-11-06 11:47:01,39.7262,117.825,8.63 +2017-11-06 12:02:01,40.7913,117.842,8.65 +2017-11-06 12:17:01,40.4012,117.85,8.66 +2017-11-06 12:32:01,39.8787,117.932,8.65 +2017-11-06 12:47:01,38.8812,118.387,8.65 +2017-11-06 13:02:01,41.1762,119.115,8.64 +2017-11-06 13:17:01,40.7887,119.71,8.63 +2017-11-06 13:32:01,41.3187,120.012,8.62 +2017-11-06 13:47:01,40.8887,120.065,8.59 +2017-11-06 14:02:01,39.925,119.597,8.59 +2017-11-06 14:17:01,40.59,118.74,8.58 +2017-11-06 14:32:01,41.915,118.02,8.56 +2017-11-06 14:47:01,41.0325,117.503,8.55 +2017-11-06 15:02:01,41.7712,117.173,8.55 +2017-11-06 15:17:01,41.5725,116.965,8.56 +2017-11-06 15:32:01,40.8887,116.85,8.56 +2017-11-06 15:47:01,40.6888,116.79,8.56 +2017-11-06 16:02:01,40.5912,116.768,8.55 +2017-11-06 16:17:01,41.4225,116.81,8.56 +2017-11-06 16:32:01,39.7762,116.867,8.56 +2017-11-06 16:47:01,39.8288,116.952,8.57 +2017-11-06 17:02:01,39.7812,117.062,8.58 +2017-11-06 17:17:01,40.2575,117.177,8.57 +2017-11-06 17:32:01,40.7862,117.298,8.55 +2017-11-06 17:47:01,40.6925,117.435,8.56 +2017-11-06 18:02:01,40.7875,117.557,8.54 +2017-11-06 18:17:01,40.2175,117.688,8.53 +2017-11-06 18:32:01,40.5887,117.842,8.52 +2017-11-06 18:47:01,39.6725,117.98,8.53 +2017-11-06 19:02:01,40.12,118.107,8.52 +2017-11-06 19:17:01,40.02,118.217,8.51 +2017-11-06 19:32:01,41.0762,118.307,8.49 +2017-11-06 19:47:01,41.37,118.382,8.47 +2017-11-06 20:02:01,41.4712,118.465,8.45 +2017-11-06 20:17:01,40.2125,118.542,8.44 +2017-11-06 20:32:01,42.3562,118.65,8.43 +2017-11-06 20:47:01,40.8887,118.732,8.41 +2017-11-06 21:02:01,39.7775,118.817,8.39 +2017-11-06 21:17:01,39.8763,118.905,8.36 +2017-11-06 21:32:01,42.36,118.99,8.34 +2017-11-06 21:47:01,41.3763,119.065,8.32 +2017-11-06 22:02:01,41.1275,119.132,8.3 +2017-11-06 22:17:01,40.9362,119.217,8.27 +2017-11-06 22:32:01,41.1275,119.27,8.24 +2017-11-06 22:47:01,40.07,119.302,8.22 +2017-11-06 23:02:01,40.4,119.347,8.21 +2017-11-06 23:17:01,41.42,119.367,8.19 +2017-11-06 23:32:01,41.3225,119.39,8.17 +2017-11-06 23:47:01,41.8175,119.412,8.16 +2017-11-07 00:02:01,40.4962,119.425,8.16 +2017-11-07 00:17:01,40.6425,119.432,8.16 +2017-11-07 00:32:01,39.7738,119.427,8.15 +2017-11-07 00:47:01,41.8175,119.435,8.17 +2017-11-07 01:02:01,40.985,119.423,8.16 +2017-11-07 01:17:01,40.4962,119.427,8.16 +2017-11-07 01:32:01,41.1725,119.417,8.16 +2017-11-07 01:47:01,40.6387,119.38,8.16 +2017-11-07 02:02:01,41.77,119.32,8.17 +2017-11-07 02:17:01,42.0575,119.253,8.18 +2017-11-07 02:32:01,40.1625,119.185,8.17 +2017-11-07 02:47:01,39.3862,119.128,8.16 +2017-11-07 03:02:01,39.3812,119.08,8.17 +2017-11-07 03:17:01,39.6275,119.055,8.17 +2017-11-07 03:32:01,41.0312,119.04,8.18 +2017-11-07 03:47:01,40.8387,119.01,8.17 +2017-11-07 04:02:01,40.9863,119.015,8.16 +2017-11-07 04:17:01,40.9863,118.995,8.15 +2017-11-07 04:32:01,41.3213,119.003,8.14 +2017-11-07 04:47:01,40.8875,119.007,8.12 +2017-11-07 05:02:01,40.35,118.997,8.11 +2017-11-07 05:17:01,42.3087,118.997,8.09 +2017-11-07 05:32:01,40.495,119.003,8.08 +2017-11-07 05:47:01,41.4725,119.027,8.06 +2017-11-07 06:02:01,41.3712,119.035,8.05 +2017-11-07 06:17:01,42.4562,119.057,8.04 +2017-11-07 06:32:01,40.79,119.097,8.09 +2017-11-07 06:47:01,40.8875,119.137,8.14 +2017-11-07 07:02:01,41.6175,119.16,8.17 +2017-11-07 07:17:01,41.1212,119.185,8.17 +2017-11-07 07:32:01,41.615,119.19,8.14 +2017-11-07 07:47:01,40.0163,119.192,8.13 +2017-11-07 08:02:01,40.35,119.18,8.14 +2017-11-07 08:17:01,41.5737,119.165,8.14 +2017-11-07 08:32:01,41.0275,119.165,8.14 +2017-11-07 08:47:01,40.6375,119.158,8.14 +2017-11-07 09:02:01,40.9825,119.173,8.14 +2017-11-07 09:17:01,39.9225,119.167,8.13 +2017-11-07 09:32:01,40.3575,119.188,8.13 +2017-11-07 09:47:01,41.2738,119.19,8.13 +2017-11-07 10:02:01,41.665,119.177,8.12 +2017-11-07 10:17:01,40.5887,119.212,8.12 +2017-11-07 10:32:01,40.985,119.225,8.14 +2017-11-07 10:47:01,42.405,119.602,8.15 +2017-11-07 11:02:01,41.5687,120.23,8.17 +2017-11-07 11:17:01,41.5175,120.622,8.12 +2017-11-07 11:32:01,41.0775,120.783,8.08 +2017-11-07 11:47:01,41.4725,120.707,8.13 +2017-11-07 12:02:01,40.2162,120.342,8.2 +2017-11-07 12:17:01,42.21,119.857,8.25 +2017-11-07 12:32:01,40.7412,119.412,8.27 +2017-11-07 12:47:01,40.9362,119.06,8.28 +2017-11-07 13:02:01,41.37,118.807,8.29 +2017-11-07 13:17:01,41.62,118.625,8.31 +2017-11-07 13:32:01,40.8363,118.503,8.34 +2017-11-07 13:47:01,41.0775,118.427,8.35 +2017-11-07 14:02:01,40.9837,118.36,8.32 +2017-11-07 14:17:01,41.125,118.327,8.24 +2017-11-07 14:32:01,41.57,118.307,8.18 +2017-11-07 14:47:01,41.1738,118.337,8.14 +2017-11-07 15:02:01,40.7887,118.37,8.14 +2017-11-07 15:17:01,41.1712,118.39,8.13 +2017-11-07 15:32:01,41.5713,118.402,8.12 +2017-11-07 15:47:01,40.7837,118.43,8.13 +2017-11-07 16:02:01,41.4688,118.452,8.14 +2017-11-07 16:17:01,40.445,118.495,8.16 +2017-11-07 16:32:01,40.4925,118.537,8.16 +2017-11-07 16:47:01,42.1562,118.6,8.16 +2017-11-07 17:02:01,41.4762,118.658,8.16 +2017-11-07 17:17:01,41.4712,118.725,8.15 +2017-11-07 17:32:01,39.97,118.76,8.15 +2017-11-07 17:47:01,40.9825,118.832,8.15 +2017-11-07 18:02:01,40.6888,118.878,8.13 +2017-11-07 18:17:01,42.255,118.93,8.12 +2017-11-07 18:32:01,41.1225,118.982,8.13 +2017-11-07 18:47:01,41.6663,119.037,8.15 +2017-11-07 19:02:01,41.3187,119.072,8.14 +2017-11-07 19:17:01,41.12,119.125,8.13 +2017-11-07 19:32:01,40.8337,119.152,8.12 +2017-11-07 19:47:01,42.0512,119.202,8.11 +2017-11-07 20:02:01,42.0525,119.222,8.11 +2017-11-07 20:17:01,40.2575,119.25,8.1 +2017-11-07 20:32:01,40.7887,119.275,8.09 +2017-11-07 20:47:01,41.9562,119.292,8.08 +2017-11-07 21:02:01,41.5687,119.302,8.08 +2017-11-07 21:17:01,40.4437,119.325,8.09 +2017-11-07 21:32:01,41.565,119.352,8.11 +2017-11-07 21:47:01,40.3012,119.362,8.1 +2017-11-07 22:02:01,42.0025,119.365,8.09 +2017-11-07 22:17:01,41.0737,119.357,8.1 +2017-11-07 22:32:01,40.2087,119.342,8.09 +2017-11-07 22:47:01,40.3925,119.302,8.1 +2017-11-07 23:02:01,41.42,119.285,8.11 +2017-11-07 23:17:01,40.1175,119.27,8.11 +2017-11-07 23:32:01,41.9562,119.245,8.1 +2017-11-07 23:47:01,41.52,119.25,8.1 +2017-11-08 00:02:01,40.9362,119.237,8.12 +2017-11-08 00:17:01,40.2087,119.232,8.12 +2017-11-08 00:32:01,41.1675,119.232,8.13 +2017-11-08 00:47:01,42.3025,119.232,8.14 +2017-11-08 01:02:01,39.575,119.225,8.15 +2017-11-08 01:17:01,42.4512,119.23,8.16 +2017-11-08 01:32:01,40.4425,119.25,8.18 +2017-11-08 01:47:01,41.6162,119.265,8.19 +2017-11-08 02:02:01,41.3175,119.255,8.18 +2017-11-08 02:17:01,42.455,119.307,8.18 +2017-11-08 02:32:01,40.8838,119.315,8.19 +2017-11-08 02:47:01,41.2675,119.327,8.21 +2017-11-08 03:02:01,39.0788,119.335,8.22 +2017-11-08 03:17:01,41.1738,119.345,8.21 +2017-11-08 03:32:01,40.2562,119.342,8.2 +2017-11-08 03:47:01,41.2738,119.355,8.2 +2017-11-08 04:02:01,41.4175,119.34,8.2 +2017-11-08 04:17:01,40.9788,119.378,8.2 +2017-11-08 04:32:01,41.5163,119.38,8.19 +2017-11-08 04:47:01,41.2175,119.4,8.16 +2017-11-08 05:02:01,40.5863,119.415,8.16 +2017-11-08 05:17:01,41.7175,119.405,8.15 +2017-11-08 05:32:01,41.9087,119.393,8.15 +2017-11-08 05:47:01,40.88,119.375,8.15 +2017-11-08 06:02:01,40.8325,119.367,8.15 +2017-11-08 06:17:01,41.4163,119.345,8.14 +2017-11-08 06:32:01,41.7637,119.32,8.14 +2017-11-08 06:47:01,40.7837,119.302,8.14 +2017-11-08 07:02:01,40.2562,119.298,8.12 +2017-11-08 07:17:01,42.3037,119.29,8.1 +2017-11-08 07:32:01,42.0,119.292,8.07 +2017-11-08 07:47:01,41.37,119.31,8.07 +2017-11-08 08:02:01,41.6212,119.31,8.07 +2017-11-08 08:17:01,40.5887,119.317,8.06 +2017-11-08 08:32:01,41.565,119.382,8.07 +2017-11-08 08:47:01,41.7675,120.018,8.08 +2017-11-08 09:02:01,41.7188,120.622,8.08 +2017-11-08 09:17:01,42.0062,120.99,8.06 +2017-11-08 09:32:01,41.7612,121.152,8.06 +2017-11-08 09:47:01,41.7188,121.06,8.08 +2017-11-08 10:02:01,41.6625,120.725,8.09 +2017-11-08 10:17:01,42.7375,120.26,8.11 +2017-11-08 10:32:01,41.91,119.825,8.15 +2017-11-08 10:47:01,42.2062,119.475,8.17 +2017-11-08 11:02:01,40.8838,119.212,8.2 +2017-11-08 11:17:01,41.6162,119.027,8.23 +2017-11-08 11:32:01,40.49,118.875,8.26 +2017-11-08 11:47:01,41.7637,118.8,8.29 +2017-11-08 12:02:01,41.12,118.737,8.3 +2017-11-08 12:17:01,43.1275,118.712,8.3 +2017-11-08 12:32:01,40.26,118.685,8.31 +2017-11-08 12:47:01,40.8838,118.682,8.3 +2017-11-08 13:02:01,43.0375,118.675,8.29 +2017-11-08 13:17:01,40.64,118.677,8.29 +2017-11-08 13:32:01,41.3662,118.715,8.3 +2017-11-08 13:47:01,42.4512,118.735,8.29 +2017-11-08 14:02:01,41.4187,118.757,8.28 +2017-11-08 14:17:01,40.9313,118.787,8.28 +2017-11-08 14:32:01,40.6888,118.822,8.28 +2017-11-08 14:47:01,41.4163,118.837,8.27 +2017-11-08 15:02:01,42.5013,118.86,8.27 +2017-11-08 15:17:01,39.62,118.855,8.26 +2017-11-08 15:32:01,40.1137,118.827,8.26 +2017-11-08 15:47:01,41.2237,118.812,8.26 +2017-11-08 16:02:01,41.7212,118.79,8.28 +2017-11-08 16:17:01,41.2212,118.765,8.29 +2017-11-08 16:32:01,41.515,118.753,8.29 +2017-11-08 16:47:01,40.54,118.735,8.28 +2017-11-08 17:02:01,41.22,118.722,8.28 +2017-11-08 17:17:01,41.4238,118.722,8.28 +2017-11-08 17:32:01,42.0037,118.737,8.28 +2017-11-08 17:47:01,39.48,118.78,8.27 +2017-11-08 18:02:01,41.0762,118.817,8.26 +2017-11-08 18:17:01,39.3288,118.895,8.26 +2017-11-08 18:32:01,41.8625,118.995,8.26 +2017-11-08 18:47:01,41.1225,119.117,8.27 +2017-11-08 19:02:01,40.9837,119.275,8.27 +2017-11-08 19:17:01,40.3962,119.432,8.28 +2017-11-08 19:32:01,41.3213,119.59,8.27 +2017-11-08 19:47:01,41.6687,119.802,8.25 +2017-11-08 20:02:01,42.7875,119.99,8.23 +2017-11-08 20:17:01,40.7887,120.21,8.22 +2017-11-08 20:32:01,41.7663,120.452,8.21 +2017-11-08 20:47:01,42.205,120.675,8.21 +2017-11-08 21:02:01,41.3662,120.882,8.19 +2017-11-08 21:17:01,40.49,121.105,8.18 +2017-11-08 21:32:01,40.9837,121.292,8.17 +2017-11-08 21:47:01,42.305,121.485,8.17 +2017-11-08 22:02:01,41.7687,121.67,8.17 +2017-11-08 22:17:01,41.4175,121.807,8.17 +2017-11-08 22:32:01,40.635,121.93,8.17 +2017-11-08 22:47:01,41.615,122.025,8.17 +2017-11-08 23:02:01,40.7887,122.087,8.17 +2017-11-08 23:17:01,40.5837,122.135,8.17 +2017-11-08 23:32:01,39.9712,122.17,8.16 +2017-11-08 23:47:01,40.835,122.182,8.16 +2017-11-09 00:02:01,40.2575,122.195,8.17 +2017-11-09 00:17:01,40.885,122.19,8.19 +2017-11-09 00:32:01,41.2212,122.2,8.19 +2017-11-09 00:47:01,41.2212,122.15,8.18 +2017-11-09 01:02:01,40.5387,122.175,8.17 +2017-11-09 01:17:01,41.0775,122.165,8.17 +2017-11-09 01:32:01,40.7825,122.135,8.17 +2017-11-09 01:47:01,40.9788,122.09,8.17 +2017-11-09 02:02:01,41.0262,122.065,8.17 +2017-11-09 02:17:01,40.8812,122.035,8.15 +2017-11-09 02:32:01,42.5537,121.96,8.14 +2017-11-09 02:47:01,42.0575,121.917,8.14 +2017-11-09 03:02:01,42.4012,121.86,8.15 +2017-11-09 03:17:01,41.7162,121.807,8.14 +2017-11-09 03:32:01,40.785,121.735,8.14 +2017-11-09 03:47:01,41.6663,121.675,8.14 +2017-11-09 04:02:01,40.7825,121.6,8.14 +2017-11-09 04:17:01,42.2575,121.562,8.13 +2017-11-09 04:32:01,41.6675,121.503,8.12 +2017-11-09 04:47:01,40.8825,121.452,8.1 +2017-11-09 05:02:01,42.645,121.405,8.1 +2017-11-09 05:17:01,41.2712,121.352,8.09 +2017-11-09 05:32:01,42.1087,121.29,8.1 +2017-11-09 05:47:01,39.8275,121.232,8.09 +2017-11-09 06:02:01,42.2062,121.09,8.08 +2017-11-09 06:17:01,42.305,121.0,8.08 +2017-11-09 06:32:01,41.5187,120.932,8.07 +2017-11-09 06:47:01,41.4737,120.845,8.05 +2017-11-09 07:02:01,41.8613,120.772,8.03 +2017-11-09 07:17:01,41.4675,120.7,8.02 +2017-11-09 07:32:01,41.37,120.655,8.02 +2017-11-09 07:47:01,43.3675,120.595,8.0 +2017-11-09 08:02:01,41.2712,120.55,7.99 +2017-11-09 08:17:01,41.67,120.497,7.99 +2017-11-09 08:32:01,41.815,120.412,8.0 +2017-11-09 08:47:01,43.5,120.395,8.0 +2017-11-09 09:02:01,41.57,120.345,7.99 +2017-11-09 09:17:01,39.58,120.307,8.0 +2017-11-09 09:32:01,42.555,120.257,8.0 +2017-11-09 09:47:01,42.0075,120.222,8.0 +2017-11-09 10:02:01,43.5488,120.2,7.99 +2017-11-09 10:17:01,41.42,120.17,7.99 +2017-11-09 10:32:01,41.7663,120.128,7.99 +2017-11-09 10:47:01,42.2075,120.112,8.0 +2017-11-09 11:02:01,43.175,120.097,8.02 +2017-11-09 11:17:01,41.42,120.037,8.02 +2017-11-09 11:32:01,43.55,120.018,8.02 +2017-11-09 11:47:01,41.6188,120.01,8.03 +2017-11-09 12:02:01,43.1775,119.952,8.05 +2017-11-09 12:17:01,41.7675,119.962,8.04 +2017-11-09 12:32:01,42.2062,119.932,8.03 +2017-11-09 12:47:01,42.89,119.887,8.03 +2017-11-09 13:02:01,41.37,119.897,8.04 +2017-11-09 13:17:01,41.425,119.867,8.04 +2017-11-09 13:32:01,41.57,119.852,8.06 +2017-11-09 13:47:01,41.2712,119.812,8.06 +2017-11-09 14:02:01,41.1237,119.787,8.06 +2017-11-09 14:17:01,41.9062,119.798,8.06 +2017-11-09 14:32:01,40.395,119.745,8.05 +2017-11-09 14:47:01,41.6225,119.762,8.04 +2017-11-09 15:02:01,41.91,119.725,8.03 +2017-11-09 15:17:01,41.4712,119.69,8.02 +2017-11-09 15:32:01,43.0825,119.658,8.04 +2017-11-09 15:47:01,42.6012,119.597,8.05 +2017-11-09 16:02:01,42.885,119.555,8.05 +2017-11-09 16:17:01,42.0062,119.57,8.05 +2017-11-09 16:32:01,42.1512,119.54,8.05 +2017-11-09 16:47:01,42.84,119.49,8.06 +2017-11-09 17:02:01,44.085,119.512,8.05 +2017-11-09 17:17:01,43.4575,119.48,8.05 +2017-11-09 17:32:01,43.6912,119.482,8.05 +2017-11-09 17:47:01,41.765,119.432,8.05 +2017-11-09 18:02:01,45.0437,119.43,8.04 +2017-11-09 18:17:01,43.46,119.442,8.03 +2017-11-09 18:32:01,44.0875,119.435,8.03 +2017-11-09 18:47:01,43.6025,119.432,8.03 +2017-11-09 19:02:01,44.0887,119.427,8.02 +2017-11-09 19:17:01,44.5175,119.43,8.0 +2017-11-09 19:32:01,44.9037,119.405,7.98 +2017-11-09 19:47:01,45.0875,119.393,7.97 +2017-11-09 20:02:01,44.9912,119.387,7.98 +2017-11-09 20:17:01,44.4163,119.365,7.97 +2017-11-09 20:32:01,45.085,119.34,7.95 +2017-11-09 20:47:01,44.7087,119.322,7.93 +2017-11-09 21:02:01,45.0875,119.292,7.94 +2017-11-09 21:17:01,45.43,119.25,7.93 +2017-11-09 21:32:01,45.8175,119.23,7.91 +2017-11-09 21:47:01,45.5275,119.19,7.9 +2017-11-09 22:02:01,44.9,119.167,7.89 +2017-11-09 22:17:01,44.8037,119.165,7.89 +2017-11-09 22:32:01,44.7087,119.11,7.89 +2017-11-09 22:47:01,45.1387,119.13,7.88 +2017-11-09 23:02:01,44.465,119.112,7.88 +2017-11-09 23:17:01,44.4688,119.082,7.88 +2017-11-09 23:32:01,44.1762,119.072,7.89 +2017-11-09 23:47:01,44.1775,119.055,7.89 +2017-11-10 00:02:01,43.8887,119.042,7.89 +2017-11-10 00:17:01,43.8412,118.997,7.89 +2017-11-10 00:32:01,43.79,119.005,7.88 +2017-11-10 00:47:01,43.3187,118.98,7.89 +2017-11-10 01:02:01,43.6937,118.997,7.89 +2017-11-10 01:17:01,43.7925,118.982,7.9 +2017-11-10 01:32:01,43.7425,118.935,7.89 +2017-11-10 01:47:01,42.6012,118.962,7.89 +2017-11-10 02:02:01,43.645,118.923,7.89 +2017-11-10 02:17:01,42.9812,118.857,7.9 +2017-11-10 02:32:01,43.7925,118.835,7.9 +2017-11-10 02:47:01,42.69,118.832,7.89 +2017-11-10 03:02:01,43.4525,118.815,7.88 +2017-11-10 03:17:01,42.1062,118.785,7.89 +2017-11-10 03:32:01,43.55,118.787,7.89 +2017-11-10 03:47:01,42.3988,118.757,7.88 +2017-11-10 04:02:01,43.9388,118.753,7.88 +2017-11-10 04:17:01,43.4112,118.7,7.88 +2017-11-10 04:32:01,43.2687,118.72,7.88 +2017-11-10 04:47:01,40.3475,118.71,7.88 +2017-11-10 05:02:01,41.8587,118.745,7.88 +2017-11-10 05:17:01,42.355,118.745,7.89 +2017-11-10 05:32:01,42.205,118.765,7.88 +2017-11-10 05:47:01,42.3025,118.785,7.89 +2017-11-10 06:02:01,42.6925,118.792,7.9 +2017-11-10 06:17:01,40.8325,118.795,7.89 +2017-11-10 06:32:01,43.94,118.795,7.88 +2017-11-10 06:47:01,41.4725,118.822,7.89 +2017-11-10 07:02:01,42.6937,118.837,7.89 +2017-11-10 07:17:01,42.6912,118.86,7.89 +2017-11-10 07:32:01,41.91,118.83,7.89 +2017-11-10 07:47:01,42.9337,118.875,7.9 +2017-11-10 08:02:01,42.7412,118.89,7.93 +2017-11-10 08:17:01,42.7887,118.867,7.97 +2017-11-10 08:32:01,42.5025,118.88,7.98 +2017-11-10 08:47:01,42.74,118.86,7.99 +2017-11-10 09:02:01,42.3075,118.86,7.99 +2017-11-10 09:17:01,42.6462,118.852,8.0 +2017-11-10 09:32:01,41.865,118.827,8.0 +2017-11-10 09:47:01,41.2188,118.845,7.99 +2017-11-10 10:02:01,43.745,118.82,8.0 +2017-11-10 10:17:01,42.3525,118.847,8.01 +2017-11-10 10:32:01,42.455,118.972,8.02 +2017-11-10 10:47:01,41.4712,118.643,8.05 +2017-11-10 11:02:01,42.2062,116.777,8.06 +2017-11-10 11:17:01,42.4538,115.332,8.08 +2017-11-10 11:32:01,43.2262,114.472,8.12 +2017-11-10 11:47:01,42.94,114.045,8.17 +2017-11-10 12:02:01,42.3037,113.847,8.19 +2017-11-10 12:17:01,42.1075,113.87,8.22 +2017-11-10 12:32:01,41.8613,113.817,8.21 +2017-11-10 12:47:01,42.005,113.862,8.18 +2017-11-10 13:02:01,40.9887,113.99,8.18 +2017-11-10 13:17:01,42.1537,114.315,8.2 +2017-11-10 13:32:01,43.13,114.667,8.22 +2017-11-10 13:47:01,43.5975,115.012,8.2 +2017-11-10 14:02:01,43.2237,115.342,8.19 +2017-11-10 14:17:01,43.0825,115.673,8.17 +2017-11-10 14:32:01,42.6437,115.982,8.17 +2017-11-10 14:47:01,42.26,116.253,8.16 +2017-11-10 15:02:01,42.8387,116.467,8.17 +2017-11-10 15:17:01,41.565,116.68,8.16 +2017-11-10 15:32:01,42.595,116.857,8.16 +2017-11-10 15:47:01,43.0362,116.995,8.16 +2017-11-10 16:02:01,42.26,117.087,8.18 +2017-11-10 16:17:01,42.055,117.162,8.2 +2017-11-10 16:32:01,42.74,117.227,8.23 +2017-11-10 16:47:01,42.69,117.342,8.23 +2017-11-10 17:02:01,43.2725,117.405,8.26 +2017-11-10 17:17:01,41.9087,117.555,8.29 +2017-11-10 17:32:01,42.255,117.643,8.31 +2017-11-10 17:47:01,41.9575,117.775,8.34 +2017-11-10 18:02:01,42.935,117.832,8.3 +2017-11-10 18:17:01,43.1275,117.857,8.21 +2017-11-10 18:32:01,42.9362,117.855,8.16 +2017-11-10 18:47:01,42.6888,117.82,8.14 +2017-11-10 19:02:01,42.4,117.727,8.12 +2017-11-10 19:17:01,42.1113,117.63,8.07 +2017-11-10 19:32:01,42.5512,117.505,8.05 +2017-11-10 19:47:01,42.7875,117.382,8.05 +2017-11-10 20:02:01,42.305,117.28,8.05 +2017-11-10 20:17:01,41.72,117.185,8.04 +2017-11-10 20:32:01,42.9875,117.075,8.02 +2017-11-10 20:47:01,40.9863,116.995,7.99 +2017-11-10 21:02:01,42.645,116.835,7.97 +2017-11-10 21:17:01,42.3063,116.715,7.95 +2017-11-10 21:32:01,42.055,116.632,7.95 +2017-11-10 21:47:01,40.0675,116.51,7.92 +2017-11-10 22:02:01,42.255,116.455,7.89 +2017-11-10 22:17:01,40.935,116.378,7.89 +2017-11-10 22:32:01,42.255,116.325,7.87 +2017-11-10 22:47:01,42.2562,116.257,7.87 +2017-11-10 23:02:01,44.0837,116.222,7.85 +2017-11-10 23:17:01,43.175,116.182,7.82 +2017-11-10 23:32:01,41.6162,116.167,7.79 +2017-11-10 23:47:01,41.815,116.115,7.78 +2017-11-11 00:02:01,41.8125,116.132,7.77 +2017-11-11 00:17:01,42.4012,116.107,7.77 +2017-11-11 00:32:01,41.125,116.16,7.74 +2017-11-11 00:47:01,42.355,116.173,7.73 +2017-11-11 01:02:01,42.5987,116.167,7.71 +2017-11-11 01:17:01,41.8125,116.162,7.7 +2017-11-11 01:32:01,41.9562,116.16,7.66 +2017-11-11 01:47:01,41.9112,116.167,7.64 +2017-11-11 02:02:01,42.0062,116.188,7.61 +2017-11-11 02:17:01,43.3187,116.2,7.58 +2017-11-11 02:32:01,41.0775,116.215,7.56 +2017-11-11 02:47:01,42.4025,116.2,7.55 +2017-11-11 03:02:01,41.9087,116.195,7.53 +2017-11-11 03:17:01,40.7387,116.162,7.51 +2017-11-11 03:32:01,41.615,116.175,7.5 +2017-11-11 03:47:01,43.3213,116.185,7.48 +2017-11-11 04:02:01,42.6462,116.195,7.47 +2017-11-11 04:17:01,43.1275,116.232,7.46 +2017-11-11 04:32:01,41.865,116.257,7.43 +2017-11-11 04:47:01,43.7425,116.315,7.42 +2017-11-11 05:02:01,42.2588,116.347,7.4 +2017-11-11 05:17:01,42.2113,116.385,7.39 +2017-11-11 05:32:01,43.94,116.417,7.37 +2017-11-11 05:47:01,41.32,116.43,7.37 +2017-11-11 06:02:01,41.5687,116.472,7.35 +2017-11-11 06:17:01,42.6437,116.562,7.33 +2017-11-11 06:32:01,42.79,116.602,7.32 +2017-11-11 06:47:01,42.605,116.695,7.3 +2017-11-11 07:02:01,42.7375,116.727,7.29 +2017-11-11 07:17:01,42.3538,116.768,7.27 +2017-11-11 07:32:01,42.3037,116.825,7.24 +2017-11-11 07:47:01,42.5037,116.87,7.23 +2017-11-11 08:02:01,42.1525,116.885,7.24 +2017-11-11 08:17:01,42.2575,116.957,7.25 +2017-11-11 08:32:01,40.8363,116.997,7.25 +2017-11-11 08:47:01,41.5187,117.048,7.25 +2017-11-11 09:02:01,41.9125,117.095,7.25 +2017-11-11 09:17:01,42.5013,117.112,7.25 +2017-11-11 09:32:01,42.7425,117.19,7.26 +2017-11-11 09:47:01,41.7237,117.255,7.28 +2017-11-11 10:02:01,43.2687,117.29,7.29 +2017-11-11 10:17:01,42.5525,117.34,7.3 +2017-11-11 10:32:01,43.7475,117.397,7.32 +2017-11-11 10:47:01,43.4587,117.45,7.32 +2017-11-11 11:02:01,44.5638,117.482,7.31 +2017-11-11 11:17:01,41.8138,117.555,7.29 +2017-11-11 11:32:01,42.885,117.6,7.31 +2017-11-11 11:47:01,42.255,117.667,7.33 +2017-11-11 12:02:01,42.785,117.69,7.36 +2017-11-11 12:17:01,43.2725,117.727,7.37 +2017-11-11 12:32:01,42.7387,117.768,7.37 +2017-11-11 12:47:01,43.2237,117.79,7.37 +2017-11-11 13:02:01,41.9538,117.885,7.37 +2017-11-11 13:17:01,41.035,117.91,7.37 +2017-11-11 13:32:01,41.265,117.955,7.4 +2017-11-11 13:47:01,42.505,117.965,7.4 +2017-11-11 14:02:01,42.1512,117.987,7.38 +2017-11-11 14:17:01,42.6,118.022,7.38 +2017-11-11 14:32:01,41.5687,118.075,7.43 +2017-11-11 14:47:01,42.3063,118.117,7.44 +2017-11-11 15:02:01,42.6462,118.18,7.43 +2017-11-11 15:17:01,43.6937,118.24,7.42 +2017-11-11 15:32:01,42.9375,118.312,7.4 +2017-11-11 15:47:01,42.3538,118.385,7.39 +2017-11-11 16:02:01,40.6375,118.457,7.37 +2017-11-11 16:17:01,43.3637,118.55,7.38 +2017-11-11 16:32:01,42.7875,118.615,7.38 +2017-11-11 16:47:01,41.86,118.715,7.39 +2017-11-11 17:02:01,42.155,118.822,7.39 +2017-11-11 17:17:01,43.0812,118.917,7.39 +2017-11-11 17:32:01,42.6413,119.035,7.4 +2017-11-11 17:47:01,42.835,119.158,7.39 +2017-11-11 18:02:01,41.7675,119.298,7.37 +2017-11-11 18:17:01,42.3988,119.465,7.37 +2017-11-11 18:32:01,42.6475,119.622,7.38 +2017-11-11 18:47:01,42.7887,119.798,7.39 +2017-11-11 19:02:01,41.3725,119.997,7.4 +2017-11-11 19:17:01,42.6437,120.18,7.39 +2017-11-11 19:32:01,43.895,120.37,7.38 +2017-11-11 19:47:01,40.6888,120.572,7.38 +2017-11-11 20:02:01,42.1575,120.742,7.36 +2017-11-11 20:17:01,42.8862,120.935,7.34 +2017-11-11 20:32:01,43.895,121.137,7.3 +2017-11-11 20:47:01,43.89,121.352,7.28 +2017-11-11 21:02:01,43.13,121.542,7.26 +2017-11-11 21:17:01,41.6188,121.75,7.22 +2017-11-11 21:32:01,41.8587,121.93,7.21 +2017-11-11 21:47:01,41.815,122.207,7.18 +2017-11-11 22:02:01,41.5187,122.345,7.15 +2017-11-11 22:17:01,42.5037,122.48,7.14 +2017-11-11 22:32:01,42.8375,122.628,7.14 +2017-11-11 22:47:01,42.2087,122.745,7.13 +2017-11-11 23:02:01,41.3775,122.835,7.12 +2017-11-11 23:17:01,42.84,122.98,7.1 +2017-11-11 23:32:01,43.5013,123.06,7.09 +2017-11-11 23:47:01,41.6175,123.17,7.08 +2017-11-12 00:02:01,42.645,123.262,7.07 +2017-11-12 00:17:01,41.37,123.347,7.06 +2017-11-12 00:32:01,41.86,123.412,7.04 +2017-11-12 00:47:01,42.055,123.455,7.03 +2017-11-12 01:02:01,42.4525,123.54,7.0 +2017-11-12 01:17:01,41.665,123.572,7.0 +2017-11-12 01:32:01,42.355,123.628,6.98 +2017-11-12 01:47:01,41.4725,123.647,6.96 +2017-11-12 02:02:01,43.5512,123.66,6.94 +2017-11-12 02:17:01,42.2025,123.67,6.93 +2017-11-12 02:32:01,41.6663,123.682,6.91 +2017-11-12 02:47:01,42.005,123.673,6.89 +2017-11-12 03:02:01,43.9425,123.667,6.89 +2017-11-12 03:17:01,42.31,123.673,6.87 +2017-11-12 03:32:01,42.79,123.658,6.85 +2017-11-12 03:47:01,43.6,123.643,6.84 +2017-11-12 04:02:01,42.0563,123.605,6.82 +2017-11-12 04:17:01,41.6162,123.575,6.8 +2017-11-12 04:32:01,41.2175,123.522,6.78 +2017-11-12 04:47:01,43.5037,123.5,6.76 +2017-11-12 05:02:01,43.4087,123.472,6.74 +2017-11-12 05:17:01,42.3988,123.427,6.73 +2017-11-12 05:32:01,42.55,123.385,6.72 +2017-11-12 05:47:01,42.2562,123.322,6.7 +2017-11-12 06:02:01,42.0062,123.237,6.69 +2017-11-12 06:17:01,42.2038,123.14,6.69 +2017-11-12 06:32:01,42.9863,123.072,6.68 +2017-11-12 06:47:01,42.1525,122.952,6.67 +2017-11-12 07:02:01,42.7375,122.812,6.66 +2017-11-12 07:17:01,41.1225,122.722,6.64 +2017-11-12 07:32:01,42.7387,122.732,6.65 +2017-11-12 07:47:01,43.2712,122.76,6.66 +2017-11-12 08:02:01,41.6675,122.805,6.65 +2017-11-12 08:17:01,42.84,122.807,6.65 +2017-11-12 08:32:01,42.7387,122.8,6.66 +2017-11-12 08:47:01,42.9837,122.832,6.67 +2017-11-12 09:02:01,42.5975,122.815,6.67 +2017-11-12 09:17:01,43.6912,122.827,6.69 +2017-11-12 09:32:01,41.91,122.815,6.69 +2017-11-12 09:47:01,41.8175,122.807,6.69 +2017-11-12 10:02:01,42.305,122.787,6.69 +2017-11-12 10:17:01,41.765,122.768,6.7 +2017-11-12 10:32:01,42.3538,122.75,6.71 +2017-11-12 10:47:01,42.0062,122.722,6.72 +2017-11-12 11:02:01,41.6125,122.72,6.71 +2017-11-12 11:17:01,42.5975,122.705,6.7 +2017-11-12 11:32:01,43.6912,122.682,6.7 +2017-11-12 11:47:01,41.7687,122.665,6.71 +2017-11-12 12:02:01,42.1562,122.66,6.71 +2017-11-12 12:17:01,41.4688,122.655,6.71 +2017-11-12 12:32:01,41.5187,122.63,6.71 +2017-11-12 12:47:01,40.3538,122.612,6.71 +2017-11-12 13:02:01,43.0362,122.592,6.7 +2017-11-12 13:17:01,42.0075,122.57,6.7 +2017-11-12 13:32:01,42.0075,122.555,6.7 +2017-11-12 13:47:01,42.2087,122.535,6.7 +2017-11-12 14:02:01,42.6963,122.507,6.7 +2017-11-12 14:17:01,42.8387,122.5,6.68 +2017-11-12 14:32:01,41.8625,122.482,6.67 +2017-11-12 14:47:01,41.86,122.487,6.66 +2017-11-12 15:02:01,41.6625,122.472,6.65 +2017-11-12 15:17:01,41.8587,122.5,6.64 +2017-11-12 15:32:01,42.505,122.47,6.63 +2017-11-12 15:47:01,41.8587,122.515,6.64 +2017-11-12 16:02:01,41.8637,122.515,6.64 +2017-11-12 16:17:01,41.8625,122.533,6.63 +2017-11-12 16:32:01,42.64,122.55,6.61 +2017-11-12 16:47:01,43.175,122.565,6.62 +2017-11-12 17:02:01,41.5662,122.595,6.63 +2017-11-12 17:17:01,41.9112,122.62,6.62 +2017-11-12 17:32:01,42.6925,122.662,6.62 +2017-11-12 17:47:01,43.175,122.685,6.6 +2017-11-12 18:02:01,42.205,122.72,6.59 +2017-11-12 18:17:01,42.2575,122.745,6.61 +2017-11-12 18:32:01,43.0325,122.76,6.6 +2017-11-12 18:47:01,43.1762,122.81,6.6 +2017-11-12 19:02:01,42.3025,122.825,6.59 +2017-11-12 19:17:01,41.9625,122.798,6.58 +2017-11-12 19:32:01,42.055,122.835,6.57 +2017-11-12 19:47:01,43.4538,122.83,6.57 +2017-11-12 20:02:01,41.855,122.857,6.55 +2017-11-12 20:17:01,41.615,122.857,6.54 +2017-11-12 20:32:01,43.41,122.895,6.53 +2017-11-12 20:47:01,41.7162,122.887,6.54 +2017-11-12 21:02:01,42.2537,122.935,6.53 +2017-11-12 21:17:01,41.42,122.967,6.51 +2017-11-12 21:32:01,42.2087,123.005,6.51 +2017-11-12 21:47:01,42.94,123.025,6.53 +2017-11-12 22:02:01,42.2562,123.072,6.52 +2017-11-12 22:17:01,41.6175,123.12,6.51 +2017-11-12 22:32:01,43.2687,123.155,6.5 +2017-11-12 22:47:01,42.4987,123.205,6.5 +2017-11-12 23:02:01,42.5025,123.25,6.5 +2017-11-12 23:17:01,42.4525,123.277,6.5 +2017-11-12 23:32:01,41.9112,123.317,6.51 +2017-11-12 23:47:01,43.8913,123.337,6.5 +2017-11-13 00:02:01,42.7875,123.397,6.5 +2017-11-13 00:17:01,43.7988,123.427,6.5 +2017-11-13 00:32:01,42.8387,123.47,6.5 +2017-11-13 00:47:01,43.1325,123.495,6.5 +2017-11-13 01:02:01,42.0062,123.515,6.49 +2017-11-13 01:17:01,43.41,123.548,6.48 +2017-11-13 01:32:01,44.415,123.56,6.48 +2017-11-13 01:47:01,42.84,123.587,6.47 +2017-11-13 02:02:01,43.275,123.61,6.46 +2017-11-13 02:17:01,41.815,123.615,6.46 +2017-11-13 02:32:01,42.785,123.647,6.44 +2017-11-13 02:47:01,42.5488,123.665,6.42 +2017-11-13 03:02:01,43.2712,123.688,6.4 +2017-11-13 03:17:01,43.3187,123.705,6.39 +2017-11-13 03:32:01,41.57,123.737,6.38 +2017-11-13 03:47:01,42.1562,123.747,6.38 +2017-11-13 04:02:01,42.6,123.78,6.37 +2017-11-13 04:17:01,43.035,123.8,6.35 +2017-11-13 04:32:01,42.5025,123.807,6.33 +2017-11-13 04:47:01,42.0025,123.845,6.31 +2017-11-13 05:02:01,42.4525,123.872,6.31 +2017-11-13 05:17:01,42.055,123.895,6.3 +2017-11-13 05:32:01,43.32,123.923,6.29 +2017-11-13 05:47:01,41.175,123.938,6.27 +2017-11-13 06:02:01,43.1762,123.955,6.25 +2017-11-13 06:17:01,42.5025,123.947,6.24 +2017-11-13 06:32:01,42.305,123.962,6.23 +2017-11-13 06:47:01,43.3688,123.992,6.25 +2017-11-13 07:02:01,41.32,123.947,6.24 +2017-11-13 07:17:01,44.0387,123.935,6.23 +2017-11-13 07:32:01,42.9875,123.952,6.23 +2017-11-13 07:47:01,42.1562,123.967,6.24 +2017-11-13 08:02:01,42.3063,123.982,6.25 +2017-11-13 08:17:01,42.8875,124.0,6.27 +2017-11-13 08:32:01,42.2588,124.012,6.28 +2017-11-13 08:47:01,43.0775,124.045,6.28 +2017-11-13 09:02:01,42.785,124.16,6.28 +2017-11-13 09:17:01,42.0025,124.327,6.3 +2017-11-13 09:32:01,43.5462,124.482,6.3 +2017-11-13 09:47:01,42.3487,124.628,6.3 +2017-11-13 10:02:01,43.03,124.742,6.33 +2017-11-13 10:17:01,43.9313,124.847,6.35 +2017-11-13 10:32:01,43.0775,124.952,6.36 +2017-11-13 10:47:01,43.7387,125.042,6.39 +2017-11-13 11:02:01,42.1525,125.112,6.39 +2017-11-13 11:17:01,43.7412,125.18,6.4 +2017-11-13 11:32:01,42.45,125.25,6.41 +2017-11-13 11:47:01,42.4938,125.305,6.44 +2017-11-13 12:02:01,42.15,125.367,6.45 +2017-11-13 12:17:01,42.2025,125.405,6.45 +2017-11-13 12:32:01,43.1275,125.447,6.42 +2017-11-13 12:47:01,42.74,125.487,6.42 +2017-11-13 13:02:01,43.36,125.535,6.45 +2017-11-13 13:17:01,42.7337,125.59,6.45 +2017-11-13 13:32:01,42.205,125.632,6.46 +2017-11-13 13:47:01,42.405,125.68,6.46 +2017-11-13 14:02:01,42.0537,125.722,6.46 +2017-11-13 14:17:01,43.2212,125.72,6.46 +2017-11-13 14:32:01,42.3512,125.753,6.46 +2017-11-13 14:47:01,42.3037,125.79,6.46 +2017-11-13 15:02:01,43.1263,125.84,6.43 +2017-11-13 15:17:01,42.5975,125.865,6.42 +2017-11-13 15:32:01,43.8862,125.917,6.41 +2017-11-13 15:47:01,43.2212,125.965,6.4 +2017-11-13 16:02:01,43.3162,125.997,6.4 +2017-11-13 16:17:01,41.8187,126.062,6.4 +2017-11-13 16:32:01,42.6425,126.092,6.39 +2017-11-13 16:47:01,41.8112,126.057,6.39 +2017-11-13 17:02:01,42.45,126.112,6.39 +2017-11-13 17:17:01,42.6387,126.152,6.37 +2017-11-13 17:32:01,41.665,126.21,6.36 +2017-11-13 17:47:01,43.2212,126.272,6.35 +2017-11-13 18:02:01,43.0788,126.322,6.35 +2017-11-13 18:17:01,42.595,126.38,6.34 +2017-11-13 18:32:01,42.1012,126.447,6.34 +2017-11-13 18:47:01,42.2012,126.497,6.33 +2017-11-13 19:02:01,43.265,126.572,6.31 +2017-11-13 19:17:01,43.17,126.617,6.31 +2017-11-13 19:32:01,43.8438,126.665,6.3 +2017-11-13 19:47:01,42.2062,126.712,6.29 +2017-11-13 20:02:01,42.2675,126.768,6.27 +2017-11-13 20:17:01,43.8525,126.802,6.25 +2017-11-13 20:32:01,41.6162,126.842,6.22 +2017-11-13 20:47:01,42.6012,126.875,6.2 +2017-11-13 21:02:01,42.35,126.908,6.2 +2017-11-13 21:17:01,42.6925,126.932,6.18 +2017-11-13 21:32:01,43.7913,126.962,6.17 +2017-11-13 21:47:01,43.365,126.982,6.15 +2017-11-13 22:02:01,42.3512,126.997,6.14 +2017-11-13 22:17:01,42.8387,127.012,6.13 +2017-11-13 22:32:01,44.4613,127.022,6.13 +2017-11-13 22:47:01,44.3675,127.042,6.11 +2017-11-13 23:02:01,42.5013,127.05,6.1 +2017-11-13 23:17:01,41.4712,127.055,6.09 +2017-11-13 23:32:01,43.645,127.07,6.09 +2017-11-13 23:47:01,43.2738,127.092,6.08 +2017-11-14 00:02:01,41.8162,127.102,6.06 +2017-11-14 00:17:01,43.2212,127.107,6.05 +2017-11-14 00:32:01,42.8875,127.125,6.03 +2017-11-14 00:47:01,42.69,127.13,6.02 +2017-11-14 01:02:01,42.0575,127.145,6.02 +2017-11-14 01:17:01,42.9825,127.16,6.02 +2017-11-14 01:32:01,43.0362,127.162,6.01 +2017-11-14 01:47:01,42.5025,127.173,6.0 +2017-11-14 02:02:01,44.515,127.19,6.0 +2017-11-14 02:17:01,43.7937,127.2,5.99 +2017-11-14 02:32:01,42.885,127.188,5.98 +2017-11-14 02:47:01,42.5525,127.195,5.96 +2017-11-14 03:02:01,42.2513,127.205,5.94 +2017-11-14 03:17:01,43.2275,127.205,5.92 +2017-11-14 03:32:01,42.1075,127.207,5.9 +2017-11-14 03:47:01,41.9075,127.232,5.87 +2017-11-14 04:02:01,43.035,127.253,5.86 +2017-11-14 04:17:01,43.8887,127.253,5.84 +2017-11-14 04:32:01,41.0788,127.283,5.81 +2017-11-14 04:47:01,42.5512,127.295,5.79 +2017-11-14 05:02:01,42.9863,127.312,5.76 +2017-11-14 05:17:01,42.4512,127.307,5.74 +2017-11-14 05:32:01,41.9075,127.307,5.73 +2017-11-14 05:47:01,43.32,127.307,5.71 +2017-11-14 06:02:01,43.595,127.298,5.68 +2017-11-14 06:17:01,42.98,127.285,5.67 +2017-11-14 06:32:01,41.665,127.28,5.65 +2017-11-14 06:47:01,43.5925,127.247,5.63 +2017-11-14 07:02:01,43.7925,127.24,5.61 +2017-11-14 07:17:01,43.2212,127.225,5.62 +2017-11-14 07:32:01,43.3213,127.222,5.6 +2017-11-14 07:47:01,42.935,127.21,5.59 +2017-11-14 08:02:01,43.1775,127.222,5.61 +2017-11-14 08:17:01,41.6637,127.215,5.6 +2017-11-14 08:32:01,42.735,127.23,5.6 +2017-11-14 08:47:01,43.8438,127.25,5.6 +2017-11-14 09:02:01,42.3012,127.315,5.62 +2017-11-14 09:17:01,43.08,127.475,5.65 +2017-11-14 09:32:01,43.455,127.645,5.68 +2017-11-14 09:47:01,41.12,128.052,5.68 +2017-11-14 10:02:01,43.1287,130.035,5.7 +2017-11-14 10:17:01,43.5512,131.562,5.72 +2017-11-14 10:32:01,43.4575,132.83,5.72 +2017-11-14 10:47:01,44.2225,133.802,5.76 +2017-11-14 11:02:01,43.455,134.637,5.79 +2017-11-14 11:17:01,43.41,135.287,5.83 +2017-11-14 11:32:01,43.7925,135.85,5.85 +2017-11-14 11:47:01,44.0387,136.298,5.87 +2017-11-14 12:02:01,43.5025,136.612,5.89 +2017-11-14 12:17:01,43.7462,136.88,5.9 +2017-11-14 12:32:01,43.6012,137.102,5.88 +2017-11-14 12:47:01,43.6912,137.227,5.89 +2017-11-14 13:02:01,42.9837,137.322,5.91 +2017-11-14 13:17:01,43.4087,137.327,5.96 +2017-11-14 13:32:01,43.0337,137.237,5.98 +2017-11-14 13:47:01,44.2212,137.022,6.01 +2017-11-14 14:02:01,43.6462,136.742,6.01 +2017-11-14 14:17:01,43.3662,136.347,6.0 +2017-11-14 14:32:01,43.6413,135.893,6.0 +2017-11-14 14:47:01,43.5025,135.46,5.99 +2017-11-14 15:02:01,43.8412,134.982,6.0 +2017-11-14 15:17:01,44.3187,134.592,6.0 +2017-11-14 15:32:01,43.2212,134.21,6.01 +2017-11-14 15:47:01,17.3887,133.792,5.74 +2017-11-14 16:02:01,44.63,133.435,6.06 +2017-11-14 16:25:28,43.1762,132.867,6.06 +2017-11-14 16:32:00,42.26,132.707,6.07 +2017-11-14 16:47:00,43.0812,132.32,6.09 +2017-11-14 17:02:00,43.5037,131.975,6.11 +2017-11-14 17:17:00,42.5025,131.643,6.14 +2017-11-14 17:32:00,41.905,131.355,6.16 +2017-11-14 17:47:00,41.47,131.09,6.17 +2017-11-14 18:02:00,42.55,130.842,6.18 +2017-11-14 18:17:00,42.6888,130.615,6.2 +2017-11-14 18:32:00,42.2562,130.408,6.21 +2017-11-14 18:47:00,42.45,130.225,6.23 +2017-11-14 19:02:00,43.7462,130.037,6.24 +2017-11-14 19:17:00,43.7962,129.86,6.25 +2017-11-14 19:32:00,42.0563,129.682,6.26 +2017-11-14 19:47:00,43.2237,129.515,6.27 +2017-11-14 20:02:00,41.47,129.375,6.27 +2017-11-14 20:17:00,42.7887,129.245,6.28 +2017-11-14 20:32:00,43.5962,129.127,6.29 +2017-11-14 20:47:00,42.6437,129.048,6.28 +2017-11-14 21:02:00,42.105,128.95,6.29 +2017-11-14 21:17:00,42.3012,128.802,6.3 +2017-11-14 21:32:00,43.5488,128.692,6.29 +2017-11-14 21:47:00,42.4525,128.612,6.29 +2017-11-14 22:02:00,43.0775,128.495,6.28 +2017-11-14 22:17:00,42.305,128.447,6.28 +2017-11-14 22:32:00,42.5987,128.412,6.28 +2017-11-14 22:47:00,42.4525,128.352,6.27 +2017-11-14 23:02:00,43.2725,128.253,6.26 +2017-11-14 23:17:00,44.3675,128.125,6.27 +2017-11-14 23:32:00,42.1062,128.045,6.27 +2017-11-14 23:47:00,43.5525,127.975,6.28 +2017-11-15 00:02:00,42.7387,127.93,6.27 +2017-11-15 00:17:00,43.2725,127.88,6.27 +2017-11-15 00:32:00,42.4025,127.845,6.25 +2017-11-15 00:47:00,42.74,127.825,6.24 +2017-11-15 01:02:00,41.7188,127.815,6.24 +2017-11-15 01:17:00,43.08,127.807,6.22 +2017-11-15 01:32:00,41.9587,127.79,6.22 +2017-11-15 01:47:00,43.7438,127.785,6.21 +2017-11-15 02:02:00,42.0587,127.757,6.21 +2017-11-15 02:17:00,42.3063,127.725,6.2 +2017-11-15 02:32:00,42.785,127.722,6.19 +2017-11-15 02:47:00,42.0563,127.727,6.19 +2017-11-15 03:02:00,42.7875,127.702,6.19 +2017-11-15 03:17:00,43.6912,127.685,6.19 +2017-11-15 03:32:00,42.7875,127.667,6.19 +2017-11-15 03:47:00,41.37,127.64,6.19 +2017-11-15 04:02:00,42.8875,127.617,6.19 +2017-11-15 04:17:00,42.6925,127.62,6.2 +2017-11-15 04:32:00,43.2225,127.625,6.2 +2017-11-15 04:47:00,42.5013,127.61,6.21 +2017-11-15 05:02:00,42.4012,127.622,6.21 +2017-11-15 05:17:00,42.5975,127.628,6.21 +2017-11-15 05:32:00,43.985,127.602,6.22 +2017-11-15 05:47:00,42.305,127.533,6.23 +2017-11-15 06:02:00,43.0812,127.423,6.24 +2017-11-15 06:17:00,43.4125,127.362,6.23 +2017-11-15 06:32:00,44.4163,127.325,6.23 +2017-11-15 06:47:00,42.5037,127.335,6.25 +2017-11-15 07:02:00,43.5037,127.35,6.26 +2017-11-15 07:17:00,43.08,127.402,6.26 +2017-11-15 07:32:00,43.2237,127.442,6.26 +2017-11-15 07:47:00,42.79,127.477,6.28 +2017-11-15 08:02:00,43.1813,127.467,6.3 +2017-11-15 08:17:00,42.4037,127.438,6.33 +2017-11-15 08:32:00,42.1537,127.415,6.35 +2017-11-15 08:47:00,42.4025,127.38,6.36 +2017-11-15 09:02:00,42.6488,127.357,6.38 +2017-11-15 09:17:00,42.26,127.342,6.41 +2017-11-15 09:32:00,43.3175,127.295,6.42 +2017-11-15 09:47:00,42.985,127.262,6.43 +2017-11-15 10:02:00,43.3688,127.23,6.45 +2017-11-15 10:17:00,42.7438,127.202,6.47 +2017-11-15 10:32:00,41.7375,127.18,6.49 +2017-11-15 10:47:00,42.3162,127.162,6.51 +2017-11-15 11:02:00,42.61,127.132,6.54 +2017-11-15 11:17:00,43.8387,127.112,6.56 +2017-11-15 11:32:00,42.5488,127.085,6.57 +2017-11-15 11:47:00,42.155,127.067,6.59 +2017-11-15 12:02:00,43.275,127.06,6.6 +2017-11-15 12:17:00,41.5175,127.067,6.61 +2017-11-15 12:32:00,42.4025,127.03,6.63 +2017-11-15 12:47:00,42.5975,126.98,6.65 +2017-11-15 13:02:00,42.2588,126.945,6.65 +2017-11-15 13:17:00,42.5525,126.893,6.64 +2017-11-15 13:32:00,42.4512,126.895,6.66 +2017-11-15 13:47:00,41.5187,126.917,6.68 +2017-11-15 14:02:00,42.55,126.885,6.7 +2017-11-15 14:17:00,44.0825,126.817,6.7 +2017-11-15 14:32:00,43.0825,126.795,6.72 +2017-11-15 14:47:00,42.3063,126.855,6.74 +2017-11-15 15:02:00,42.3538,126.902,6.75 +2017-11-15 15:17:00,43.365,126.905,6.77 +2017-11-15 15:32:00,44.2237,126.915,6.78 +2017-11-15 15:47:00,42.4062,126.908,6.79 +2017-11-15 16:02:00,43.8862,126.867,6.81 +2017-11-15 16:17:00,43.55,126.847,6.82 +2017-11-15 16:32:00,42.405,126.825,6.84 +2017-11-15 16:47:00,41.9538,126.827,6.84 +2017-11-15 17:02:00,43.2212,126.825,6.85 +2017-11-15 17:17:00,42.2087,126.847,6.87 +2017-11-15 17:32:00,43.9875,126.85,6.9 +2017-11-15 17:47:00,41.86,126.887,6.92 +2017-11-15 18:02:00,43.5987,126.93,6.91 +2017-11-15 18:17:00,42.8438,126.955,6.91 +2017-11-15 18:32:00,42.0075,127.007,6.93 +2017-11-15 18:47:00,43.1775,127.065,6.93 +2017-11-15 19:02:00,42.6475,127.112,6.93 +2017-11-15 19:17:00,42.6,127.197,6.94 +2017-11-15 19:32:00,42.4,127.222,6.95 +2017-11-15 19:47:00,43.1312,127.292,6.96 +2017-11-15 20:02:00,43.3213,127.355,6.95 +2017-11-15 20:17:00,43.175,127.41,6.96 +2017-11-15 20:32:00,43.0325,127.455,6.97 +2017-11-15 20:47:00,44.1762,127.505,6.97 +2017-11-15 21:02:00,42.5987,127.53,6.97 +2017-11-15 21:17:00,42.6425,127.567,6.97 +2017-11-15 21:32:00,42.5962,127.595,6.96 +2017-11-15 21:47:00,43.0825,127.62,6.96 +2017-11-15 22:02:00,43.0812,127.622,6.96 +2017-11-15 22:17:00,44.325,127.622,6.97 +2017-11-15 22:32:00,42.7913,127.625,6.96 +2017-11-15 22:47:00,43.3213,127.65,6.95 +2017-11-15 23:02:00,42.8375,127.637,6.94 +2017-11-15 23:17:00,44.3175,127.632,6.95 +2017-11-15 23:32:00,42.5512,127.628,6.95 +2017-11-15 23:47:00,43.4112,127.615,6.95 +2017-11-16 00:02:00,42.7387,127.587,6.95 +2017-11-16 00:17:00,43.3225,127.555,6.94 +2017-11-16 00:32:00,43.0812,127.537,6.95 +2017-11-16 00:47:00,43.325,127.505,6.95 +2017-11-16 01:02:00,43.6462,127.477,6.95 +2017-11-16 01:17:00,41.96,127.438,6.95 +2017-11-16 01:32:00,44.2762,127.38,6.96 +2017-11-16 01:47:00,44.4212,127.352,6.95 +2017-11-16 02:02:00,43.6437,127.3,6.95 +2017-11-16 02:17:00,42.1525,127.25,6.95 +2017-11-16 02:32:00,43.8913,127.21,6.93 +2017-11-16 02:47:00,42.69,127.17,6.93 +2017-11-16 03:02:00,42.6012,127.135,6.94 +2017-11-16 03:17:00,42.3037,127.062,6.94 +2017-11-16 03:32:00,42.6437,126.997,6.93 +2017-11-16 03:47:00,43.1287,126.902,6.92 +2017-11-16 04:02:00,43.2775,126.802,6.91 +2017-11-16 04:17:00,43.275,126.712,6.91 +2017-11-16 04:32:00,43.415,126.617,6.89 +2017-11-16 04:47:00,43.9412,126.52,6.88 +2017-11-16 05:02:00,42.4025,126.467,6.87 +2017-11-16 05:17:00,43.0362,126.42,6.86 +2017-11-16 05:32:00,43.6462,126.367,6.83 +2017-11-16 05:47:00,43.7937,126.305,6.82 +2017-11-16 06:02:00,43.6475,126.305,6.82 +2017-11-16 06:17:00,42.5475,126.31,6.81 +2017-11-16 06:32:00,42.7887,126.345,6.79 +2017-11-16 06:47:00,44.325,126.378,6.79 +2017-11-16 07:02:00,43.0387,126.37,6.78 +2017-11-16 07:17:00,43.1263,126.357,6.77 +2017-11-16 07:32:00,43.8375,126.327,6.77 +2017-11-16 07:47:00,43.3675,126.298,6.77 +2017-11-16 08:02:00,43.455,126.28,6.77 +2017-11-16 08:17:00,42.84,126.262,6.77 +2017-11-16 08:32:00,44.9,126.265,6.79 +2017-11-16 08:47:00,44.3737,126.262,6.82 +2017-11-16 09:02:00,43.6475,126.22,6.84 +2017-11-16 09:17:00,43.035,126.17,6.88 +2017-11-16 09:32:00,44.0387,126.137,6.91 +2017-11-16 09:47:00,43.46,126.105,6.94 +2017-11-16 10:02:00,45.6287,126.077,6.95 +2017-11-16 10:17:00,43.695,126.05,6.98 +2017-11-16 10:32:00,44.2262,126.0,6.99 +2017-11-16 10:47:00,44.5163,126.0,7.02 +2017-11-16 11:02:00,43.175,125.97,7.04 +2017-11-16 11:17:00,43.2738,125.942,7.07 +2017-11-16 11:32:00,43.0812,125.93,7.07 +2017-11-16 11:47:00,44.1787,125.932,7.08 +2017-11-16 12:02:00,43.6475,125.875,7.09 +2017-11-16 12:17:00,43.3625,125.822,7.09 +2017-11-16 12:32:00,43.0812,125.847,7.08 +2017-11-16 12:47:00,42.7913,125.865,7.08 +2017-11-16 13:02:00,44.2262,125.815,7.09 +2017-11-16 13:17:00,42.9375,125.8,7.1 +2017-11-16 13:32:00,43.23,125.753,7.12 +2017-11-16 13:47:00,42.45,125.7,7.11 +2017-11-16 14:02:00,41.9075,125.63,7.1 +2017-11-16 14:17:00,44.565,125.56,7.09 +2017-11-16 14:32:00,43.3688,125.535,7.07 +2017-11-16 14:47:00,43.0325,125.49,7.07 +2017-11-16 15:02:00,44.3213,125.472,7.07 +2017-11-16 15:17:00,41.4775,125.465,7.04 +2017-11-16 15:32:00,43.0375,125.492,7.02 +2017-11-16 15:47:00,42.84,125.52,7.02 +2017-11-16 16:02:00,42.155,125.535,7.03 +2017-11-16 16:17:00,44.1762,125.533,7.04 +2017-11-16 16:32:00,42.455,125.535,7.04 +2017-11-16 16:47:00,43.4112,125.512,7.03 +2017-11-16 17:02:00,43.2237,125.485,7.04 +2017-11-16 17:17:00,43.4562,125.43,7.06 +2017-11-16 17:32:00,43.3675,125.39,7.07 +2017-11-16 17:47:00,42.7412,125.325,7.06 +2017-11-16 18:02:00,43.6475,125.283,7.06 +2017-11-16 18:17:00,43.13,125.19,7.04 +2017-11-16 18:32:00,41.7188,125.112,7.04 +2017-11-16 18:47:00,44.1325,125.042,7.02 +2017-11-16 19:02:00,43.1338,124.98,7.02 +2017-11-16 19:17:00,42.8875,124.917,7.02 +2017-11-16 19:32:00,43.0812,124.845,7.03 +2017-11-16 19:47:00,43.4575,124.745,7.04 +2017-11-16 20:02:00,44.1787,124.652,7.03 +2017-11-16 20:17:00,43.2725,124.555,7.03 +2017-11-16 20:32:00,43.7962,124.46,7.02 +2017-11-16 20:47:00,44.37,124.335,7.01 +2017-11-16 21:02:00,43.4587,124.232,7.02 +2017-11-16 21:17:00,43.6012,124.112,7.01 +2017-11-16 21:32:00,43.5512,124.027,7.01 +2017-11-16 21:47:00,43.5025,123.938,7.01 +2017-11-16 22:02:00,42.6937,123.84,7.01 +2017-11-16 22:17:00,43.2738,123.685,7.0 +2017-11-16 22:32:00,43.9875,123.59,6.99 +2017-11-16 22:47:00,43.745,123.522,6.98 +2017-11-16 23:02:00,43.0837,123.462,6.97 +2017-11-16 23:17:00,41.175,123.39,6.97 +2017-11-16 23:32:00,43.6488,123.315,6.96 +2017-11-16 23:47:00,41.9125,123.237,6.96 +2017-11-17 00:02:00,44.6587,123.167,6.95 +2017-11-17 00:17:00,43.5975,123.1,6.94 +2017-11-17 00:32:00,44.1762,123.037,6.93 +2017-11-17 00:47:00,44.0387,122.985,6.94 +2017-11-17 01:02:00,42.7425,122.935,6.95 +2017-11-17 01:17:00,42.4525,122.895,6.95 +2017-11-17 01:32:00,43.0337,122.817,6.95 +2017-11-17 01:47:00,43.6937,122.775,6.94 +2017-11-17 02:02:00,44.0375,122.712,6.93 +2017-11-17 02:17:00,43.8425,122.667,6.93 +2017-11-17 02:32:00,43.0812,122.61,6.94 +2017-11-17 02:47:00,43.32,122.557,6.92 +2017-11-17 03:02:00,43.3637,122.527,6.91 +2017-11-17 03:17:00,43.1338,122.503,6.92 +2017-11-17 03:32:00,43.225,122.497,6.91 +2017-11-17 03:47:00,43.8875,122.485,6.91 +2017-11-17 04:02:00,43.6462,122.485,6.91 +2017-11-17 04:17:00,43.8937,122.475,6.92 +2017-11-17 04:32:00,41.8637,122.475,6.92 +2017-11-17 04:47:00,44.7575,122.485,6.9 +2017-11-17 05:02:00,43.3187,122.512,6.91 +2017-11-17 05:17:00,43.5488,122.525,6.92 +2017-11-17 05:32:00,43.94,122.592,6.92 +2017-11-17 05:47:00,43.89,122.66,6.91 +2017-11-17 06:02:00,43.6012,122.712,6.91 +2017-11-17 06:17:00,43.0863,122.8,6.92 +2017-11-17 06:32:00,43.4575,122.827,6.94 +2017-11-17 06:47:00,43.3675,122.825,6.94 +2017-11-17 07:02:00,42.74,122.905,6.95 +2017-11-17 07:17:00,43.4575,122.977,6.95 +2017-11-17 07:32:00,43.2237,123.015,6.93 +2017-11-17 07:47:00,43.275,123.04,6.93 +2017-11-17 08:02:00,43.6488,123.057,6.93 +2017-11-17 08:17:00,44.0413,123.065,6.93 +2017-11-17 08:32:00,43.1775,123.115,6.93 +2017-11-17 08:47:00,44.1312,123.167,6.93 +2017-11-17 09:02:00,44.2712,123.222,6.95 +2017-11-17 09:17:00,43.5488,123.268,6.96 +2017-11-17 09:32:00,44.5675,123.307,6.98 +2017-11-17 09:47:00,42.695,123.357,6.99 +2017-11-17 10:02:00,44.2712,123.387,7.01 +2017-11-17 10:17:00,43.5525,123.445,7.03 +2017-11-17 10:32:00,43.3675,123.472,7.04 +2017-11-17 10:47:00,43.035,123.503,7.04 +2017-11-17 11:02:00,44.665,123.537,7.04 +2017-11-17 11:17:00,44.0875,123.565,7.05 +2017-11-17 11:32:00,44.0387,123.595,7.06 +2017-11-17 11:47:00,43.0375,123.62,7.07 +2017-11-17 12:02:00,43.7462,123.617,7.09 +2017-11-17 12:17:00,42.6975,123.647,7.11 +2017-11-17 12:32:00,42.1587,123.685,7.13 +2017-11-17 12:47:00,43.32,123.72,7.16 +2017-11-17 13:02:00,43.8412,123.765,7.18 +2017-11-17 13:17:00,43.8887,123.81,7.19 +2017-11-17 13:32:00,44.2775,123.845,7.21 +2017-11-17 13:47:00,43.1787,123.872,7.22 +2017-11-17 14:02:00,42.5975,123.912,7.25 +2017-11-17 14:17:00,43.1787,123.96,7.25 +2017-11-17 14:32:00,44.7612,124.042,7.24 +2017-11-17 14:47:00,42.5512,124.14,7.22 +2017-11-17 15:02:00,44.5163,124.23,7.21 +2017-11-17 15:17:00,42.8875,124.302,7.21 +2017-11-17 15:32:00,43.895,124.39,7.21 +2017-11-17 15:47:00,42.1025,124.522,7.2 +2017-11-17 16:02:00,43.94,124.682,7.2 +2017-11-17 16:17:00,42.9875,124.832,7.2 +2017-11-17 16:32:00,43.4562,124.965,7.21 +2017-11-17 16:47:00,42.0563,125.062,7.23 +2017-11-17 17:02:00,43.8913,125.13,7.24 +2017-11-17 17:17:00,43.6975,125.205,7.25 +2017-11-17 17:32:00,44.42,125.272,7.26 +2017-11-17 17:47:00,42.6462,125.37,7.27 +2017-11-17 18:02:00,41.7738,125.45,7.28 +2017-11-17 18:17:00,43.6462,125.527,7.29 +2017-11-17 18:32:00,44.0337,125.592,7.3 +2017-11-17 18:47:00,43.2738,125.667,7.31 +2017-11-17 19:02:00,42.645,125.722,7.33 +2017-11-17 19:17:00,43.27,125.755,7.34 +2017-11-17 19:32:00,43.035,125.807,7.32 +2017-11-17 19:47:00,41.8637,125.85,7.3 +2017-11-17 20:02:00,43.5037,125.87,7.3 +2017-11-17 20:17:00,43.9875,125.887,7.28 +2017-11-17 20:32:00,42.8363,125.882,7.26 +2017-11-17 20:47:00,43.0825,125.88,7.24 +2017-11-17 21:02:00,44.1287,125.855,7.21 +2017-11-17 21:17:00,44.0863,125.842,7.19 +2017-11-17 21:32:00,42.5512,125.83,7.17 +2017-11-17 21:47:00,42.5525,125.81,7.14 +2017-11-17 22:02:00,42.7425,125.802,7.1 +2017-11-17 22:17:00,42.5013,125.79,7.07 +2017-11-17 22:32:00,43.7462,125.757,7.04 +2017-11-17 22:47:00,42.55,125.74,7.03 +2017-11-17 23:02:00,42.4025,125.68,7.02 +2017-11-17 23:17:00,43.32,125.612,6.99 +2017-11-17 23:32:00,42.7387,125.567,6.97 +2017-11-17 23:47:00,43.13,125.495,6.96 +2017-11-18 00:02:00,41.6712,125.423,6.95 +2017-11-18 00:17:00,44.0875,125.372,6.94 +2017-11-18 00:32:00,43.89,125.298,6.93 +2017-11-18 00:47:00,43.1275,125.232,6.91 +2017-11-18 01:02:00,44.2212,125.185,6.89 +2017-11-18 01:17:00,44.1813,125.145,6.88 +2017-11-18 01:32:00,42.3562,125.092,6.86 +2017-11-18 01:47:00,42.3012,125.03,6.84 +2017-11-18 02:02:00,43.1312,124.932,6.82 +2017-11-18 02:17:00,42.6012,124.827,6.79 +2017-11-18 02:32:00,42.6937,124.72,6.76 +2017-11-18 02:47:00,42.935,124.643,6.75 +2017-11-18 03:02:00,42.7387,124.6,6.73 +2017-11-18 03:17:00,42.4525,124.518,6.71 +2017-11-18 03:32:00,41.3175,124.455,6.69 +2017-11-18 03:47:00,43.4112,124.378,6.67 +2017-11-18 04:02:00,42.555,124.317,6.65 +2017-11-18 04:17:00,43.365,124.257,6.64 +2017-11-18 04:32:00,42.8862,124.22,6.62 +2017-11-18 04:47:00,42.3063,124.137,6.61 +2017-11-18 05:02:00,44.135,124.06,6.6 +2017-11-18 05:17:00,43.4562,123.985,6.59 +2017-11-18 05:32:00,43.3237,123.97,6.6 +2017-11-18 05:47:00,43.5987,123.927,6.57 +2017-11-18 06:02:00,42.1537,123.89,6.54 +2017-11-18 06:17:00,42.8387,123.88,6.52 +2017-11-18 06:32:00,42.3037,123.865,6.49 +2017-11-18 06:47:00,42.89,123.822,6.48 +2017-11-18 07:02:00,41.5225,123.827,6.48 +2017-11-18 07:17:00,42.7875,123.757,6.48 +2017-11-18 07:32:00,42.4037,123.735,6.48 +2017-11-18 07:47:00,43.5488,123.702,6.49 +2017-11-18 08:02:00,43.41,123.637,6.49 +2017-11-18 08:17:00,42.3012,123.575,6.49 +2017-11-18 08:32:00,41.8637,123.662,6.49 +2017-11-18 08:47:00,43.27,123.792,6.49 +2017-11-18 09:02:00,41.3787,123.775,6.48 +2017-11-18 09:17:00,43.0025,123.745,6.48 +2017-11-18 09:32:00,42.89,123.715,6.48 +2017-11-18 09:47:00,43.9863,123.628,6.48 +2017-11-18 10:02:00,42.5037,123.597,6.49 +2017-11-18 10:17:00,42.3075,123.542,6.5 +2017-11-18 10:32:00,42.89,123.512,6.51 +2017-11-18 10:47:00,41.865,123.482,6.5 +2017-11-18 11:02:00,41.52,123.445,6.49 +2017-11-18 11:17:00,42.2087,123.417,6.5 +2017-11-18 11:32:00,42.0075,123.412,6.5 +2017-11-18 11:47:00,44.0912,123.385,6.48 +2017-11-18 12:02:00,42.1625,123.41,6.47 +2017-11-18 12:17:00,41.7188,123.43,6.46 +2017-11-18 12:32:00,41.9112,123.465,6.46 +2017-11-18 12:47:00,41.7175,123.512,6.45 +2017-11-18 13:02:00,42.06,123.49,6.45 +2017-11-18 13:17:00,41.22,123.51,6.45 +2017-11-18 13:32:00,42.8387,123.455,6.45 +2017-11-18 13:47:00,42.9875,123.48,6.44 +2017-11-18 14:02:00,42.8412,123.525,6.43 +2017-11-18 14:17:00,43.1312,123.542,6.42 +2017-11-18 14:32:00,41.5713,123.57,6.41 +2017-11-18 14:47:00,42.3063,123.612,6.39 +2017-11-18 15:02:00,41.96,123.597,6.38 +2017-11-18 15:17:00,42.6425,123.61,6.37 +2017-11-18 15:32:00,43.745,123.632,6.37 +2017-11-18 15:47:00,42.4525,123.582,6.37 +2017-11-18 16:02:00,42.9375,123.61,6.37 +2017-11-18 16:17:00,42.2588,123.628,6.37 +2017-11-18 16:32:00,42.1575,123.67,6.37 +2017-11-18 16:47:00,42.1537,123.675,6.38 +2017-11-18 17:02:00,42.9863,123.67,6.39 +2017-11-18 17:17:00,41.8637,123.665,6.37 +2017-11-18 17:32:00,43.08,123.685,6.36 +2017-11-18 17:47:00,43.1787,123.635,6.36 +2017-11-18 18:02:00,43.0837,123.667,6.36 +2017-11-18 18:17:00,42.6963,123.688,6.35 +2017-11-18 18:32:00,43.4137,123.722,6.33 +2017-11-18 18:47:00,43.795,123.73,6.31 +2017-11-18 19:02:00,44.4712,123.775,6.3 +2017-11-18 19:17:00,44.0362,123.845,6.3 +2017-11-18 19:32:00,43.175,123.852,6.29 +2017-11-18 19:47:00,43.085,123.893,6.27 +2017-11-18 20:02:00,43.13,123.957,6.25 +2017-11-18 20:17:00,43.2262,124.005,6.23 +2017-11-18 20:32:00,44.0387,123.987,6.22 +2017-11-18 20:47:00,42.7875,124.072,6.22 +2017-11-18 21:02:00,42.8387,124.107,6.2 +2017-11-18 21:17:00,41.37,124.128,6.18 +2017-11-18 21:32:00,44.37,124.188,6.15 +2017-11-18 21:47:00,43.275,124.207,6.14 +2017-11-18 22:02:00,41.5225,124.265,6.14 +2017-11-18 22:17:00,42.3037,124.287,6.12 +2017-11-18 22:32:00,43.3187,124.295,6.09 +2017-11-18 22:47:00,42.8913,124.275,6.08 +2017-11-18 23:02:00,44.3213,124.315,6.07 +2017-11-18 23:17:00,41.7687,124.33,6.06 +2017-11-18 23:32:00,43.1787,124.355,6.05 +2017-11-18 23:47:00,42.4087,124.357,6.04 +2017-11-19 00:02:00,43.1312,124.417,6.03 +2017-11-19 00:17:00,42.2612,124.393,6.02 +2017-11-19 00:32:00,42.5537,124.387,6.0 +2017-11-19 00:47:00,43.9925,124.408,5.99 +2017-11-19 01:02:00,43.2275,124.33,5.97 +2017-11-19 01:17:00,42.155,124.317,5.94 +2017-11-19 01:32:00,44.2275,124.315,5.91 +2017-11-19 01:47:00,41.9125,124.335,5.88 +2017-11-19 02:02:00,43.3237,124.322,5.86 +2017-11-19 02:17:00,41.7188,124.307,5.83 +2017-11-19 02:32:00,42.0112,124.285,5.81 +2017-11-19 02:47:00,42.7925,124.285,5.79 +2017-11-19 03:02:00,43.3712,124.253,5.77 +2017-11-19 03:17:00,42.555,124.23,5.76 +2017-11-19 03:32:00,42.505,124.24,5.74 +2017-11-19 03:47:00,42.4012,124.242,5.72 +2017-11-19 04:02:00,44.3225,124.26,5.69 +2017-11-19 04:17:00,40.9825,124.285,5.67 +2017-11-19 04:32:00,41.5225,124.292,5.65 +2017-11-19 04:47:00,43.32,124.283,5.63 +2017-11-19 05:02:00,42.885,124.277,5.62 +2017-11-19 05:17:00,43.7925,124.26,5.61 +2017-11-19 05:32:00,42.4512,124.232,5.6 +2017-11-19 05:47:00,42.2562,124.253,5.6 +2017-11-19 06:02:00,43.125,124.24,5.6 +2017-11-19 06:17:00,42.4512,124.225,5.6 +2017-11-19 06:32:00,42.2562,124.253,5.58 +2017-11-19 06:47:00,42.405,124.237,5.57 +2017-11-19 07:02:00,43.1275,124.215,5.56 +2017-11-19 07:17:00,43.275,124.2,5.54 +2017-11-19 07:32:00,43.6012,124.162,5.52 +2017-11-19 07:47:00,44.6113,124.087,5.52 +2017-11-19 08:02:00,42.935,124.018,5.52 +2017-11-19 08:17:00,43.55,123.977,5.52 +2017-11-19 08:32:00,43.7438,123.915,5.51 +2017-11-19 08:47:00,44.1762,123.942,5.51 +2017-11-19 09:02:00,44.225,123.93,5.52 +2017-11-19 09:17:00,43.46,123.882,5.52 +2017-11-19 09:32:00,43.6475,123.865,5.53 +2017-11-19 09:47:00,42.0587,123.837,5.56 +2017-11-19 10:02:00,44.2225,123.827,5.58 +2017-11-19 10:17:00,42.6437,123.747,5.61 +2017-11-19 10:32:00,43.5475,123.757,5.62 +2017-11-19 10:47:00,43.175,123.71,5.64 +2017-11-19 11:02:00,41.22,123.72,5.65 +2017-11-19 11:17:00,43.5013,123.725,5.65 +2017-11-19 11:32:00,42.0062,123.77,5.64 +2017-11-19 11:47:00,42.505,123.75,5.63 +2017-11-19 12:02:00,42.21,123.735,5.64 +2017-11-19 12:17:00,42.5525,123.722,5.64 +2017-11-19 12:32:00,42.84,123.755,5.63 +2017-11-19 12:47:00,43.6462,123.74,5.63 +2017-11-19 13:02:00,42.74,123.717,5.63 +2017-11-19 13:17:00,42.7887,123.69,5.63 +2017-11-19 13:32:00,42.555,123.812,5.64 +2017-11-19 13:47:00,43.1275,123.812,5.65 +2017-11-19 14:02:00,42.6437,123.82,5.66 +2017-11-19 14:17:00,43.32,123.885,5.66 +2017-11-19 14:32:00,43.5037,123.902,5.65 +2017-11-19 14:47:00,42.3075,123.92,5.65 +2017-11-19 15:02:00,42.0537,123.987,5.65 +2017-11-19 15:17:00,41.955,123.95,5.64 +2017-11-19 15:32:00,44.2712,123.97,5.64 +2017-11-19 15:47:00,43.4137,124.003,5.64 +2017-11-19 16:02:00,42.2562,124.04,5.64 +2017-11-19 16:17:00,42.2038,124.11,5.65 +2017-11-19 16:32:00,40.9837,124.125,5.67 +2017-11-19 16:47:00,42.7875,124.167,5.68 +2017-11-19 17:02:00,42.7425,124.185,5.7 +2017-11-19 17:17:00,43.13,124.235,5.72 +2017-11-19 17:32:00,41.465,124.26,5.73 +2017-11-19 17:47:00,41.9062,124.295,5.72 +2017-11-19 18:02:00,42.885,124.352,5.73 +2017-11-19 18:17:00,44.3175,124.425,5.72 +2017-11-19 18:32:00,42.2562,124.49,5.71 +2017-11-19 18:47:00,43.365,124.472,5.7 +2017-11-19 19:02:00,43.6437,124.59,5.69 +2017-11-19 19:17:00,42.1038,124.58,5.68 +2017-11-19 19:32:00,43.4562,124.637,5.67 +2017-11-19 19:47:00,43.13,124.673,5.67 +2017-11-19 20:02:00,42.935,124.682,5.67 +2017-11-19 20:17:00,42.3063,124.717,5.67 +2017-11-19 20:32:00,43.7937,124.757,5.65 +2017-11-19 20:47:00,42.355,124.815,5.66 +2017-11-19 21:02:00,42.985,124.86,5.66 +2017-11-19 21:17:00,42.6462,124.925,5.66 +2017-11-19 21:32:00,42.6437,124.915,5.66 +2017-11-19 21:47:00,42.985,124.997,5.65 +2017-11-19 22:02:00,42.885,124.997,5.64 +2017-11-19 22:17:00,43.175,125.022,5.64 +2017-11-19 22:32:00,42.2087,125.05,5.64 +2017-11-19 22:47:00,42.6925,125.075,5.64 +2017-11-19 23:02:00,42.45,125.122,5.62 +2017-11-19 23:17:00,42.7412,125.175,5.61 +2017-11-19 23:32:00,42.8363,125.2,5.6 +2017-11-19 23:47:00,42.2537,125.232,5.6 +2017-11-20 00:02:00,42.5512,125.27,5.58 +2017-11-20 00:17:00,43.1237,125.283,5.56 +2017-11-20 00:32:00,42.1062,125.312,5.56 +2017-11-20 00:47:00,42.355,125.315,5.55 +2017-11-20 01:02:00,42.9825,125.29,5.55 +2017-11-20 01:17:00,42.21,125.332,5.52 +2017-11-20 01:32:00,42.6,125.352,5.49 +2017-11-20 01:47:00,42.985,125.382,5.48 +2017-11-20 02:02:00,42.205,125.41,5.47 +2017-11-20 02:17:00,42.6937,125.42,5.45 +2017-11-20 02:32:00,42.1562,125.412,5.45 +2017-11-20 02:47:00,43.9375,125.42,5.45 +2017-11-20 03:02:00,42.55,125.432,5.45 +2017-11-20 03:17:00,43.5987,125.423,5.44 +2017-11-20 03:32:00,41.815,125.44,5.43 +2017-11-20 03:47:00,42.84,125.455,5.43 +2017-11-20 04:02:00,42.55,125.485,5.42 +2017-11-20 04:17:00,43.2237,125.487,5.41 +2017-11-20 04:32:00,43.1738,125.497,5.4 +2017-11-20 04:47:00,43.2225,125.515,5.39 +2017-11-20 05:02:00,42.1025,125.487,5.37 +2017-11-20 05:17:00,43.74,125.477,5.38 +2017-11-20 05:32:00,42.2038,125.47,5.38 +2017-11-20 05:47:00,42.1038,125.495,5.37 +2017-11-20 06:02:00,41.4187,125.475,5.37 +2017-11-20 06:17:00,41.815,125.518,5.38 +2017-11-20 06:32:00,43.1275,125.522,5.38 +2017-11-20 06:47:00,42.8425,125.548,5.37 +2017-11-20 07:02:00,41.7188,125.567,5.37 +2017-11-20 07:17:00,41.7162,125.58,5.37 +2017-11-20 07:32:00,41.7225,125.61,5.38 +2017-11-20 07:47:00,41.7687,125.62,5.38 +2017-11-20 08:02:00,41.6188,125.625,5.38 +2017-11-20 08:17:00,43.41,125.64,5.39 +2017-11-20 08:32:00,42.3538,125.658,5.4 +2017-11-20 08:47:00,42.3525,125.705,5.4 +2017-11-20 09:02:00,41.715,125.715,5.41 +2017-11-20 09:17:00,42.935,125.757,5.42 +2017-11-20 09:32:00,42.935,125.79,5.43 +2017-11-20 09:47:00,43.2712,125.81,5.42 +2017-11-20 10:02:00,41.47,125.837,5.42 +2017-11-20 10:17:00,43.5938,125.875,5.42 +2017-11-20 10:32:00,42.2075,125.977,5.41 +2017-11-20 10:47:00,43.1312,126.107,5.4 +2017-11-20 11:02:00,41.5675,126.235,5.41 +2017-11-20 11:17:00,43.1312,126.39,5.41 +2017-11-20 11:32:00,42.8862,126.54,5.41 +2017-11-20 11:47:00,43.2738,126.685,5.41 +2017-11-20 12:02:00,41.9575,126.825,5.41 +2017-11-20 12:17:00,42.89,126.96,5.4 +2017-11-20 12:32:00,44.1338,127.045,5.4 +2017-11-20 12:47:00,41.77,127.16,5.4 +2017-11-20 13:02:00,42.74,127.25,5.41 +2017-11-20 13:17:00,42.6912,127.302,5.41 +2017-11-20 13:32:00,43.2712,127.425,5.42 +2017-11-20 13:47:00,42.3575,127.56,5.42 +2017-11-20 14:02:00,42.7412,127.69,5.43 +2017-11-20 14:17:00,44.1775,127.832,5.43 +2017-11-20 14:32:00,41.7663,127.957,5.44 +2017-11-20 14:47:00,43.1275,128.08,5.45 +2017-11-20 15:02:00,42.6,128.197,5.45 +2017-11-20 15:17:00,42.6462,128.34,5.45 +2017-11-20 15:32:00,41.3175,128.462,5.45 +2017-11-20 15:47:00,42.2562,128.617,5.45 +2017-11-20 16:02:00,42.2525,128.768,5.48 +2017-11-20 16:17:00,43.8412,128.952,5.48 +2017-11-20 16:32:00,43.0337,129.13,5.48 +2017-11-20 16:47:00,41.6663,129.307,5.48 +2017-11-20 17:02:00,42.5987,129.505,5.48 +2017-11-20 17:17:00,42.45,129.697,5.49 +2017-11-20 17:32:00,42.8875,129.857,5.5 +2017-11-20 17:47:00,42.5025,130.033,5.5 +2017-11-20 18:02:00,42.8862,130.202,5.5 +2017-11-20 18:17:00,43.13,130.372,5.5 +2017-11-20 18:32:00,43.2212,130.512,5.5 +2017-11-20 18:47:00,43.1263,130.662,5.51 +2017-11-20 19:02:00,41.6675,130.83,5.51 +2017-11-20 19:17:00,42.6925,130.99,5.52 +2017-11-20 19:32:00,42.3512,131.16,5.53 +2017-11-20 19:47:00,42.3487,131.327,5.53 +2017-11-20 20:02:00,42.055,131.475,5.53 +2017-11-20 20:17:00,43.035,131.612,5.53 +2017-11-20 20:32:00,43.94,131.742,5.51 +2017-11-20 20:47:00,42.9375,131.902,5.5 +2017-11-20 21:02:00,43.0337,132.018,5.5 +2017-11-20 21:17:00,41.3688,132.135,5.5 +2017-11-20 21:32:00,42.7887,132.27,5.5 +2017-11-20 21:47:00,43.3613,132.372,5.48 +2017-11-20 22:02:00,42.6912,132.467,5.47 +2017-11-20 22:17:00,42.7387,132.53,5.46 +2017-11-20 22:32:00,42.35,132.602,5.45 +2017-11-20 22:47:00,42.6925,132.685,5.45 +2017-11-20 23:02:00,42.8825,132.785,5.43 +2017-11-20 23:17:00,42.5512,132.877,5.42 +2017-11-20 23:32:00,42.5512,132.977,5.41 +2017-11-20 23:47:00,42.5013,133.065,5.4 +2017-11-21 00:02:00,41.6687,133.127,5.4 +2017-11-21 00:17:00,41.5687,133.227,5.4 +2017-11-21 00:32:00,41.6225,133.28,5.39 +2017-11-21 00:47:00,41.0312,133.352,5.38 +2017-11-21 01:02:00,43.6012,133.41,5.37 +2017-11-21 01:17:00,42.7387,133.472,5.39 +2017-11-21 01:32:00,42.0537,133.51,5.38 +2017-11-21 01:47:00,41.7663,133.54,5.36 +2017-11-21 02:02:00,41.0275,133.57,5.36 +2017-11-21 02:17:00,42.9863,133.615,5.35 +2017-11-21 02:32:00,41.3175,133.655,5.35 +2017-11-21 02:47:00,41.6162,133.688,5.36 +2017-11-21 03:02:00,40.6862,133.75,5.36 +2017-11-21 03:17:00,42.0537,133.795,5.36 +2017-11-21 03:32:00,41.2663,133.842,5.36 +2017-11-21 03:47:00,43.455,133.9,5.37 +2017-11-21 04:02:00,41.72,133.97,5.38 +2017-11-21 04:17:00,40.8337,134.042,5.38 +2017-11-21 04:32:00,40.6912,134.122,5.38 +2017-11-21 04:47:00,42.255,134.188,5.4 +2017-11-21 05:02:00,41.3662,134.255,5.4 +2017-11-21 05:17:00,42.505,134.302,5.4 +2017-11-21 05:32:00,41.4688,134.362,5.4 +2017-11-21 05:47:00,42.8375,134.405,5.41 +2017-11-21 06:02:00,42.9825,134.47,5.42 +2017-11-21 06:17:00,42.5013,134.53,5.43 +2017-11-21 06:32:00,42.8862,134.62,5.44 +2017-11-21 06:47:00,41.9562,134.817,5.45 +2017-11-21 07:02:00,42.1525,135.01,5.45 +2017-11-21 07:17:00,41.8587,135.227,5.45 +2017-11-21 07:32:00,42.1087,135.427,5.46 +2017-11-21 07:47:00,42.4512,135.607,5.47 +2017-11-21 08:02:00,42.55,135.775,5.48 +2017-11-21 08:17:00,41.6162,135.893,5.51 +2017-11-21 08:32:00,42.7387,136.007,5.53 +2017-11-21 08:47:00,41.8637,136.1,5.55 +2017-11-21 09:02:00,42.455,136.177,5.58 +2017-11-21 09:17:00,44.5675,136.252,5.6 +2017-11-21 09:32:00,41.665,136.325,5.62 +2017-11-21 09:47:00,42.7887,136.408,5.63 +2017-11-21 10:02:00,41.3662,136.487,5.64 +2017-11-21 10:17:00,42.1025,136.552,5.65 +2017-11-21 10:32:00,42.1562,136.64,5.67 +2017-11-21 10:47:00,43.365,136.705,5.7 +2017-11-21 11:02:00,41.2225,136.775,5.73 +2017-11-21 11:17:00,43.455,136.857,5.76 +2017-11-21 11:32:00,43.3662,136.917,5.78 +2017-11-21 11:47:00,43.5037,137.005,5.79 +2017-11-21 12:02:00,43.9375,137.042,5.8 +2017-11-21 12:17:00,42.5025,137.107,5.81 +2017-11-21 12:32:00,43.4125,137.16,5.83 +2017-11-21 12:47:00,42.005,137.217,5.85 +2017-11-21 13:02:00,41.0275,137.22,5.86 +2017-11-21 13:17:00,42.8875,137.207,5.87 +2017-11-21 13:32:00,42.8825,137.255,5.88 +2017-11-21 13:47:00,43.4575,137.295,5.9 +2017-11-21 14:02:00,42.5,137.365,5.92 +2017-11-21 14:17:00,42.6912,137.43,5.93 +2017-11-21 14:32:00,42.3575,137.47,5.94 +2017-11-21 14:47:00,42.5525,137.54,5.95 +2017-11-21 15:02:00,42.6488,137.605,5.97 +2017-11-21 15:17:00,43.3662,137.667,5.99 +2017-11-21 15:32:00,44.3712,137.73,6.0 +2017-11-21 15:47:00,42.3512,137.795,6.01 +2017-11-21 16:02:00,42.2062,137.84,6.02 +2017-11-21 16:17:00,43.13,137.902,6.02 +2017-11-21 16:32:00,43.0337,137.977,6.03 +2017-11-21 16:47:00,41.9125,138.042,6.05 +2017-11-21 17:02:00,41.77,138.115,6.07 +2017-11-21 17:17:00,42.405,138.19,6.09 +2017-11-21 17:32:00,43.5975,138.272,6.1 +2017-11-21 17:47:00,41.9575,138.355,6.1 +2017-11-21 18:02:00,41.665,138.44,6.11 +2017-11-21 18:17:00,41.4712,138.537,6.13 +2017-11-21 18:32:00,41.96,138.647,6.16 +2017-11-21 18:47:00,42.45,138.765,6.17 +2017-11-21 19:02:00,42.74,138.875,6.19 +2017-11-21 19:17:00,43.0375,138.99,6.2 +2017-11-21 19:32:00,42.2588,139.092,6.21 +2017-11-21 19:47:00,42.1075,139.188,6.21 +2017-11-21 20:02:00,41.2262,139.305,6.23 +2017-11-21 20:17:00,42.405,139.402,6.23 +2017-11-21 20:32:00,42.4525,139.525,6.23 +2017-11-21 20:47:00,43.745,139.607,6.24 +2017-11-21 21:02:00,40.4475,139.702,6.25 +2017-11-21 21:17:00,42.1663,139.807,6.27 +2017-11-21 21:32:00,42.0713,139.927,6.28 +2017-11-21 21:47:00,42.1687,140.033,6.29 +2017-11-21 22:02:00,42.9487,140.16,6.3 +2017-11-21 22:17:00,42.2962,140.28,6.31 +2017-11-21 22:32:00,42.5938,140.37,6.33 +2017-11-21 22:47:00,42.3988,140.518,6.35 +2017-11-21 23:02:00,43.645,140.635,6.35 +2017-11-21 23:17:00,43.0337,140.77,6.35 +2017-11-21 23:32:00,41.1663,140.893,6.36 +2017-11-21 23:47:00,42.7375,140.98,6.37 +2017-11-22 00:02:00,42.7925,141.045,6.37 +2017-11-22 00:17:00,42.935,141.16,6.37 +2017-11-22 00:32:00,42.55,141.322,6.38 +2017-11-22 00:47:00,41.315,141.447,6.38 +2017-11-22 01:02:00,42.8838,141.58,6.39 +2017-11-22 01:17:00,41.17,141.707,6.4 +2017-11-22 01:32:00,42.0088,141.827,6.41 +2017-11-22 01:47:00,42.935,141.93,6.42 +2017-11-22 02:02:00,44.3213,142.03,6.42 +2017-11-22 02:17:00,44.9437,142.14,6.42 +2017-11-22 02:32:00,42.8862,142.25,6.42 +2017-11-22 02:47:00,42.2562,142.342,6.43 +2017-11-22 03:02:00,43.3637,142.425,6.45 +2017-11-22 03:17:00,44.7537,142.502,6.46 +2017-11-22 03:32:00,42.55,142.64,6.47 +2017-11-22 03:47:00,42.7875,142.75,6.48 +2017-11-22 04:02:00,44.04,142.835,6.48 +2017-11-22 04:17:00,44.5163,142.938,6.5 +2017-11-22 04:32:00,43.2275,143.045,6.5 +2017-11-22 04:47:00,44.0837,143.13,6.5 +2017-11-22 05:02:00,42.6912,143.215,6.5 +2017-11-22 05:17:00,44.9012,143.298,6.51 +2017-11-22 05:32:00,42.985,143.382,6.52 +2017-11-22 05:47:00,42.2612,143.495,6.53 +2017-11-22 06:02:00,44.0362,143.595,6.53 +2017-11-22 06:17:00,43.0812,143.775,6.54 +2017-11-22 06:32:00,42.6925,143.972,6.56 +2017-11-22 06:47:00,44.1362,144.215,6.59 +2017-11-22 07:02:00,42.5037,144.46,6.62 +2017-11-22 07:17:00,43.8438,144.705,6.64 +2017-11-22 07:32:00,44.275,144.95,6.66 +2017-11-22 07:47:00,43.41,145.177,6.68 +2017-11-22 08:02:00,43.4587,145.387,6.68 +2017-11-22 08:17:00,44.66,145.607,6.71 +2017-11-22 08:32:00,43.8375,145.805,6.72 +2017-11-22 08:47:00,44.6625,145.992,6.73 +2017-11-22 09:02:00,43.275,146.16,6.75 +2017-11-22 09:17:00,44.0863,146.317,6.77 +2017-11-22 09:32:00,43.8425,146.502,6.8 +2017-11-22 09:47:00,43.7425,146.66,6.83 +2017-11-22 10:02:00,44.66,146.79,6.84 +2017-11-22 10:17:00,43.9825,146.952,6.87 +2017-11-22 10:32:00,44.0362,147.115,6.89 +2017-11-22 10:47:00,44.8988,147.22,6.91 +2017-11-22 11:02:00,44.5163,147.352,6.94 +2017-11-22 11:17:00,43.9388,147.505,6.95 +2017-11-22 11:32:00,43.99,147.667,6.95 +2017-11-22 11:47:00,44.1338,147.82,6.95 +2017-11-22 12:02:00,43.7425,147.94,6.94 +2017-11-22 12:17:00,44.4662,148.03,6.95 +2017-11-22 12:32:00,44.5638,148.122,6.98 +2017-11-22 12:47:00,44.37,148.207,7.01 +2017-11-22 13:02:00,45.3312,148.28,7.04 +2017-11-22 13:17:00,44.2738,148.377,7.06 +2017-11-22 13:32:00,44.6137,148.477,7.08 +2017-11-22 13:47:00,44.5212,148.612,7.1 +2017-11-22 14:02:00,44.8063,148.775,7.12 +2017-11-22 14:17:00,44.9575,148.935,7.14 +2017-11-22 14:32:00,44.905,149.14,7.15 +2017-11-22 14:47:00,44.8538,149.362,7.16 +2017-11-22 15:02:00,44.8512,149.557,7.17 +2017-11-22 15:17:00,44.7062,149.82,7.18 +2017-11-22 15:32:00,44.7113,150.215,7.19 +2017-11-22 15:47:00,44.8075,150.555,7.18 +2017-11-22 16:02:00,45.3787,150.847,7.19 +2017-11-22 16:17:00,44.4675,151.12,7.2 +2017-11-22 16:32:00,45.135,151.372,7.19 +2017-11-22 16:47:00,44.32,151.632,7.21 +2017-11-22 17:02:00,44.7113,151.867,7.22 +2017-11-22 17:17:00,44.7137,152.09,7.23 +2017-11-22 17:32:00,44.7075,152.3,7.23 +2017-11-22 17:47:00,44.415,152.507,7.23 +2017-11-22 18:02:00,44.9475,152.707,7.23 +2017-11-22 18:17:00,44.8587,152.927,7.23 +2017-11-22 18:32:00,45.085,153.132,7.23 +2017-11-22 18:47:00,44.8988,153.327,7.23 +2017-11-22 19:02:00,45.0912,153.515,7.22 +2017-11-22 19:17:00,45.4275,153.695,7.22 +2017-11-22 19:32:00,44.9925,153.85,7.21 +2017-11-22 19:47:00,45.2812,154.025,7.2 +2017-11-22 20:02:00,44.42,154.177,7.19 +2017-11-22 20:17:00,44.7087,154.317,7.18 +2017-11-22 20:32:00,44.3688,154.442,7.16 +2017-11-22 20:47:00,44.6587,154.575,7.16 +2017-11-22 21:02:00,45.085,154.69,7.15 +2017-11-22 21:17:00,44.275,154.79,7.15 +2017-11-22 21:32:00,44.5612,154.867,7.14 +2017-11-22 21:47:00,45.2337,154.965,7.12 +2017-11-22 22:02:00,45.1813,155.03,7.11 +2017-11-22 22:17:00,44.8988,155.097,7.11 +2017-11-22 22:32:00,45.2275,155.147,7.1 +2017-11-22 22:47:00,44.945,155.175,7.1 +2017-11-22 23:02:00,44.4637,155.19,7.09 +2017-11-22 23:17:00,45.0387,155.205,7.08 +2017-11-22 23:32:00,44.7575,155.19,7.08 +2017-11-22 23:47:00,45.185,155.143,7.08 +2017-11-23 00:02:00,45.1375,155.145,7.07 +2017-11-23 00:17:00,45.2862,155.158,7.07 +2017-11-23 00:32:00,45.5287,155.117,7.06 +2017-11-23 00:47:00,44.9938,155.062,7.06 +2017-11-23 01:02:00,45.0387,155.05,7.05 +2017-11-23 01:17:00,44.8562,155.012,7.05 +2017-11-23 01:32:00,45.4275,154.952,7.05 +2017-11-23 01:47:00,44.8525,154.893,7.05 +2017-11-23 02:02:00,44.9025,154.867,7.04 +2017-11-23 02:17:00,45.5262,154.837,7.04 +2017-11-23 02:32:00,45.38,154.798,7.05 +2017-11-23 02:47:00,44.8988,154.772,7.05 +2017-11-23 03:02:00,45.0887,154.725,7.05 +2017-11-23 03:17:00,45.2825,154.695,7.05 +2017-11-23 03:32:00,45.5762,154.688,7.05 +2017-11-23 03:47:00,45.2775,154.673,7.05 +2017-11-23 04:02:00,44.9938,154.66,7.05 +2017-11-23 04:17:00,45.5262,154.637,7.04 +2017-11-23 04:32:00,45.1325,154.612,7.03 +2017-11-23 04:47:00,44.9887,154.587,7.02 +2017-11-23 05:02:00,45.9613,154.548,7.03 +2017-11-23 05:17:00,44.855,154.502,7.04 +2017-11-23 05:32:00,45.6275,154.457,7.03 +2017-11-23 05:47:00,45.1325,154.402,7.02 +2017-11-23 06:02:00,45.0863,154.34,7.02 +2017-11-23 06:17:00,45.4287,154.295,7.02 +2017-11-23 06:32:00,45.675,154.23,7.03 +2017-11-23 06:47:00,45.2825,154.177,7.03 +2017-11-23 07:02:00,45.8675,154.175,7.02 +2017-11-23 07:17:00,45.5762,154.167,7.03 +2017-11-23 07:32:00,45.63,154.152,7.03 +2017-11-23 07:47:00,45.285,154.15,7.04 +2017-11-23 08:02:00,46.2113,154.125,7.05 +2017-11-23 08:17:00,46.015,154.13,7.05 +2017-11-23 08:32:00,46.2637,154.085,7.06 +2017-11-23 08:47:00,46.1175,154.06,7.07 +2017-11-23 09:02:00,45.6263,154.057,7.08 +2017-11-23 09:17:00,46.3087,154.015,7.09 +2017-11-23 09:32:00,45.2312,154.015,7.11 +2017-11-23 09:47:00,45.7212,153.997,7.12 +2017-11-23 10:02:00,45.3312,153.967,7.14 +2017-11-23 10:17:00,46.5575,153.95,7.16 +2017-11-23 10:32:00,45.7675,153.932,7.17 +2017-11-23 10:47:00,46.065,153.893,7.2 +2017-11-23 11:02:00,45.6263,153.905,7.23 +2017-11-23 11:17:00,45.5287,153.917,7.26 +2017-11-23 11:32:00,45.6275,153.932,7.28 +2017-11-23 11:47:00,45.7712,153.945,7.3 +2017-11-23 12:02:00,45.1862,153.987,7.32 +2017-11-23 12:17:00,45.6725,154.045,7.33 +2017-11-23 12:32:00,46.5512,154.13,7.34 +2017-11-23 12:47:00,45.4812,154.167,7.36 +2017-11-23 13:02:00,46.0112,154.257,7.4 +2017-11-23 13:17:00,45.9137,154.332,7.42 +2017-11-23 13:32:00,45.92,154.372,7.43 +2017-11-23 13:47:00,45.2862,154.432,7.44 +2017-11-23 14:02:00,45.0362,154.495,7.46 +2017-11-23 14:17:00,45.9675,154.52,7.47 +2017-11-23 14:32:00,45.7687,154.525,7.48 +2017-11-23 14:47:00,45.9175,154.53,7.49 +2017-11-23 15:02:00,45.525,154.585,7.51 +2017-11-23 15:17:00,45.5762,154.63,7.52 +2017-11-23 15:32:00,45.3787,154.625,7.54 +2017-11-23 15:47:00,45.4775,154.65,7.56 +2017-11-23 16:02:00,45.77,154.735,7.57 +2017-11-23 16:17:00,46.31,154.755,7.58 +2017-11-23 16:32:00,45.5312,154.783,7.6 +2017-11-23 16:47:00,46.0112,154.827,7.61 +2017-11-23 17:02:00,45.9662,154.882,7.61 +2017-11-23 17:17:00,45.97,154.945,7.61 +2017-11-23 17:32:00,45.63,154.99,7.62 +2017-11-23 17:47:00,45.3775,155.052,7.62 +2017-11-23 18:02:00,45.2325,155.072,7.63 +2017-11-23 18:17:00,45.53,155.135,7.63 +2017-11-23 18:32:00,46.0125,155.155,7.63 +2017-11-23 18:47:00,45.53,155.205,7.63 +2017-11-23 19:02:00,46.0638,155.225,7.63 +2017-11-23 19:17:00,45.7225,155.245,7.62 +2017-11-23 19:32:00,45.535,155.26,7.61 +2017-11-23 19:47:00,46.0625,155.27,7.6 +2017-11-23 20:02:00,45.8662,155.292,7.6 +2017-11-23 20:17:00,46.0112,155.295,7.6 +2017-11-23 20:32:00,46.3112,155.277,7.61 +2017-11-23 20:47:00,46.55,155.275,7.61 +2017-11-23 21:02:00,46.5488,155.225,7.61 +2017-11-23 21:17:00,46.3125,155.202,7.62 +2017-11-23 21:32:00,46.455,155.15,7.63 +2017-11-23 21:47:00,46.3087,155.095,7.63 +2017-11-23 22:02:00,46.41,155.077,7.63 +2017-11-23 22:17:00,46.1175,155.03,7.64 +2017-11-23 22:32:00,46.21,154.992,7.64 +2017-11-23 22:47:00,47.635,154.965,7.64 +2017-11-23 23:02:00,46.7,154.94,7.64 +2017-11-23 23:17:00,46.6475,154.912,7.64 +2017-11-23 23:32:00,47.1387,154.872,7.64 +2017-11-23 23:47:00,46.2612,154.812,7.65 +2017-11-24 00:02:00,46.645,154.747,7.66 +2017-11-24 00:17:00,46.7962,154.627,7.66 +2017-11-24 00:32:00,46.3075,154.495,7.68 +2017-11-24 00:47:00,45.4788,154.385,7.7 +2017-11-24 01:02:00,46.5013,154.302,7.7 +2017-11-24 01:17:00,46.6462,154.242,7.71 +2017-11-24 01:32:00,46.8487,154.145,7.71 +2017-11-24 01:47:00,46.3587,154.07,7.71 +2017-11-24 02:02:00,45.8637,153.967,7.72 +2017-11-24 02:17:00,46.4087,153.86,7.73 +2017-11-24 02:32:00,46.1675,153.775,7.74 +2017-11-24 02:47:00,46.9975,153.697,7.75 +2017-11-24 03:02:00,46.7438,153.632,7.75 +2017-11-24 03:17:00,46.8975,153.602,7.77 +2017-11-24 03:32:00,46.7937,153.575,7.78 +2017-11-24 03:47:00,47.3838,153.535,7.78 +2017-11-24 04:02:00,46.7913,153.505,7.78 +2017-11-24 04:17:00,46.3063,153.457,7.79 +2017-11-24 04:32:00,46.4538,153.42,7.81 +2017-11-24 04:47:00,46.9975,153.39,7.82 +2017-11-24 05:02:00,46.3587,153.367,7.82 +2017-11-24 05:17:00,47.3838,153.325,7.83 +2017-11-24 05:32:00,47.2875,153.285,7.84 +2017-11-24 05:47:00,46.4562,153.237,7.85 +2017-11-24 06:02:00,47.2412,153.19,7.85 +2017-11-24 06:17:00,47.2875,153.125,7.86 +2017-11-24 06:32:00,46.6,153.08,7.86 +2017-11-24 06:47:00,48.0312,153.04,7.86 +2017-11-24 07:02:00,47.5325,153.018,7.87 +2017-11-24 07:17:00,47.5812,153.018,7.89 +2017-11-24 07:32:00,47.2425,153.018,7.89 +2017-11-24 07:47:00,47.05,153.005,7.9 +2017-11-24 08:02:00,47.4337,152.985,7.9 +2017-11-24 08:17:00,46.9975,152.97,7.91 +2017-11-24 08:32:00,47.5312,152.952,7.93 +2017-11-24 08:47:00,46.7475,152.94,7.96 +2017-11-24 09:02:00,47.9337,152.912,7.98 +2017-11-24 09:17:00,47.485,152.827,8.01 +2017-11-24 09:32:00,47.29,152.747,8.04 +2017-11-24 09:47:00,46.8462,152.777,8.06 +2017-11-24 10:02:00,47.1937,152.7,8.08 +2017-11-24 10:17:00,47.0912,152.645,8.11 +2017-11-24 10:32:00,47.685,152.565,8.12 +2017-11-24 10:47:00,47.6312,152.572,8.14 +2017-11-24 11:02:00,47.3838,152.522,8.16 +2017-11-24 11:17:00,47.2438,152.48,8.17 +2017-11-24 11:32:00,47.2475,152.438,8.2 +2017-11-24 11:47:00,48.1263,152.425,8.2 +2017-11-24 12:02:00,47.335,152.37,8.19 +2017-11-24 12:17:00,46.3112,152.342,8.2 +2017-11-24 12:32:00,46.9962,152.327,8.2 +2017-11-24 12:47:00,46.6,152.287,8.21 +2017-11-24 13:02:00,47.4325,152.27,8.22 +2017-11-24 13:17:00,46.9975,152.225,8.23 +2017-11-24 13:32:00,46.7475,152.207,8.23 +2017-11-24 13:47:00,46.5062,152.147,8.24 +2017-11-24 14:02:00,46.2125,152.08,8.24 +2017-11-24 14:17:00,46.3613,152.005,8.25 +2017-11-24 14:32:00,47.195,151.893,8.24 +2017-11-24 14:47:00,47.3375,151.755,8.23 +2017-11-24 15:02:00,46.65,151.59,8.23 +2017-11-24 15:17:00,47.1387,151.41,8.23 +2017-11-24 15:32:00,46.5512,151.24,8.23 +2017-11-24 15:47:00,48.1287,151.115,8.22 +2017-11-24 16:02:00,46.55,150.972,8.22 +2017-11-24 16:17:00,46.8975,150.862,8.21 +2017-11-24 16:32:00,46.4625,150.737,8.2 +2017-11-24 16:47:00,46.5037,150.627,8.2 +2017-11-24 17:02:00,47.0425,150.54,8.19 +2017-11-24 17:17:00,47.4825,150.457,8.18 +2017-11-24 17:32:00,47.3812,150.425,8.18 +2017-11-24 17:47:00,46.995,150.357,8.19 +2017-11-24 18:02:00,47.6837,150.27,8.19 +2017-11-24 18:17:00,47.2387,150.227,8.18 +2017-11-24 18:32:00,46.9425,150.16,8.17 +2017-11-24 18:47:00,46.8475,150.062,8.16 +2017-11-24 19:02:00,46.4575,150.012,8.16 +2017-11-24 19:17:00,46.8975,149.982,8.15 +2017-11-24 19:32:00,46.9475,149.942,8.14 +2017-11-24 19:47:00,47.4337,149.902,8.13 +2017-11-24 20:02:00,46.7487,149.867,8.12 +2017-11-24 20:17:00,47.0912,149.837,8.11 +2017-11-24 20:32:00,46.6987,149.8,8.09 +2017-11-24 20:47:00,47.2425,149.755,8.08 +2017-11-24 21:02:00,46.6987,149.68,8.08 +2017-11-24 21:17:00,47.4825,149.55,8.08 +2017-11-24 21:32:00,47.0962,149.447,8.07 +2017-11-24 21:47:00,46.7462,149.34,8.06 +2017-11-24 22:02:00,46.9938,149.262,8.04 +2017-11-24 22:17:00,46.4062,149.242,8.03 +2017-11-24 22:32:00,46.9962,149.232,8.03 +2017-11-24 22:47:00,46.6488,149.227,8.03 +2017-11-24 23:02:00,46.5037,149.195,8.03 +2017-11-24 23:17:00,47.1912,149.177,8.03 +2017-11-24 23:32:00,46.9962,149.152,8.03 +2017-11-24 23:47:00,47.2875,149.132,8.03 +2017-11-25 00:02:00,47.095,149.117,8.03 +2017-11-25 00:17:00,47.14,149.09,8.02 +2017-11-25 00:32:00,47.8787,149.085,8.01 +2017-11-25 00:47:00,46.7975,149.067,8.0 +2017-11-25 01:02:00,46.455,149.07,8.0 +2017-11-25 01:17:00,46.945,149.042,7.99 +2017-11-25 01:32:00,47.0912,149.033,7.99 +2017-11-25 01:47:00,47.0938,149.025,7.98 +2017-11-25 02:02:00,46.5013,149.022,7.97 +2017-11-25 02:17:00,46.9938,149.0,7.97 +2017-11-25 02:32:00,46.7962,149.015,7.98 +2017-11-25 02:47:00,46.8475,149.045,7.98 +2017-11-25 03:02:00,47.2862,149.05,7.98 +2017-11-25 03:17:00,47.04,149.09,7.98 +2017-11-25 03:32:00,47.58,149.122,7.98 +2017-11-25 03:47:00,46.6512,149.202,7.97 +2017-11-25 04:02:00,47.0938,149.275,7.97 +2017-11-25 04:17:00,46.7,149.412,7.97 +2017-11-25 04:32:00,46.6475,149.56,7.98 +2017-11-25 04:47:00,46.9,149.735,7.99 +2017-11-25 05:02:00,46.46,149.893,7.98 +2017-11-25 05:17:00,48.1225,150.048,7.97 +2017-11-25 05:32:00,46.4575,150.15,7.96 +2017-11-25 05:47:00,47.5737,150.268,7.94 +2017-11-25 06:02:00,46.945,150.36,7.94 +2017-11-25 06:17:00,46.6462,150.457,7.94 +2017-11-25 06:32:00,46.995,150.552,7.93 +2017-11-25 06:47:00,47.195,150.655,7.93 +2017-11-25 07:02:00,46.4062,150.742,7.93 +2017-11-25 07:17:00,46.7975,150.842,7.94 +2017-11-25 07:32:00,46.895,150.945,7.95 +2017-11-25 07:47:00,46.3613,151.027,7.96 +2017-11-25 08:02:00,46.3112,151.13,7.96 +2017-11-25 08:17:00,46.5537,151.232,7.96 +2017-11-25 08:32:00,47.3337,151.325,7.97 +2017-11-25 08:47:00,47.045,151.402,7.99 +2017-11-25 09:02:00,46.7937,151.435,7.99 +2017-11-25 09:17:00,47.045,151.482,7.98 +2017-11-25 09:32:00,46.845,151.59,7.99 +2017-11-25 09:47:00,47.5325,151.692,8.0 +2017-11-25 10:02:00,47.0437,151.815,8.01 +2017-11-25 10:17:00,46.6437,151.938,8.02 +2017-11-25 10:32:00,47.1475,152.048,8.02 +2017-11-25 10:47:00,47.7312,152.165,8.02 +2017-11-25 11:02:00,47.0962,152.265,8.01 +2017-11-25 11:17:00,47.335,152.357,8.0 +2017-11-25 11:32:00,46.3587,152.415,8.0 +2017-11-25 11:47:00,46.36,152.465,8.0 +2017-11-25 12:02:00,46.4562,152.535,7.99 +2017-11-25 12:17:00,47.0912,152.58,7.98 +2017-11-25 12:32:00,47.8312,152.627,7.96 +2017-11-25 12:47:00,46.2612,152.715,7.96 +2017-11-25 13:02:00,46.0612,152.78,7.94 +2017-11-25 13:17:00,46.8475,152.845,7.93 +2017-11-25 13:32:00,46.75,152.885,7.92 +2017-11-25 13:47:00,46.4987,152.908,7.91 +2017-11-25 14:02:00,46.4075,152.93,7.89 +2017-11-25 14:17:00,46.645,152.955,7.88 +2017-11-25 14:32:00,47.2862,152.987,7.86 +2017-11-25 14:47:00,46.7962,153.005,7.85 +2017-11-25 15:02:00,46.7012,153.04,7.84 +2017-11-25 15:17:00,45.9662,153.062,7.83 +2017-11-25 15:32:00,46.2612,153.105,7.83 +2017-11-25 15:47:00,46.55,153.152,7.82 +2017-11-25 16:02:00,46.3037,153.207,7.8 +2017-11-25 16:17:00,46.5037,153.275,7.78 +2017-11-25 16:32:00,46.9412,153.32,7.76 +2017-11-25 16:47:00,46.4112,153.395,7.75 +2017-11-25 17:02:00,46.3125,153.47,7.73 +2017-11-25 17:17:00,46.5025,153.51,7.71 +2017-11-25 17:32:00,46.5013,153.592,7.7 +2017-11-25 17:47:00,46.16,153.652,7.68 +2017-11-25 18:02:00,46.9475,153.697,7.66 +2017-11-25 18:17:00,47.1912,153.765,7.63 +2017-11-25 18:32:00,46.455,153.837,7.62 +2017-11-25 18:47:00,46.5975,153.917,7.6 +2017-11-25 19:02:00,47.0912,153.95,7.58 +2017-11-25 19:17:00,46.6488,153.952,7.57 +2017-11-25 19:32:00,46.745,153.977,7.55 +2017-11-25 19:47:00,46.2588,154.045,7.53 +2017-11-25 20:02:00,46.6488,154.132,7.51 +2017-11-25 20:17:00,46.0088,154.205,7.49 +2017-11-25 20:32:00,46.9463,154.295,7.48 +2017-11-25 20:47:00,46.36,154.372,7.46 +2017-11-25 21:02:00,47.1437,154.442,7.44 +2017-11-25 21:17:00,46.7438,154.52,7.42 +2017-11-25 21:32:00,46.6963,154.602,7.39 +2017-11-25 21:47:00,46.8462,154.665,7.37 +2017-11-25 22:02:00,46.5962,154.762,7.35 +2017-11-25 22:17:00,46.41,154.837,7.34 +2017-11-25 22:32:00,47.1413,154.927,7.31 +2017-11-25 22:47:00,46.5475,155.027,7.29 +2017-11-25 23:02:00,47.8825,155.15,7.27 +2017-11-25 23:17:00,46.1625,155.29,7.27 +2017-11-25 23:32:00,47.1925,155.425,7.24 +2017-11-25 23:47:00,47.5775,155.585,7.22 +2017-11-26 00:02:00,47.14,155.742,7.21 +2017-11-26 00:17:00,46.5512,155.917,7.19 +2017-11-26 00:32:00,46.5488,156.115,7.17 +2017-11-26 00:47:00,46.6925,156.315,7.16 +2017-11-26 01:02:00,46.4587,156.487,7.14 +2017-11-26 01:17:00,47.29,156.732,7.11 +2017-11-26 01:32:00,46.9425,157.027,7.08 +2017-11-26 01:47:00,47.4325,157.383,7.07 +2017-11-26 02:02:00,47.0925,157.758,7.06 +2017-11-26 02:17:00,47.1462,158.075,7.03 +2017-11-26 02:32:00,47.285,158.52,7.0 +2017-11-26 02:47:00,47.0413,158.917,6.98 +2017-11-26 03:02:00,47.1413,159.302,6.96 +2017-11-26 03:17:00,46.5537,159.6,6.93 +2017-11-26 03:32:00,47.04,159.913,6.92 +2017-11-26 03:47:00,46.5037,160.267,6.91 +2017-11-26 04:02:00,47.4825,160.633,6.88 +2017-11-26 04:17:00,47.43,160.967,6.87 +2017-11-26 04:32:00,46.5987,161.297,6.86 +2017-11-26 04:47:00,46.3625,161.607,6.84 +2017-11-26 05:02:00,46.5037,161.917,6.83 +2017-11-26 05:17:00,46.79,162.24,6.82 +2017-11-26 05:32:00,46.5512,162.525,6.81 +2017-11-26 05:47:00,46.3075,162.878,6.79 +2017-11-26 06:02:00,47.145,163.19,6.78 +2017-11-26 06:17:00,46.1625,163.545,6.76 +2017-11-26 06:32:00,46.3587,163.887,6.74 +2017-11-26 06:47:00,46.745,164.207,6.73 +2017-11-26 07:02:00,46.0125,164.52,6.71 +2017-11-26 07:17:00,46.8975,164.845,6.71 +2017-11-26 07:32:00,45.4275,165.145,6.7 +2017-11-26 07:47:00,46.4087,165.55,6.69 +2017-11-26 08:02:00,46.7412,165.908,6.67 +2017-11-26 08:17:00,46.845,166.275,6.66 +2017-11-26 08:32:00,46.2612,166.637,6.65 +2017-11-26 08:47:00,46.1637,167.005,6.64 +2017-11-26 09:02:00,46.65,167.355,6.63 +2017-11-26 09:17:00,45.675,167.73,6.61 +2017-11-26 09:32:00,45.1338,168.062,6.61 +2017-11-26 09:47:00,45.63,168.413,6.6 +2017-11-26 10:02:00,46.1175,168.705,6.61 +2017-11-26 10:17:00,46.1175,169.033,6.6 +2017-11-26 10:32:00,45.6287,169.32,6.6 +2017-11-26 10:47:00,46.0662,169.635,6.59 +2017-11-26 11:02:00,45.0387,169.895,6.6 +2017-11-26 11:17:00,45.7687,170.142,6.6 +2017-11-26 11:32:00,46.4125,170.39,6.6 +2017-11-26 11:47:00,46.3075,170.652,6.6 +2017-11-26 12:02:00,46.3138,170.857,6.6 +2017-11-26 12:17:00,45.8637,171.008,6.61 +2017-11-26 12:30:59,45.965,171.128,6.62 +2017-11-26 12:47:00,45.5775,171.312,6.62 +2017-11-26 13:02:00,46.9487,171.55,6.64 +2017-11-26 13:17:00,45.3838,171.79,6.65 +2017-11-26 13:32:00,45.77,172.022,6.66 +2017-11-26 13:47:00,46.55,172.217,6.66 +2017-11-26 14:02:00,45.285,172.487,6.66 +2017-11-26 14:17:00,46.0125,172.732,6.67 +2017-11-26 14:32:00,45.6287,172.978,6.67 +2017-11-26 14:47:00,45.3825,173.223,6.68 +2017-11-26 15:02:00,46.6975,173.51,6.69 +2017-11-26 15:17:00,45.6263,173.762,6.69 +2017-11-26 15:32:00,46.3075,174.05,6.7 +2017-11-26 15:47:00,46.55,174.35,6.7 +2017-11-26 16:02:00,46.4575,174.63,6.71 +2017-11-26 16:17:00,46.5013,174.93,6.71 +2017-11-26 16:32:00,46.415,175.212,6.71 +2017-11-26 16:47:00,46.8962,175.535,6.69 +2017-11-26 17:02:00,46.6987,175.85,6.68 +2017-11-26 17:17:00,46.5037,176.117,6.65 +2017-11-26 17:32:00,46.6925,176.413,6.63 +2017-11-26 17:47:00,46.9938,176.732,6.61 +2017-11-26 18:02:00,46.1125,176.952,6.59 +2017-11-26 18:17:00,46.0612,177.228,6.56 +2017-11-26 18:32:00,46.8925,177.462,6.54 +2017-11-26 18:47:00,46.2075,177.685,6.51 +2017-11-26 19:02:00,46.41,177.905,6.48 +2017-11-26 19:17:00,46.7988,178.103,6.44 +2017-11-26 19:32:00,45.4762,178.285,6.41 +2017-11-26 19:47:00,47.2375,178.475,6.39 +2017-11-26 20:02:00,46.3587,178.695,6.36 +2017-11-26 20:17:00,45.9125,178.908,6.34 +2017-11-26 20:32:00,46.545,179.175,6.32 +2017-11-26 20:47:00,46.5,179.357,6.31 +2017-11-26 21:02:00,46.5925,179.562,6.29 +2017-11-26 21:17:00,46.6425,179.753,6.28 +2017-11-26 21:32:00,46.255,179.915,6.27 +2017-11-26 21:47:00,46.6925,180.055,6.26 +2017-11-26 22:02:00,45.625,180.18,6.24 +2017-11-26 22:17:00,46.6937,180.265,6.23 +2017-11-26 22:32:00,46.0075,180.325,6.21 +2017-11-26 22:47:00,46.5037,180.415,6.2 +2017-11-26 23:02:00,46.4975,180.487,6.19 +2017-11-26 23:17:00,46.3175,180.595,6.17 +2017-11-26 23:32:00,46.0675,180.68,6.16 +2017-11-26 23:47:00,46.655,180.69,6.15 +2017-11-27 00:02:00,46.505,180.712,6.14 +2017-11-27 00:17:00,46.7062,180.742,6.12 +2017-11-27 00:32:00,46.5062,180.737,6.11 +2017-11-27 00:47:00,46.4125,180.74,6.09 +2017-11-27 01:02:00,45.8162,180.725,6.07 +2017-11-27 01:17:00,46.4613,180.723,6.04 +2017-11-27 01:32:00,46.9463,180.697,6.02 +2017-11-27 01:47:00,46.6488,180.695,5.99 +2017-11-27 02:02:00,45.6775,180.625,5.98 +2017-11-27 02:17:00,46.6038,180.592,5.96 +2017-11-27 02:32:00,46.6012,180.465,5.93 +2017-11-27 02:47:00,45.865,180.367,5.92 +2017-11-27 03:02:00,46.7988,180.272,5.9 +2017-11-27 03:17:00,46.2137,180.182,5.88 +2017-11-27 03:32:00,46.6488,180.103,5.86 +2017-11-27 03:47:00,46.41,180.065,5.83 +2017-11-27 04:02:00,45.8138,180.005,5.81 +2017-11-27 04:17:00,46.265,179.952,5.8 +2017-11-27 04:32:00,46.995,179.92,5.78 +2017-11-27 04:47:00,46.6462,179.89,5.75 +2017-11-27 05:02:00,45.9175,179.86,5.73 +2017-11-27 05:17:00,46.115,179.835,5.71 +2017-11-27 05:32:00,46.455,179.8,5.69 +2017-11-27 05:47:00,46.0137,179.77,5.67 +2017-11-27 06:02:00,46.4587,179.728,5.64 +2017-11-27 06:17:00,46.6012,179.66,5.62 +2017-11-27 06:32:00,46.4562,179.592,5.6 +2017-11-27 06:47:00,46.1612,179.515,5.59 +2017-11-27 07:02:00,46.7438,179.43,5.57 +2017-11-27 07:17:00,46.115,179.322,5.55 +2017-11-27 07:32:00,46.5013,179.23,5.54 +2017-11-27 07:47:00,45.8138,179.147,5.54 +2017-11-27 08:02:00,46.8975,179.052,5.53 +2017-11-27 08:17:00,46.1637,178.957,5.52 +2017-11-27 08:32:00,46.4112,178.883,5.51 +2017-11-27 08:47:00,46.9938,178.762,5.5 +2017-11-27 09:02:00,46.455,178.645,5.49 +2017-11-27 09:17:00,46.8487,178.485,5.48 +2017-11-27 09:32:00,47.1188,178.3,5.48 +2017-11-27 09:47:00,25.9275,178.14,3.61 +2017-11-27 10:02:00,46.6738,177.955,5.47 +2017-11-27 10:17:00,46.5875,177.775,5.48 +2017-11-27 10:32:00,47.025,177.647,5.48 +2017-11-27 10:47:00,47.1212,177.555,5.48 +2017-11-27 11:02:00,46.2462,177.485,5.48 +2017-11-27 11:17:00,47.225,177.357,5.48 +2017-11-27 11:32:00,46.5825,177.318,5.48 +2017-11-27 11:47:00,46.9275,177.21,5.48 +2017-11-27 12:02:00,46.9238,177.045,5.48 +2017-11-27 12:17:00,46.8225,176.93,5.47 +2017-11-27 12:32:00,47.505,176.822,5.47 +2017-11-27 12:47:00,46.5337,176.652,5.47 +2017-11-27 13:02:00,46.8225,176.505,5.46 +2017-11-27 13:17:00,45.9412,176.345,5.46 +2017-11-27 13:32:00,47.12,176.18,5.46 +2017-11-27 13:47:00,47.3187,176.047,5.45 +2017-11-27 14:02:00,46.5387,175.902,5.44 +2017-11-27 14:17:00,47.17,175.75,5.44 +2017-11-27 14:32:00,47.1212,175.625,5.43 +2017-11-27 14:47:00,47.1725,175.48,5.43 +2017-11-27 15:02:00,46.14,175.365,5.42 +2017-11-27 15:17:00,46.6287,175.21,5.4 +2017-11-27 15:32:00,47.1687,175.167,5.4 +2017-11-27 15:47:00,47.8087,175.105,5.4 +2017-11-27 16:02:00,47.5587,175.005,5.38 +2017-11-27 16:17:00,47.3688,174.91,5.37 +2017-11-27 16:32:00,47.2712,174.855,5.36 +2017-11-27 16:47:00,47.2212,174.765,5.35 +2017-11-27 17:02:00,48.2475,174.697,5.34 +2017-11-27 17:17:00,48.06,174.617,5.33 +2017-11-27 17:32:00,47.415,174.538,5.32 +2017-11-27 17:47:00,47.3187,174.38,5.32 +2017-11-27 18:02:00,48.5,174.285,5.31 +2017-11-27 18:17:00,47.4575,174.155,5.3 +2017-11-27 18:32:00,46.9712,174.065,5.3 +2017-11-27 18:47:00,47.9562,173.987,5.29 +2017-11-27 19:02:00,47.56,173.938,5.28 +2017-11-27 19:17:00,47.8587,173.86,5.28 +2017-11-27 19:32:00,47.9562,173.812,5.28 +2017-11-27 19:47:00,48.25,173.788,5.27 +2017-11-27 20:02:00,47.2712,173.777,5.26 +2017-11-27 20:17:00,48.155,173.715,5.25 +2017-11-27 20:32:00,47.4087,173.705,5.24 +2017-11-27 20:47:00,47.2162,173.672,5.24 +2017-11-27 21:02:00,47.655,173.667,5.24 +2017-11-27 21:17:00,47.5563,173.61,5.24 +2017-11-27 21:32:00,47.5575,173.512,5.23 +2017-11-27 21:47:00,47.5587,173.427,5.23 +2017-11-27 22:02:00,47.9538,173.383,5.24 +2017-11-27 22:17:00,47.12,173.275,5.24 +2017-11-27 22:32:00,48.1987,173.23,5.24 +2017-11-27 22:47:00,48.6963,173.175,5.24 +2017-11-27 23:02:00,48.0075,173.107,5.23 +2017-11-27 23:17:00,48.2475,173.025,5.23 +2017-11-27 23:32:00,46.9212,172.973,5.23 +2017-11-27 23:47:00,48.1062,172.915,5.23 +2017-11-28 00:02:00,48.155,172.875,5.24 +2017-11-28 00:17:00,47.6075,172.832,5.24 +2017-11-28 00:32:00,47.7075,172.79,5.24 +2017-11-28 00:47:00,47.8587,172.753,5.24 +2017-11-28 01:02:00,48.5025,172.697,5.24 +2017-11-28 01:17:00,48.06,172.658,5.23 +2017-11-28 01:32:00,48.4025,172.605,5.23 +2017-11-28 01:47:00,46.9275,172.547,5.23 +2017-11-28 02:02:00,47.7075,172.465,5.23 +2017-11-28 02:17:00,47.51,172.36,5.24 +2017-11-28 02:32:00,47.56,172.318,5.23 +2017-11-28 02:47:00,47.86,172.242,5.23 +2017-11-28 03:02:00,47.8087,172.167,5.23 +2017-11-28 03:17:00,47.5062,172.103,5.24 +2017-11-28 03:32:00,47.8125,172.03,5.24 +2017-11-28 03:47:00,47.8075,171.98,5.25 +2017-11-28 04:02:00,47.76,171.917,5.25 +2017-11-28 04:17:00,48.5962,171.872,5.26 +2017-11-28 04:32:00,48.4538,171.807,5.26 +2017-11-28 04:47:00,47.9037,171.76,5.27 +2017-11-28 05:02:00,47.9075,171.695,5.27 +2017-11-28 05:17:00,47.4137,171.642,5.27 +2017-11-28 05:32:00,48.0112,171.565,5.27 +2017-11-28 05:47:00,48.01,171.52,5.28 +2017-11-28 06:02:00,48.1087,171.47,5.29 +2017-11-28 06:17:00,48.3025,171.417,5.29 +2017-11-28 06:32:00,47.7125,171.39,5.28 +2017-11-28 06:47:00,47.365,171.342,5.27 +2017-11-28 07:02:00,48.205,171.327,5.27 +2017-11-28 07:17:00,47.6087,171.265,5.27 +2017-11-28 07:32:00,47.5112,171.228,5.28 +2017-11-28 07:47:00,47.56,171.163,5.28 +2017-11-28 08:02:00,47.5625,171.085,5.27 +2017-11-28 08:17:00,48.3538,171.008,5.28 +2017-11-28 08:32:00,46.6762,170.908,5.28 +2017-11-28 08:47:00,47.0737,170.82,5.27 +2017-11-28 09:02:00,48.2513,170.73,5.27 +2017-11-28 09:17:00,48.15,170.688,5.27 +2017-11-28 09:32:00,47.6087,170.642,5.28 +2017-11-28 09:47:00,46.8213,170.61,5.29 +2017-11-28 10:02:00,48.1075,170.603,5.3 +2017-11-28 10:17:00,47.2225,170.595,5.31 +2017-11-28 10:32:00,47.505,170.58,5.31 +2017-11-28 10:47:00,48.0587,170.585,5.32 +2017-11-28 11:02:00,46.675,170.552,5.33 +2017-11-28 11:17:00,47.5037,170.527,5.34 +2017-11-28 11:32:00,47.46,170.47,5.35 +2017-11-28 11:47:00,47.5612,170.405,5.37 +2017-11-28 12:02:00,46.4837,170.32,5.37 +2017-11-28 12:17:00,47.5575,170.28,5.39 +2017-11-28 12:32:00,46.6762,170.22,5.41 +2017-11-28 12:47:00,48.0625,170.142,5.43 +2017-11-28 13:02:00,47.3662,170.065,5.45 +2017-11-28 13:17:00,46.535,169.99,5.46 +2017-11-28 13:32:00,46.7775,169.855,5.48 +2017-11-28 13:47:00,47.3175,169.772,5.49 +2017-11-28 14:02:00,47.7637,169.645,5.49 +2017-11-28 14:17:00,47.0212,169.508,5.48 +2017-11-28 14:32:00,46.775,169.355,5.49 +2017-11-28 14:47:00,47.4613,169.175,5.5 +2017-11-28 15:02:00,46.5825,168.995,5.51 +2017-11-28 15:17:00,46.975,168.79,5.5 +2017-11-28 15:32:00,46.975,168.605,5.5 +2017-11-28 15:47:00,46.8737,168.462,5.51 +2017-11-28 16:02:00,46.8737,168.32,5.5 +2017-11-28 16:17:00,46.5812,168.225,5.5 +2017-11-28 16:32:00,47.4613,168.137,5.49 +2017-11-28 16:47:00,46.8775,168.057,5.48 +2017-11-28 17:02:00,46.725,168.01,5.48 +2017-11-28 17:17:00,47.4137,167.962,5.47 +2017-11-28 17:32:00,47.2262,167.962,5.45 +2017-11-28 17:47:00,47.4112,167.945,5.44 +2017-11-28 18:02:00,47.2725,167.905,5.42 +2017-11-28 18:17:00,46.8763,167.905,5.41 +2017-11-28 18:32:00,47.6087,167.91,5.4 +2017-11-28 18:47:00,46.5825,167.91,5.39 +2017-11-28 19:02:00,47.6587,167.93,5.38 +2017-11-28 19:17:00,47.0212,167.96,5.37 +2017-11-28 19:32:00,45.8475,168.008,5.36 +2017-11-28 19:47:00,47.1237,168.047,5.36 +2017-11-28 20:02:00,46.8737,168.08,5.35 +2017-11-28 20:17:00,46.5788,168.11,5.34 +2017-11-28 20:32:00,47.4137,168.14,5.34 +2017-11-28 20:47:00,46.39,168.177,5.34 +2017-11-28 21:02:00,46.1912,168.247,5.35 +2017-11-28 21:17:00,46.7787,168.315,5.33 +2017-11-28 21:32:00,46.3438,168.365,5.32 +2017-11-28 21:47:00,46.1425,168.44,5.32 +2017-11-28 22:02:00,47.5575,168.492,5.31 +2017-11-28 22:17:00,47.175,168.538,5.31 +2017-11-28 22:32:00,46.44,168.562,5.31 +2017-11-28 22:47:00,47.1237,168.605,5.29 +2017-11-28 23:02:00,46.7262,168.672,5.29 +2017-11-28 23:17:00,46.78,168.745,5.29 +2017-11-28 23:32:00,46.5312,168.83,5.29 +2017-11-28 23:47:00,47.1738,168.917,5.29 +2017-11-29 00:02:00,47.075,169.02,5.28 +2017-11-29 00:17:00,47.0713,169.13,5.27 +2017-11-29 00:32:00,46.6312,169.23,5.25 +2017-11-29 00:47:00,46.7275,169.322,5.24 +2017-11-29 01:02:00,46.5337,169.438,5.22 +2017-11-29 01:17:00,45.7062,169.53,5.21 +2017-11-29 01:32:00,46.8725,169.633,5.19 +2017-11-29 01:47:00,46.0437,169.742,5.18 +2017-11-29 02:02:00,45.7513,169.842,5.17 +2017-11-29 02:17:00,46.9275,169.947,5.17 +2017-11-29 02:32:00,46.04,170.06,5.16 +2017-11-29 02:47:00,45.9412,170.15,5.15 +2017-11-29 03:02:00,45.895,170.288,5.14 +2017-11-29 03:17:00,46.4412,170.4,5.13 +2017-11-29 03:32:00,46.5337,170.482,5.12 +2017-11-29 03:47:00,46.3375,170.577,5.11 +2017-11-29 04:02:00,46.1925,170.682,5.11 +2017-11-29 04:17:00,46.535,170.788,5.09 +2017-11-29 04:32:00,46.3875,170.87,5.08 +2017-11-29 04:47:00,46.6312,170.978,5.07 +2017-11-29 05:02:00,45.71,171.095,5.06 +2017-11-29 05:17:00,45.0238,171.188,5.04 +2017-11-29 05:32:00,45.8462,171.283,5.03 +2017-11-29 05:47:00,46.1937,171.375,5.02 +2017-11-29 06:02:00,45.945,171.475,5.01 +2017-11-29 06:17:00,46.6825,171.568,5.0 +2017-11-29 06:32:00,45.5525,171.663,4.98 +2017-11-29 06:47:00,47.075,171.765,4.97 +2017-11-29 07:02:00,45.8913,171.832,4.96 +2017-11-29 07:17:00,45.8462,171.917,4.95 +2017-11-29 07:32:00,46.7237,172.0,4.94 +2017-11-29 07:47:00,46.3887,172.07,4.94 +2017-11-29 08:02:00,46.1413,172.122,4.93 +2017-11-29 08:17:00,46.6287,172.185,4.93 +2017-11-29 08:32:00,45.945,172.275,4.93 +2017-11-29 08:47:00,46.3425,172.353,4.93 +2017-11-29 09:02:00,46.1963,172.452,4.93 +2017-11-29 09:17:00,45.9938,172.545,4.92 +2017-11-29 09:32:00,46.82,172.635,4.93 +2017-11-29 09:47:00,46.1437,172.723,4.93 +2017-11-29 10:02:00,45.9912,172.812,4.93 +2017-11-29 10:17:00,46.04,172.875,4.94 +2017-11-29 10:32:00,45.7062,172.962,4.96 +2017-11-29 10:47:00,45.4062,173.045,4.97 +2017-11-29 11:02:00,45.895,173.12,4.98 +2017-11-29 11:17:00,46.7762,173.2,4.98 +2017-11-29 11:32:00,45.3587,173.262,4.98 +2017-11-29 11:47:00,45.7975,173.307,4.99 +2017-11-29 12:02:00,46.39,173.37,5.01 +2017-11-29 12:17:00,45.7038,173.417,5.02 +2017-11-29 12:32:00,46.0925,173.45,5.04 +2017-11-29 12:47:00,46.8725,173.478,5.05 +2017-11-29 13:02:00,45.85,173.492,5.06 +2017-11-29 13:17:00,46.1925,173.517,5.07 +2017-11-29 13:32:00,45.8,173.54,5.08 +2017-11-29 13:47:00,45.8475,173.545,5.09 +2017-11-29 14:02:00,46.1425,173.57,5.1 +2017-11-29 14:17:00,45.9412,173.575,5.1 +2017-11-29 14:32:00,46.2425,173.575,5.1 +2017-11-29 14:47:00,46.0425,173.585,5.11 +2017-11-29 15:02:00,45.9425,173.582,5.11 +2017-11-29 15:17:00,46.9762,173.56,5.11 +2017-11-29 15:32:00,46.1437,173.555,5.09 +2017-11-29 15:47:00,45.4587,173.542,5.08 +2017-11-29 16:02:00,46.3887,173.545,5.07 +2017-11-29 16:17:00,46.0938,173.522,5.08 +2017-11-29 16:32:00,46.73,173.512,5.07 +2017-11-29 16:47:00,45.3662,173.473,5.07 +2017-11-29 17:02:00,47.1725,173.438,5.06 +2017-11-29 17:17:00,45.9012,173.435,5.06 +2017-11-29 17:32:00,45.415,173.395,5.06 +2017-11-29 17:47:00,46.8775,173.357,5.05 +2017-11-29 18:02:00,46.3462,173.315,5.05 +2017-11-29 18:17:00,46.5863,173.277,5.05 +2017-11-29 18:32:00,46.245,173.237,5.04 +2017-11-29 18:47:00,46.9812,173.193,5.05 +2017-11-29 19:02:00,46.3913,173.135,5.05 +2017-11-29 19:17:00,46.4925,173.055,5.04 +2017-11-29 19:32:00,47.3213,172.935,5.04 +2017-11-29 19:47:00,46.445,172.792,5.04 +2017-11-29 20:02:00,46.4388,172.68,5.03 +2017-11-29 20:17:00,46.59,172.605,5.03 +2017-11-29 20:32:00,46.1987,172.515,5.03 +2017-11-29 20:47:00,47.2262,172.478,5.03 +2017-11-29 21:02:00,46.8775,172.435,5.02 +2017-11-29 21:17:00,46.63,172.39,5.01 +2017-11-29 21:32:00,46.145,172.385,5.01 +2017-11-29 21:47:00,46.09,172.355,5.01 +2017-11-29 22:02:00,46.4863,172.355,5.0 +2017-11-29 22:17:00,46.535,172.36,5.0 +2017-11-29 22:32:00,46.97,172.337,5.0 +2017-11-29 22:47:00,47.0238,172.297,4.99 +2017-11-29 23:02:00,47.0225,172.262,4.99 +2017-11-29 23:17:00,47.0725,172.228,4.97 +2017-11-29 23:32:00,46.5775,172.188,4.97 +2017-11-29 23:47:00,46.9725,172.13,4.97 +2017-11-30 00:02:00,46.3887,172.077,4.96 +2017-11-30 00:17:00,47.1263,172.035,4.96 +2017-11-30 00:32:00,46.975,171.97,4.96 +2017-11-30 00:47:00,47.2725,171.892,4.94 +2017-11-30 01:02:00,47.9062,171.83,4.94 +2017-11-30 01:17:00,47.0262,171.772,4.94 +2017-11-30 01:32:00,46.3862,171.707,4.94 +2017-11-30 01:47:00,47.0713,171.667,4.93 +2017-11-30 02:02:00,47.1225,171.63,4.93 +2017-11-30 02:17:00,46.6775,171.585,4.93 +2017-11-30 02:32:00,47.6062,171.547,4.93 +2017-11-30 02:47:00,46.8775,171.467,4.92 +2017-11-30 03:02:00,46.585,171.38,4.91 +2017-11-30 03:17:00,47.8112,171.253,4.9 +2017-11-30 03:32:00,47.76,171.115,4.88 +2017-11-30 03:47:00,47.1225,171.008,4.87 +2017-11-30 04:02:00,46.8225,170.922,4.86 +2017-11-30 04:17:00,46.9762,170.883,4.84 +2017-11-30 04:32:00,47.1225,170.842,4.84 +2017-11-30 04:47:00,46.975,170.8,4.84 +2017-11-30 05:02:00,47.6612,170.762,4.84 +2017-11-30 05:17:00,47.5075,170.728,4.85 +2017-11-30 05:32:00,46.7262,170.688,4.85 +2017-11-30 05:47:00,47.5088,170.645,4.85 +2017-11-30 06:02:00,46.5825,170.577,4.84 +2017-11-30 06:17:00,47.4562,170.533,4.84 +2017-11-30 06:32:00,46.9725,170.473,4.83 +2017-11-30 06:47:00,47.1237,170.378,4.82 +2017-11-30 07:02:00,47.0713,170.325,4.81 +2017-11-30 07:17:00,47.6062,170.267,4.8 +2017-11-30 07:32:00,47.5587,170.197,4.79 +2017-11-30 07:47:00,47.8087,170.167,4.79 +2017-11-30 08:02:00,48.2,170.128,4.78 +2017-11-30 08:17:00,48.7438,170.075,4.78 +2017-11-30 08:32:00,47.6087,170.03,4.78 +2017-11-30 08:47:00,46.7237,169.982,4.78 +2017-11-30 09:02:00,47.5575,169.895,4.78 +2017-11-30 09:17:00,46.54,169.837,4.77 +2017-11-30 09:32:00,46.775,169.788,4.78 +2017-11-30 09:47:00,47.225,169.725,4.77 +2017-11-30 10:02:00,48.2,169.7,4.77 +2017-11-30 10:17:00,48.4,169.672,4.78 +2017-11-30 10:32:00,47.22,169.645,4.79 +2017-11-30 10:47:00,48.0062,169.607,4.79 +2017-11-30 11:02:00,47.2225,169.53,4.8 +2017-11-30 11:17:00,48.205,169.44,4.82 +2017-11-30 11:32:00,47.3213,169.36,4.82 +2017-11-30 11:47:00,46.975,169.292,4.82 +2017-11-30 12:02:00,46.925,169.197,4.81 +2017-11-30 12:17:00,47.5625,169.128,4.82 +2017-11-30 12:32:00,47.4587,169.04,4.82 +2017-11-30 12:47:00,47.415,168.967,4.83 +2017-11-30 13:02:00,47.6562,168.89,4.82 +2017-11-30 13:17:00,47.2675,168.857,4.83 +2017-11-30 13:32:00,47.2275,168.848,4.83 +2017-11-30 13:47:00,47.4587,168.83,4.82 +2017-11-30 14:02:00,47.3662,168.815,4.81 +2017-11-30 14:17:00,47.2675,168.797,4.81 +2017-11-30 14:32:00,47.1687,168.737,4.8 +2017-11-30 14:47:00,46.675,168.707,4.81 +2017-11-30 15:02:00,48.1562,168.637,4.8 +2017-11-30 15:17:00,47.0725,168.59,4.78 +2017-11-30 15:32:00,46.8712,168.52,4.77 +2017-11-30 15:47:00,47.655,168.452,4.77 +2017-11-30 16:02:00,47.1712,168.37,4.77 +2017-11-30 16:17:00,47.2212,168.297,4.77 +2017-11-30 16:32:00,47.7075,168.207,4.75 +2017-11-30 16:47:00,47.3175,168.082,4.74 +2017-11-30 17:02:00,47.41,167.985,4.72 +2017-11-30 17:17:00,47.8075,167.86,4.71 +2017-11-30 17:32:00,46.7725,167.77,4.7 +2017-11-30 17:47:00,46.8725,167.68,4.67 +2017-11-30 18:02:00,47.4137,167.607,4.64 +2017-11-30 18:17:00,47.175,167.495,4.63 +2017-11-30 18:32:00,47.1712,167.375,4.6 +2017-11-30 18:47:00,47.6575,167.275,4.57 +2017-11-30 19:02:00,47.2225,167.175,4.55 +2017-11-30 19:17:00,47.5612,167.095,4.52 +2017-11-30 19:32:00,47.32,167.027,4.5 +2017-11-30 19:47:00,46.4875,166.943,4.48 +2017-11-30 20:02:00,47.415,166.88,4.46 +2017-11-30 20:17:00,47.4125,166.77,4.44 +2017-11-30 20:32:00,46.825,166.59,4.42 +2017-11-30 20:47:00,47.0737,166.402,4.4 +2017-11-30 21:02:00,47.5625,166.262,4.39 +2017-11-30 21:17:00,47.0675,166.172,4.38 +2017-11-30 21:32:00,46.6287,166.07,4.37 +2017-11-30 21:47:00,47.025,166.008,4.36 +2017-11-30 22:02:00,46.725,165.962,4.34 +2017-11-30 22:17:00,46.7725,165.885,4.33 +2017-11-30 22:32:00,46.9225,165.845,4.32 +2017-11-30 22:47:00,46.775,165.78,4.3 +2017-11-30 23:02:00,47.6113,165.688,4.29 +2017-11-30 23:17:00,47.76,165.645,4.27 +2017-11-30 23:32:00,47.5612,165.577,4.25 +2017-11-30 23:47:00,46.7775,165.515,4.24 +2017-12-01 00:02:00,47.0713,165.46,4.22 +2017-12-01 00:17:00,47.3187,165.392,4.21 +2017-12-01 00:32:00,46.87,165.357,4.2 +2017-12-01 00:47:00,46.4863,165.295,4.18 +2017-12-01 01:02:00,46.7237,165.237,4.16 +2017-12-01 01:17:00,47.07,165.14,4.13 +2017-12-01 01:32:00,45.8025,165.085,4.1 +2017-12-01 01:47:00,47.0275,165.05,4.08 +2017-12-01 02:02:00,47.3637,164.975,4.06 +2017-12-01 02:17:00,47.3213,164.915,4.04 +2017-12-01 02:32:00,45.9412,164.85,4.02 +2017-12-01 02:47:00,47.2212,164.77,3.99 +2017-12-01 03:02:00,47.4137,164.707,3.97 +2017-12-01 03:17:00,47.3625,164.605,3.96 +2017-12-01 03:32:00,46.535,164.538,3.95 +2017-12-01 03:47:00,46.8262,164.492,3.94 +2017-12-01 04:02:00,46.9737,164.455,3.93 +2017-12-01 04:17:00,47.0212,164.38,3.92 +2017-12-01 04:32:00,46.68,164.38,3.91 +2017-12-01 04:47:00,46.6775,164.297,3.91 +2017-12-01 05:02:00,47.655,164.277,3.9 +2017-12-01 05:17:00,46.775,164.107,3.89 +2017-12-01 05:32:00,46.535,163.97,3.89 +2017-12-01 05:47:00,46.39,163.865,3.88 +2017-12-01 06:02:00,46.2425,163.758,3.88 +2017-12-01 06:17:00,47.6062,163.712,3.87 +2017-12-01 06:32:00,46.68,163.677,3.86 +2017-12-01 06:47:00,46.4375,163.635,3.85 +2017-12-01 07:02:00,47.0737,163.587,3.85 +2017-12-01 07:17:00,46.2937,163.508,3.83 +2017-12-01 07:32:00,46.3412,163.478,3.82 +2017-12-01 07:47:00,46.4863,163.46,3.81 +2017-12-01 08:02:00,46.3387,163.43,3.82 +2017-12-01 08:17:00,45.9938,163.443,3.82 +2017-12-01 08:32:00,47.12,163.36,3.82 +2017-12-01 08:47:00,46.6738,163.345,3.82 +2017-12-01 09:02:00,47.1725,163.29,3.81 +2017-12-01 09:17:00,46.34,163.27,3.82 +2017-12-01 09:32:00,45.5062,163.128,3.82 +2017-12-01 09:47:00,46.7225,163.022,3.82 +2017-12-01 10:02:00,46.4887,162.89,3.84 +2017-12-01 10:17:00,47.1212,162.758,3.85 +2017-12-01 10:32:00,46.7225,162.693,3.87 +2017-12-01 10:47:00,46.825,162.6,3.89 +2017-12-01 11:02:00,46.4912,162.59,3.91 +2017-12-01 11:17:00,45.9975,162.6,3.92 +2017-12-01 11:32:00,46.44,162.64,3.93 +2017-12-01 11:47:00,46.5337,162.682,3.94 +2017-12-01 12:02:00,46.9225,162.675,3.94 +2017-12-01 12:17:00,46.4362,162.587,3.94 +2017-12-01 12:32:00,46.9725,162.46,3.94 +2017-12-01 12:47:00,46.24,162.342,3.95 +2017-12-01 13:02:00,47.3175,162.23,3.96 +2017-12-01 13:17:00,45.8462,162.11,3.96 +2017-12-01 13:32:00,45.6975,162.012,3.96 +2017-12-01 13:47:00,46.3363,161.87,3.98 +2017-12-01 14:02:00,46.3425,161.745,3.99 +2017-12-01 14:17:00,46.29,161.615,4.0 +2017-12-01 14:32:00,46.5387,161.497,4.01 +2017-12-01 14:47:00,46.3425,161.35,4.02 +2017-12-01 15:02:00,46.3875,161.205,4.03 +2017-12-01 15:17:00,46.3375,161.072,4.05 +2017-12-01 15:32:00,45.9388,160.952,4.06 +2017-12-01 15:47:00,47.27,160.872,4.08 +2017-12-01 16:02:00,45.5088,160.72,4.09 +2017-12-01 16:17:00,46.1387,160.625,4.1 +2017-12-01 16:32:00,45.8937,160.525,4.1 +2017-12-01 16:47:00,46.5337,160.422,4.09 +2017-12-01 17:02:00,46.7288,160.302,4.08 +2017-12-01 17:17:00,46.3862,160.182,4.08 +2017-12-01 17:32:00,46.7212,160.098,4.08 +2017-12-01 17:47:00,46.0875,160.035,4.08 +2017-12-01 18:02:00,45.9912,159.935,4.08 +2017-12-01 18:17:00,45.8937,159.875,4.07 +2017-12-01 18:32:00,46.3363,159.822,4.08 +2017-12-01 18:47:00,46.2875,159.755,4.08 +2017-12-01 19:02:00,46.19,159.717,4.08 +2017-12-01 19:17:00,45.8425,159.68,4.07 +2017-12-01 19:32:00,45.7513,159.64,4.06 +2017-12-01 19:47:00,46.2363,159.605,4.05 +2017-12-01 20:02:00,45.7475,159.572,4.04 +2017-12-01 20:17:00,46.5788,159.57,4.03 +2017-12-01 20:32:00,46.0863,159.533,4.03 +2017-12-01 20:47:00,45.9425,159.512,4.03 +2017-12-01 21:02:00,45.9938,159.438,4.03 +2017-12-01 21:17:00,46.4362,159.33,4.01 +2017-12-01 21:32:00,45.5563,159.253,4.0 +2017-12-01 21:47:00,46.19,159.188,3.98 +2017-12-01 22:02:00,46.435,159.137,3.97 +2017-12-01 22:17:00,45.8913,159.13,3.96 +2017-12-01 22:32:00,45.4112,159.137,3.95 +2017-12-01 22:47:00,45.9912,159.13,3.94 +2017-12-01 23:02:00,46.335,159.112,3.92 +2017-12-01 23:17:00,46.77,159.13,3.9 +2017-12-01 23:32:00,46.6275,159.13,3.9 +2017-12-01 23:47:00,45.7537,159.133,3.9 +2017-12-02 00:02:00,45.7962,159.107,3.9 +2017-12-02 00:17:00,45.3037,159.115,3.9 +2017-12-02 00:32:00,47.0225,159.12,3.89 +2017-12-02 00:47:00,45.9925,159.103,3.89 +2017-12-02 01:02:00,46.675,159.1,3.9 +2017-12-02 01:17:00,45.7962,159.095,3.9 +2017-12-02 01:32:00,45.4075,159.082,3.9 +2017-12-02 01:47:00,46.4863,159.08,3.91 +2017-12-02 02:02:00,45.8887,159.068,3.91 +2017-12-02 02:17:00,45.6562,159.057,3.9 +2017-12-02 02:32:00,46.435,159.055,3.91 +2017-12-02 02:47:00,45.36,159.027,3.91 +2017-12-02 03:02:00,45.6475,159.008,3.91 +2017-12-02 03:17:00,46.1413,158.965,3.9 +2017-12-02 03:32:00,46.4325,158.927,3.9 +2017-12-02 03:47:00,45.75,158.905,3.9 +2017-12-02 04:02:00,45.7487,158.892,3.91 +2017-12-02 04:17:00,45.9912,158.862,3.9 +2017-12-02 04:32:00,46.2363,158.835,3.9 +2017-12-02 04:47:00,46.1888,158.815,3.9 +2017-12-02 05:02:00,45.75,158.777,3.91 +2017-12-02 05:17:00,45.2075,158.693,3.93 +2017-12-02 05:32:00,46.8712,158.56,3.92 +2017-12-02 05:47:00,45.8475,158.467,3.93 +2017-12-02 06:02:00,46.3337,158.417,3.94 +2017-12-02 06:17:00,45.8012,158.383,3.94 +2017-12-02 06:32:00,45.41,158.342,3.96 +2017-12-02 06:47:00,45.7513,158.362,3.95 +2017-12-02 07:02:00,45.75,158.362,3.95 +2017-12-02 07:17:00,46.2862,157.292,3.96 +2017-12-02 07:32:00,45.9375,156.357,3.97 +2017-12-02 07:47:00,45.3037,155.848,3.99 +2017-12-02 08:02:00,45.305,155.605,3.99 +2017-12-02 08:17:00,45.4587,155.457,4.0 +2017-12-02 08:32:00,45.7513,155.427,4.01 +2017-12-02 08:47:00,46.2875,155.457,4.01 +2017-12-02 09:02:00,45.8425,155.592,4.02 +2017-12-02 09:17:00,46.63,155.688,4.03 +2017-12-02 09:32:00,45.8925,155.837,4.05 +2017-12-02 09:47:00,46.3375,155.992,4.06 +2017-12-02 10:02:00,45.6025,156.087,4.07 +2017-12-02 10:17:00,46.0387,156.21,4.08 +2017-12-02 10:32:00,45.8412,156.315,4.08 +2017-12-02 10:47:00,45.8438,156.362,4.08 +2017-12-02 11:02:00,46.3887,156.413,4.1 +2017-12-02 11:17:00,45.4087,156.438,4.11 +2017-12-02 11:32:00,44.7862,156.467,4.1 +2017-12-02 11:47:00,45.5537,156.495,4.1 +2017-12-02 12:02:00,45.26,156.487,4.11 +2017-12-02 12:17:00,46.0375,156.505,4.12 +2017-12-02 12:32:00,45.415,156.495,4.13 +2017-12-02 12:47:00,45.1137,156.46,4.12 +2017-12-02 13:02:00,45.2575,156.427,4.13 +2017-12-02 13:17:00,44.8825,156.432,4.14 +2017-12-02 13:32:00,45.2087,156.385,4.14 +2017-12-02 13:47:00,45.8438,156.355,4.15 +2017-12-02 14:02:00,45.655,156.315,4.14 +2017-12-02 14:17:00,45.0175,156.235,4.14 +2017-12-02 14:32:00,45.8462,156.188,4.14 +2017-12-02 14:47:00,45.5037,156.135,4.14 +2017-12-02 15:02:00,45.1637,156.072,4.14 +2017-12-02 15:17:00,45.8462,156.017,4.13 +2017-12-02 15:32:00,45.115,155.94,4.13 +2017-12-02 15:47:00,45.5537,155.848,4.13 +2017-12-02 16:02:00,45.4525,155.735,4.12 +2017-12-02 16:17:00,45.0212,155.562,4.12 +2017-12-02 16:32:00,45.705,155.48,4.11 +2017-12-02 16:47:00,45.07,155.417,4.11 +2017-12-02 17:02:00,45.355,155.352,4.11 +2017-12-02 17:17:00,45.5537,155.305,4.12 +2017-12-02 17:32:00,44.9775,155.265,4.12 +2017-12-02 17:47:00,45.505,155.205,4.11 +2017-12-02 18:02:00,45.505,155.175,4.1 +2017-12-02 18:17:00,44.8325,155.15,4.1 +2017-12-02 18:32:00,45.2562,155.132,4.1 +2017-12-02 18:47:00,45.3063,155.062,4.09 +2017-12-02 19:02:00,45.7025,155.03,4.08 +2017-12-02 19:17:00,45.2113,154.955,4.06 +2017-12-02 19:32:00,45.8913,154.925,4.05 +2017-12-02 19:47:00,45.9412,154.885,4.03 +2017-12-02 20:02:00,45.7988,154.815,4.0 +2017-12-02 20:17:00,45.6038,154.72,3.98 +2017-12-02 20:32:00,44.7363,154.697,3.95 +2017-12-02 20:47:00,45.165,154.655,3.93 +2017-12-02 21:02:00,46.1862,154.62,3.91 +2017-12-02 21:17:00,44.975,154.535,3.9 +2017-12-02 21:32:00,45.7038,154.465,3.89 +2017-12-02 21:47:00,45.3063,154.423,3.86 +2017-12-02 22:02:00,46.135,154.36,3.83 +2017-12-02 22:17:00,45.555,154.31,3.81 +2017-12-02 22:32:00,45.11,154.237,3.79 +2017-12-02 22:47:00,45.6012,154.143,3.78 +2017-12-02 23:02:00,44.685,154.1,3.76 +2017-12-02 23:17:00,45.9425,154.05,3.74 +2017-12-02 23:32:00,45.21,153.962,3.74 +2017-12-02 23:47:00,45.5075,153.895,3.72 +2017-12-03 00:02:00,44.69,153.84,3.72 +2017-12-03 00:17:00,45.795,153.81,3.7 +2017-12-03 00:32:00,45.1637,153.73,3.68 +2017-12-03 00:47:00,44.93,153.662,3.68 +2017-12-03 01:02:00,45.6012,153.59,3.67 +2017-12-03 01:17:00,45.9412,153.46,3.65 +2017-12-03 01:32:00,45.5013,153.31,3.63 +2017-12-03 01:47:00,45.555,153.162,3.62 +2017-12-03 02:02:00,45.4062,153.082,3.61 +2017-12-03 02:17:00,45.6987,153.02,3.59 +2017-12-03 02:32:00,45.705,152.95,3.58 +2017-12-03 02:47:00,45.5062,152.887,3.57 +2017-12-03 03:02:00,45.99,152.83,3.55 +2017-12-03 03:17:00,44.5413,152.812,3.54 +2017-12-03 03:32:00,46.0887,152.798,3.52 +2017-12-03 03:47:00,45.21,152.745,3.51 +2017-12-03 04:02:00,45.0187,152.702,3.5 +2017-12-03 04:17:00,45.6025,152.677,3.49 +2017-12-03 04:32:00,44.9762,152.61,3.47 +2017-12-03 04:47:00,45.1675,152.565,3.46 +2017-12-03 05:02:00,45.89,152.482,3.46 +2017-12-03 05:17:00,45.355,152.457,3.46 +2017-12-03 05:32:00,46.2363,152.42,3.45 +2017-12-03 05:47:00,45.7038,152.402,3.47 +2017-12-03 06:02:00,45.5575,152.395,3.46 +2017-12-03 06:17:00,45.2562,152.395,3.46 +2017-12-03 06:32:00,45.36,152.345,3.46 +2017-12-03 06:47:00,45.5563,152.325,3.46 +2017-12-03 07:02:00,45.8438,152.237,3.47 +2017-12-03 07:17:00,46.1387,152.202,3.47 +2017-12-03 07:32:00,46.2913,152.21,3.47 +2017-12-03 07:47:00,45.46,152.173,3.47 +2017-12-03 08:02:00,44.5938,151.95,3.47 +2017-12-03 08:17:00,45.755,151.227,3.47 +2017-12-03 08:32:00,45.4112,150.643,3.48 +2017-12-03 08:47:00,45.6,150.31,3.48 +2017-12-03 09:02:00,45.6062,150.125,3.49 +2017-12-03 09:17:00,45.7012,150.095,3.49 +2017-12-03 09:32:00,46.1387,150.12,3.5 +2017-12-03 09:47:00,45.7537,150.22,3.5 +2017-12-03 10:02:00,45.555,150.327,3.5 +2017-12-03 10:17:00,45.5525,150.487,3.5 +2017-12-03 10:32:00,45.845,150.635,3.5 +2017-12-03 10:47:00,45.6075,150.737,3.51 +2017-12-03 11:02:00,45.705,150.845,3.52 +2017-12-03 11:17:00,46.1387,150.895,3.51 +2017-12-03 11:32:00,46.2887,150.945,3.51 +2017-12-03 11:47:00,45.7537,150.935,3.5 +2017-12-03 12:02:00,45.36,150.895,3.49 +2017-12-03 12:17:00,46.0375,150.867,3.48 +2017-12-03 12:32:00,45.945,150.81,3.48 +2017-12-03 12:47:00,45.5088,150.84,3.48 +2017-12-03 13:02:00,45.4137,150.89,3.48 +2017-12-03 13:17:00,45.9437,150.877,3.49 +2017-12-03 13:32:00,45.7975,150.897,3.49 +2017-12-03 13:47:00,45.3587,150.935,3.48 +2017-12-03 14:02:00,45.4587,150.982,3.48 +2017-12-03 14:17:00,44.7837,151.015,3.49 +2017-12-03 14:32:00,45.7962,151.035,3.5 +2017-12-03 14:47:00,45.5075,151.072,3.5 +2017-12-03 15:02:00,44.7812,151.085,3.48 +2017-12-03 15:17:00,45.1175,151.105,3.48 +2017-12-03 15:32:00,45.31,151.102,3.48 +2017-12-03 15:47:00,44.5462,151.077,3.48 +2017-12-03 16:02:00,45.3575,151.07,3.47 +2017-12-03 16:17:00,44.0612,151.022,3.46 +2017-12-03 16:32:00,45.1612,151.045,3.46 +2017-12-03 16:47:00,45.0225,151.007,3.46 +2017-12-03 17:02:00,45.7525,150.957,3.46 +2017-12-03 17:17:00,45.41,150.923,3.46 +2017-12-03 17:32:00,45.1125,150.88,3.47 +2017-12-03 17:47:00,45.0675,150.842,3.44 +2017-12-03 18:02:00,45.02,150.802,3.44 +2017-12-03 18:17:00,45.6587,150.762,3.45 +2017-12-03 18:32:00,44.6888,150.71,3.45 +2017-12-03 18:47:00,44.9325,150.622,3.45 +2017-12-03 19:02:00,45.5088,150.56,3.47 +2017-12-03 19:17:00,44.7887,150.505,3.47 +2017-12-03 19:32:00,45.2588,150.417,3.47 +2017-12-03 19:47:00,45.3625,150.397,3.48 +2017-12-03 20:02:00,44.5938,150.36,3.48 +2017-12-03 20:17:00,44.9762,150.327,3.49 +2017-12-03 20:32:00,45.2588,150.268,3.49 +2017-12-03 20:47:00,45.46,150.245,3.51 +2017-12-03 21:02:00,44.7425,150.162,3.52 +2017-12-03 21:17:00,44.9775,150.022,3.53 +2017-12-03 21:32:00,45.4562,149.92,3.53 +2017-12-03 21:47:00,44.1162,149.81,3.53 +2017-12-03 22:02:00,44.5962,149.78,3.54 +2017-12-03 22:17:00,44.7387,149.787,3.55 +2017-12-03 22:32:00,45.1675,149.8,3.55 +2017-12-03 22:47:00,45.1663,149.84,3.56 +2017-12-03 23:02:00,44.9737,149.855,3.57 +2017-12-03 23:17:00,44.8325,149.905,3.58 +2017-12-03 23:32:00,44.64,149.915,3.58 +2017-12-03 23:47:00,45.755,149.925,3.59 +2017-12-04 00:02:00,44.6462,149.947,3.59 +2017-12-04 00:17:00,44.8862,149.932,3.59 +2017-12-04 00:32:00,45.5587,149.912,3.6 +2017-12-04 00:47:00,44.4012,149.908,3.61 +2017-12-04 01:02:00,44.8838,149.872,3.61 +2017-12-04 01:17:00,45.3625,149.855,3.59 +2017-12-04 01:32:00,44.35,149.857,3.59 +2017-12-04 01:47:00,44.74,149.802,3.59 +2017-12-04 02:02:00,44.9788,149.795,3.59 +2017-12-04 02:17:00,44.065,149.807,3.6 +2017-12-04 02:32:00,44.7412,149.768,3.61 +2017-12-04 02:47:00,44.545,149.72,3.61 +2017-12-04 03:02:00,44.9762,149.647,3.6 +2017-12-04 03:17:00,44.02,149.612,3.6 +2017-12-04 03:32:00,45.07,149.577,3.59 +2017-12-04 03:47:00,45.115,149.557,3.59 +2017-12-04 04:02:00,45.61,149.537,3.59 +2017-12-04 04:17:00,44.8387,149.482,3.6 +2017-12-04 04:32:00,44.9775,149.457,3.61 +2017-12-04 04:47:00,44.8337,149.445,3.6 +2017-12-04 05:02:00,44.9325,149.472,3.61 +2017-12-04 05:17:00,44.4525,149.502,3.61 +2017-12-04 05:32:00,45.0687,149.525,3.61 +2017-12-04 05:47:00,45.0713,149.545,3.61 +2017-12-04 06:02:00,44.6912,149.542,3.62 +2017-12-04 06:17:00,44.2137,149.472,3.61 +2017-12-04 06:32:00,44.6437,149.357,3.61 +2017-12-04 06:47:00,44.4487,149.24,3.61 +2017-12-04 07:02:00,45.305,149.075,3.61 +2017-12-04 07:17:00,44.9313,148.98,3.61 +2017-12-04 07:32:00,44.7387,148.977,3.6 +2017-12-04 07:47:00,44.2562,148.997,3.59 +2017-12-04 08:02:00,45.5062,149.048,3.6 +2017-12-04 08:17:00,44.1137,149.087,3.61 +2017-12-04 08:32:00,44.3512,149.147,3.61 +2017-12-04 08:47:00,45.36,149.162,3.61 +2017-12-04 09:02:00,44.7387,149.162,3.62 +2017-12-04 09:17:00,45.4613,149.097,3.64 +2017-12-04 09:32:00,45.0262,149.035,3.64 +2017-12-04 09:47:00,45.36,149.03,3.65 +2017-12-04 10:02:00,44.7412,149.01,3.66 +2017-12-04 10:17:00,44.885,149.072,3.67 +2017-12-04 10:32:00,45.2612,149.135,3.69 +2017-12-04 10:47:00,45.3587,149.268,3.7 +2017-12-04 11:02:00,44.84,149.42,3.71 +2017-12-04 11:17:00,45.1212,149.592,3.72 +2017-12-04 11:32:00,45.2637,149.74,3.73 +2017-12-04 11:47:00,44.8363,149.893,3.75 +2017-12-04 12:02:00,44.9362,149.99,3.77 +2017-12-04 12:17:00,44.4463,150.045,3.79 +2017-12-04 12:32:00,44.735,150.21,3.77 +2017-12-04 12:47:00,45.215,150.425,3.78 +2017-12-04 13:02:00,44.4487,150.408,3.79 +2017-12-04 13:17:00,44.2125,150.322,3.8 +2017-12-04 13:32:00,44.8363,150.19,3.83 +2017-12-04 13:47:00,44.2113,150.007,3.82 +2017-12-04 14:02:00,45.6062,149.762,3.8 +2017-12-04 14:17:00,44.45,149.537,3.8 +2017-12-04 14:32:00,44.5,149.315,3.81 +2017-12-04 14:47:00,44.8375,149.075,3.82 +2017-12-04 15:02:00,43.8688,148.852,3.82 +2017-12-04 15:17:00,44.1637,148.73,3.83 +2017-12-04 15:32:00,44.5925,148.552,3.83 +2017-12-04 15:47:00,45.2137,148.415,3.85 +2017-12-04 16:02:00,44.645,148.252,3.85 +2017-12-04 16:17:00,43.7712,148.155,3.83 +2017-12-04 16:32:00,43.6738,148.062,3.82 +2017-12-04 16:47:00,43.9225,148.007,3.83 +2017-12-04 17:02:00,44.7887,147.967,3.82 +2017-12-04 17:17:00,44.1137,147.96,3.81 +2017-12-04 17:32:00,44.4987,147.938,3.79 +2017-12-04 17:47:00,44.9788,147.967,3.78 +2017-12-04 18:02:00,44.5912,147.935,3.77 +2017-12-04 18:17:00,44.3475,147.872,3.76 +2017-12-04 18:32:00,44.6875,147.783,3.76 +2017-12-04 18:47:00,44.0675,147.752,3.76 +2017-12-04 19:02:00,44.11,147.765,3.76 +2017-12-04 19:17:00,44.59,147.865,3.75 +2017-12-04 19:32:00,44.835,147.955,3.74 +2017-12-04 19:47:00,44.0175,148.035,3.74 +2017-12-04 20:02:00,43.7225,148.18,3.75 +2017-12-04 20:17:00,43.9712,148.312,3.74 +2017-12-04 20:32:00,44.2562,148.438,3.74 +2017-12-04 20:47:00,44.8312,148.57,3.73 +2017-12-04 21:02:00,44.9788,148.697,3.73 +2017-12-04 21:17:00,44.7387,148.822,3.74 +2017-12-04 21:32:00,44.9313,148.932,3.75 +2017-12-04 21:47:00,44.545,149.052,3.75 +2017-12-04 22:02:00,44.35,149.155,3.75 +2017-12-04 22:17:00,45.1188,149.257,3.75 +2017-12-04 22:32:00,43.7212,149.327,3.75 +2017-12-04 22:47:00,44.3025,149.445,3.76 +2017-12-04 23:02:00,44.6462,149.507,3.77 +2017-12-04 23:17:00,44.1587,149.615,3.77 +2017-12-04 23:32:00,44.3475,149.682,3.77 +2017-12-04 23:47:00,44.2113,149.792,3.78 +2017-12-05 00:02:00,44.0175,149.885,3.79 +2017-12-05 00:17:00,44.1113,149.982,3.8 +2017-12-05 00:32:00,44.2537,150.012,3.81 +2017-12-05 00:47:00,43.9662,150.07,3.82 +2017-12-05 01:02:00,44.98,150.132,3.83 +2017-12-05 01:17:00,44.4925,150.152,3.84 +2017-12-05 01:32:00,44.0137,150.155,3.86 +2017-12-05 01:47:00,44.9325,150.145,3.87 +2017-12-05 02:02:00,44.2588,150.162,3.9 +2017-12-05 02:17:00,44.7387,150.18,3.9 +2017-12-05 02:32:00,44.0662,150.225,3.9 +2017-12-05 02:47:00,44.35,150.232,3.91 +2017-12-05 03:02:00,44.9313,150.247,3.93 +2017-12-05 03:17:00,44.2562,150.28,3.95 +2017-12-05 03:32:00,44.2087,150.307,3.96 +2017-12-05 03:47:00,43.6738,150.247,3.97 +2017-12-05 04:02:00,44.3975,150.197,3.98 +2017-12-05 04:17:00,44.93,150.143,4.0 +2017-12-05 04:32:00,44.9762,150.167,4.01 +2017-12-05 04:47:00,44.4962,150.202,4.03 +2017-12-05 05:02:00,44.16,150.255,4.05 +2017-12-05 05:17:00,44.1637,150.255,4.07 +2017-12-05 05:32:00,44.1125,150.352,4.08 +2017-12-05 05:47:00,44.69,150.45,4.08 +2017-12-05 06:02:00,43.915,150.502,4.1 +2017-12-05 06:17:00,43.77,150.537,4.11 +2017-12-05 06:32:00,44.3988,150.592,4.12 +2017-12-05 06:47:00,44.2525,150.692,4.14 +2017-12-05 07:02:00,44.1113,150.74,4.15 +2017-12-05 07:17:00,45.0262,150.812,4.17 +2017-12-05 07:32:00,44.5938,150.772,4.18 +2017-12-05 07:47:00,44.015,150.783,4.2 +2017-12-05 08:02:00,43.35,150.73,4.23 +2017-12-05 08:17:00,44.3975,150.722,4.23 +2017-12-05 08:32:00,44.165,150.76,4.23 +2017-12-05 08:47:00,44.3012,150.997,4.26 +2017-12-05 09:02:00,45.0687,151.457,4.28 +2017-12-05 09:17:00,44.545,151.897,4.3 +2017-12-05 09:32:00,45.0225,152.25,4.33 +2017-12-05 09:47:00,44.785,152.462,4.34 +2017-12-05 10:02:00,44.4925,152.625,4.36 +2017-12-05 10:17:00,45.3625,152.785,4.37 +2017-12-05 10:32:00,44.3012,152.925,4.39 +2017-12-05 10:47:00,44.1612,152.942,4.42 +2017-12-05 11:02:00,44.6888,152.893,4.43 +2017-12-05 11:17:00,45.1675,152.875,4.44 +2017-12-05 11:32:00,44.6425,152.832,4.46 +2017-12-05 11:47:00,44.445,152.737,4.48 +2017-12-05 12:02:00,44.645,152.647,4.5 +2017-12-05 12:17:00,44.6425,152.625,4.52 +2017-12-05 12:32:00,44.015,152.62,4.54 +2017-12-05 12:47:00,43.8688,152.665,4.56 +2017-12-05 13:02:00,44.6888,152.682,4.57 +2017-12-05 13:17:00,44.3,152.73,4.61 +2017-12-05 13:32:00,44.8288,152.798,4.61 +2017-12-05 13:47:00,44.0625,152.857,4.62 +2017-12-05 14:02:00,44.7363,152.9,4.64 +2017-12-05 14:17:00,43.9187,152.982,4.65 +2017-12-05 14:32:00,44.11,152.98,4.66 +2017-12-05 14:47:00,44.5912,152.975,4.67 +2017-12-05 15:02:00,45.16,152.902,4.68 +2017-12-05 15:17:00,44.3,152.867,4.7 +2017-12-05 15:32:00,44.7412,152.917,4.7 +2017-12-05 15:47:00,44.2075,152.967,4.71 +2017-12-05 16:02:00,44.7412,153.002,4.72 +2017-12-05 16:17:00,44.3975,153.077,4.73 +2017-12-05 16:32:00,44.7862,153.145,4.72 +2017-12-05 16:47:00,44.7825,153.212,4.73 +2017-12-05 17:02:00,43.8225,153.312,4.74 +2017-12-05 17:17:00,44.4437,153.4,4.76 +2017-12-05 17:32:00,44.5413,153.447,4.76 +2017-12-05 17:47:00,44.885,153.518,4.77 +2017-12-05 18:02:00,44.645,153.565,4.77 +2017-12-05 18:17:00,44.35,153.602,4.78 +2017-12-05 18:32:00,43.82,153.677,4.79 +2017-12-05 18:47:00,43.8712,153.792,4.81 +2017-12-05 19:02:00,44.5437,153.862,4.81 +2017-12-05 19:17:00,43.63,153.962,4.81 +2017-12-05 19:32:00,43.8225,154.03,4.82 +2017-12-05 19:47:00,44.7887,154.122,4.82 +2017-12-05 20:02:00,45.2575,154.22,4.82 +2017-12-05 20:17:00,44.4938,154.322,4.82 +2017-12-05 20:32:00,44.7387,154.362,4.83 +2017-12-05 20:47:00,44.3988,154.357,4.84 +2017-12-05 21:02:00,44.1637,154.268,4.85 +2017-12-05 21:17:00,44.7887,154.35,4.86 +2017-12-05 21:32:00,43.7225,154.393,4.88 +2017-12-05 21:47:00,43.9675,154.52,4.89 +2017-12-05 22:02:00,44.5925,154.602,4.9 +2017-12-05 22:17:00,44.3975,154.8,4.91 +2017-12-05 22:32:00,44.2525,154.895,4.92 +2017-12-05 22:47:00,44.7875,155.02,4.93 +2017-12-05 23:02:00,43.7663,155.135,4.95 +2017-12-05 23:17:00,44.5437,155.257,4.96 +2017-12-05 23:32:00,43.7225,155.365,4.97 +2017-12-05 23:47:00,43.87,155.497,4.98 +2017-12-06 00:02:00,44.205,155.57,5.01 +2017-12-06 00:17:00,43.72,155.607,5.02 +2017-12-06 00:32:00,43.3988,155.69,5.02 +2017-12-06 00:47:00,44.2062,155.717,5.03 +2017-12-06 01:02:00,43.58,155.76,5.04 +2017-12-06 01:17:00,44.1587,155.815,5.06 +2017-12-06 01:32:00,44.7875,155.913,5.07 +2017-12-06 01:47:00,43.4887,155.995,5.08 +2017-12-06 02:02:00,44.395,156.072,5.08 +2017-12-06 02:17:00,43.77,156.193,5.09 +2017-12-06 02:32:00,44.3475,156.285,5.1 +2017-12-06 02:47:00,44.445,156.342,5.12 +2017-12-06 03:02:00,44.345,156.438,5.13 +2017-12-06 03:17:00,43.4437,156.557,5.13 +2017-12-06 03:32:00,43.9187,156.622,5.14 +2017-12-06 03:47:00,44.74,156.697,5.15 +2017-12-06 04:02:00,45.16,156.807,5.17 +2017-12-06 04:17:00,44.0625,156.862,5.18 +2017-12-06 04:32:00,44.8787,156.938,5.19 +2017-12-06 04:47:00,43.6738,157.033,5.19 +2017-12-06 05:02:00,44.3025,157.055,5.21 +2017-12-06 05:17:00,44.4962,157.142,5.22 +2017-12-06 05:32:00,44.7875,157.145,5.23 +2017-12-06 05:47:00,45.2575,157.117,5.24 +2017-12-06 06:02:00,45.5575,157.075,5.25 +2017-12-06 06:17:00,44.545,157.0,5.26 +2017-12-06 06:32:00,44.6875,156.967,5.26 +2017-12-06 06:47:00,45.505,157.008,5.27 +2017-12-06 07:02:00,44.0612,157.427,5.27 +2017-12-06 07:17:00,43.6738,157.908,5.28 +2017-12-06 07:32:00,44.115,158.422,5.28 +2017-12-06 07:47:00,44.065,158.815,5.29 +2017-12-06 08:02:00,44.5437,159.09,5.3 +2017-12-06 08:17:00,44.6888,159.272,5.31 +2017-12-06 08:32:00,43.7675,159.34,5.33 +2017-12-06 08:47:00,44.9275,159.443,5.33 +2017-12-06 09:02:00,44.3487,159.455,5.35 +2017-12-06 09:17:00,45.0212,159.503,5.36 +2017-12-06 09:32:00,45.0713,159.512,5.36 +2017-12-06 09:47:00,45.1175,159.492,5.37 +2017-12-06 10:02:00,45.3075,159.492,5.38 +2017-12-06 10:17:00,44.595,159.47,5.4 +2017-12-06 10:32:00,44.3962,159.457,5.42 +2017-12-06 10:47:00,44.3512,159.342,5.42 +2017-12-06 11:02:00,44.5425,159.305,5.43 +2017-12-06 11:17:00,45.5575,159.253,5.44 +2017-12-06 11:32:00,44.64,159.202,5.45 +2017-12-06 11:47:00,45.0687,159.228,5.46 +2017-12-06 12:02:00,44.685,159.247,5.47 +2017-12-06 12:17:00,44.3512,159.327,5.48 +2017-12-06 12:32:00,44.6875,159.55,5.49 +2017-12-06 12:47:00,43.4887,159.702,5.51 +2017-12-06 13:02:00,44.9313,159.895,5.51 +2017-12-06 13:17:00,45.3075,160.142,5.53 +2017-12-06 13:32:00,44.7887,160.372,5.54 +2017-12-06 13:47:00,44.5962,160.59,5.55 +2017-12-06 14:02:00,44.4463,161.677,5.56 +2017-12-06 14:17:00,43.7262,162.19,5.57 +2017-12-06 14:32:00,44.7862,162.802,5.57 +2017-12-06 14:47:00,44.5912,163.372,5.58 +2017-12-06 15:02:00,44.9337,163.805,5.59 +2017-12-06 15:17:00,44.69,164.3,5.6 +2017-12-06 15:32:00,44.9762,164.805,5.6 +2017-12-06 15:47:00,44.7875,165.12,5.6 +2017-12-06 16:02:00,44.74,165.455,5.61 +2017-12-06 16:17:00,44.4012,165.7,5.62 +2017-12-06 16:32:00,44.835,165.935,5.62 +2017-12-06 16:47:00,44.9325,166.3,5.63 +2017-12-06 17:02:00,44.4475,166.443,5.63 +2017-12-06 17:17:00,44.5425,166.56,5.64 +2017-12-06 17:32:00,45.2125,166.758,5.65 +2017-12-06 17:47:00,44.74,166.872,5.65 +2017-12-06 18:02:00,45.0225,167.087,5.65 +2017-12-06 18:17:00,44.5413,167.133,5.66 +2017-12-06 18:32:00,44.9313,167.245,5.67 +2017-12-06 18:47:00,43.875,167.285,5.67 +2017-12-06 19:02:00,44.545,167.447,5.67 +2017-12-06 19:17:00,45.36,167.505,5.66 +2017-12-06 19:32:00,44.255,167.54,5.67 +2017-12-06 19:47:00,44.4962,167.633,5.67 +2017-12-06 20:02:00,44.3025,167.7,5.68 +2017-12-06 20:17:00,44.8875,167.712,5.68 +2017-12-06 20:32:00,44.015,167.797,5.68 +2017-12-06 20:47:00,44.4487,167.8,5.67 +2017-12-06 21:02:00,44.4475,167.767,5.68 +2017-12-06 21:17:00,43.9212,167.845,5.69 +2017-12-06 21:32:00,43.7712,167.883,5.69 +2017-12-06 21:47:00,44.545,167.932,5.69 +2017-12-06 22:02:00,43.7237,167.947,5.7 +2017-12-06 22:17:00,43.3538,168.035,5.7 +2017-12-06 22:32:00,44.5938,168.035,5.71 +2017-12-06 22:47:00,44.4962,168.017,5.71 +2017-12-06 23:02:00,43.8712,167.883,5.72 +2017-12-06 23:17:00,43.1113,167.818,5.72 +2017-12-06 23:32:00,43.7225,167.913,5.73 +2017-12-06 23:47:00,44.165,167.98,5.73 +2017-12-07 00:02:00,43.9662,168.015,5.73 +2017-12-07 00:17:00,44.5462,168.08,5.73 +2017-12-07 00:32:00,43.7712,168.147,5.73 +2017-12-07 00:47:00,43.49,168.188,5.74 +2017-12-07 01:02:00,43.7225,168.14,5.74 +2017-12-07 01:17:00,43.5362,168.262,5.74 +2017-12-07 01:32:00,44.0687,168.27,5.74 +2017-12-07 01:47:00,44.835,168.357,5.75 +2017-12-07 02:02:00,44.0163,168.435,5.75 +2017-12-07 02:17:00,43.4,168.512,5.75 +2017-12-07 02:32:00,43.9187,168.42,5.75 +2017-12-07 02:47:00,43.2513,168.435,5.75 +2017-12-07 03:02:00,44.45,168.487,5.75 +2017-12-07 03:17:00,43.3512,168.49,5.75 +2017-12-07 03:32:00,43.2513,168.572,5.76 +2017-12-07 03:47:00,44.2087,168.63,5.76 +2017-12-07 04:02:00,43.535,168.61,5.76 +2017-12-07 04:17:00,44.0687,168.717,5.75 +2017-12-07 04:32:00,43.6312,168.697,5.75 +2017-12-07 04:47:00,44.5938,168.72,5.75 +2017-12-07 05:02:00,43.7725,168.758,5.74 +2017-12-07 05:17:00,43.8725,168.635,5.73 +2017-12-07 05:32:00,44.3,168.667,5.72 +2017-12-07 05:47:00,43.67,168.652,5.71 +2017-12-07 06:02:00,43.2988,168.675,5.7 +2017-12-07 06:17:00,43.485,168.685,5.68 +2017-12-07 06:32:00,44.6437,168.732,5.67 +2017-12-07 06:47:00,43.3988,168.635,5.66 +2017-12-07 07:02:00,43.8237,168.555,5.65 +2017-12-07 07:17:00,44.2612,168.375,5.63 +2017-12-07 07:32:00,45.2612,168.445,5.62 +2017-12-07 07:47:00,44.4475,168.473,5.6 +2017-12-07 08:02:00,44.8363,168.56,5.59 +2017-12-07 08:17:00,43.6775,168.58,5.58 +2017-12-07 08:32:00,44.1137,168.672,5.57 +2017-12-07 08:47:00,44.4025,168.737,5.55 +2017-12-07 09:02:00,44.065,168.68,5.53 +2017-12-07 09:17:00,44.1162,168.605,5.51 +2017-12-07 09:32:00,44.3037,168.478,5.51 +2017-12-07 09:47:00,43.7687,168.43,5.51 +2017-12-07 10:02:00,44.9788,168.357,5.5 +2017-12-07 10:17:00,45.2612,168.415,5.5 +2017-12-07 10:32:00,44.93,168.295,5.49 +2017-12-07 10:47:00,45.505,168.307,5.52 +2017-12-07 11:02:00,44.595,168.25,5.52 +2017-12-07 11:17:00,44.8825,168.158,5.53 +2017-12-07 11:32:00,43.9163,168.145,5.5 +2017-12-07 11:47:00,44.0638,168.008,5.48 +2017-12-07 12:02:00,44.4938,167.962,5.48 +2017-12-07 12:17:00,44.69,167.85,5.49 +2017-12-07 12:32:00,44.305,167.758,5.5 +2017-12-07 12:47:00,44.9313,167.758,5.5 +2017-12-07 13:02:00,44.3487,167.633,5.5 +2017-12-07 13:17:00,44.9287,167.585,5.5 +2017-12-07 13:32:00,44.16,167.592,5.51 +2017-12-07 13:47:00,44.5925,167.503,5.51 +2017-12-07 14:02:00,44.6425,167.565,5.51 +2017-12-07 14:17:00,45.1225,167.485,5.52 +2017-12-07 14:32:00,44.9812,167.517,5.53 +2017-12-07 14:47:00,44.1125,167.473,5.54 +2017-12-07 15:02:00,44.835,167.485,5.54 +2017-12-07 15:17:00,44.3012,167.503,5.54 +2017-12-07 15:32:00,45.07,167.452,5.54 +2017-12-07 15:47:00,44.5462,167.383,5.53 +2017-12-07 16:02:00,44.8825,167.305,5.53 +2017-12-07 16:17:00,44.2137,167.21,5.52 +2017-12-07 16:32:00,44.3962,167.18,5.52 +2017-12-07 16:47:00,43.6312,167.035,5.51 +2017-12-07 17:02:00,44.3525,167.035,5.5 +2017-12-07 17:17:00,44.5938,166.902,5.49 +2017-12-07 17:32:00,44.255,166.86,5.48 +2017-12-07 17:47:00,44.7875,166.797,5.46 +2017-12-07 18:02:00,44.5962,166.67,5.44 +2017-12-07 18:17:00,45.2162,166.612,5.43 +2017-12-07 18:32:00,44.595,166.46,5.41 +2017-12-07 18:47:00,44.74,166.242,5.41 +2017-12-07 19:02:00,44.4463,166.065,5.4 +2017-12-07 19:17:00,44.645,166.092,5.39 +2017-12-07 19:32:00,43.6775,165.99,5.39 +2017-12-07 19:47:00,44.7837,165.91,5.39 +2017-12-07 20:02:00,44.9337,165.892,5.39 +2017-12-07 20:17:00,44.3487,165.758,5.39 +2017-12-07 20:32:00,44.1612,165.68,5.39 +2017-12-07 20:47:00,45.0675,165.69,5.4 +2017-12-07 21:02:00,44.3025,165.67,5.39 +2017-12-07 21:17:00,44.445,165.57,5.4 +2017-12-07 21:32:00,43.7687,165.605,5.4 +2017-12-07 21:47:00,44.4475,165.54,5.39 +2017-12-07 22:02:00,44.0163,165.575,5.39 +2017-12-07 22:17:00,44.6912,165.552,5.39 +2017-12-07 22:32:00,43.5337,165.52,5.39 +2017-12-07 22:47:00,43.5788,165.452,5.38 +2017-12-07 23:02:00,44.2137,165.445,5.37 +2017-12-07 23:17:00,44.8312,165.533,5.38 +2017-12-07 23:32:00,44.215,165.538,5.38 +2017-12-07 23:47:00,44.6875,165.582,5.38 +2017-12-08 00:02:00,45.215,165.562,5.39 +2017-12-08 00:17:00,44.2113,165.6,5.39 +2017-12-08 00:32:00,44.4962,165.658,5.4 +2017-12-08 00:47:00,44.9313,165.712,5.39 +2017-12-08 01:02:00,44.4475,165.747,5.39 +2017-12-08 01:17:00,44.545,165.753,5.4 +2017-12-08 01:32:00,44.4962,165.832,5.39 +2017-12-08 01:47:00,44.0125,165.857,5.39 +2017-12-08 02:02:00,44.8375,165.943,5.39 +2017-12-08 02:17:00,44.6437,166.047,5.4 +2017-12-08 02:32:00,44.255,166.017,5.4 +2017-12-08 02:47:00,44.495,165.995,5.39 +2017-12-08 03:02:00,45.1225,166.047,5.38 +2017-12-08 03:17:00,44.8875,166.082,5.39 +2017-12-08 03:32:00,44.3025,166.12,5.39 +2017-12-08 03:47:00,45.0725,166.147,5.39 +2017-12-08 04:02:00,44.7387,166.125,5.39 +2017-12-08 04:17:00,44.8838,166.033,5.38 +2017-12-08 04:32:00,43.9675,165.962,5.39 +2017-12-08 04:47:00,44.305,166.042,5.4 +2017-12-08 05:02:00,44.4012,166.15,5.4 +2017-12-08 05:17:00,44.3975,166.2,5.38 +2017-12-08 05:32:00,44.35,166.225,5.39 +2017-12-08 05:47:00,44.6925,166.325,5.39 +2017-12-08 06:02:00,43.7725,166.365,5.39 +2017-12-08 06:17:00,43.9688,166.357,5.38 +2017-12-08 06:32:00,45.07,166.41,5.37 +2017-12-08 06:47:00,44.8862,166.497,5.36 +2017-12-08 07:02:00,43.725,166.473,5.33 +2017-12-08 07:17:00,44.8363,166.482,5.32 +2017-12-08 07:32:00,43.6775,166.43,5.32 +2017-12-08 07:47:00,44.7913,166.337,5.3 +2017-12-08 08:02:00,44.2562,166.24,5.3 +2017-12-08 08:17:00,45.0238,166.205,5.29 +2017-12-08 08:32:00,44.4463,166.045,5.27 +2017-12-08 08:47:00,44.255,166.052,5.27 +2017-12-08 09:02:00,44.4487,166.092,5.28 +2017-12-08 09:17:00,44.35,166.13,5.26 +2017-12-08 09:32:00,44.5912,166.18,5.26 +2017-12-08 09:47:00,44.935,166.255,5.26 +2017-12-08 10:02:00,44.1687,166.26,5.27 +2017-12-08 10:17:00,44.2562,166.247,5.27 +2017-12-08 10:32:00,45.165,166.258,5.25 +2017-12-08 10:47:00,44.645,166.175,5.24 +2017-12-08 11:02:00,44.3475,166.115,5.23 +2017-12-08 11:17:00,45.26,166.003,5.23 +2017-12-08 11:32:00,44.1637,165.932,5.23 +2017-12-08 11:47:00,44.26,165.84,5.22 +2017-12-08 12:02:00,44.2087,165.783,5.22 +2017-12-08 12:17:00,44.885,165.777,5.22 +2017-12-08 12:32:00,43.7738,165.753,5.23 +2017-12-08 12:47:00,44.7375,165.67,5.23 +2017-12-08 13:02:00,44.35,165.595,5.23 +2017-12-08 13:17:00,43.4437,165.535,5.23 +2017-12-08 13:32:00,44.3988,165.427,5.23 +2017-12-08 13:47:00,44.545,165.348,5.24 +2017-12-08 14:02:00,44.015,165.195,5.25 +2017-12-08 14:17:00,44.495,164.967,5.25 +2017-12-08 14:32:00,44.4437,164.95,5.25 +2017-12-08 14:47:00,43.7237,164.932,5.25 +2017-12-08 15:02:00,43.9187,164.932,5.25 +2017-12-08 15:17:00,44.4463,164.892,5.24 +2017-12-08 15:32:00,44.4512,164.902,5.24 +2017-12-08 15:47:00,44.74,164.885,5.23 +2017-12-08 16:02:00,43.6762,164.848,5.22 +2017-12-08 16:17:00,43.915,164.78,5.21 +2017-12-08 16:32:00,44.2537,164.732,5.21 +2017-12-08 16:47:00,43.9175,164.663,5.19 +2017-12-08 17:02:00,44.0137,164.61,5.18 +2017-12-08 17:17:00,43.8712,164.557,5.16 +2017-12-08 17:32:00,43.445,164.51,5.14 +2017-12-08 17:47:00,44.2513,164.535,5.13 +2017-12-08 18:02:00,44.6912,164.533,5.12 +2017-12-08 18:17:00,43.965,164.557,5.08 +2017-12-08 18:32:00,43.58,164.56,5.07 +2017-12-08 18:47:00,43.92,164.58,5.05 +2017-12-08 19:02:00,44.4962,164.622,5.03 +2017-12-08 19:17:00,44.3962,164.62,5.01 +2017-12-08 19:32:00,43.8225,164.66,5.0 +2017-12-08 19:47:00,43.4875,164.693,4.98 +2017-12-08 20:02:00,44.4475,164.685,4.95 +2017-12-08 20:17:00,44.3037,164.717,4.92 +2017-12-08 20:32:00,44.165,164.695,4.91 +2017-12-08 20:47:00,43.6775,164.755,4.89 +2017-12-08 21:02:00,43.5825,164.79,4.87 +2017-12-08 21:17:00,44.3037,164.81,4.85 +2017-12-08 21:32:00,44.5462,164.815,4.84 +2017-12-08 21:47:00,44.3512,164.853,4.82 +2017-12-08 22:02:00,44.255,164.88,4.8 +2017-12-08 22:17:00,43.35,164.925,4.77 +2017-12-08 22:32:00,44.3025,164.94,4.76 +2017-12-08 22:47:00,43.63,165.035,4.74 +2017-12-08 23:02:00,44.3025,165.075,4.72 +2017-12-08 23:17:00,44.2137,165.005,4.71 +2017-12-08 23:32:00,44.1137,164.947,4.69 +2017-12-08 23:47:00,43.8725,164.932,4.68 +2017-12-09 00:02:00,44.7425,164.932,4.67 +2017-12-09 00:17:00,44.79,164.935,4.66 +2017-12-09 00:32:00,43.5812,165.01,4.63 +2017-12-09 00:47:00,44.6462,165.06,4.62 +2017-12-09 01:02:00,44.5437,165.047,4.61 +2017-12-09 01:17:00,44.0163,165.062,4.61 +2017-12-09 01:32:00,43.7738,165.035,4.59 +2017-12-09 01:47:00,44.545,165.062,4.57 +2017-12-09 02:02:00,43.8737,165.077,4.56 +2017-12-09 02:17:00,44.6475,165.087,4.55 +2017-12-09 02:32:00,43.9662,165.112,4.55 +2017-12-09 02:47:00,44.4938,165.105,4.53 +2017-12-09 03:02:00,44.4487,165.105,4.52 +2017-12-09 03:17:00,43.21,165.057,4.51 +2017-12-09 03:32:00,44.2075,165.122,4.49 +2017-12-09 03:47:00,44.1162,165.105,4.48 +2017-12-09 04:02:00,44.1175,165.175,4.45 +2017-12-09 04:17:00,44.21,165.245,4.43 +2017-12-09 04:32:00,43.675,165.3,4.41 +2017-12-09 04:47:00,44.065,165.392,4.4 +2017-12-09 05:02:00,44.645,165.438,4.38 +2017-12-09 05:17:00,44.115,165.527,4.36 +2017-12-09 05:32:00,44.3037,165.603,4.36 +2017-12-09 05:47:00,43.7738,165.633,4.35 +2017-12-09 06:02:00,44.1162,165.702,4.34 +2017-12-09 06:17:00,44.0638,165.682,4.33 +2017-12-09 06:32:00,44.545,165.728,4.3 +2017-12-09 06:47:00,43.4912,165.62,4.3 +2017-12-09 07:02:00,44.0238,165.552,4.28 +2017-12-09 07:17:00,43.6787,165.505,4.27 +2017-12-09 07:32:00,44.7862,165.467,4.26 +2017-12-09 07:47:00,44.0187,165.375,4.25 +2017-12-09 08:02:00,44.9812,165.455,4.24 +2017-12-09 08:17:00,43.6787,165.517,4.23 +2017-12-09 08:32:00,44.4975,165.615,4.21 +2017-12-09 08:47:00,44.7387,165.728,4.19 +2017-12-09 09:02:00,43.7725,165.902,4.19 +2017-12-09 09:17:00,44.2575,165.947,4.17 +2017-12-09 09:32:00,44.1125,165.94,4.17 +2017-12-09 09:47:00,44.3975,165.95,4.16 +2017-12-09 10:02:00,44.3962,165.938,4.15 +2017-12-09 10:17:00,44.1637,165.952,4.15 +2017-12-09 10:32:00,43.8712,165.975,4.15 +2017-12-09 10:47:00,44.985,166.038,4.15 +2017-12-09 11:02:00,43.6787,166.092,4.15 +2017-12-09 11:17:00,43.7712,166.112,4.16 +2017-12-09 11:32:00,43.6338,166.14,4.17 +2017-12-09 11:47:00,43.77,166.193,4.17 +2017-12-09 12:02:00,43.6287,166.232,4.17 +2017-12-09 12:17:00,43.6275,166.188,4.17 +2017-12-09 12:32:00,43.63,166.228,4.16 +2017-12-09 12:47:00,43.5863,166.283,4.17 +2017-12-09 13:02:00,43.1113,166.332,4.17 +2017-12-09 13:17:00,44.165,166.345,4.18 +2017-12-09 13:32:00,43.63,166.467,4.17 +2017-12-09 13:47:00,43.9225,166.538,4.15 +2017-12-09 14:02:00,44.3037,166.568,4.15 +2017-12-09 14:17:00,43.5312,166.717,4.15 +2017-12-09 14:32:00,43.4425,166.805,4.14 +2017-12-09 14:47:00,44.4938,166.885,4.14 +2017-12-09 15:02:00,43.155,166.975,4.13 +2017-12-09 15:17:00,43.625,167.082,4.13 +2017-12-09 15:32:00,43.9187,167.177,4.11 +2017-12-09 15:47:00,43.5375,167.247,4.09 +2017-12-09 16:02:00,43.0163,167.332,4.06 +2017-12-09 16:17:00,44.115,167.38,4.04 +2017-12-09 16:32:00,43.5775,167.427,4.02 +2017-12-09 16:47:00,43.3988,167.515,4.0 +2017-12-09 17:02:00,43.9712,167.582,3.99 +2017-12-09 17:17:00,43.5325,167.658,3.96 +2017-12-09 17:32:00,43.8175,167.732,3.94 +2017-12-09 17:47:00,43.87,167.835,3.92 +2017-12-09 18:02:00,44.4987,167.88,3.92 +2017-12-09 18:17:00,42.8637,167.982,3.9 +2017-12-09 18:32:00,43.5812,167.98,3.9 +2017-12-09 18:47:00,44.6888,168.085,3.89 +2017-12-09 19:02:00,43.2038,168.11,3.88 +2017-12-09 19:17:00,42.8112,168.172,3.87 +2017-12-09 19:32:00,43.1113,168.3,3.87 +2017-12-09 19:47:00,44.1637,168.32,3.86 +2017-12-09 20:02:00,43.3,168.367,3.84 +2017-12-09 20:17:00,44.1125,168.378,3.83 +2017-12-09 20:32:00,43.7687,168.29,3.83 +2017-12-09 20:47:00,42.9662,168.165,3.83 +2017-12-09 21:02:00,43.1562,168.163,3.83 +2017-12-09 21:17:00,43.155,168.267,3.82 +2017-12-09 21:32:00,43.485,168.312,3.81 +2017-12-09 21:47:00,43.675,168.42,3.82 +2017-12-09 22:02:00,43.8187,168.485,3.81 +2017-12-09 22:17:00,42.9137,168.575,3.81 +2017-12-09 22:32:00,43.4837,168.65,3.8 +2017-12-09 22:47:00,43.4437,168.72,3.79 +2017-12-09 23:02:00,43.2062,168.762,3.79 +2017-12-09 23:17:00,43.9675,168.79,3.77 +2017-12-09 23:32:00,42.965,168.86,3.76 +2017-12-09 23:47:00,43.7725,168.867,3.74 +2017-12-10 00:02:00,43.5825,168.9,3.73 +2017-12-10 00:17:00,43.5812,168.92,3.71 +2017-12-10 00:32:00,44.0187,168.98,3.7 +2017-12-10 00:47:00,43.3012,169.012,3.7 +2017-12-10 01:02:00,43.5325,169.04,3.68 +2017-12-10 01:17:00,43.97,169.062,3.68 +2017-12-10 01:32:00,42.7712,169.04,3.66 +2017-12-10 01:47:00,43.82,169.055,3.64 +2017-12-10 02:02:00,42.9662,169.152,3.62 +2017-12-10 02:17:00,42.8175,169.182,3.61 +2017-12-10 02:32:00,43.7212,169.237,3.59 +2017-12-10 02:47:00,43.77,169.27,3.58 +2017-12-10 03:02:00,43.8187,169.28,3.56 +2017-12-10 03:17:00,43.1125,169.26,3.54 +2017-12-10 03:32:00,43.9688,169.272,3.53 +2017-12-10 03:47:00,43.6275,169.272,3.51 +2017-12-10 04:02:00,42.8162,169.327,3.51 +2017-12-10 04:17:00,43.915,169.285,3.49 +2017-12-10 04:32:00,43.5312,169.325,3.47 +2017-12-10 04:47:00,43.625,169.332,3.45 +2017-12-10 05:02:00,43.5312,169.322,3.44 +2017-12-10 05:17:00,43.4463,169.267,3.43 +2017-12-10 05:32:00,43.5788,169.307,3.41 +2017-12-10 05:47:00,43.3438,169.34,3.39 +2017-12-10 06:02:00,44.3975,169.297,3.38 +2017-12-10 06:17:00,43.3937,169.315,3.37 +2017-12-10 06:32:00,43.82,169.22,3.35 +2017-12-10 06:47:00,42.3325,169.147,3.33 +2017-12-10 07:02:00,43.3988,169.04,3.32 +2017-12-10 07:17:00,43.1562,168.97,3.3 +2017-12-10 07:32:00,43.2075,168.927,3.29 +2017-12-10 07:47:00,44.445,168.812,3.28 +2017-12-10 08:02:00,43.9175,168.848,3.26 +2017-12-10 08:17:00,43.5337,168.885,3.26 +2017-12-10 08:32:00,43.5825,168.975,3.25 +2017-12-10 08:47:00,43.6762,169.052,3.25 +2017-12-10 09:02:00,44.0625,169.112,3.24 +2017-12-10 09:17:00,43.6263,169.185,3.22 +2017-12-10 09:32:00,43.72,169.193,3.21 +2017-12-10 09:47:00,42.965,169.125,3.21 +2017-12-10 10:02:00,44.015,169.047,3.2 +2017-12-10 10:17:00,43.9662,168.925,3.2 +2017-12-10 10:32:00,43.9163,168.825,3.19 +2017-12-10 10:47:00,43.9187,168.785,3.2 +2017-12-10 11:02:00,43.6275,168.715,3.19 +2017-12-10 11:17:00,43.5837,168.658,3.19 +2017-12-10 11:32:00,43.4012,168.647,3.18 +2017-12-10 11:47:00,43.7262,168.642,3.16 +2017-12-10 12:02:00,43.5775,168.663,3.16 +2017-12-10 12:17:00,43.6287,168.705,3.16 +2017-12-10 12:32:00,43.5788,168.682,3.16 +2017-12-10 12:47:00,43.8712,168.7,3.15 +2017-12-10 13:02:00,42.8637,168.697,3.13 +2017-12-10 13:17:00,43.305,168.693,3.12 +2017-12-10 13:32:00,44.2125,168.705,3.12 +2017-12-10 13:47:00,44.0163,168.67,3.12 +2017-12-10 14:02:00,42.72,168.688,3.1 +2017-12-10 14:17:00,43.9212,168.637,3.09 +2017-12-10 14:32:00,44.065,168.603,3.09 +2017-12-10 14:47:00,43.3988,168.525,3.06 +2017-12-10 15:02:00,43.3975,168.535,3.04 +2017-12-10 15:17:00,44.0662,168.467,2.99 +2017-12-10 15:32:00,43.6762,168.508,2.94 +2017-12-10 15:47:00,43.5337,168.517,2.93 +2017-12-10 16:02:00,44.395,168.56,2.93 +2017-12-10 16:17:00,43.5337,168.562,2.9 +2017-12-10 16:32:00,43.5788,168.568,2.9 +2017-12-10 16:47:00,42.7687,168.505,2.88 +2017-12-10 17:02:00,43.3012,168.467,2.87 +2017-12-10 17:17:00,43.9187,168.522,2.84 +2017-12-10 17:32:00,43.8712,168.517,2.82 +2017-12-10 17:47:00,43.1125,168.505,2.82 +2017-12-10 18:02:00,44.0163,168.475,2.8 +2017-12-10 18:17:00,43.7675,168.452,2.77 +2017-12-10 18:32:00,42.96,168.432,2.75 +2017-12-10 18:47:00,43.625,168.36,2.73 +2017-12-10 19:02:00,43.6275,168.353,2.72 +2017-12-10 19:17:00,44.3462,168.33,2.7 +2017-12-10 19:32:00,43.8725,168.283,2.68 +2017-12-10 19:47:00,43.72,168.253,2.67 +2017-12-10 20:02:00,43.63,168.277,2.66 +2017-12-10 20:17:00,43.2075,168.245,2.65 +2017-12-10 20:32:00,43.5837,168.247,2.64 +2017-12-10 20:47:00,43.4912,168.258,2.64 +2017-12-10 21:02:00,43.58,168.21,2.63 +2017-12-10 21:17:00,44.065,168.12,2.62 +2017-12-10 21:32:00,43.5812,168.033,2.63 +2017-12-10 21:47:00,43.6787,167.927,2.62 +2017-12-10 22:02:00,43.1113,167.887,2.61 +2017-12-10 22:17:00,42.7725,167.897,2.61 +2017-12-10 22:32:00,44.0638,167.85,2.6 +2017-12-10 22:47:00,43.5837,167.78,2.6 +2017-12-10 23:02:00,44.1162,167.728,2.61 +2017-12-10 23:17:00,43.58,167.665,2.6 +2017-12-10 23:32:00,43.445,167.723,2.6 +2017-12-10 23:47:00,44.21,167.697,2.6 +2017-12-11 00:02:00,43.4825,167.688,2.61 +2017-12-11 00:17:00,43.8225,167.633,2.62 +2017-12-11 00:32:00,43.5812,167.655,2.64 +2017-12-11 00:47:00,43.1637,167.73,2.64 +2017-12-11 01:02:00,44.2575,167.77,2.64 +2017-12-11 01:17:00,43.3538,167.81,2.65 +2017-12-11 01:32:00,43.7212,167.878,2.65 +2017-12-11 01:47:00,43.5788,167.927,2.65 +2017-12-11 02:02:00,43.2062,167.952,2.66 +2017-12-11 02:17:00,43.3487,167.973,2.66 +2017-12-11 02:32:00,43.3,167.908,2.67 +2017-12-11 02:47:00,42.5325,167.943,2.68 +2017-12-11 03:02:00,43.3975,167.965,2.68 +2017-12-11 03:17:00,43.6275,167.955,2.69 +2017-12-11 03:32:00,43.3012,167.957,2.7 +2017-12-11 03:47:00,43.1125,167.995,2.7 +2017-12-11 04:02:00,43.1575,168.025,2.69 +2017-12-11 04:17:00,44.0625,167.96,2.69 +2017-12-11 04:32:00,43.015,167.945,2.69 +2017-12-11 04:47:00,43.58,167.947,2.68 +2017-12-11 05:02:00,43.1113,167.892,2.68 +2017-12-11 05:17:00,43.8688,167.922,2.68 +2017-12-11 05:32:00,43.065,167.943,2.67 +2017-12-11 05:47:00,43.535,167.935,2.67 +2017-12-11 06:02:00,43.6312,167.925,2.67 +2017-12-11 06:17:00,42.9625,167.892,2.68 +2017-12-11 06:32:00,43.2087,167.905,2.67 +2017-12-11 06:47:00,43.8187,167.86,2.65 +2017-12-11 07:02:00,42.865,167.797,2.65 +2017-12-11 07:17:00,43.01,167.705,2.64 +2017-12-11 07:32:00,43.3037,167.64,2.64 +2017-12-11 07:47:00,43.3063,167.53,2.63 +2017-12-11 08:02:00,43.2087,167.505,2.63 +2017-12-11 08:17:00,43.8712,167.47,2.63 +2017-12-11 08:32:00,43.725,167.492,2.62 +2017-12-11 08:47:00,43.7237,167.547,2.62 +2017-12-11 09:02:00,42.865,167.615,2.62 +2017-12-11 09:17:00,43.3037,167.665,2.62 +2017-12-11 09:32:00,43.9163,167.728,2.61 +2017-12-11 09:47:00,43.4887,167.725,2.6 +2017-12-11 10:02:00,43.4863,167.7,2.59 +2017-12-11 10:17:00,43.7225,167.625,2.59 +2017-12-11 10:32:00,43.2562,167.598,2.58 +2017-12-11 10:47:00,42.72,167.59,2.59 +2017-12-11 11:02:00,43.82,167.58,2.6 +2017-12-11 11:17:00,43.4425,167.587,2.6 +2017-12-11 11:32:00,43.3988,167.685,2.6 +2017-12-11 11:47:00,43.4887,167.72,2.61 +2017-12-11 12:02:00,42.9163,167.758,2.62 +2017-12-11 12:17:00,42.9187,167.815,2.63 +2017-12-11 12:32:00,43.3988,167.913,2.62 +2017-12-11 12:47:00,43.49,168.03,2.63 +2017-12-11 13:02:00,43.1125,168.13,2.63 +2017-12-11 13:17:00,42.4313,168.255,2.64 +2017-12-11 13:32:00,44.255,168.39,2.64 +2017-12-11 13:47:00,43.92,168.512,2.65 +2017-12-11 14:02:00,42.48,168.72,2.66 +2017-12-11 14:17:00,44.1637,168.875,2.67 +2017-12-11 14:32:00,37.5788,169.103,2.68 +2017-12-11 14:47:00,42.5112,169.285,2.7 +2017-12-11 15:02:00,42.6987,169.435,2.69 +2017-12-11 15:17:00,43.4613,169.515,2.69 +2017-12-11 15:32:00,42.6512,169.74,2.69 +2017-12-11 15:47:00,43.46,169.938,2.7 +2017-12-11 16:02:00,42.7913,170.1,2.71 +2017-12-11 16:17:00,43.0837,170.288,2.71 +2017-12-11 16:32:00,42.1075,170.417,2.72 +2017-12-11 16:47:00,42.7438,170.517,2.71 +2017-12-11 17:02:00,42.6937,170.562,2.72 +2017-12-11 17:17:00,42.11,170.665,2.71 +2017-12-11 17:32:00,43.035,170.677,2.71 +2017-12-11 17:47:00,41.9562,170.79,2.72 +2017-12-11 18:02:00,40.6425,170.82,2.72 +2017-12-11 18:17:00,44.3225,170.895,2.73 +2017-12-11 18:32:00,42.06,170.94,2.73 +2017-12-11 18:47:00,42.5025,170.935,2.74 +2017-12-11 19:02:00,42.1562,170.955,2.74 +2017-12-11 19:17:00,42.21,170.987,2.75 +2017-12-11 19:32:00,41.37,171.008,2.75 +2017-12-11 19:47:00,42.3075,170.992,2.75 +2017-12-11 20:02:00,42.7387,170.935,2.75 +2017-12-11 20:17:00,43.0812,170.878,2.76 +2017-12-11 20:32:00,42.3037,170.75,2.78 +2017-12-11 20:47:00,42.355,170.735,2.79 +2017-12-11 21:02:00,42.8875,170.72,2.79 +2017-12-11 21:17:00,43.0875,170.762,2.79 +2017-12-11 21:32:00,42.6488,170.825,2.8 +2017-12-11 21:47:00,43.2712,170.837,2.8 +2017-12-11 22:02:00,42.4512,170.892,2.81 +2017-12-11 22:17:00,43.035,170.853,2.82 +2017-12-11 22:32:00,43.4112,170.825,2.83 +2017-12-11 22:47:00,42.9337,170.807,2.84 +2017-12-11 23:02:00,44.1325,170.772,2.86 +2017-12-11 23:17:00,42.6038,170.76,2.86 +2017-12-11 23:32:00,42.5025,170.737,2.87 +2017-12-11 23:47:00,42.3075,170.745,2.87 +2017-12-12 00:02:00,42.3575,170.765,2.89 +2017-12-12 00:17:00,43.1775,170.792,2.9 +2017-12-12 00:32:00,42.255,170.753,2.91 +2017-12-12 00:47:00,42.84,170.75,2.91 +2017-12-12 01:02:00,43.5512,170.728,2.92 +2017-12-12 01:17:00,42.5512,170.712,2.92 +2017-12-12 01:32:00,41.7637,170.655,2.93 +2017-12-12 01:47:00,42.1562,170.622,2.93 +2017-12-12 02:02:00,42.94,170.587,2.94 +2017-12-12 02:17:00,43.13,170.538,2.95 +2017-12-12 02:32:00,42.205,170.49,2.96 +2017-12-12 02:47:00,42.455,170.415,2.97 +2017-12-12 03:02:00,42.5088,170.35,2.99 +2017-12-12 03:17:00,42.405,170.288,3.0 +2017-12-12 03:32:00,42.3063,170.212,3.01 +2017-12-12 03:47:00,42.5475,170.172,3.02 +2017-12-12 04:02:00,42.8412,170.193,3.03 +2017-12-12 04:17:00,42.6425,170.182,3.04 +2017-12-12 04:32:00,43.18,170.14,3.05 +2017-12-12 04:47:00,42.5025,170.112,3.06 +2017-12-12 05:02:00,42.8862,170.112,3.07 +2017-12-12 05:17:00,43.32,170.082,3.07 +2017-12-12 05:32:00,42.3538,170.185,3.08 +2017-12-12 05:47:00,42.4512,170.185,3.09 +2017-12-12 06:02:00,42.9362,170.19,3.09 +2017-12-12 06:17:00,43.18,170.225,3.1 +2017-12-12 06:32:00,42.1087,170.235,3.1 +2017-12-12 06:47:00,40.9837,170.11,3.1 +2017-12-12 07:02:00,41.32,170.092,3.11 +2017-12-12 07:17:00,42.1087,170.103,3.12 +2017-12-12 07:32:00,42.2113,170.147,3.12 +2017-12-12 07:47:00,43.0375,170.207,3.12 +2017-12-12 08:02:00,42.1087,170.325,3.12 +2017-12-12 08:17:00,42.4062,170.883,3.12 +2017-12-12 08:32:00,42.2087,171.372,3.11 +2017-12-12 08:47:00,43.27,171.63,3.12 +2017-12-12 09:02:00,40.9337,171.883,3.12 +2017-12-12 09:17:00,43.125,171.967,3.13 +2017-12-12 09:32:00,42.4525,171.913,3.15 +2017-12-12 09:47:00,42.5013,171.845,3.18 +2017-12-12 10:02:00,41.8125,171.8,3.2 +2017-12-12 10:17:00,42.0563,171.78,3.21 +2017-12-12 10:32:00,42.3538,171.762,3.21 +2017-12-12 10:47:00,42.3063,171.725,3.22 +2017-12-12 11:02:00,42.5013,171.607,3.21 +2017-12-12 11:17:00,41.4187,171.587,3.22 +2017-12-12 11:32:00,42.89,171.605,3.23 +2017-12-12 11:47:00,43.455,171.545,3.24 +2017-12-12 12:02:00,42.155,171.568,3.24 +2017-12-12 12:17:00,42.1575,171.617,3.25 +2017-12-12 12:32:00,42.89,171.697,3.26 +2017-12-12 12:47:00,42.105,171.788,3.27 +2017-12-12 13:02:00,43.365,171.76,3.28 +2017-12-12 13:17:00,42.4525,171.892,3.3 +2017-12-12 13:32:00,42.7887,172.022,3.32 +2017-12-12 13:47:00,44.225,172.223,3.34 +2017-12-12 14:02:00,42.055,172.415,3.36 +2017-12-12 14:17:00,42.9487,172.54,3.37 +2017-12-12 14:32:00,42.7375,172.557,3.39 +2017-12-12 14:47:00,43.3662,172.64,3.4 +2017-12-12 15:02:00,42.26,172.725,3.4 +2017-12-12 15:17:00,43.7438,172.785,3.42 +2017-12-12 15:32:00,42.6437,172.84,3.43 +2017-12-12 15:47:00,42.1062,172.95,3.44 +2017-12-12 16:02:00,42.79,172.997,3.45 +2017-12-12 16:17:00,42.7837,173.092,3.46 +2017-12-12 16:32:00,41.82,173.165,3.48 +2017-12-12 16:47:00,42.7913,173.25,3.5 +2017-12-12 17:02:00,43.225,173.297,3.51 +2017-12-12 17:17:00,41.42,173.345,3.52 +2017-12-12 17:32:00,43.6025,173.405,3.53 +2017-12-12 17:47:00,42.0575,173.51,3.55 +2017-12-12 18:02:00,42.985,173.607,3.55 +2017-12-12 18:17:00,42.2575,173.715,3.56 +2017-12-12 18:32:00,42.3562,173.8,3.56 +2017-12-12 18:47:00,42.505,173.892,3.57 +2017-12-12 19:02:00,43.3237,173.96,3.57 +2017-12-12 19:17:00,42.2062,174.038,3.56 +2017-12-12 19:32:00,43.0387,174.135,3.55 +2017-12-12 19:47:00,42.985,174.232,3.55 +2017-12-12 20:02:00,42.6462,174.353,3.54 +2017-12-12 20:17:00,43.65,174.465,3.54 +2017-12-12 20:32:00,43.94,174.61,3.53 +2017-12-12 20:47:00,42.6012,174.77,3.55 +2017-12-12 21:02:00,43.13,174.878,3.56 +2017-12-12 21:17:00,43.1287,174.943,3.59 +2017-12-12 21:32:00,41.7725,175.01,3.61 +2017-12-12 21:47:00,41.8637,175.052,3.64 +2017-12-12 22:02:00,43.7475,175.098,3.64 +2017-12-12 22:17:00,43.4125,175.117,3.65 +2017-12-12 22:32:00,41.915,175.11,3.66 +2017-12-12 22:47:00,43.28,175.122,3.68 +2017-12-12 23:02:00,43.1275,175.17,3.69 +2017-12-12 23:17:00,43.6,175.207,3.69 +2017-12-12 23:32:00,41.82,175.283,3.69 +2017-12-12 23:47:00,44.1325,175.378,3.69 +2017-12-13 00:02:00,42.5037,175.467,3.69 +2017-12-13 00:17:00,42.3575,175.55,3.69 +2017-12-13 00:32:00,42.3087,175.642,3.68 +2017-12-13 00:47:00,43.5537,175.7,3.67 +2017-12-13 01:02:00,43.04,175.753,3.65 +2017-12-13 01:17:00,43.9938,175.79,3.63 +2017-12-13 01:32:00,43.1325,175.848,3.62 +2017-12-13 01:47:00,42.11,175.862,3.61 +2017-12-13 02:02:00,41.67,175.922,3.6 +2017-12-13 02:17:00,42.1087,175.952,3.6 +2017-12-13 02:32:00,41.1287,176.003,3.58 +2017-12-13 02:47:00,41.67,176.042,3.57 +2017-12-13 03:02:00,43.1825,176.095,3.56 +2017-12-13 03:17:00,44.1387,176.14,3.54 +2017-12-13 03:32:00,42.2612,176.165,3.54 +2017-12-13 03:47:00,44.9475,176.217,3.53 +2017-12-13 04:02:00,43.0837,176.247,3.53 +2017-12-13 04:17:00,43.8475,176.302,3.52 +2017-12-13 04:32:00,42.5062,176.332,3.52 +2017-12-13 04:47:00,43.2288,176.36,3.51 +2017-12-13 05:02:00,42.6475,176.43,3.51 +2017-12-13 05:17:00,41.965,176.475,3.51 +2017-12-13 05:32:00,44.0912,176.527,3.5 +2017-12-13 05:47:00,43.9487,176.6,3.49 +2017-12-13 06:02:00,43.5112,176.655,3.49 +2017-12-13 06:17:00,41.6237,176.705,3.49 +2017-12-13 06:32:00,42.6937,176.795,3.48 +2017-12-13 06:47:00,42.845,176.837,3.47 +2017-12-13 07:02:00,43.3712,176.9,3.46 +2017-12-13 07:17:00,42.7438,176.93,3.46 +2017-12-13 07:32:00,43.7975,176.952,3.46 +2017-12-13 07:47:00,43.3225,177.0,3.46 +2017-12-13 08:02:00,42.84,177.04,3.46 +2017-12-13 08:17:00,43.1775,177.112,3.46 +2017-12-13 08:32:00,42.31,177.142,3.46 +2017-12-13 08:47:00,43.7438,177.217,3.47 +2017-12-13 09:02:00,42.8913,177.275,3.47 +2017-12-13 09:17:00,42.7425,177.345,3.47 +2017-12-13 09:32:00,43.4163,177.408,3.48 +2017-12-13 09:47:00,42.795,177.49,3.49 +2017-12-13 10:02:00,43.5537,177.57,3.49 +2017-12-13 10:17:00,42.84,177.622,3.5 +2017-12-13 10:32:00,43.2262,177.677,3.52 +2017-12-13 10:47:00,43.375,177.765,3.52 +2017-12-13 11:02:00,43.6,177.822,3.53 +2017-12-13 11:17:00,43.2762,177.895,3.55 +2017-12-13 11:32:00,43.2262,177.95,3.57 +2017-12-13 11:47:00,43.3712,177.99,3.6 +2017-12-13 12:02:00,43.75,178.077,3.61 +2017-12-13 12:17:00,42.9388,178.142,3.62 +2017-12-13 12:32:00,42.8412,178.207,3.63 +2017-12-13 12:47:00,43.0387,178.285,3.62 +2017-12-13 13:02:00,42.8412,178.33,3.63 +2017-12-13 13:17:00,43.5062,178.422,3.64 +2017-12-13 13:32:00,43.0863,178.503,3.64 +2017-12-13 13:47:00,43.6512,178.582,3.65 +2017-12-13 14:02:00,43.2775,178.67,3.65 +2017-12-13 14:17:00,43.505,178.762,3.67 +2017-12-13 14:32:00,43.5563,178.84,3.69 +2017-12-13 14:47:00,42.94,178.915,3.69 +2017-12-13 15:02:00,42.6062,178.985,3.7 +2017-12-13 15:17:00,43.3275,179.072,3.71 +2017-12-13 15:32:00,43.555,179.197,3.7 +2017-12-13 15:47:00,44.0413,179.337,3.67 +2017-12-13 16:02:00,43.8913,179.443,3.66 +2017-12-13 16:17:00,44.1338,179.587,3.64 +2017-12-13 16:32:00,43.2288,179.71,3.63 +2017-12-13 16:47:00,43.2775,179.818,3.62 +2017-12-13 17:02:00,44.045,179.932,3.62 +2017-12-13 17:17:00,44.0413,180.022,3.61 +2017-12-13 17:32:00,43.845,180.142,3.61 +2017-12-13 17:47:00,42.9887,180.237,3.61 +2017-12-13 18:02:00,43.9938,180.302,3.61 +2017-12-13 18:17:00,44.325,180.435,3.6 +2017-12-13 18:32:00,44.47,180.478,3.6 +2017-12-13 18:47:00,43.3763,180.557,3.61 +2017-12-13 19:02:00,43.6537,180.635,3.61 +2017-12-13 19:17:00,43.4163,180.667,3.6 +2017-12-13 19:32:00,44.04,180.745,3.6 +2017-12-13 19:47:00,43.2262,180.788,3.59 +2017-12-13 20:02:00,43.1825,180.822,3.59 +2017-12-13 20:17:00,43.4625,180.842,3.58 +2017-12-13 20:32:00,44.0413,180.825,3.57 +2017-12-13 20:47:00,43.5125,180.848,3.57 +2017-12-13 21:02:00,43.3725,180.857,3.56 +2017-12-13 21:17:00,43.7,180.875,3.55 +2017-12-13 21:32:00,43.8475,180.88,3.54 +2017-12-13 21:47:00,44.57,180.897,3.53 +2017-12-13 22:02:00,43.8,180.913,3.53 +2017-12-13 22:17:00,44.23,180.932,3.52 +2017-12-13 22:32:00,43.5125,180.947,3.51 +2017-12-13 22:47:00,43.7012,180.913,3.51 +2017-12-13 23:02:00,43.4625,180.9,3.51 +2017-12-13 23:17:00,43.7962,180.897,3.5 +2017-12-13 23:32:00,43.8475,180.875,3.5 +2017-12-13 23:47:00,43.18,180.88,3.5 +2017-12-14 00:02:00,43.09,180.878,3.5 +2017-12-14 00:17:00,43.945,180.88,3.5 +2017-12-14 00:32:00,44.235,180.865,3.51 +2017-12-14 00:47:00,42.895,180.79,3.5 +2017-12-14 01:02:00,43.8962,180.753,3.5 +2017-12-14 01:17:00,43.3275,180.603,3.5 +2017-12-14 01:32:00,43.5088,180.58,3.5 +2017-12-14 01:47:00,43.465,180.485,3.51 +2017-12-14 02:02:00,44.1387,180.37,3.51 +2017-12-14 02:17:00,43.8025,180.36,3.5 +2017-12-14 02:32:00,43.8512,180.297,3.5 +2017-12-14 02:47:00,43.9975,180.285,3.49 +2017-12-14 03:02:00,43.1362,180.275,3.48 +2017-12-14 03:17:00,43.5612,180.283,3.48 +2017-12-14 03:32:00,44.095,180.292,3.47 +2017-12-14 03:47:00,43.655,180.307,3.47 +2017-12-14 04:02:00,43.8988,180.32,3.47 +2017-12-14 04:17:00,44.0887,180.33,3.47 +2017-12-14 04:32:00,43.8025,180.322,3.46 +2017-12-14 04:47:00,43.6075,180.325,3.46 +2017-12-14 05:02:00,43.5587,180.322,3.46 +2017-12-14 05:17:00,43.8,180.31,3.45 +2017-12-14 05:32:00,43.5112,180.305,3.44 +2017-12-14 05:47:00,44.095,180.302,3.44 +2017-12-14 06:02:00,43.7513,180.285,3.44 +2017-12-14 06:17:00,43.7012,180.242,3.44 +2017-12-14 06:32:00,44.095,180.24,3.44 +2017-12-14 06:47:00,44.3288,180.235,3.44 +2017-12-14 07:02:00,43.7,180.258,3.44 +2017-12-14 07:17:00,43.28,180.242,3.44 +2017-12-14 07:32:00,43.5587,180.24,3.44 +2017-12-14 07:47:00,44.2312,180.22,3.44 +2017-12-14 08:02:00,43.0387,180.2,3.44 +2017-12-14 08:17:00,44.0437,180.175,3.44 +2017-12-14 08:32:00,43.945,180.18,3.44 +2017-12-14 08:47:00,43.5112,180.237,3.44 +2017-12-14 09:02:00,44.575,180.345,3.45 +2017-12-14 09:17:00,44.5238,180.497,3.47 +2017-12-14 09:32:00,44.1425,180.637,3.49 +2017-12-14 09:47:00,43.4637,180.827,3.49 +2017-12-14 10:02:00,44.5737,181.082,3.49 +2017-12-14 10:17:00,43.7487,181.375,3.48 +2017-12-14 10:32:00,43.8487,181.665,3.49 +2017-12-14 10:47:00,43.7,181.872,3.49 +2017-12-14 11:02:00,43.75,182.092,3.5 +2017-12-14 11:17:00,43.655,182.24,3.51 +2017-12-14 11:32:00,44.38,182.392,3.52 +2017-12-14 11:47:00,43.655,182.497,3.53 +2017-12-14 12:02:00,43.09,182.61,3.54 +2017-12-14 12:17:00,43.5575,182.647,3.55 +2017-12-14 12:32:00,43.2812,182.667,3.54 +2017-12-14 12:47:00,43.185,182.777,3.54 +2017-12-14 13:02:00,44.14,182.8,3.54 +2017-12-14 13:17:00,43.0912,182.845,3.54 +2017-12-14 13:32:00,43.6087,182.885,3.55 +2017-12-14 13:47:00,43.4187,182.925,3.55 +2017-12-14 14:02:00,44.0462,182.93,3.54 +2017-12-14 14:17:00,43.37,182.962,3.54 +2017-12-14 14:32:00,42.6525,183.01,3.54 +2017-12-14 14:47:00,43.4212,183.03,3.54 +2017-12-14 15:02:00,43.1837,183.068,3.55 +2017-12-14 15:17:00,43.6987,183.077,3.56 +2017-12-14 15:32:00,43.3325,183.09,3.55 +2017-12-14 15:47:00,43.805,183.122,3.55 +2017-12-14 16:02:00,43.0925,183.167,3.54 +2017-12-14 16:17:00,43.2325,183.24,3.54 +2017-12-14 16:32:00,42.945,183.32,3.54 +2017-12-14 16:47:00,43.4187,183.397,3.53 +2017-12-14 17:02:00,43.4238,183.497,3.53 +2017-12-14 17:17:00,42.7038,183.6,3.52 +2017-12-14 17:32:00,43.2825,183.725,3.51 +2017-12-14 17:47:00,43.5088,183.832,3.51 +2017-12-14 18:02:00,42.995,183.945,3.51 +2017-12-14 18:17:00,43.805,184.068,3.51 +2017-12-14 18:32:00,42.7012,184.197,3.5 +2017-12-14 18:47:00,42.8512,184.325,3.5 +2017-12-14 19:02:00,43.4212,184.447,3.51 +2017-12-14 19:17:00,43.47,184.557,3.51 +2017-12-14 19:32:00,43.3763,184.685,3.5 +2017-12-14 19:47:00,43.285,184.832,3.49 +2017-12-14 20:02:00,43.6062,184.975,3.49 +2017-12-14 20:17:00,43.1912,185.098,3.5 +2017-12-14 20:32:00,43.0437,185.215,3.49 +2017-12-14 20:47:00,43.8063,185.348,3.47 +2017-12-14 21:02:00,43.8037,185.443,3.46 +2017-12-14 21:17:00,43.3262,185.562,3.46 +2017-12-14 21:32:00,43.6075,185.652,3.45 +2017-12-14 21:47:00,43.9512,185.76,3.45 +2017-12-14 22:02:00,43.8037,185.85,3.44 +2017-12-14 22:17:00,43.7562,185.947,3.44 +2017-12-14 22:32:00,43.1875,186.055,3.43 +2017-12-14 22:47:00,43.8063,186.15,3.43 +2017-12-14 23:02:00,43.2812,186.237,3.42 +2017-12-14 23:17:00,43.6062,186.332,3.41 +2017-12-14 23:32:00,43.6562,186.392,3.41 +2017-12-14 23:47:00,43.7,186.47,3.4 +2017-12-15 00:02:00,42.8012,186.54,3.4 +2017-12-15 00:17:00,43.42,186.612,3.4 +2017-12-15 00:32:00,43.1413,186.655,3.4 +2017-12-15 00:47:00,43.6087,186.73,3.4 +2017-12-15 01:02:00,42.2137,186.767,3.4 +2017-12-15 01:17:00,43.3775,186.812,3.4 +2017-12-15 01:32:00,43.1862,186.857,3.4 +2017-12-15 01:47:00,42.6075,186.872,3.4 +2017-12-15 02:02:00,43.755,186.885,3.4 +2017-12-15 02:17:00,44.0475,186.915,3.4 +2017-12-15 02:32:00,43.3787,186.927,3.41 +2017-12-15 02:47:00,43.95,186.95,3.41 +2017-12-15 03:02:00,43.5163,186.965,3.42 +2017-12-15 03:17:00,44.33,186.985,3.42 +2017-12-15 03:32:00,43.7012,187.012,3.43 +2017-12-15 03:47:00,42.7525,187.04,3.43 +2017-12-15 04:02:00,43.1387,187.09,3.43 +2017-12-15 04:17:00,43.8037,187.117,3.43 +2017-12-15 04:32:00,43.7038,187.152,3.43 +2017-12-15 04:47:00,43.6075,187.185,3.43 +2017-12-15 05:02:00,43.2837,187.2,3.43 +2017-12-15 05:17:00,43.0013,187.228,3.43 +2017-12-15 05:32:00,43.2825,187.237,3.43 +2017-12-15 05:47:00,43.465,187.242,3.44 +2017-12-15 06:02:00,43.6087,187.253,3.44 +2017-12-15 06:17:00,43.9475,187.292,3.45 +2017-12-15 06:32:00,43.2837,187.348,3.46 +2017-12-15 06:47:00,42.9987,187.625,3.44 +2017-12-15 07:02:00,43.5612,188.022,3.44 +2017-12-15 07:17:00,43.14,188.438,3.44 +2017-12-15 07:32:00,43.045,188.818,3.43 +2017-12-15 07:47:00,43.7575,189.195,3.43 +2017-12-15 08:02:00,43.6562,189.522,3.43 +2017-12-15 08:17:00,43.855,189.788,3.44 +2017-12-15 08:32:00,43.3763,190.025,3.44 +2017-12-15 08:47:00,43.9487,190.23,3.45 +2017-12-15 09:02:00,42.9975,190.408,3.47 +2017-12-15 09:17:00,43.9012,190.56,3.48 +2017-12-15 09:32:00,43.3312,190.705,3.48 +2017-12-15 09:47:00,43.8988,190.815,3.48 +2017-12-15 10:02:00,43.1862,190.935,3.48 +2017-12-15 10:17:00,43.9487,191.025,3.49 +2017-12-15 10:32:00,44.3275,191.13,3.48 +2017-12-15 10:47:00,43.7038,191.205,3.49 +2017-12-15 11:02:00,44.0962,191.295,3.5 +2017-12-15 11:17:00,43.2825,191.36,3.51 +2017-12-15 11:32:00,43.2825,191.422,3.53 +2017-12-15 11:47:00,43.4688,191.487,3.55 +2017-12-15 12:02:00,42.6113,191.48,3.56 +2017-12-15 12:17:00,43.2375,191.45,3.57 +2017-12-15 12:32:00,43.5112,191.457,3.57 +2017-12-15 12:47:00,43.38,191.48,3.59 +2017-12-15 13:02:00,43.6113,191.545,3.61 +2017-12-15 13:17:00,43.0475,191.63,3.61 +2017-12-15 13:32:00,43.5137,191.735,3.62 +2017-12-15 13:47:00,43.045,191.862,3.61 +2017-12-15 14:02:00,43.42,192.01,3.61 +2017-12-15 14:17:00,43.6113,192.185,3.61 +2017-12-15 14:32:00,43.1813,192.387,3.6 +2017-12-15 14:47:00,43.8988,192.603,3.59 +2017-12-15 15:02:00,42.8012,192.83,3.59 +2017-12-15 15:17:00,44.2837,193.075,3.59 +2017-12-15 15:32:00,43.1937,193.353,3.58 +2017-12-15 15:47:00,43.66,193.603,3.57 +2017-12-15 16:02:00,44.24,193.862,3.56 +2017-12-15 16:17:00,43.6612,194.135,3.56 +2017-12-15 16:32:00,43.8075,194.392,3.55 +2017-12-15 16:47:00,43.6562,194.672,3.55 +2017-12-15 17:02:00,44.5775,194.96,3.54 +2017-12-15 17:17:00,43.045,195.21,3.53 +2017-12-15 17:32:00,44.5762,195.482,3.53 +2017-12-15 17:47:00,43.5125,195.75,3.52 +2017-12-15 18:02:00,44.1,196.027,3.52 +2017-12-15 18:17:00,43.4712,196.272,3.51 +2017-12-15 18:32:00,43.1875,196.552,3.51 +2017-12-15 18:47:00,43.2337,196.795,3.5 +2017-12-15 19:02:00,43.6113,197.04,3.5 +2017-12-15 19:17:00,43.8538,197.262,3.5 +2017-12-15 19:32:00,43.9012,197.497,3.5 +2017-12-15 19:47:00,43.0475,197.715,3.5 +2017-12-15 20:02:00,43.6087,197.938,3.49 +2017-12-15 20:17:00,43.7025,198.133,3.47 +2017-12-15 20:32:00,43.2837,198.315,3.47 +2017-12-15 20:47:00,44.7212,198.485,3.46 +2017-12-15 21:02:00,43.5125,198.647,3.45 +2017-12-15 21:17:00,43.6562,198.802,3.44 +2017-12-15 21:32:00,44.5275,198.975,3.43 +2017-12-15 21:47:00,44.6225,199.135,3.41 +2017-12-15 22:02:00,44.6725,199.302,3.39 +2017-12-15 22:17:00,43.5612,199.455,3.38 +2017-12-15 22:32:00,43.7075,199.572,3.37 +2017-12-15 22:47:00,43.7537,199.707,3.37 +2017-12-15 23:02:00,44.4788,199.848,3.36 +2017-12-15 23:17:00,43.9987,199.957,3.36 +2017-12-15 23:32:00,43.8037,200.068,3.35 +2017-12-15 23:47:00,44.4313,200.172,3.34 +2017-12-16 00:02:00,45.1912,200.258,3.35 +2017-12-16 00:17:00,43.755,200.36,3.35 +2017-12-16 00:32:00,44.2812,200.445,3.35 +2017-12-16 00:47:00,43.3325,200.52,3.35 +2017-12-16 01:02:00,44.1413,200.598,3.35 +2017-12-16 01:17:00,43.56,200.682,3.35 +2017-12-16 01:32:00,44.815,200.742,3.36 +2017-12-16 01:47:00,44.43,200.79,3.36 +2017-12-16 02:02:00,43.7525,200.848,3.37 +2017-12-16 02:17:00,43.7025,200.91,3.37 +2017-12-16 02:32:00,44.0975,200.927,3.37 +2017-12-16 02:47:00,44.2312,200.992,3.38 +2017-12-16 03:02:00,44.6762,201.038,3.39 +2017-12-16 03:17:00,44.1875,201.055,3.39 +2017-12-16 03:32:00,44.77,201.095,3.4 +2017-12-16 03:47:00,44.8175,201.057,3.4 +2017-12-16 04:02:00,43.855,201.11,3.41 +2017-12-16 04:17:00,44.0488,201.1,3.42 +2017-12-16 04:32:00,44.43,201.095,3.42 +2017-12-16 04:47:00,44.2837,201.06,3.42 +2017-12-16 05:02:00,43.9987,201.052,3.42 +2017-12-16 05:17:00,43.805,200.995,3.43 +2017-12-16 05:32:00,43.7062,201.057,3.43 +2017-12-16 05:47:00,43.6113,201.052,3.44 +2017-12-16 06:02:00,43.0512,201.045,3.44 +2017-12-16 06:17:00,43.6562,201.02,3.44 +2017-12-16 06:32:00,43.9975,201.038,3.44 +2017-12-16 06:47:00,44.1912,201.152,3.44 +2017-12-16 07:02:00,43.2837,201.182,3.43 +2017-12-16 07:17:00,43.3775,201.2,3.43 +2017-12-16 07:32:00,43.4625,201.21,3.43 +2017-12-16 07:47:00,43.7062,201.215,3.44 +2017-12-16 08:02:00,43.7575,201.193,3.45 +2017-12-16 08:17:00,43.5163,201.182,3.45 +2017-12-16 08:32:00,43.7513,201.125,3.46 +2017-12-16 08:47:00,43.0512,201.14,3.47 +2017-12-16 09:02:00,43.9987,201.142,3.47 +2017-12-16 09:17:00,43.995,201.117,3.47 +2017-12-16 09:32:00,43.3763,201.017,3.48 +2017-12-16 09:47:00,44.1437,201.03,3.48 +2017-12-16 10:02:00,43.6575,200.9,3.49 +2017-12-16 10:17:00,43.425,200.89,3.5 +2017-12-16 10:32:00,42.9962,200.79,3.51 +2017-12-16 10:47:00,43.7087,200.8,3.5 +2017-12-16 11:02:00,44.0,200.717,3.51 +2017-12-16 11:17:00,43.9037,200.69,3.52 +2017-12-16 11:32:00,43.5625,200.677,3.53 +2017-12-16 11:47:00,43.4238,200.625,3.53 +2017-12-16 12:02:00,43.6125,200.477,3.54 +2017-12-16 12:17:00,43.5163,200.4,3.57 +2017-12-16 12:32:00,43.47,200.295,3.58 +2017-12-16 12:47:00,44.0987,200.207,3.58 +2017-12-16 13:02:00,43.56,200.158,3.6 +2017-12-16 13:17:00,43.3337,200.09,3.61 +2017-12-16 13:32:00,43.5675,200.005,3.62 +2017-12-16 13:47:00,43.3325,199.982,3.63 +2017-12-16 14:02:00,43.5175,199.947,3.64 +2017-12-16 14:17:00,43.9987,199.945,3.64 +2017-12-16 14:32:00,43.5137,199.905,3.64 +2017-12-16 14:47:00,44.1488,199.87,3.65 +2017-12-16 15:02:00,42.8975,199.758,3.65 +2017-12-16 15:17:00,42.9,199.795,3.64 +2017-12-16 15:32:00,43.5612,199.677,3.64 +2017-12-16 15:47:00,44.0462,199.682,3.64 +2017-12-16 16:02:00,43.6575,199.575,3.65 +2017-12-16 16:17:00,43.5137,199.55,3.65 +2017-12-16 16:32:00,43.2363,199.505,3.64 +2017-12-16 16:47:00,43.8063,199.462,3.64 +2017-12-16 17:02:00,43.3775,199.352,3.64 +2017-12-16 17:17:00,44.1425,199.295,3.64 +2017-12-16 17:32:00,43.8587,199.242,3.63 +2017-12-16 17:47:00,42.9512,199.167,3.63 +2017-12-16 18:02:00,43.2825,199.15,3.63 +2017-12-16 18:17:00,43.4725,198.997,3.63 +2017-12-16 18:32:00,43.095,198.975,3.62 +2017-12-16 18:47:00,43.1888,198.878,3.62 +2017-12-16 19:02:00,43.565,198.85,3.62 +2017-12-16 19:17:00,43.4662,198.818,3.62 +2017-12-16 19:32:00,43.38,198.783,3.61 +2017-12-16 19:47:00,42.7537,198.765,3.61 +2017-12-16 20:02:00,42.995,198.712,3.61 +2017-12-16 20:17:00,43.1425,198.635,3.6 +2017-12-16 20:32:00,42.8075,198.592,3.59 +2017-12-16 20:47:00,43.4762,198.545,3.59 +2017-12-16 21:02:00,43.0037,198.533,3.59 +2017-12-16 21:17:00,42.965,198.508,3.59 +2017-12-16 21:32:00,42.8462,198.522,3.58 +2017-12-16 21:47:00,43.5612,198.54,3.58 +2017-12-16 22:02:00,43.3288,198.527,3.57 +2017-12-16 22:17:00,43.7075,198.565,3.56 +2017-12-16 22:32:00,43.5638,198.56,3.57 +2017-12-16 22:47:00,43.0,198.612,3.57 +2017-12-16 23:02:00,43.755,198.577,3.57 +2017-12-16 23:17:00,43.2825,198.59,3.57 +2017-12-16 23:32:00,42.4625,198.58,3.57 +2017-12-16 23:47:00,43.6087,198.605,3.57 +2017-12-17 00:02:00,42.8012,198.682,3.57 +2017-12-17 00:17:00,42.8,198.66,3.57 +2017-12-17 00:32:00,43.19,198.677,3.56 +2017-12-17 00:47:00,43.0925,198.712,3.56 +2017-12-17 01:02:00,43.1437,198.74,3.56 +2017-12-17 01:17:00,42.895,198.755,3.57 +2017-12-17 01:32:00,43.33,198.797,3.57 +2017-12-17 01:47:00,43.235,198.835,3.57 +2017-12-17 02:02:00,43.5625,198.842,3.57 +2017-12-17 02:17:00,43.4675,198.88,3.57 +2017-12-17 02:32:00,43.755,198.885,3.57 +2017-12-17 02:47:00,43.045,198.91,3.58 +2017-12-17 03:02:00,42.7988,198.915,3.58 +2017-12-17 03:17:00,42.4637,198.91,3.58 +2017-12-17 03:32:00,42.8962,198.945,3.58 +2017-12-17 03:47:00,43.3325,198.947,3.58 +2017-12-17 04:02:00,42.9475,198.955,3.58 +2017-12-17 04:17:00,42.9962,198.96,3.57 +2017-12-17 04:32:00,43.655,198.967,3.58 +2017-12-17 04:47:00,43.3812,198.935,3.57 +2017-12-17 05:02:00,42.6562,198.935,3.56 +2017-12-17 05:17:00,42.5137,198.927,3.57 +2017-12-17 05:32:00,43.4262,198.922,3.57 +2017-12-17 05:47:00,43.3812,198.908,3.57 +2017-12-17 06:02:00,43.6075,198.892,3.57 +2017-12-17 06:17:00,43.3787,198.872,3.56 +2017-12-17 06:32:00,43.335,198.852,3.56 +2017-12-17 06:47:00,43.14,198.812,3.56 +2017-12-17 07:02:00,43.4688,198.82,3.55 +2017-12-17 07:17:00,42.8025,198.812,3.56 +2017-12-17 07:32:00,43.285,198.802,3.56 +2017-12-17 07:47:00,43.61,198.772,3.56 +2017-12-17 08:02:00,43.38,198.723,3.55 +2017-12-17 08:17:00,42.9975,198.69,3.56 +2017-12-17 08:32:00,43.3325,198.688,3.56 +2017-12-17 08:47:00,43.515,198.682,3.57 +2017-12-17 09:02:00,43.47,198.658,3.57 +2017-12-17 09:17:00,43.3312,198.67,3.57 +2017-12-17 09:32:00,43.6087,198.655,3.58 +2017-12-17 09:47:00,43.7537,198.655,3.58 +2017-12-17 10:02:00,43.7562,198.64,3.59 +2017-12-17 10:17:00,43.1437,198.647,3.6 +2017-12-17 10:32:00,43.4212,198.635,3.6 +2017-12-17 10:47:00,43.2812,198.64,3.6 +2017-12-17 11:02:00,43.3337,198.612,3.6 +2017-12-17 11:17:00,43.6087,198.592,3.61 +2017-12-17 11:32:00,43.4187,198.59,3.61 +2017-12-17 11:47:00,43.8075,198.565,3.62 +2017-12-17 12:02:00,43.5163,198.542,3.62 +2017-12-17 12:17:00,42.8012,198.522,3.63 +2017-12-17 12:32:00,43.185,198.487,3.64 +2017-12-17 12:47:00,43.3337,198.452,3.64 +2017-12-17 13:02:00,44.0462,198.427,3.64 +2017-12-17 13:17:00,42.4613,198.395,3.65 +2017-12-17 13:32:00,43.1888,198.36,3.65 +2017-12-17 13:47:00,43.0437,198.315,3.65 +2017-12-17 14:02:00,42.945,198.275,3.66 +2017-12-17 14:17:00,42.8,198.245,3.66 +2017-12-17 14:32:00,43.7075,198.22,3.66 +2017-12-17 14:47:00,43.3288,198.175,3.66 +2017-12-17 15:02:00,42.85,198.133,3.67 +2017-12-17 15:17:00,43.3325,198.125,3.67 +2017-12-17 15:32:00,43.2,198.082,3.67 +2017-12-17 15:47:00,43.6587,198.062,3.68 +2017-12-17 16:02:00,43.2337,198.047,3.68 +2017-12-17 16:17:00,42.9975,198.027,3.69 +2017-12-17 16:32:00,42.5638,198.005,3.69 +2017-12-17 16:47:00,42.8487,197.973,3.69 +2017-12-17 17:02:00,43.6537,197.935,3.69 +2017-12-17 17:17:00,43.3775,197.905,3.69 +2017-12-17 17:32:00,43.2837,197.875,3.68 +2017-12-17 17:47:00,43.5612,197.86,3.69 +2017-12-17 18:02:00,43.465,197.82,3.69 +2017-12-17 18:17:00,43.375,197.765,3.69 +2017-12-17 18:32:00,43.09,197.715,3.69 +2017-12-17 18:47:00,43.0387,197.63,3.69 +2017-12-17 19:02:00,43.0425,197.542,3.7 +2017-12-17 19:17:00,43.185,197.467,3.7 +2017-12-17 19:32:00,42.61,197.395,3.7 +2017-12-17 19:47:00,43.5587,197.35,3.69 +2017-12-17 20:02:00,42.795,197.32,3.69 +2017-12-17 20:17:00,43.7462,197.288,3.68 +2017-12-17 20:32:00,44.0925,197.283,3.69 +2017-12-17 20:47:00,42.9412,197.253,3.68 +2017-12-17 21:02:00,43.4163,197.227,3.67 +2017-12-17 21:17:00,43.37,197.195,3.67 +2017-12-17 21:32:00,43.1813,197.158,3.66 +2017-12-17 21:47:00,43.135,197.125,3.66 +2017-12-17 22:02:00,43.37,197.075,3.66 +2017-12-17 22:17:00,43.9437,197.055,3.65 +2017-12-17 22:32:00,42.41,197.003,3.65 +2017-12-17 22:47:00,42.99,196.975,3.65 +2017-12-17 23:02:00,43.3688,196.955,3.64 +2017-12-17 23:17:00,43.3262,196.915,3.64 +2017-12-17 23:32:00,43.6963,196.895,3.64 +2017-12-17 23:47:00,42.6963,196.862,3.64 +2017-12-18 00:02:00,42.3587,196.815,3.64 +2017-12-18 00:17:00,43.1312,196.747,3.64 +2017-12-18 00:32:00,43.795,196.693,3.64 +2017-12-18 00:47:00,43.695,196.628,3.64 +2017-12-18 01:02:00,43.7525,196.56,3.64 +2017-12-18 01:17:00,43.65,196.515,3.63 +2017-12-18 01:32:00,43.6025,196.462,3.63 +2017-12-18 01:47:00,43.18,196.432,3.62 +2017-12-18 02:02:00,42.79,196.405,3.62 +2017-12-18 02:17:00,43.6025,196.385,3.61 +2017-12-18 02:32:00,43.1813,196.362,3.62 +2017-12-18 02:47:00,43.4613,196.33,3.61 +2017-12-18 03:02:00,43.5062,196.312,3.6 +2017-12-18 03:17:00,43.0812,196.285,3.6 +2017-12-18 03:32:00,43.5037,196.237,3.59 +2017-12-18 03:47:00,42.89,196.2,3.57 +2017-12-18 04:02:00,42.9925,196.172,3.57 +2017-12-18 04:17:00,43.795,196.142,3.56 +2017-12-18 04:32:00,43.5062,196.1,3.54 +2017-12-18 04:47:00,44.1375,196.06,3.52 +2017-12-18 05:02:00,43.845,196.003,3.51 +2017-12-18 05:17:00,43.5512,195.927,3.5 +2017-12-18 05:32:00,43.5525,195.885,3.49 +2017-12-18 05:47:00,43.8937,195.837,3.47 +2017-12-18 06:02:00,43.7962,195.792,3.45 +2017-12-18 06:17:00,43.1762,195.76,3.44 +2017-12-18 06:32:00,43.3237,195.728,3.42 +2017-12-18 06:47:00,43.3725,195.7,3.41 +2017-12-18 07:02:00,43.8425,195.658,3.4 +2017-12-18 07:17:00,42.8875,195.633,3.39 +2017-12-18 07:32:00,43.795,195.592,3.38 +2017-12-18 07:47:00,44.0875,195.547,3.37 +2017-12-18 08:02:00,43.1325,195.508,3.36 +2017-12-18 08:17:00,43.6963,195.395,3.36 +2017-12-18 08:32:00,43.0837,195.312,3.35 +2017-12-18 08:47:00,43.5563,195.26,3.35 +2017-12-18 09:02:00,42.9388,195.19,3.34 +2017-12-18 09:17:00,43.0362,195.115,3.34 +2017-12-18 09:32:00,43.84,195.05,3.34 +2017-12-18 09:47:00,43.4062,195.008,3.34 +2017-12-18 10:02:00,43.1775,194.952,3.33 +2017-12-18 10:17:00,43.46,194.932,3.33 +2017-12-18 10:32:00,43.6912,194.908,3.34 +2017-12-18 10:47:00,43.2738,194.88,3.35 +2017-12-18 11:02:00,43.505,194.862,3.35 +2017-12-18 11:17:00,43.3688,194.805,3.35 +2017-12-18 11:32:00,43.6012,194.795,3.36 +2017-12-18 11:47:00,43.8937,194.753,3.36 +2017-12-18 12:02:00,43.2288,194.672,3.37 +2017-12-18 12:17:00,43.645,194.6,3.37 +2017-12-18 12:32:00,43.32,194.492,3.38 +2017-12-18 12:47:00,43.7913,194.335,3.38 +2017-12-18 13:02:00,42.9325,194.008,3.4 +2017-12-18 13:17:00,43.415,193.54,3.4 +2017-12-18 13:32:00,43.275,193.195,3.41 +2017-12-18 13:47:00,43.275,192.973,3.42 +2017-12-18 14:02:00,43.0362,192.802,3.43 +2017-12-18 14:17:00,43.365,192.647,3.43 +2017-12-18 14:32:00,43.225,192.525,3.44 +2017-12-18 14:47:00,43.3662,192.397,3.43 +2017-12-18 15:02:00,44.0375,192.32,3.43 +2017-12-18 15:17:00,43.2712,192.23,3.42 +2017-12-18 15:32:00,43.9388,192.152,3.42 +2017-12-18 15:47:00,43.0362,192.035,3.41 +2017-12-18 16:02:00,44.23,191.887,3.4 +2017-12-18 16:17:00,42.9388,191.822,3.39 +2017-12-18 16:32:00,43.18,191.753,3.37 +2017-12-18 16:47:00,43.4575,191.688,3.36 +2017-12-18 17:02:00,43.5525,191.615,3.35 +2017-12-18 17:17:00,43.8,191.522,3.34 +2017-12-18 17:32:00,42.6975,191.425,3.32 +2017-12-18 17:47:00,43.275,191.378,3.32 +2017-12-18 18:02:00,43.0825,191.33,3.31 +2017-12-18 18:17:00,43.5062,191.297,3.3 +2017-12-18 18:32:00,43.2725,191.24,3.29 +2017-12-18 18:47:00,43.9412,191.185,3.28 +2017-12-18 19:02:00,44.09,191.14,3.28 +2017-12-18 19:17:00,43.5075,191.075,3.27 +2017-12-18 19:32:00,44.3737,190.987,3.27 +2017-12-18 19:47:00,43.6937,190.897,3.26 +2017-12-18 20:02:00,43.6912,190.88,3.25 +2017-12-18 20:17:00,44.085,190.872,3.25 +2017-12-18 20:32:00,43.6963,190.875,3.25 +2017-12-18 20:47:00,43.41,190.85,3.25 +2017-12-18 21:02:00,43.2762,190.812,3.25 +2017-12-18 21:17:00,44.1325,190.805,3.24 +2017-12-18 21:32:00,43.9425,190.818,3.24 +2017-12-18 21:47:00,43.935,190.832,3.24 +2017-12-18 22:02:00,43.6,190.84,3.24 +2017-12-18 22:17:00,43.6475,190.825,3.24 +2017-12-18 22:32:00,44.3175,190.797,3.24 +2017-12-18 22:47:00,43.8438,190.747,3.24 +2017-12-18 23:02:00,43.55,190.685,3.24 +2017-12-18 23:17:00,43.3725,190.625,3.24 +2017-12-18 23:32:00,43.6912,190.592,3.24 +2017-12-18 23:47:00,43.3662,190.575,3.23 +2017-12-19 00:02:00,43.1275,190.562,3.23 +2017-12-19 00:17:00,43.32,190.565,3.23 +2017-12-19 00:32:00,43.32,190.54,3.23 +2017-12-19 00:47:00,42.6475,190.522,3.23 +2017-12-19 01:02:00,43.4575,190.512,3.23 +2017-12-19 01:17:00,43.3637,190.487,3.23 +2017-12-19 01:32:00,43.8412,190.492,3.23 +2017-12-19 01:47:00,43.65,190.48,3.23 +2017-12-19 02:02:00,43.3213,190.467,3.23 +2017-12-19 02:17:00,42.7875,190.455,3.24 +2017-12-19 02:32:00,43.7425,190.425,3.24 +2017-12-19 02:47:00,43.745,190.402,3.24 +2017-12-19 03:02:00,43.7475,190.36,3.24 +2017-12-19 03:17:00,43.5512,190.375,3.24 +2017-12-19 03:32:00,43.5987,190.357,3.24 +2017-12-19 03:47:00,43.27,190.335,3.24 +2017-12-19 04:02:00,43.5525,190.327,3.24 +2017-12-19 04:17:00,43.32,190.312,3.24 +2017-12-19 04:32:00,43.2738,190.295,3.24 +2017-12-19 04:47:00,43.99,190.267,3.24 +2017-12-19 05:02:00,43.1775,190.25,3.23 +2017-12-19 05:17:00,43.4112,190.197,3.23 +2017-12-19 05:32:00,44.0375,190.182,3.23 +2017-12-19 05:47:00,42.8875,190.14,3.23 +2017-12-19 06:02:00,43.4575,190.1,3.23 +2017-12-19 06:17:00,43.795,190.033,3.23 +2017-12-19 06:32:00,43.55,189.98,3.23 +2017-12-19 06:47:00,42.9875,189.935,3.22 +2017-12-19 07:02:00,43.6488,189.89,3.22 +2017-12-19 07:17:00,43.1762,189.723,3.22 +2017-12-19 07:32:00,43.9362,189.335,3.21 +2017-12-19 07:47:00,44.3725,188.967,3.21 +2017-12-19 08:02:00,43.7425,188.695,3.21 +2017-12-19 08:17:00,43.9875,188.52,3.22 +2017-12-19 08:32:00,43.9375,188.408,3.22 +2017-12-19 08:47:00,43.5525,188.372,3.22 +2017-12-19 09:02:00,43.0837,188.337,3.22 +2017-12-19 09:17:00,43.5062,188.318,3.23 +2017-12-19 09:32:00,43.7438,188.342,3.23 +2017-12-19 09:47:00,43.9388,188.367,3.24 +2017-12-19 10:02:00,43.6963,188.42,3.25 +2017-12-19 10:17:00,43.9375,188.457,3.26 +2017-12-19 10:32:00,43.4125,188.485,3.26 +2017-12-19 10:47:00,43.5062,188.49,3.28 +2017-12-19 11:02:00,44.1787,188.478,3.3 +2017-12-19 11:17:00,43.6937,188.435,3.31 +2017-12-19 11:32:00,43.9388,188.41,3.33 +2017-12-19 11:47:00,43.0812,188.372,3.33 +2017-12-19 12:02:00,43.94,188.36,3.35 +2017-12-19 12:17:00,43.9362,188.355,3.36 +2017-12-19 12:32:00,43.9912,188.34,3.37 +2017-12-19 12:47:00,42.9875,188.348,3.38 +2017-12-19 13:02:00,43.2262,188.325,3.39 +2017-12-19 13:17:00,43.9863,188.297,3.41 +2017-12-19 13:32:00,43.7962,188.283,3.42 +2017-12-19 13:47:00,43.2275,188.267,3.44 +2017-12-19 14:02:00,44.0837,188.255,3.45 +2017-12-19 14:17:00,43.5025,188.258,3.46 +2017-12-19 14:32:00,43.4587,188.26,3.47 +2017-12-19 14:47:00,43.5537,188.265,3.49 +2017-12-19 15:02:00,43.6937,188.255,3.5 +2017-12-19 15:17:00,44.0325,188.242,3.51 +2017-12-19 15:32:00,43.7425,188.217,3.52 +2017-12-19 15:47:00,42.9837,188.245,3.54 +2017-12-19 16:02:00,43.6888,188.253,3.55 +2017-12-19 16:17:00,44.0362,188.25,3.56 +2017-12-19 16:32:00,43.5938,188.267,3.58 +2017-12-19 16:47:00,43.6912,188.285,3.58 +2017-12-19 17:02:00,43.79,188.275,3.59 +2017-12-19 17:17:00,43.8425,188.27,3.6 +2017-12-19 17:32:00,43.4562,188.245,3.61 +2017-12-19 17:47:00,43.5512,188.237,3.61 +2017-12-19 18:02:00,43.7425,188.223,3.62 +2017-12-19 18:17:00,43.5025,188.212,3.62 +2017-12-19 18:32:00,43.5563,188.202,3.63 +2017-12-19 18:47:00,43.3662,188.163,3.64 +2017-12-19 19:02:00,43.32,188.142,3.65 +2017-12-19 19:17:00,43.5475,188.105,3.65 +2017-12-19 19:32:00,43.5025,188.095,3.66 +2017-12-19 19:47:00,43.7412,188.065,3.66 +2017-12-19 20:02:00,43.2675,188.057,3.67 +2017-12-19 20:17:00,43.5962,188.052,3.68 +2017-12-19 20:32:00,43.4512,188.04,3.68 +2017-12-19 20:47:00,43.1287,188.04,3.69 +2017-12-19 21:02:00,43.935,188.045,3.7 +2017-12-19 21:17:00,43.69,188.077,3.72 +2017-12-19 21:32:00,43.8425,188.077,3.73 +2017-12-19 21:47:00,44.0337,188.082,3.74 +2017-12-19 22:02:00,43.8875,188.103,3.75 +2017-12-19 22:17:00,43.455,188.122,3.76 +2017-12-19 22:32:00,43.8387,188.125,3.77 +2017-12-19 22:47:00,43.6937,188.147,3.78 +2017-12-19 23:02:00,43.7925,188.172,3.79 +2017-12-19 23:17:00,44.085,188.18,3.79 +2017-12-19 23:32:00,43.7487,188.18,3.79 +2017-12-19 23:47:00,43.7937,188.202,3.81 +2017-12-20 00:02:00,43.2738,188.205,3.82 +2017-12-20 00:17:00,44.1775,188.185,3.82 +2017-12-20 00:32:00,43.455,188.152,3.82 +2017-12-20 00:47:00,43.695,188.14,3.83 +2017-12-20 01:02:00,43.9875,188.133,3.83 +2017-12-20 01:17:00,43.3187,188.1,3.84 +2017-12-20 01:32:00,43.5575,188.12,3.85 +2017-12-20 01:47:00,43.4975,188.098,3.85 +2017-12-20 02:02:00,43.7962,188.08,3.86 +2017-12-20 02:17:00,43.2738,188.075,3.86 +2017-12-20 02:32:00,43.2237,188.057,3.87 +2017-12-20 02:47:00,43.5037,188.052,3.87 +2017-12-20 03:02:00,43.325,188.052,3.88 +2017-12-20 03:17:00,43.5975,188.055,3.88 +2017-12-20 03:32:00,43.6462,188.052,3.89 +2017-12-20 03:47:00,43.8425,188.042,3.9 +2017-12-20 04:02:00,43.5512,188.027,3.9 +2017-12-20 04:17:00,43.5987,188.027,3.91 +2017-12-20 04:32:00,44.135,188.033,3.91 +2017-12-20 04:47:00,44.1338,188.022,3.91 +2017-12-20 05:02:00,43.4087,188.003,3.92 +2017-12-20 05:17:00,43.6425,187.992,3.92 +2017-12-20 05:32:00,43.5062,187.95,3.93 +2017-12-20 05:47:00,44.0863,187.962,3.93 +2017-12-20 06:02:00,43.5537,187.955,3.94 +2017-12-20 06:17:00,44.1325,187.945,3.94 +2017-12-20 06:32:00,43.4087,187.927,3.94 +2017-12-20 06:47:00,43.4087,187.905,3.95 +2017-12-20 07:02:00,43.5013,187.848,3.95 +2017-12-20 07:17:00,43.9875,187.825,3.96 +2017-12-20 07:32:00,43.5987,187.797,3.96 +2017-12-20 07:47:00,43.5488,187.745,3.97 +2017-12-20 08:02:00,44.085,187.723,3.97 +2017-12-20 08:17:00,43.7962,187.7,3.98 +2017-12-20 08:32:00,43.4562,187.693,3.99 +2017-12-20 08:47:00,43.5025,187.71,4.0 +2017-12-20 09:02:00,43.4575,187.72,4.0 +2017-12-20 09:17:00,43.0362,187.715,4.0 +2017-12-20 09:32:00,43.65,187.732,4.01 +2017-12-20 09:47:00,43.18,187.728,4.02 +2017-12-20 10:02:00,44.4212,187.693,4.03 +2017-12-20 10:17:00,43.9887,187.7,4.04 +2017-12-20 10:32:00,43.5475,187.702,4.06 +2017-12-20 10:47:00,43.9875,187.73,4.09 +2017-12-20 11:02:00,44.1775,187.777,4.12 +2017-12-20 11:17:00,43.6963,187.797,4.14 +2017-12-20 11:32:00,43.6963,187.853,4.16 +2017-12-20 11:47:00,43.6925,187.913,4.19 +2017-12-20 12:02:00,43.9375,188.038,4.21 +2017-12-20 12:17:00,43.3237,188.15,4.24 +2017-12-20 12:32:00,43.9362,188.22,4.25 +2017-12-20 12:47:00,43.4087,188.355,4.26 +2017-12-20 13:02:00,44.13,188.5,4.28 +2017-12-20 13:17:00,43.2225,188.658,4.3 +2017-12-20 13:32:00,43.5488,188.832,4.33 +2017-12-20 13:47:00,44.1787,189.003,4.34 +2017-12-20 14:02:00,43.3213,189.172,4.36 +2017-12-20 14:17:00,44.035,189.325,4.37 +2017-12-20 14:32:00,43.4125,189.503,4.38 +2017-12-20 14:47:00,43.4575,189.647,4.39 +2017-12-20 15:02:00,44.185,189.822,4.4 +2017-12-20 15:17:00,43.9875,189.97,4.41 +2017-12-20 15:32:00,43.4137,190.16,4.42 +2017-12-20 15:47:00,43.3213,190.318,4.44 +2017-12-20 16:02:00,43.5987,190.457,4.45 +2017-12-20 16:17:00,43.55,190.59,4.47 +2017-12-20 16:32:00,42.8875,190.697,4.48 +2017-12-20 16:47:00,43.6012,190.837,4.5 +2017-12-20 17:02:00,43.2725,190.962,4.51 +2017-12-20 17:17:00,42.6925,191.082,4.52 +2017-12-20 17:32:00,43.1762,191.205,4.53 +2017-12-20 17:47:00,43.2725,191.322,4.54 +2017-12-20 18:02:00,43.3162,191.447,4.54 +2017-12-20 18:17:00,43.365,191.568,4.55 +2017-12-20 18:32:00,44.0825,191.663,4.55 +2017-12-20 18:47:00,43.5488,191.777,4.56 +2017-12-20 19:02:00,43.745,191.885,4.57 +2017-12-20 19:17:00,43.1287,191.987,4.57 +2017-12-20 19:32:00,42.8875,192.082,4.58 +2017-12-20 19:47:00,44.0863,192.188,4.58 +2017-12-20 20:02:00,43.5987,192.262,4.59 +2017-12-20 20:17:00,43.8412,192.353,4.59 +2017-12-20 20:32:00,44.0362,192.447,4.59 +2017-12-20 20:47:00,43.5525,192.53,4.6 +2017-12-20 21:02:00,43.695,192.622,4.6 +2017-12-20 21:17:00,43.4137,192.705,4.61 +2017-12-20 21:32:00,43.275,192.805,4.6 +2017-12-20 21:47:00,44.0413,192.875,4.61 +2017-12-20 22:02:00,43.7913,192.955,4.61 +2017-12-20 22:17:00,43.0362,193.005,4.62 +2017-12-20 22:32:00,43.9388,193.07,4.62 +2017-12-20 22:47:00,43.4087,193.11,4.63 +2017-12-20 23:02:00,43.89,193.117,4.64 +2017-12-20 23:17:00,44.3213,193.082,4.64 +2017-12-20 23:32:00,43.84,193.062,4.64 +2017-12-20 23:47:00,44.6612,193.103,4.65 +2017-12-21 00:02:00,43.5962,193.165,4.66 +2017-12-21 00:17:00,43.5075,193.212,4.67 +2017-12-21 00:32:00,44.2712,193.262,4.67 +2017-12-21 00:47:00,43.9388,193.258,4.68 +2017-12-21 01:02:00,43.9362,193.288,4.68 +2017-12-21 01:17:00,43.8925,193.342,4.69 +2017-12-21 01:32:00,44.5662,193.415,4.69 +2017-12-21 01:47:00,44.5175,193.45,4.7 +2017-12-21 02:02:00,44.4187,193.482,4.71 +2017-12-21 02:17:00,44.465,193.51,4.71 +2017-12-21 02:32:00,44.035,193.54,4.72 +2017-12-21 02:47:00,44.4187,193.552,4.73 +2017-12-21 03:02:00,43.8462,193.595,4.74 +2017-12-21 03:17:00,44.2237,193.64,4.74 +2017-12-21 03:32:00,43.9863,193.695,4.75 +2017-12-21 03:47:00,44.0863,193.728,4.75 +2017-12-21 04:02:00,44.5175,193.755,4.75 +2017-12-21 04:17:00,44.4175,193.802,4.76 +2017-12-21 04:32:00,44.2237,193.807,4.77 +2017-12-21 04:47:00,44.1762,193.818,4.77 +2017-12-21 05:02:00,44.3675,193.815,4.78 +2017-12-21 05:17:00,44.1375,193.842,4.78 +2017-12-21 05:32:00,44.37,193.86,4.79 +2017-12-21 05:47:00,43.745,193.883,4.79 +2017-12-21 06:02:00,43.9863,193.913,4.8 +2017-12-21 06:17:00,43.9375,193.938,4.8 +2017-12-21 06:32:00,44.1762,193.992,4.81 +2017-12-21 06:47:00,43.89,194.01,4.82 +2017-12-21 07:02:00,44.18,194.055,4.82 +2017-12-21 07:17:00,44.0362,194.085,4.83 +2017-12-21 07:32:00,43.9375,194.12,4.83 +2017-12-21 07:47:00,44.2262,194.133,4.84 +2017-12-21 08:02:00,44.1287,194.128,4.85 +2017-12-21 08:17:00,44.0812,194.117,4.87 +2017-12-21 08:32:00,44.805,194.17,4.87 +2017-12-21 08:47:00,43.5037,194.202,4.88 +2017-12-21 09:02:00,43.9875,194.265,4.89 +2017-12-21 09:17:00,43.7438,194.318,4.9 +2017-12-21 09:32:00,44.4175,194.405,4.91 +2017-12-21 09:47:00,44.085,194.485,4.92 +2017-12-21 10:02:00,43.79,194.545,4.94 +2017-12-21 10:17:00,44.61,194.587,4.97 +2017-12-21 10:32:00,44.7575,194.663,4.99 +2017-12-21 10:47:00,44.5163,194.705,5.0 +2017-12-21 11:02:00,43.8412,194.755,5.0 +2017-12-21 11:17:00,44.565,194.765,5.02 +2017-12-21 11:32:00,43.7425,194.775,5.04 +2017-12-21 11:47:00,44.0362,194.777,5.06 +2017-12-21 12:02:00,43.8887,194.797,5.07 +2017-12-21 12:17:00,43.985,194.75,5.09 +2017-12-21 12:32:00,43.8913,194.655,5.1 +2017-12-21 12:47:00,44.2237,194.645,5.12 +2017-12-21 13:02:00,43.935,194.693,5.14 +2017-12-21 13:17:00,44.0387,194.707,5.16 +2017-12-21 13:32:00,43.5488,194.737,5.17 +2017-12-21 13:47:00,44.085,194.715,5.19 +2017-12-21 14:02:00,43.9825,194.672,5.2 +2017-12-21 14:17:00,44.2237,194.67,5.21 +2017-12-21 14:32:00,43.5512,194.693,5.22 +2017-12-21 14:47:00,44.365,194.702,5.23 +2017-12-21 15:02:00,43.5025,194.725,5.24 +2017-12-21 15:17:00,43.99,194.753,5.24 +2017-12-21 15:32:00,44.5137,194.788,5.25 +2017-12-21 15:47:00,44.0362,194.818,5.26 +2017-12-21 16:02:00,44.4137,194.862,5.27 +2017-12-21 16:17:00,43.99,194.895,5.27 +2017-12-21 16:32:00,43.3662,194.94,5.28 +2017-12-21 16:47:00,44.0825,194.96,5.28 +2017-12-21 17:02:00,44.1762,194.97,5.28 +2017-12-21 17:17:00,44.0325,194.975,5.28 +2017-12-21 17:32:00,44.0812,194.992,5.28 +2017-12-21 17:47:00,44.32,195.068,5.29 +2017-12-21 18:02:00,43.89,195.1,5.28 +2017-12-21 18:17:00,44.32,195.16,5.29 +2017-12-21 18:32:00,43.9388,195.202,5.28 +2017-12-21 18:47:00,43.6488,195.242,5.28 +2017-12-21 19:02:00,44.085,195.292,5.27 +2017-12-21 19:17:00,44.5625,195.318,5.27 +2017-12-21 19:32:00,44.2712,195.37,5.27 +2017-12-21 19:47:00,43.935,195.397,5.27 +2017-12-21 20:02:00,44.315,195.415,5.27 +2017-12-21 20:17:00,44.7062,195.47,5.27 +2017-12-21 20:32:00,44.1312,195.503,5.28 +2017-12-21 20:47:00,43.9887,195.538,5.27 +2017-12-21 21:02:00,43.4575,195.572,5.27 +2017-12-21 21:17:00,43.5925,195.61,5.28 +2017-12-21 21:32:00,43.545,195.637,5.28 +2017-12-21 21:47:00,44.1762,195.672,5.27 +2017-12-21 22:02:00,43.9375,195.725,5.26 +2017-12-21 22:17:00,43.8525,195.755,5.26 +2017-12-21 22:32:00,44.5175,195.79,5.26 +2017-12-21 22:47:00,44.0275,195.818,5.26 +2017-12-21 23:02:00,44.3662,195.872,5.26 +2017-12-21 23:17:00,44.9125,195.895,5.27 +2017-12-21 23:32:00,44.0875,195.943,5.26 +2017-12-21 23:47:00,44.2288,195.99,5.27 +2017-12-22 00:02:00,44.2738,196.033,5.26 +2017-12-22 00:17:00,44.8562,196.077,5.26 +2017-12-22 00:32:00,43.7475,196.13,5.26 +2017-12-22 00:47:00,44.9487,196.177,5.26 +2017-12-22 01:02:00,44.94,196.19,5.26 +2017-12-22 01:17:00,44.4163,196.22,5.26 +2017-12-22 01:32:00,44.1338,196.258,5.26 +2017-12-22 01:47:00,44.99,196.25,5.27 +2017-12-22 02:02:00,44.8562,196.277,5.27 +2017-12-22 02:17:00,43.6437,196.297,5.27 +2017-12-22 02:32:00,43.6963,196.32,5.28 +2017-12-22 02:47:00,44.1312,196.34,5.29 +2017-12-22 03:02:00,44.1775,196.36,5.29 +2017-12-22 03:17:00,43.8887,196.387,5.29 +2017-12-22 03:32:00,44.3175,196.4,5.29 +2017-12-22 03:47:00,44.2237,196.425,5.28 +2017-12-22 04:02:00,44.2237,196.443,5.28 +2017-12-22 04:17:00,44.465,196.47,5.27 +2017-12-22 04:32:00,44.175,196.482,5.27 +2017-12-22 04:47:00,44.2712,196.508,5.27 +2017-12-22 05:02:00,44.2237,196.542,5.27 +2017-12-22 05:17:00,44.37,196.568,5.26 +2017-12-22 05:32:00,44.805,196.592,5.26 +2017-12-22 05:47:00,44.9437,196.61,5.26 +2017-12-22 06:02:00,44.085,196.633,5.26 +2017-12-22 06:17:00,45.0375,196.65,5.26 +2017-12-22 06:32:00,44.2712,196.67,5.26 +2017-12-22 06:47:00,44.1312,196.672,5.25 +2017-12-22 07:02:00,44.855,196.693,5.26 +2017-12-22 07:17:00,44.2225,196.832,5.26 +2017-12-22 07:32:00,43.8887,197.025,5.25 +2017-12-22 07:47:00,44.3187,197.212,5.26 +2017-12-22 08:02:00,44.5612,197.332,5.26 +2017-12-22 08:17:00,44.66,197.43,5.27 +2017-12-22 08:32:00,44.4187,197.49,5.27 +2017-12-22 08:47:00,44.4675,197.562,5.28 +2017-12-22 09:02:00,44.5187,197.677,5.29 +2017-12-22 09:17:00,44.3725,197.758,5.3 +2017-12-22 09:32:00,44.37,197.83,5.31 +2017-12-22 09:47:00,44.5163,197.915,5.31 +2017-12-22 10:02:00,45.2825,197.962,5.32 +2017-12-22 10:17:00,44.3662,198.025,5.33 +2017-12-22 10:32:00,45.0413,198.072,5.34 +2017-12-22 10:47:00,44.1787,198.082,5.35 +2017-12-22 11:02:00,44.3225,198.125,5.35 +2017-12-22 11:17:00,44.135,198.15,5.35 +2017-12-22 11:32:00,44.6625,198.18,5.36 +2017-12-22 11:47:00,43.9863,198.225,5.36 +2017-12-22 12:02:00,44.3213,198.25,5.37 +2017-12-22 12:17:00,44.945,198.267,5.37 +2017-12-22 12:32:00,44.1813,198.337,5.37 +2017-12-22 12:47:00,44.5175,198.38,5.37 +2017-12-22 13:02:00,44.5187,198.422,5.37 +2017-12-22 13:17:00,44.755,198.49,5.38 +2017-12-22 13:32:00,44.61,198.533,5.38 +2017-12-22 13:47:00,44.5687,198.605,5.39 +2017-12-22 14:02:00,44.0812,198.685,5.39 +2017-12-22 14:17:00,43.9863,198.783,5.39 +2017-12-22 14:32:00,44.5662,198.875,5.38 +2017-12-22 14:47:00,44.3712,198.975,5.38 +2017-12-22 15:02:00,44.5625,199.087,5.38 +2017-12-22 15:17:00,45.1362,199.185,5.38 +2017-12-22 15:32:00,44.9962,199.288,5.38 +2017-12-22 15:47:00,45.0837,199.387,5.38 +2017-12-22 16:02:00,45.13,199.49,5.38 +2017-12-22 16:17:00,44.465,199.582,5.39 +2017-12-22 16:32:00,44.6137,199.675,5.39 +2017-12-22 16:47:00,44.71,199.783,5.39 +2017-12-22 17:02:00,44.7575,199.862,5.39 +2017-12-22 17:17:00,44.4662,199.947,5.39 +2017-12-22 17:32:00,44.9025,200.045,5.38 +2017-12-22 17:47:00,44.6125,200.128,5.38 +2017-12-22 18:02:00,44.8063,200.217,5.37 +2017-12-22 18:17:00,45.4313,200.292,5.36 +2017-12-22 18:32:00,44.61,200.38,5.35 +2017-12-22 18:47:00,45.5775,200.455,5.34 +2017-12-22 19:02:00,44.2225,200.533,5.34 +2017-12-22 19:17:00,44.9912,200.617,5.33 +2017-12-22 19:32:00,44.5675,200.688,5.32 +2017-12-22 19:47:00,44.7525,200.77,5.32 +2017-12-22 20:02:00,45.28,200.812,5.31 +2017-12-22 20:17:00,45.4788,200.832,5.31 +2017-12-22 20:32:00,45.475,200.872,5.3 +2017-12-22 20:47:00,45.6787,200.902,5.29 +2017-12-22 21:02:00,45.5788,200.96,5.29 +2017-12-22 21:17:00,45.3325,200.987,5.28 +2017-12-22 21:32:00,45.53,201.03,5.28 +2017-12-22 21:47:00,45.3337,201.065,5.27 +2017-12-22 22:02:00,45.2312,201.1,5.27 +2017-12-22 22:17:00,45.2325,201.137,5.26 +2017-12-22 22:32:00,45.0387,201.19,5.26 +2017-12-22 22:47:00,44.6575,201.227,5.25 +2017-12-22 23:02:00,45.2275,201.258,5.25 +2017-12-22 23:17:00,44.9887,201.292,5.24 +2017-12-22 23:32:00,45.23,201.29,5.23 +2017-12-22 23:47:00,45.4825,201.29,5.22 +2017-12-23 00:02:00,45.5275,201.315,5.21 +2017-12-23 00:17:00,45.3312,201.32,5.2 +2017-12-23 00:32:00,45.1338,201.312,5.2 +2017-12-23 00:47:00,45.3288,201.275,5.19 +2017-12-23 01:02:00,45.085,201.315,5.19 +2017-12-23 01:17:00,45.6287,201.318,5.18 +2017-12-23 01:32:00,45.4287,201.32,5.18 +2017-12-23 01:47:00,45.5788,201.315,5.16 +2017-12-23 02:02:00,45.5275,201.315,5.14 +2017-12-23 02:17:00,45.285,201.32,5.13 +2017-12-23 02:32:00,45.33,201.33,5.11 +2017-12-23 02:47:00,45.3325,201.348,5.1 +2017-12-23 03:02:00,44.9012,201.362,5.09 +2017-12-23 03:17:00,45.23,201.37,5.07 +2017-12-23 03:32:00,45.525,201.387,5.06 +2017-12-23 03:47:00,45.2825,201.43,5.05 +2017-12-23 04:02:00,45.1362,201.45,5.03 +2017-12-23 04:17:00,45.6287,201.492,5.03 +2017-12-23 04:32:00,45.43,201.508,5.01 +2017-12-23 04:47:00,45.0375,201.54,4.99 +2017-12-23 05:02:00,45.4313,201.56,4.98 +2017-12-23 05:17:00,45.23,201.58,4.97 +2017-12-23 05:32:00,44.9925,201.612,4.96 +2017-12-23 05:47:00,45.6263,201.663,4.96 +2017-12-23 06:02:00,45.43,201.663,4.95 +2017-12-23 06:17:00,45.285,201.688,4.94 +2017-12-23 06:32:00,45.2837,201.69,4.93 +2017-12-23 06:47:00,45.4788,201.675,4.92 +2017-12-23 07:02:00,45.4313,201.637,4.91 +2017-12-23 07:17:00,45.1387,201.633,4.9 +2017-12-23 07:32:00,44.855,201.607,4.89 +2017-12-23 07:47:00,44.9925,201.587,4.89 +2017-12-23 08:02:00,45.2325,201.582,4.9 +2017-12-23 08:17:00,45.5275,201.538,4.9 +2017-12-23 08:32:00,45.6725,201.527,4.9 +2017-12-23 08:47:00,45.9163,201.522,4.91 +2017-12-23 09:02:00,46.0725,201.487,4.92 +2017-12-23 09:17:00,45.5275,201.452,4.93 +2017-12-23 09:32:00,45.3825,201.402,4.95 +2017-12-23 09:47:00,45.6287,201.34,4.96 +2017-12-23 10:02:00,45.28,201.255,4.98 +2017-12-23 10:17:00,45.3775,201.188,4.99 +2017-12-23 10:32:00,44.9887,201.135,5.02 +2017-12-23 10:47:00,45.2288,201.068,5.05 +2017-12-23 11:02:00,45.085,201.06,5.06 +2017-12-23 11:17:00,45.3337,201.01,5.08 +2017-12-23 11:32:00,44.7575,200.99,5.1 +2017-12-23 11:47:00,45.0413,200.895,5.11 +2017-12-23 12:02:00,45.4812,200.897,5.13 +2017-12-23 12:17:00,45.7225,200.87,5.14 +2017-12-23 12:32:00,45.1362,200.832,5.16 +2017-12-23 12:47:00,45.3337,200.767,5.17 +2017-12-23 13:02:00,45.58,200.68,5.19 +2017-12-23 13:17:00,45.575,200.642,5.21 +2017-12-23 13:32:00,45.5287,200.56,5.23 +2017-12-23 13:47:00,45.5788,200.512,5.25 +2017-12-23 14:02:00,45.8688,200.44,5.26 +2017-12-23 14:17:00,45.2262,200.38,5.27 +2017-12-23 14:32:00,45.04,200.315,5.28 +2017-12-23 14:47:00,44.9412,200.217,5.28 +2017-12-23 15:02:00,45.2325,200.115,5.29 +2017-12-23 15:17:00,44.9463,199.962,5.28 +2017-12-23 15:32:00,44.905,199.89,5.28 +2017-12-23 15:47:00,45.1813,199.867,5.28 +2017-12-23 16:02:00,44.8063,199.845,5.27 +2017-12-23 16:17:00,44.8562,199.815,5.26 +2017-12-23 16:32:00,45.3312,199.755,5.26 +2017-12-23 16:47:00,45.1813,199.732,5.25 +2017-12-23 17:02:00,44.9875,199.658,5.25 +2017-12-23 17:17:00,45.33,199.555,5.25 +2017-12-23 17:32:00,45.3775,199.475,5.25 +2017-12-23 17:47:00,44.7537,199.443,5.25 +2017-12-23 18:02:00,45.1825,199.402,5.26 +2017-12-23 18:17:00,44.9887,199.44,5.28 +2017-12-23 18:32:00,44.7562,199.402,5.29 +2017-12-23 18:47:00,45.0875,199.357,5.3 +2017-12-23 19:02:00,45.2237,199.24,5.32 +2017-12-23 19:17:00,44.8512,199.258,5.32 +2017-12-23 19:32:00,45.475,199.14,5.34 +2017-12-23 19:47:00,45.53,199.122,5.35 +2017-12-23 20:02:00,44.7562,199.077,5.36 +2017-12-23 20:17:00,45.4762,198.955,5.37 +2017-12-23 20:32:00,44.4625,198.917,5.38 +2017-12-23 20:47:00,45.2812,198.732,5.37 +2017-12-23 21:02:00,45.0375,198.61,5.37 +2017-12-23 21:17:00,44.945,198.577,5.37 +2017-12-23 21:32:00,45.3812,198.44,5.38 +2017-12-23 21:47:00,44.465,198.39,5.39 +2017-12-23 22:02:00,45.4262,198.34,5.4 +2017-12-23 22:17:00,45.3325,198.33,5.41 +2017-12-23 22:32:00,45.2312,198.342,5.41 +2017-12-23 22:47:00,45.4313,198.242,5.41 +2017-12-23 23:02:00,45.4287,198.227,5.42 +2017-12-23 23:17:00,44.6625,198.205,5.43 +2017-12-23 23:32:00,44.66,198.195,5.44 +2017-12-23 23:47:00,45.7212,198.15,5.44 +2017-12-24 00:02:00,45.4812,198.152,5.44 +2017-12-24 00:17:00,45.035,198.117,5.45 +2017-12-24 00:32:00,44.27,198.1,5.45 +2017-12-24 00:47:00,44.9412,198.052,5.45 +2017-12-24 01:02:00,45.8162,198.015,5.46 +2017-12-24 01:17:00,45.6237,198.0,5.46 +2017-12-24 01:32:00,45.2787,197.967,5.47 +2017-12-24 01:47:00,45.2825,197.932,5.47 +2017-12-24 02:02:00,45.1362,197.973,5.48 +2017-12-24 02:17:00,45.5713,197.9,5.48 +2017-12-24 02:32:00,44.9463,197.82,5.48 +2017-12-24 02:47:00,44.8512,197.785,5.48 +2017-12-24 03:02:00,44.99,197.688,5.47 +2017-12-24 03:17:00,44.42,197.69,5.48 +2017-12-24 03:32:00,45.0825,197.552,5.48 +2017-12-24 03:47:00,45.2312,197.492,5.47 +2017-12-24 04:02:00,44.5612,197.497,5.47 +2017-12-24 04:17:00,44.56,197.402,5.47 +2017-12-24 04:32:00,44.3162,197.39,5.47 +2017-12-24 04:47:00,44.66,197.39,5.47 +2017-12-24 05:02:00,44.5625,197.327,5.47 +2017-12-24 05:17:00,45.425,197.302,5.47 +2017-12-24 05:32:00,44.8075,197.285,5.47 +2017-12-24 05:47:00,45.1825,197.265,5.46 +2017-12-24 06:02:00,45.0362,197.242,5.47 +2017-12-24 06:17:00,45.4275,197.237,5.48 +2017-12-24 06:32:00,44.9887,197.185,5.48 +2017-12-24 06:47:00,45.2812,197.155,5.48 +2017-12-24 07:02:00,45.8138,197.125,5.5 +2017-12-24 07:17:00,45.1787,197.077,5.51 +2017-12-24 07:32:00,44.3662,197.005,5.52 +2017-12-24 07:47:00,44.8025,196.945,5.53 +2017-12-24 08:02:00,44.5662,196.84,5.55 +2017-12-24 08:17:00,45.1338,196.152,5.56 +2017-12-24 08:32:00,45.18,195.18,5.58 +2017-12-24 08:47:00,45.3262,194.883,5.59 +2017-12-24 09:02:00,44.8975,194.715,5.6 +2017-12-24 09:17:00,45.4737,194.667,5.61 +2017-12-24 09:32:00,44.9,194.74,5.62 +2017-12-24 09:47:00,45.0362,194.75,5.64 +2017-12-24 10:02:00,45.4287,194.792,5.66 +2017-12-24 10:17:00,44.6075,194.86,5.67 +2017-12-24 10:32:00,45.2787,194.857,5.68 +2017-12-24 10:47:00,44.94,194.89,5.7 +2017-12-24 11:02:00,44.7075,194.967,5.73 +2017-12-24 11:17:00,45.0337,195.02,5.75 +2017-12-24 11:32:00,45.2812,195.055,5.76 +2017-12-24 11:47:00,44.3162,195.09,5.77 +2017-12-24 12:02:00,44.6612,195.142,5.77 +2017-12-24 12:17:00,44.4613,195.2,5.79 +2017-12-24 12:32:00,44.6125,195.237,5.81 +2017-12-24 12:47:00,44.3162,195.27,5.85 +2017-12-24 13:02:00,44.6562,195.305,5.88 +2017-12-24 13:17:00,44.705,195.372,5.9 +2017-12-24 13:32:00,44.415,195.408,5.93 +2017-12-24 13:47:00,44.4137,195.435,5.96 +2017-12-24 14:02:00,44.8487,195.482,5.98 +2017-12-24 14:17:00,44.8525,195.505,6.0 +2017-12-24 14:32:00,44.7038,195.582,6.01 +2017-12-24 14:47:00,44.8962,195.582,6.02 +2017-12-24 15:02:00,44.3637,195.59,6.03 +2017-12-24 15:17:00,44.4125,195.62,6.03 +2017-12-24 15:32:00,44.8525,195.667,6.03 +2017-12-24 15:47:00,44.3712,195.7,6.03 +2017-12-24 16:02:00,44.175,195.705,6.03 +2017-12-24 16:17:00,44.13,195.75,6.03 +2017-12-24 16:32:00,44.7513,195.783,6.03 +2017-12-24 16:47:00,44.415,195.792,6.03 +2017-12-24 17:02:00,44.66,195.848,6.04 +2017-12-24 17:17:00,44.6575,195.89,6.04 +2017-12-24 17:32:00,44.365,195.945,6.04 +2017-12-24 17:47:00,45.2275,195.978,6.05 +2017-12-24 18:02:00,44.8037,196.027,6.06 +2017-12-24 18:17:00,44.9912,196.092,6.06 +2017-12-24 18:32:00,45.0812,196.105,6.07 +2017-12-24 18:47:00,44.5662,196.133,6.08 +2017-12-24 19:02:00,44.9475,196.185,6.09 +2017-12-24 19:17:00,44.5675,196.235,6.1 +2017-12-24 19:32:00,44.3175,196.275,6.11 +2017-12-24 19:47:00,44.3112,196.335,6.13 +2017-12-24 20:02:00,44.6075,196.4,6.14 +2017-12-24 20:17:00,44.2237,196.422,6.14 +2017-12-24 20:32:00,44.8538,196.473,6.15 +2017-12-24 20:47:00,43.6437,196.497,6.15 +2017-12-24 21:02:00,44.0375,196.55,6.15 +2017-12-24 21:17:00,44.42,196.587,6.16 +2017-12-24 21:32:00,43.89,196.628,6.15 +2017-12-24 21:47:00,44.4125,196.658,6.16 +2017-12-24 22:02:00,44.6612,196.685,6.16 +2017-12-24 22:17:00,44.8988,196.74,6.17 +2017-12-24 22:32:00,45.0375,196.753,6.18 +2017-12-24 22:47:00,45.2862,196.77,6.18 +2017-12-24 23:02:00,44.5163,196.807,6.18 +2017-12-24 23:17:00,44.3725,196.812,6.18 +2017-12-24 23:32:00,44.61,196.88,6.18 +2017-12-24 23:47:00,45.4325,196.845,6.18 +2017-12-25 00:02:00,44.905,196.887,6.18 +2017-12-25 00:17:00,44.4225,196.913,6.18 +2017-12-25 00:32:00,44.5638,196.947,6.18 +2017-12-25 00:47:00,44.4212,196.95,6.18 +2017-12-25 01:02:00,44.8075,196.985,6.18 +2017-12-25 01:17:00,44.9475,197.01,6.18 +2017-12-25 01:32:00,44.2288,197.05,6.18 +2017-12-25 01:47:00,44.5175,197.107,6.18 +2017-12-25 02:02:00,44.7588,197.152,6.18 +2017-12-25 02:17:00,44.5675,197.185,6.19 +2017-12-25 02:32:00,44.37,197.235,6.2 +2017-12-25 02:47:00,44.7588,197.275,6.2 +2017-12-25 03:02:00,44.3237,197.318,6.2 +2017-12-25 03:17:00,44.9,197.355,6.2 +2017-12-25 03:32:00,44.8063,197.387,6.2 +2017-12-25 03:47:00,46.1612,197.413,6.2 +2017-12-25 04:02:00,44.2275,197.445,6.2 +2017-12-25 04:17:00,44.8525,197.447,6.21 +2017-12-25 04:32:00,44.9037,197.477,6.21 +2017-12-25 04:47:00,44.6587,197.475,6.21 +2017-12-25 05:02:00,44.6587,197.47,6.22 +2017-12-25 05:17:00,45.0875,197.482,6.22 +2017-12-25 05:32:00,44.76,197.49,6.22 +2017-12-25 05:47:00,45.5775,197.487,6.22 +2017-12-25 06:02:00,45.4313,197.517,6.22 +2017-12-25 06:17:00,45.72,197.525,6.23 +2017-12-25 06:30:59,44.76,197.54,6.23 +2017-12-25 06:47:00,45.3337,197.503,6.23 +2017-12-25 07:02:00,45.4287,197.512,6.24 +2017-12-25 07:17:00,44.8075,197.52,6.25 +2017-12-25 07:32:00,45.0875,197.545,6.25 +2017-12-25 07:47:00,44.5163,197.54,6.26 +2017-12-25 08:02:00,45.4313,197.572,6.27 +2017-12-25 08:17:00,45.1375,197.655,6.27 +2017-12-25 08:32:00,45.04,197.707,6.28 +2017-12-25 08:47:00,45.38,197.807,6.28 +2017-12-25 09:02:00,44.7562,197.87,6.29 +2017-12-25 09:17:00,45.915,197.955,6.29 +2017-12-25 09:32:00,45.5788,198.027,6.3 +2017-12-25 09:47:00,45.3812,198.1,6.32 +2017-12-25 10:02:00,44.8075,198.17,6.33 +2017-12-25 10:17:00,44.8962,198.225,6.34 +2017-12-25 10:32:00,44.5175,198.265,6.35 +2017-12-25 10:47:00,44.66,198.305,6.36 +2017-12-25 11:02:00,45.4325,198.302,6.38 +2017-12-25 11:17:00,45.2325,198.283,6.39 +2017-12-25 11:32:00,45.1312,198.288,6.4 +2017-12-25 11:47:00,45.3375,198.27,6.42 +2017-12-25 12:02:00,45.9613,198.265,6.43 +2017-12-25 12:17:00,45.425,198.262,6.45 +2017-12-25 12:32:00,45.3787,198.26,6.46 +2017-12-25 12:47:00,45.675,198.247,6.47 +2017-12-25 13:02:00,45.1813,198.25,6.48 +2017-12-25 13:17:00,45.23,198.253,6.49 +2017-12-25 13:32:00,45.4275,198.27,6.5 +2017-12-25 13:47:00,44.86,198.242,6.51 +2017-12-25 14:02:00,44.9925,198.227,6.51 +2017-12-25 14:17:00,45.2837,198.225,6.52 +2017-12-25 14:32:00,45.1762,198.17,6.52 +2017-12-25 14:47:00,45.7663,198.15,6.53 +2017-12-25 15:02:00,45.23,198.105,6.53 +2017-12-25 15:17:00,44.9912,198.1,6.53 +2017-12-25 15:32:00,44.515,198.092,6.53 +2017-12-25 15:47:00,44.9912,198.085,6.53 +2017-12-25 16:02:00,44.6113,198.072,6.54 +2017-12-25 16:17:00,44.9025,198.068,6.54 +2017-12-25 16:32:00,45.28,198.06,6.54 +2017-12-25 16:47:00,44.5687,198.052,6.54 +2017-12-25 17:02:00,44.945,198.038,6.53 +2017-12-25 17:17:00,45.2275,198.008,6.53 +2017-12-25 17:32:00,45.1325,197.997,6.51 +2017-12-25 17:47:00,44.4163,197.962,6.5 +2017-12-25 18:02:00,44.2275,197.88,6.49 +2017-12-25 18:17:00,44.9463,197.832,6.48 +2017-12-25 18:32:00,44.8538,197.783,6.47 +2017-12-25 18:47:00,44.6625,197.755,6.46 +2017-12-25 19:02:00,44.8037,197.725,6.44 +2017-12-25 19:17:00,45.3312,197.685,6.43 +2017-12-25 19:32:00,44.995,197.66,6.42 +2017-12-25 19:47:00,45.185,197.655,6.41 +2017-12-25 20:02:00,44.6075,197.647,6.39 +2017-12-25 20:17:00,44.66,197.622,6.38 +2017-12-25 20:32:00,44.66,197.612,6.36 +2017-12-25 20:47:00,44.4662,197.617,6.35 +2017-12-25 21:02:00,44.99,197.582,6.34 +2017-12-25 21:17:00,44.8063,197.538,6.33 +2017-12-25 21:32:00,45.6263,197.505,6.32 +2017-12-25 21:47:00,44.5612,197.47,6.31 +2017-12-25 22:02:00,45.085,197.455,6.3 +2017-12-25 22:17:00,45.0375,197.438,6.29 +2017-12-25 22:32:00,44.85,197.4,6.27 +2017-12-25 22:47:00,45.335,197.395,6.25 +2017-12-25 23:02:00,45.23,197.37,6.23 +2017-12-25 23:17:00,44.9475,197.31,6.22 +2017-12-25 23:32:00,44.6075,197.22,6.2 +2017-12-25 23:47:00,45.2312,197.152,6.18 +2017-12-26 00:02:00,44.8525,197.08,6.16 +2017-12-26 00:17:00,44.0375,197.038,6.15 +2017-12-26 00:32:00,44.8525,197.03,6.12 +2017-12-26 00:47:00,45.135,197.0,6.11 +2017-12-26 01:02:00,44.5175,197.01,6.09 +2017-12-26 01:17:00,44.6113,196.992,6.06 +2017-12-26 01:32:00,44.5163,196.97,6.05 +2017-12-26 01:47:00,44.5638,196.932,6.03 +2017-12-26 02:02:00,44.8063,196.88,6.0 +2017-12-26 02:17:00,45.1813,196.855,5.98 +2017-12-26 02:32:00,45.2325,196.827,5.96 +2017-12-26 02:47:00,44.5675,196.82,5.94 +2017-12-26 03:02:00,44.9037,196.78,5.93 +2017-12-26 03:17:00,44.5187,196.747,5.91 +2017-12-26 03:32:00,45.0863,196.7,5.89 +2017-12-26 03:47:00,44.8525,196.677,5.88 +2017-12-26 04:02:00,44.1775,196.625,5.86 +2017-12-26 04:17:00,44.4662,196.56,5.85 +2017-12-26 04:32:00,45.23,196.52,5.83 +2017-12-26 04:47:00,44.42,196.452,5.82 +2017-12-26 05:02:00,45.2312,196.397,5.81 +2017-12-26 05:17:00,44.565,196.318,5.79 +2017-12-26 05:32:00,45.2262,196.247,5.78 +2017-12-26 05:47:00,44.895,196.18,5.76 +2017-12-26 06:02:00,43.645,196.105,5.75 +2017-12-26 06:17:00,43.7925,196.04,5.73 +2017-12-26 06:32:00,44.6137,196.0,5.72 +2017-12-26 06:47:00,44.3688,196.003,5.71 +2017-12-26 07:02:00,44.4613,195.99,5.69 +2017-12-26 07:17:00,44.2725,195.992,5.66 +2017-12-26 07:32:00,44.1312,195.985,5.65 +2017-12-26 07:47:00,44.7575,195.925,5.64 +2017-12-26 08:02:00,44.415,195.538,5.62 +2017-12-26 08:17:00,44.6575,195.215,5.61 +2017-12-26 08:32:00,44.6562,195.02,5.6 +2017-12-26 08:47:00,44.035,194.943,5.59 +2017-12-26 09:02:00,44.315,194.885,5.58 +2017-12-26 09:17:00,44.3675,194.783,5.57 +2017-12-26 09:32:00,44.7525,194.753,5.56 +2017-12-26 09:47:00,43.8387,194.745,5.55 +2017-12-26 10:02:00,44.415,194.755,5.55 +2017-12-26 10:17:00,44.37,194.76,5.55 +2017-12-26 10:32:00,44.6087,194.765,5.55 +2017-12-26 10:47:00,44.515,194.775,5.56 +2017-12-26 11:02:00,44.66,194.772,5.57 +2017-12-26 11:17:00,44.2675,194.697,5.57 +2017-12-26 11:32:00,44.1762,194.68,5.57 +2017-12-26 11:47:00,44.5137,194.585,5.58 +2017-12-26 12:02:00,44.1775,194.562,5.58 +2017-12-26 12:17:00,43.9863,194.587,5.59 +2017-12-26 12:32:00,44.465,194.497,5.59 +2017-12-26 12:47:00,44.3162,194.503,5.59 +2017-12-26 13:02:00,44.5638,194.492,5.6 +2017-12-26 13:17:00,44.1775,194.505,5.6 +2017-12-26 13:32:00,44.2262,194.525,5.61 +2017-12-26 13:47:00,44.0287,194.52,5.61 +2017-12-26 14:02:00,43.8363,194.55,5.61 +2017-12-26 14:17:00,44.27,194.585,5.6 +2017-12-26 14:32:00,44.2675,194.592,5.59 +2017-12-26 14:47:00,43.6425,194.603,5.58 +2017-12-26 15:02:00,44.13,194.61,5.58 +2017-12-26 15:17:00,44.4163,194.645,5.58 +2017-12-26 15:32:00,43.8875,194.645,5.57 +2017-12-26 15:47:00,44.0375,194.665,5.56 +2017-12-26 16:02:00,44.035,194.675,5.55 +2017-12-26 16:17:00,44.0863,194.71,5.54 +2017-12-26 16:32:00,43.455,194.728,5.52 +2017-12-26 16:47:00,44.3688,194.753,5.51 +2017-12-26 17:02:00,44.0837,194.772,5.49 +2017-12-26 17:17:00,44.565,194.837,5.46 +2017-12-26 17:32:00,43.7438,194.915,5.44 +2017-12-26 17:47:00,43.9375,194.975,5.43 +2017-12-26 18:02:00,43.84,195.027,5.41 +2017-12-26 18:17:00,43.3637,195.055,5.39 +2017-12-26 18:32:00,43.5,195.122,5.37 +2017-12-26 18:47:00,43.6925,195.16,5.35 +2017-12-26 19:02:00,43.5462,195.22,5.33 +2017-12-26 19:17:00,43.5962,195.265,5.3 +2017-12-26 19:32:00,43.645,195.315,5.28 +2017-12-26 19:47:00,43.74,195.357,5.26 +2017-12-26 20:02:00,43.9825,195.395,5.24 +2017-12-26 20:17:00,43.6912,195.43,5.22 +2017-12-26 20:32:00,44.2225,195.438,5.2 +2017-12-26 20:47:00,44.0362,195.452,5.18 +2017-12-26 21:02:00,43.9362,195.385,5.16 +2017-12-26 21:17:00,43.7913,195.362,5.14 +2017-12-26 21:32:00,43.7887,195.365,5.12 +2017-12-26 21:47:00,43.6462,195.348,5.1 +2017-12-26 22:02:00,43.9887,195.32,5.08 +2017-12-26 22:17:00,43.84,195.307,5.05 +2017-12-26 22:32:00,43.5475,195.283,5.03 +2017-12-26 22:47:00,43.8387,195.26,5.01 +2017-12-26 23:02:00,43.7412,195.237,4.99 +2017-12-26 23:17:00,43.5,195.21,4.97 +2017-12-26 23:32:00,43.2237,195.19,4.96 +2017-12-26 23:47:00,43.7425,195.133,4.95 +2017-12-27 00:02:00,43.7425,195.072,4.94 +2017-12-27 00:17:00,43.645,195.005,4.92 +2017-12-27 00:32:00,43.3213,194.98,4.9 +2017-12-27 00:47:00,43.5025,194.967,4.88 +2017-12-27 01:02:00,43.7412,194.987,4.86 +2017-12-27 01:17:00,43.5,195.003,4.84 +2017-12-27 01:32:00,43.365,194.99,4.82 +2017-12-27 01:47:00,43.645,195.012,4.8 +2017-12-27 02:02:00,43.6462,195.047,4.77 +2017-12-27 02:17:00,43.69,195.085,4.75 +2017-12-27 02:32:00,43.84,195.09,4.73 +2017-12-27 02:47:00,43.0812,195.117,4.71 +2017-12-27 03:02:00,44.32,195.152,4.7 +2017-12-27 03:17:00,43.4137,195.17,4.68 +2017-12-27 03:32:00,44.0875,195.2,4.67 +2017-12-27 03:47:00,43.5462,195.228,4.65 +2017-12-27 04:02:00,43.8937,195.258,4.64 +2017-12-27 04:17:00,43.5013,195.3,4.63 +2017-12-27 04:32:00,43.2687,195.312,4.62 +2017-12-27 04:47:00,44.0825,195.332,4.61 +2017-12-27 05:02:00,43.6875,195.362,4.59 +2017-12-27 05:17:00,43.5962,195.38,4.59 +2017-12-27 05:32:00,43.3187,195.415,4.58 +2017-12-27 05:47:00,43.985,195.39,4.57 +2017-12-27 06:02:00,43.4575,195.4,4.56 +2017-12-27 06:17:00,43.3175,195.395,4.55 +2017-12-27 06:32:00,44.1312,195.36,4.54 +2017-12-27 06:47:00,43.7438,195.355,4.53 +2017-12-27 07:02:00,43.2687,195.34,4.53 +2017-12-27 07:17:00,43.5475,195.33,4.51 +2017-12-27 07:32:00,43.7425,195.312,4.51 +2017-12-27 07:47:00,44.0325,195.32,4.5 +2017-12-27 08:02:00,43.8387,195.32,4.49 +2017-12-27 08:17:00,44.0387,195.31,4.49 +2017-12-27 08:32:00,43.7925,195.327,4.48 +2017-12-27 08:47:00,43.6425,195.342,4.47 +2017-12-27 09:02:00,43.6937,195.353,4.47 +2017-12-27 09:17:00,43.5075,195.367,4.47 +2017-12-27 09:32:00,43.8925,195.397,4.47 +2017-12-27 09:47:00,43.5462,195.383,4.48 +2017-12-27 10:02:00,43.6912,195.425,4.48 +2017-12-27 10:17:00,43.6425,195.413,4.49 +2017-12-27 10:32:00,42.9825,195.413,4.5 +2017-12-27 10:47:00,44.3175,195.422,4.51 +2017-12-27 11:02:00,43.69,195.4,4.51 +2017-12-27 11:17:00,43.3187,195.392,4.52 +2017-12-27 11:32:00,43.5962,195.335,4.53 +2017-12-27 11:47:00,43.6437,195.31,4.55 +2017-12-27 12:02:00,43.4525,195.242,4.56 +2017-12-27 12:17:00,43.4087,195.26,4.57 +2017-12-27 12:32:00,43.6,195.247,4.58 +2017-12-27 12:47:00,43.4087,195.193,4.58 +2017-12-27 13:02:00,43.2237,195.085,4.59 +2017-12-27 13:17:00,43.1275,194.97,4.59 +2017-12-27 13:32:00,43.3213,194.975,4.6 +2017-12-27 13:47:00,43.365,194.982,4.6 +2017-12-27 14:02:00,43.6,194.952,4.6 +2017-12-27 14:17:00,42.9863,194.917,4.6 +2017-12-27 14:32:00,43.6912,194.885,4.61 +2017-12-27 14:47:00,43.41,194.93,4.61 +2017-12-27 15:02:00,43.3162,194.845,4.6 +2017-12-27 15:17:00,43.5962,194.902,4.6 +2017-12-27 15:32:00,42.935,194.825,4.59 +2017-12-27 15:47:00,43.4075,194.88,4.59 +2017-12-27 16:02:00,42.6912,194.802,4.59 +2017-12-27 16:17:00,43.27,194.792,4.59 +2017-12-27 16:32:00,43.3613,194.783,4.59 +2017-12-27 16:47:00,43.125,194.762,4.58 +2017-12-27 17:02:00,43.3187,194.783,4.58 +2017-12-27 17:17:00,42.8838,194.74,4.57 +2017-12-27 17:32:00,43.3225,194.728,4.57 +2017-12-27 17:47:00,43.3213,194.705,4.56 +2017-12-27 18:02:00,43.365,194.732,4.56 +2017-12-27 18:17:00,43.32,194.642,4.55 +2017-12-27 18:32:00,43.4062,194.625,4.54 +2017-12-27 18:47:00,43.415,194.577,4.53 +2017-12-27 19:02:00,43.6912,194.557,4.52 +2017-12-27 19:17:00,43.41,194.5,4.51 +2017-12-27 19:32:00,43.1275,194.4,4.5 +2017-12-27 19:47:00,43.505,194.355,4.49 +2017-12-27 20:02:00,43.1275,194.348,4.48 +2017-12-27 20:17:00,43.985,194.335,4.48 +2017-12-27 20:32:00,43.6437,194.302,4.47 +2017-12-27 20:47:00,43.0863,194.277,4.46 +2017-12-27 21:02:00,42.8387,194.228,4.46 +2017-12-27 21:17:00,43.365,194.195,4.45 +2017-12-27 21:32:00,43.5987,194.158,4.44 +2017-12-27 21:47:00,43.32,194.16,4.44 +2017-12-27 22:02:00,43.5013,194.095,4.43 +2017-12-27 22:17:00,43.3637,194.062,4.42 +2017-12-27 22:32:00,43.4575,194.03,4.41 +2017-12-27 22:47:00,43.3625,194.062,4.4 +2017-12-27 23:02:00,43.0337,193.967,4.39 +2017-12-27 23:17:00,43.74,193.922,4.38 +2017-12-27 23:32:00,43.7925,193.885,4.37 +2017-12-27 23:47:00,43.5475,193.855,4.37 +2017-12-28 00:02:00,42.985,193.765,4.37 +2017-12-28 00:17:00,43.2237,193.77,4.36 +2017-12-28 00:32:00,43.0812,193.635,4.35 +2017-12-28 00:47:00,43.41,193.572,4.34 +2017-12-28 01:02:00,43.1738,193.512,4.34 +2017-12-28 01:17:00,42.9863,193.48,4.34 +2017-12-28 01:32:00,43.3675,193.413,4.33 +2017-12-28 01:47:00,43.8875,193.372,4.32 +2017-12-28 02:02:00,43.035,193.32,4.3 +2017-12-28 02:17:00,44.0312,193.28,4.3 +2017-12-28 02:32:00,43.7887,193.237,4.3 +2017-12-28 02:47:00,43.7425,193.207,4.3 +2017-12-28 03:02:00,42.6462,193.137,4.29 +2017-12-28 03:17:00,43.505,193.0,4.29 +2017-12-28 03:32:00,42.9362,192.862,4.29 +2017-12-28 03:47:00,43.1762,192.735,4.28 +2017-12-28 04:02:00,43.5025,192.695,4.28 +2017-12-28 04:17:00,43.0812,192.635,4.28 +2017-12-28 04:32:00,43.5013,192.57,4.27 +2017-12-28 04:47:00,43.7412,192.525,4.27 +2017-12-28 05:02:00,43.2212,192.485,4.27 +2017-12-28 05:17:00,43.2175,192.462,4.27 +2017-12-28 05:32:00,43.4562,192.443,4.27 +2017-12-28 05:47:00,43.7425,192.39,4.27 +2017-12-28 06:02:00,43.4062,192.387,4.27 +2017-12-28 06:17:00,43.5475,192.318,4.27 +2017-12-28 06:32:00,43.2675,192.288,4.27 +2017-12-28 06:47:00,43.1225,192.267,4.28 +2017-12-28 07:02:00,43.2687,192.18,4.28 +2017-12-28 07:17:00,43.1738,192.11,4.28 +2017-12-28 07:32:00,43.0312,192.02,4.27 +2017-12-28 07:47:00,43.2712,191.96,4.27 +2017-12-28 08:02:00,43.2725,191.895,4.27 +2017-12-28 08:17:00,43.5013,191.875,4.27 +2017-12-28 08:32:00,43.2712,191.845,4.28 +2017-12-28 08:47:00,43.9825,191.762,4.27 +2017-12-28 09:02:00,42.8825,191.71,4.28 +2017-12-28 09:17:00,43.315,191.675,4.28 +2017-12-28 09:32:00,43.5013,191.637,4.28 +2017-12-28 09:47:00,43.7913,191.603,4.29 +2017-12-28 10:02:00,43.545,191.542,4.3 +2017-12-28 10:17:00,43.3175,191.355,4.31 +2017-12-28 10:32:00,42.9812,190.595,4.31 +2017-12-28 10:47:00,43.0837,190.103,4.31 +2017-12-28 11:02:00,43.885,189.897,4.32 +2017-12-28 11:17:00,43.4538,189.802,4.33 +2017-12-28 11:32:00,43.3213,189.8,4.34 +2017-12-28 11:47:00,43.5,189.795,4.35 +2017-12-28 12:02:00,42.9325,189.855,4.35 +2017-12-28 12:17:00,42.985,189.892,4.35 +2017-12-28 12:32:00,43.2225,189.95,4.36 +2017-12-28 12:47:00,42.6925,190.025,4.37 +2017-12-28 13:02:00,43.1725,190.092,4.37 +2017-12-28 13:17:00,43.6937,190.165,4.38 +2017-12-28 13:32:00,42.8887,190.247,4.38 +2017-12-28 13:47:00,43.0775,190.315,4.39 +2017-12-28 14:02:00,43.3162,190.395,4.39 +2017-12-28 14:17:00,42.7862,190.445,4.4 +2017-12-28 14:32:00,43.5,190.515,4.4 +2017-12-28 14:47:00,42.7887,190.59,4.4 +2017-12-28 15:02:00,43.1725,190.637,4.39 +2017-12-28 15:17:00,43.1775,190.7,4.38 +2017-12-28 15:32:00,43.315,190.758,4.38 +2017-12-28 15:47:00,42.7387,190.81,4.38 +2017-12-28 16:02:00,43.1725,190.848,4.37 +2017-12-28 16:17:00,43.17,190.883,4.36 +2017-12-28 16:32:00,43.5,190.932,4.35 +2017-12-28 16:47:00,43.4062,190.973,4.35 +2017-12-28 17:02:00,43.2675,191.003,4.35 +2017-12-28 17:17:00,43.0762,191.027,4.34 +2017-12-28 17:32:00,43.08,191.057,4.33 +2017-12-28 17:47:00,42.93,191.09,4.32 +2017-12-28 18:02:00,42.7363,191.13,4.31 +2017-12-28 18:17:00,43.36,191.17,4.31 +2017-12-28 18:32:00,43.835,191.207,4.3 +2017-12-28 18:47:00,43.27,191.215,4.3 +2017-12-28 19:02:00,43.4075,191.228,4.29 +2017-12-28 19:17:00,43.8363,191.217,4.29 +2017-12-28 19:32:00,43.6413,191.202,4.29 +2017-12-28 19:47:00,43.5938,191.207,4.28 +2017-12-28 20:02:00,43.4512,191.225,4.27 +2017-12-28 20:17:00,43.365,191.247,4.26 +2017-12-28 20:32:00,43.6912,191.262,4.25 +2017-12-28 20:47:00,43.79,191.288,4.24 +2017-12-28 21:02:00,43.4538,191.295,4.23 +2017-12-28 21:17:00,43.4075,191.318,4.22 +2017-12-28 21:32:00,43.3637,191.34,4.21 +2017-12-28 21:47:00,43.7412,191.357,4.2 +2017-12-28 22:02:00,43.6413,191.353,4.19 +2017-12-28 22:17:00,43.6387,191.357,4.18 +2017-12-28 22:32:00,43.0287,191.365,4.17 +2017-12-28 22:47:00,43.7875,191.335,4.16 +2017-12-28 23:02:00,43.6413,191.337,4.14 +2017-12-28 23:17:00,42.8825,191.345,4.13 +2017-12-28 23:32:00,43.315,191.362,4.12 +2017-12-28 23:47:00,43.3162,191.36,4.12 +2017-12-29 00:02:00,43.41,191.39,4.11 +2017-12-29 00:17:00,43.6,191.41,4.11 +2017-12-29 00:32:00,43.4562,191.41,4.1 +2017-12-29 00:47:00,43.1237,191.467,4.1 +2017-12-29 01:02:00,44.1312,191.465,4.08 +2017-12-29 01:17:00,42.7862,191.455,4.07 +2017-12-29 01:32:00,43.9837,191.447,4.06 +2017-12-29 01:47:00,43.8387,191.465,4.05 +2017-12-29 02:02:00,43.5037,191.478,4.03 +2017-12-29 02:17:00,44.085,191.455,4.02 +2017-12-29 02:32:00,43.5,191.445,4.01 +2017-12-29 02:47:00,43.2225,191.45,3.99 +2017-12-29 03:02:00,42.9325,191.45,3.98 +2017-12-29 03:17:00,43.4613,191.44,3.97 +2017-12-29 03:32:00,43.1738,191.387,3.95 +2017-12-29 03:47:00,43.1712,191.355,3.94 +2017-12-29 04:02:00,43.4562,191.332,3.92 +2017-12-29 04:17:00,42.8363,191.307,3.91 +2017-12-29 04:32:00,43.0788,191.272,3.89 +2017-12-29 04:47:00,43.13,191.22,3.88 +2017-12-29 05:02:00,42.6888,191.12,3.87 +2017-12-29 05:17:00,42.8862,191.042,3.86 +2017-12-29 05:32:00,43.6925,190.982,3.84 +2017-12-29 05:47:00,43.74,190.935,3.83 +2017-12-29 06:02:00,42.5962,190.895,3.81 +2017-12-29 06:17:00,43.41,190.848,3.81 +2017-12-29 06:32:00,43.4062,190.827,3.8 +2017-12-29 06:47:00,42.685,190.792,3.79 +2017-12-29 07:02:00,42.9875,190.753,3.78 +2017-12-29 07:17:00,43.3187,190.723,3.77 +2017-12-29 07:32:00,43.1775,190.695,3.77 +2017-12-29 07:47:00,42.935,190.682,3.76 +2017-12-29 08:02:00,43.0337,190.625,3.76 +2017-12-29 08:17:00,43.075,190.552,3.75 +2017-12-29 08:32:00,43.3175,190.503,3.75 +2017-12-29 08:47:00,42.9812,190.38,3.75 +2017-12-29 09:02:00,44.1325,190.315,3.75 +2017-12-29 09:17:00,43.2687,190.215,3.76 +2017-12-29 09:32:00,43.4075,190.117,3.76 +2017-12-29 09:47:00,43.5025,190.08,3.75 +2017-12-29 10:02:00,43.365,190.057,3.74 +2017-12-29 10:17:00,43.6425,190.057,3.77 +2017-12-29 10:32:00,43.6888,190.038,3.79 +2017-12-29 10:47:00,43.4525,190.072,3.81 +2017-12-29 11:02:00,43.405,190.027,3.81 +2017-12-29 11:17:00,43.5938,189.995,3.82 +2017-12-29 11:32:00,43.6888,189.967,3.83 +2017-12-29 11:47:00,43.7425,189.943,3.84 +2017-12-29 12:02:00,43.225,189.872,3.84 +2017-12-29 12:17:00,43.1263,189.835,3.85 +2017-12-29 12:32:00,43.4987,189.827,3.86 +2017-12-29 12:47:00,43.645,189.795,3.87 +2017-12-29 13:02:00,43.7412,189.695,3.87 +2017-12-29 13:17:00,44.1325,189.585,3.87 +2017-12-29 13:32:00,43.595,189.515,3.85 +2017-12-29 13:47:00,43.1263,189.443,3.84 +2017-12-29 14:02:00,43.4075,189.387,3.84 +2017-12-29 14:17:00,43.08,189.337,3.84 +2017-12-29 14:32:00,43.4538,189.295,3.84 +2017-12-29 14:47:00,42.7862,189.245,3.83 +2017-12-29 15:02:00,43.4512,189.217,3.83 +2017-12-29 15:17:00,43.595,189.21,3.82 +2017-12-29 15:32:00,43.365,189.193,3.81 +2017-12-29 15:47:00,43.2738,189.172,3.81 +2017-12-29 16:02:00,43.745,189.165,3.8 +2017-12-29 16:17:00,43.6425,189.125,3.78 +2017-12-29 16:32:00,44.0837,189.105,3.77 +2017-12-29 16:47:00,43.405,189.065,3.76 +2017-12-29 17:02:00,43.595,189.047,3.74 +2017-12-29 17:17:00,43.595,189.0,3.72 +2017-12-29 17:32:00,43.27,188.952,3.7 +2017-12-29 17:47:00,43.3175,188.908,3.69 +2017-12-29 18:02:00,43.5488,188.878,3.68 +2017-12-29 18:17:00,42.74,188.835,3.67 +2017-12-29 18:32:00,43.7925,188.78,3.65 +2017-12-29 18:47:00,42.8375,188.682,3.64 +2017-12-29 19:02:00,42.7387,188.565,3.63 +2017-12-29 19:17:00,43.27,188.48,3.62 +2017-12-29 19:32:00,43.27,188.383,3.6 +2017-12-29 19:47:00,43.455,188.302,3.58 +2017-12-29 20:02:00,43.32,188.23,3.56 +2017-12-29 20:17:00,42.7425,188.163,3.55 +2017-12-29 20:32:00,44.035,188.11,3.54 +2017-12-29 20:47:00,43.37,188.04,3.53 +2017-12-29 21:02:00,43.2237,187.947,3.51 +2017-12-29 21:17:00,43.3675,187.853,3.5 +2017-12-29 21:32:00,43.2225,187.8,3.49 +2017-12-29 21:47:00,43.5013,187.74,3.48 +2017-12-29 22:02:00,43.5962,187.66,3.47 +2017-12-29 22:17:00,43.455,187.56,3.46 +2017-12-29 22:32:00,43.3187,187.51,3.45 +2017-12-29 22:47:00,44.1312,187.447,3.43 +2017-12-29 23:02:00,43.795,187.422,3.42 +2017-12-29 23:17:00,43.5475,187.378,3.42 +2017-12-29 23:32:00,43.1725,187.302,3.4 +2017-12-29 23:47:00,43.7412,187.253,3.38 +2017-12-30 00:02:00,43.1287,187.202,3.37 +2017-12-30 00:17:00,43.2262,187.163,3.36 +2017-12-30 00:32:00,43.0837,187.107,3.35 +2017-12-30 00:47:00,43.645,187.003,3.34 +2017-12-30 01:02:00,43.6925,186.905,3.33 +2017-12-30 01:17:00,43.5488,186.827,3.32 +2017-12-30 01:32:00,43.8425,186.765,3.31 +2017-12-30 01:47:00,43.8412,186.723,3.31 +2017-12-30 02:02:00,43.6462,186.663,3.29 +2017-12-30 02:17:00,43.455,186.622,3.28 +2017-12-30 02:32:00,43.8412,186.607,3.28 +2017-12-30 02:47:00,43.745,186.562,3.27 +2017-12-30 03:02:00,43.595,186.525,3.27 +2017-12-30 03:17:00,43.7438,186.512,3.26 +2017-12-30 03:32:00,43.6937,186.46,3.24 +2017-12-30 03:47:00,42.7412,186.415,3.23 +2017-12-30 04:02:00,43.7462,186.365,3.22 +2017-12-30 04:17:00,44.3637,186.318,3.21 +2017-12-30 04:32:00,43.595,186.27,3.19 +2017-12-30 04:47:00,44.1787,186.182,3.19 +2017-12-30 05:02:00,44.1338,186.137,3.17 +2017-12-30 05:17:00,43.5512,186.062,3.16 +2017-12-30 05:32:00,43.505,186.012,3.16 +2017-12-30 05:47:00,43.6,185.92,3.15 +2017-12-30 06:02:00,43.4562,185.177,3.15 +2017-12-30 06:17:00,43.7475,183.482,3.15 +2017-12-30 06:32:00,43.4112,182.517,3.15 +2017-12-30 06:47:00,43.4575,182.055,3.15 +2017-12-30 07:02:00,43.55,181.84,3.15 +2017-12-30 07:17:00,43.6475,181.792,3.14 +2017-12-30 07:32:00,43.745,181.822,3.13 +2017-12-30 07:47:00,43.795,181.887,3.14 +2017-12-30 08:02:00,43.645,181.962,3.14 +2017-12-30 08:17:00,43.455,182.022,3.14 +2017-12-30 08:32:00,43.6937,182.1,3.13 +2017-12-30 08:47:00,43.6413,182.182,3.13 +2017-12-30 09:02:00,43.2725,182.255,3.14 +2017-12-30 09:17:00,43.3187,182.325,3.14 +2017-12-30 09:32:00,43.035,182.408,3.15 +2017-12-30 09:47:00,43.5975,182.492,3.15 +2017-12-30 10:02:00,43.7425,182.565,3.16 +2017-12-30 10:17:00,43.6437,182.655,3.17 +2017-12-30 10:32:00,43.4087,182.715,3.18 +2017-12-30 10:47:00,43.4562,182.807,3.18 +2017-12-30 11:02:00,43.99,182.875,3.19 +2017-12-30 11:17:00,43.3712,182.978,3.2 +2017-12-30 11:32:00,43.9388,183.062,3.21 +2017-12-30 11:47:00,43.7913,183.135,3.22 +2017-12-30 12:02:00,43.6963,183.24,3.23 +2017-12-30 12:17:00,43.7937,183.31,3.27 +2017-12-30 12:32:00,43.6437,183.362,3.29 +2017-12-30 12:47:00,43.4062,183.395,3.31 +2017-12-30 13:02:00,43.5525,183.487,3.32 +2017-12-30 13:17:00,43.2738,183.575,3.33 +2017-12-30 13:32:00,43.415,183.628,3.35 +2017-12-30 13:47:00,43.7438,183.68,3.36 +2017-12-30 14:02:00,43.455,183.717,3.37 +2017-12-30 14:17:00,43.6437,183.765,3.38 +2017-12-30 14:32:00,43.695,183.78,3.4 +2017-12-30 14:47:00,43.3213,183.83,3.41 +2017-12-30 15:02:00,43.035,183.86,3.42 +2017-12-30 15:17:00,43.6413,183.9,3.43 +2017-12-30 15:32:00,42.6937,183.94,3.45 +2017-12-30 15:47:00,43.2237,183.938,3.46 +2017-12-30 16:02:00,43.8412,183.978,3.46 +2017-12-30 16:17:00,43.5987,183.982,3.47 +2017-12-30 16:32:00,43.595,184.01,3.49 +2017-12-30 16:47:00,43.8412,184.057,3.5 +2017-12-30 17:02:00,43.1787,184.087,3.51 +2017-12-30 17:17:00,44.085,184.1,3.52 +2017-12-30 17:32:00,43.8925,184.137,3.53 +2017-12-30 17:47:00,43.505,184.165,3.54 +2017-12-30 18:02:00,44.0875,184.237,3.55 +2017-12-30 18:17:00,43.08,184.247,3.56 +2017-12-30 18:32:00,44.1275,184.245,3.56 +2017-12-30 18:47:00,43.7913,184.258,3.57 +2017-12-30 19:02:00,43.5,184.24,3.58 +2017-12-30 19:17:00,43.7913,184.195,3.59 +2017-12-30 19:32:00,43.5925,184.197,3.6 +2017-12-30 19:47:00,43.5975,184.145,3.6 +2017-12-30 20:02:00,42.8862,184.15,3.61 +2017-12-30 20:17:00,43.6925,184.212,3.62 +2017-12-30 20:32:00,43.6425,184.202,3.62 +2017-12-30 20:47:00,43.3675,184.283,3.63 +2017-12-30 21:02:00,43.6462,184.31,3.64 +2017-12-30 21:17:00,43.0337,184.342,3.66 +2017-12-30 21:32:00,43.645,184.353,3.67 +2017-12-30 21:47:00,42.9362,184.395,3.69 +2017-12-30 22:02:00,43.6413,184.44,3.7 +2017-12-30 22:17:00,44.0362,184.435,3.72 +2017-12-30 22:32:00,43.5013,184.432,3.73 +2017-12-30 22:47:00,43.5938,184.422,3.74 +2017-12-30 23:02:00,43.5512,184.413,3.75 +2017-12-30 23:17:00,43.5962,184.387,3.76 +2017-12-30 23:32:00,43.2225,184.42,3.78 +2017-12-30 23:47:00,43.5975,184.415,3.8 +2017-12-31 00:02:00,43.595,184.435,3.81 +2017-12-31 00:17:00,43.4525,184.473,3.83 +2017-12-31 00:32:00,44.085,184.51,3.84 +2017-12-31 00:47:00,43.2212,184.535,3.86 +2017-12-31 01:02:00,44.4637,184.585,3.87 +2017-12-31 01:17:00,43.8425,184.615,3.88 +2017-12-31 01:32:00,43.9388,184.652,3.89 +2017-12-31 01:47:00,44.2262,184.672,3.89 +2017-12-31 02:02:00,43.365,184.717,3.9 +2017-12-31 02:17:00,43.4125,184.745,3.91 +2017-12-31 02:32:00,43.6425,184.767,3.91 +2017-12-31 02:47:00,43.8438,184.805,3.92 +2017-12-31 03:02:00,43.6488,184.812,3.93 +2017-12-31 03:17:00,43.8887,184.78,3.94 +2017-12-31 03:32:00,43.46,184.783,3.95 +2017-12-31 03:47:00,44.1762,184.818,3.95 +2017-12-31 04:02:00,43.2712,184.825,3.97 +2017-12-31 04:17:00,43.6437,184.867,3.98 +2017-12-31 04:32:00,44.0825,184.91,3.99 +2017-12-31 04:47:00,43.795,184.93,4.0 +2017-12-31 05:02:00,44.4662,184.922,4.01 +2017-12-31 05:17:00,43.55,184.938,4.02 +2017-12-31 05:32:00,43.795,184.955,4.03 +2017-12-31 05:47:00,43.7462,184.997,4.04 +2017-12-31 06:02:00,43.035,184.987,4.06 +2017-12-31 06:17:00,43.5013,185.022,4.07 +2017-12-31 06:32:00,43.79,185.042,4.08 +2017-12-31 06:47:00,44.2725,185.07,4.1 +2017-12-31 07:02:00,43.9362,185.085,4.12 +2017-12-31 07:17:00,43.5962,185.112,4.14 +2017-12-31 07:32:00,44.1787,185.128,4.15 +2017-12-31 07:47:00,44.2212,185.133,4.16 +2017-12-31 08:02:00,43.8375,185.142,4.18 +2017-12-31 08:17:00,43.9863,185.16,4.2 +2017-12-31 08:32:00,43.695,185.15,4.22 +2017-12-31 08:47:00,43.6475,185.172,4.24 +2017-12-31 09:02:00,43.5025,185.188,4.25 +2017-12-31 09:17:00,43.985,185.212,4.26 +2017-12-31 09:32:00,43.8387,185.258,4.29 +2017-12-31 09:47:00,43.84,185.277,4.31 +2017-12-31 10:02:00,43.89,185.337,4.34 +2017-12-31 10:17:00,44.13,185.378,4.36 +2017-12-31 10:32:00,43.7913,185.443,4.39 +2017-12-31 10:47:00,43.1775,185.46,4.43 +2017-12-31 11:02:00,43.4112,185.503,4.47 +2017-12-31 11:17:00,44.1338,185.54,4.5 +2017-12-31 11:32:00,43.55,185.535,4.53 +2017-12-31 11:47:00,43.3662,185.57,4.57 +2017-12-31 12:02:00,43.3187,185.63,4.59 +2017-12-31 12:17:00,43.55,185.622,4.62 +2017-12-31 12:32:00,43.5987,185.637,4.67 +2017-12-31 12:47:00,43.5,185.647,4.71 +2017-12-31 13:02:00,43.79,185.667,4.75 +2017-12-31 13:17:00,43.4075,185.642,4.79 +2017-12-31 13:32:00,43.0775,185.675,4.82 +2017-12-31 13:47:00,44.0837,185.663,4.86 +2017-12-31 14:02:00,43.2225,185.677,4.89 +2017-12-31 14:17:00,43.1762,185.68,4.92 +2017-12-31 14:32:00,43.9412,185.7,4.94 +2017-12-31 14:47:00,43.035,185.732,4.96 +2017-12-31 15:02:00,43.9388,185.747,4.97 +2017-12-31 15:17:00,43.89,185.772,4.99 +2017-12-31 15:32:00,44.085,185.812,5.0 +2017-12-31 15:47:00,44.1362,185.84,5.02 +2017-12-31 16:02:00,43.6012,185.853,5.04 +2017-12-31 16:17:00,43.5975,185.915,5.05 +2017-12-31 16:32:00,43.9863,185.95,5.08 +2017-12-31 16:47:00,43.41,185.938,5.1 +2017-12-31 17:02:00,44.08,185.995,5.11 +2017-12-31 17:17:00,43.2725,186.017,5.13 +2017-12-31 17:32:00,43.5975,186.03,5.14 +2017-12-31 17:47:00,43.8875,186.035,5.17 +2017-12-31 18:02:00,43.6937,186.022,5.2 +2017-12-31 18:17:00,43.46,186.015,5.22 +2017-12-31 18:32:00,43.4087,186.015,5.24 +2017-12-31 18:47:00,43.1787,186.008,5.25 +2017-12-31 19:02:00,43.6462,186.062,5.27 +2017-12-31 19:17:00,43.985,186.05,5.29 +2017-12-31 19:32:00,44.1338,185.99,5.31 +2017-12-31 19:47:00,43.695,186.017,5.33 +2017-12-31 20:02:00,44.2237,186.012,5.35 +2017-12-31 20:17:00,43.5488,186.03,5.37 +2017-12-31 20:32:00,44.1787,186.02,5.39 +2017-12-31 20:47:00,43.6,186.065,5.41 +2017-12-31 21:02:00,43.7962,186.055,5.41 +2017-12-31 21:17:00,44.0825,186.072,5.43 +2017-12-31 21:32:00,43.1275,186.062,5.43 +2017-12-31 21:47:00,43.7438,186.087,5.44 +2017-12-31 22:02:00,44.0837,186.068,5.46 +2017-12-31 22:17:00,43.415,186.08,5.47 +2017-12-31 22:32:00,43.7962,186.065,5.48 +2017-12-31 22:47:00,43.2275,186.06,5.49 +2017-12-31 23:02:00,43.6937,186.115,5.49 +2017-12-31 23:17:00,43.6012,186.137,5.5 +2017-12-31 23:32:00,43.2237,186.128,5.51 +2017-12-31 23:47:00,43.7438,186.13,5.53 diff --git a/sphinx-doc/ressources/data/hydro_maint.csv b/sphinx-doc/ressources/data/hydro_maint.csv new file mode 100644 index 0000000000000000000000000000000000000000..57a0a889d75760387f03c9a4ba1ae8b6afe25d88 --- /dev/null +++ b/sphinx-doc/ressources/data/hydro_maint.csv @@ -0,0 +1,37 @@ +Timestamp,maint +2016-01-10 11:15:00,2016-01-10 12:15:00 +2016-01-12 14:40:00,2016-01-12 15:30:00 +2016-02-10 13:40:00,2016-02-10 14:40:00 +2016-02-24 16:40:00,2016-02-24 17:30:00 +2016-03-08 09:30:00,2016-03-08 10:30:00 +2016-03-15 12:00:00,2016-03-15 16:30:00 +2016-03-21 11:00:00,2016-03-21 14:00:00 +2016-04-05 07:00:00,2016-04-05 07:55:00 +2016-05-02 15:30:00,2016-05-02 16:30:00 +2016-05-03 15:25:00,2016-05-03 16:35:00 +2016-05-31 07:00:00,2016-05-31 08:25:00 +2016-06-02 13:00:00,2016-06-02 15:50:00 +2016-06-28 07:30:00,2016-06-28 08:45:00 +2016-06-28 09:30:00,2016-06-28 10:30:00 +2016-07-25 08:45:00,2016-07-25 10:00:00 +2016-08-22 08:15:00,2016-08-22 09:20:00 +2016-09-20 07:00:00,2016-09-20 09:15:00 +2016-10-25 08:15:00,2016-10-25 09:50:00 +2016-11-08 09:40:00,2016-11-08 11:50:00 +2016-11-14 09:35:00,2016-11-14 10:40:00 +2016-12-13 15:05:00,2016-12-13 16:50:00 +2017-01-10 08:05:00,2017-01-10 09:15:00 +2017-02-06 09:20:00,2017-02-06 11:00:00 +2017-03-07 08:40:00,2017-03-07 09:40:00 +2017-04-05 07:50:00,2017-04-05 09:20:00 +2017-04-12 07:30:00,2017-04-12 09:45:00 +2017-05-02 13:20:00,2017-05-02 13:30:00 +2017-05-30 07:20:00,2017-05-30 08:30:00 +2017-06-14 08:25:00,2017-06-14 09:30:00 +2017-06-27 07:30:00,2017-06-27 08:40:00 +2017-07-24 08:00:00,2017-07-24 09:00:00 +2017-09-20 14:00:00,2017-09-20 14:35:00 +2017-10-17 08:55:00,2017-10-17 10:20:00 +2017-11-14 15:30:00,2017-11-14 16:20:00 +2017-11-27 09:10:00,2017-11-27 10:10:00 +2017-12-12 14:10:00,2017-12-12 14:50:00 diff --git a/sphinx-doc/ressources/images/Representative/DifferentFlags.png b/sphinx-doc/ressources/images/Representative/DifferentFlags.png new file mode 100644 index 0000000000000000000000000000000000000000..cdde92417d0ed79758ff03c1072ba26893280c59 Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/DifferentFlags.png differ diff --git a/sphinx-doc/ressources/images/Representative/MultivarSAC.png b/sphinx-doc/ressources/images/Representative/MultivarSAC.png new file mode 100644 index 0000000000000000000000000000000000000000..3257f05918ee987a27dcda9fee25f9d28b3fb10c Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/MultivarSAC.png differ diff --git a/sphinx-doc/ressources/images/Representative/ProcessingDrift.png b/sphinx-doc/ressources/images/Representative/ProcessingDrift.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9d8beded81585c35c23ed8129ac9c2176c3a69 Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/ProcessingDrift.png differ diff --git a/sphinx-doc/ressources/images/Representative/RDMlogo.jpg b/sphinx-doc/ressources/images/Representative/RDMlogo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20d07f98534ee6fb19cc0850c494f823da5a24e3 Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/RDMlogo.jpg differ diff --git a/sphinx-doc/ressources/images/Representative/RawData.png b/sphinx-doc/ressources/images/Representative/RawData.png new file mode 100644 index 0000000000000000000000000000000000000000..71dd6d1b7baffa770cb9b6098715c19587199eac Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/RawData.png differ diff --git a/sphinx-doc/ressources/images/Representative/UFZLogo.jpg b/sphinx-doc/ressources/images/Representative/UFZLogo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c752fddfcaabc1e018a1cbab59529293cffb587 Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/UFZLogo.jpg differ diff --git a/sphinx-doc/ressources/images/Representative/csvConfig.png b/sphinx-doc/ressources/images/Representative/csvConfig.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb478b521e57d6f6c995ed0fc7fd3271c4bd15c Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/csvConfig.png differ diff --git a/sphinx-doc/ressources/images/Representative/legendEXMPL.png b/sphinx-doc/ressources/images/Representative/legendEXMPL.png new file mode 100644 index 0000000000000000000000000000000000000000..ce5f57fc65505eaf828cbab51ed0cae822fa5b5d Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/legendEXMPL.png differ diff --git a/sphinx-doc/ressources/images/Representative/pythonLogo.png b/sphinx-doc/ressources/images/Representative/pythonLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..fae690b3639293adf047604a0b72c94dcbb6cfa5 Binary files /dev/null and b/sphinx-doc/ressources/images/Representative/pythonLogo.png differ diff --git a/sphinx-doc/ressources/images/cbook_incidents_scoresUnflagged.png b/sphinx-doc/ressources/images/cbook_incidents_scoresUnflagged.png new file mode 100644 index 0000000000000000000000000000000000000000..bddd6382569bbba0098e252910a7db7f444a511b Binary files /dev/null and b/sphinx-doc/ressources/images/cbook_incidents_scoresUnflagged.png differ diff --git a/sphinx-doc/ressources/images/cbooks_SoilMoisture.png b/sphinx-doc/ressources/images/cbooks_SoilMoisture.png new file mode 100644 index 0000000000000000000000000000000000000000..24fad5efc24c0dde2439170b4b79a9a7244f37c0 Binary files /dev/null and b/sphinx-doc/ressources/images/cbooks_SoilMoisture.png differ diff --git a/sphinx-doc/ressources/images/cbooks_incidentsOverflagged.png b/sphinx-doc/ressources/images/cbooks_incidentsOverflagged.png new file mode 100644 index 0000000000000000000000000000000000000000..547704ab39f9af0b700eb2516ebd4015ea40c886 Binary files /dev/null and b/sphinx-doc/ressources/images/cbooks_incidentsOverflagged.png differ diff --git a/sphinx-doc/ressources/images/cbooks_incidents_correctFlagged.png b/sphinx-doc/ressources/images/cbooks_incidents_correctFlagged.png new file mode 100644 index 0000000000000000000000000000000000000000..9a05bd397cf1eda490d463cb71a6d025196615c7 Binary files /dev/null and b/sphinx-doc/ressources/images/cbooks_incidents_correctFlagged.png differ diff --git a/sphinx-doc/ressources/images/cbooks_incidents_residues.png b/sphinx-doc/ressources/images/cbooks_incidents_residues.png new file mode 100644 index 0000000000000000000000000000000000000000..e57fdaf46d7ebdfb3c5fd1c8d6f68990e5bd7185 Binary files /dev/null and b/sphinx-doc/ressources/images/cbooks_incidents_residues.png differ diff --git a/sphinx-doc/ressources/images/cbooks_incidents_scores.png b/sphinx-doc/ressources/images/cbooks_incidents_scores.png new file mode 100644 index 0000000000000000000000000000000000000000..8d8f1a6dc43e253d19a832b74990aed9911e628c Binary files /dev/null and b/sphinx-doc/ressources/images/cbooks_incidents_scores.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/BeforeAfter_sac254.png b/sphinx-doc/ressources/images/hydro_usecase/BeforeAfter_sac254.png new file mode 100644 index 0000000000000000000000000000000000000000..033fe15900d4b710422a590b097fe547583cddaf Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/BeforeAfter_sac254.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png b/sphinx-doc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png new file mode 100644 index 0000000000000000000000000000000000000000..6384ca87352fc6a675f4d1657539d507a91ac80e Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png b/sphinx-doc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png new file mode 100644 index 0000000000000000000000000000000000000000..29e553cff73e15e9aeefc339bbaa6b5d3987724f Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png b/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png new file mode 100644 index 0000000000000000000000000000000000000000..9835de2024a2bd6d7678c1d2f0b25fc9fb1316c8 Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png b/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png new file mode 100644 index 0000000000000000000000000000000000000000..41a2c3d37fa45197034bcbbc2f4bc998e8a6842e Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores.png b/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores.png new file mode 100644 index 0000000000000000000000000000000000000000..fa07916c52bfbd66a2bbdfff436d377724e5a6b6 Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png b/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png new file mode 100644 index 0000000000000000000000000000000000000000..6d711987a6ee35979d9e98b06b00eec277185e5c Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_cleared.png b/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_cleared.png new file mode 100644 index 0000000000000000000000000000000000000000..c9aa0d1deecc68a3477854c87020cce4a771d652 Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_cleared.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png b/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png new file mode 100644 index 0000000000000000000000000000000000000000..a8b8d475eeab1932cc932f7961a061d11b847e88 Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/level_raw.png b/sphinx-doc/ressources/images/hydro_usecase/level_raw.png new file mode 100644 index 0000000000000000000000000000000000000000..900163ff32538d9201e24931c832e22480600ccf Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/level_raw.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png b/sphinx-doc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png new file mode 100644 index 0000000000000000000000000000000000000000..688d992716ed41f46b8d41dfdaf4145652231288 Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/sac254_raw.png b/sphinx-doc/ressources/images/hydro_usecase/sac254_raw.png new file mode 100644 index 0000000000000000000000000000000000000000..fc7e3320d51d8b527f1c1d1f9dd320e879fb8c0f Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/sac254_raw.png differ diff --git a/sphinx-doc/ressources/images/hydro_usecase/water_temp_raw.png b/sphinx-doc/ressources/images/hydro_usecase/water_temp_raw.png new file mode 100644 index 0000000000000000000000000000000000000000..6db9141146cca24dd938a5b28dbf04ead2283f19 Binary files /dev/null and b/sphinx-doc/ressources/images/hydro_usecase/water_temp_raw.png differ diff --git a/sphinx-doc/ressources/images/tutorial_api_1.png b/sphinx-doc/ressources/images/tutorial_api_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6089baa9abbb22170896a08f2fe2ac9ccada4bbb Binary files /dev/null and b/sphinx-doc/ressources/images/tutorial_api_1.png differ diff --git a/sphinx-doc/make_doc_module.py b/sphinx-doc/scripts/make_doc_module.py similarity index 65% rename from sphinx-doc/make_doc_module.py rename to sphinx-doc/scripts/make_doc_module.py index f85db54991fba0a370d01ddaa2a366d990d7e0c8..e68178771a1895ab4463e221eba82752dde8cd22 100644 --- a/sphinx-doc/make_doc_module.py +++ b/sphinx-doc/scripts/make_doc_module.py @@ -9,13 +9,6 @@ import pickle new_line_re = "(\r\n|[\r\n])" -doc_mod_structure = { - "BasicFlagging": ["outliers.flagRange", "breaks.flagMissing"], - "BasicFlagging_dcstring": "", - "AdvancedFlagging": ["pattern.flagPatternByDTW", "outliers.flagOffset"], - "AdvancedFlagging_dcstring": "", -} - def rm_section(dcstring, section, _return_section=False): """ @@ -124,7 +117,9 @@ def make_doc_module(targetpath, func_dict, doc_mod_structure): d for d in doc_mod_structure.keys() if not re.search("_dcstring$", d) ]: with open(os.path.join(targetpath, f"{doc_mod}.py"), "w+") as f: - mod_string = ['"""\n' + doc_mod_structure[doc_mod + "_dcstring"] + '\n"""'] + mod_string = [ + '"""\n' + doc_mod_structure.get(doc_mod + "_dcstring", "") + '\n"""' + ] mod_funcs = doc_mod_structure[doc_mod] for func in mod_funcs: mod_string.append(func_dict[func][0]) @@ -140,12 +135,78 @@ def make_doc_module(targetpath, func_dict, doc_mod_structure): mod_string.append("") f.write("\n".join(mod_string)) - with open(os.path.join(targetpath, "module_dict.pkl"), "wb+") as file: - pickle.dump(doc_mod_structure, file) + return 0 + + +def make_doc_core(sphinxroot, func_dict, doc_mod_structure): + targetfolder = os.path.join(sphinxroot, "Core") + coresource = os.path.join(sphinxroot, os.path.normpath("saqc/core/core.py")) + + # parse real core.py + with open(coresource) as f: + corelines = f.readlines() + + # find SaQC class def + coreast = ast.parse("".join(corelines)) + startline = None + endline = None + for node in coreast.body: + if isinstance(node, ast.ClassDef): + if node.name == "SaQC": + startline = node.lineno + elif startline and (not endline): + endline = node.lineno + + start = corelines[: endline - 1] + end = corelines[endline - 1 :] + tab = " " + for doc_mod in [ + d for d in doc_mod_structure.keys() if not re.search("_dcstring$", d) + ]: + with open(os.path.join(targetfolder, f"Core.py"), "w+") as f: + mod_string = [] + mod_funcs = doc_mod_structure[doc_mod] + for func in mod_funcs: + def_string = func_dict[func][0] + i_pos = re.match("def [^ ]*\(", def_string).span()[-1] + def_string = def_string[:i_pos] + "self, " + def_string[i_pos:] + def_string = tab + def_string + mod_string.append(def_string) + mod_string.append(2 * tab + '"""') + # indent the docstring: + indented_doc_string = "\n".join( + [2 * tab + f"{l}" for l in func_dict[func][1].splitlines()] + ) + mod_string.append(indented_doc_string) + mod_string.append(2 * tab + '"""') + mod_string.append(2 * tab + "pass") + mod_string.append("") + mod_string.append("") + + newcore = ( + "".join(start) + "\n" + "\n".join(mod_string) + "\n" + "".join(end) + ) + f.write(newcore) return 0 +def makeModuleAPIs(modules, folder_path="moduleAPIs", pck_path="Functions"): + f_path = os.path.abspath(folder_path) + for m in modules: + lines = [] + lines += [m] + lines += ["=" * len(m)] + lines += [""] + lines += [f".. automodapi:: {pck_path}.{m}"] + lines += [" " * 3 + ":no-heading:"] + with open(os.path.join(f_path, f"{pck_path}{m}.rst"), "w") as f: + for l in lines: + f.write(l + "\n") + + pass + + @click.command() @click.option( "-p", @@ -176,13 +237,16 @@ def make_doc_module(targetpath, func_dict, doc_mod_structure): "--mode", type=str, required=True, - default="intro_doc", - help="either 'intro_doc' or 'module_doc'.", + default="Functions", + help="either 'Functions' or 'module_doc' or 'registered_doc' (All but 'Functions' is deprecated and will be remove " + "soon).", ) def main(pckpath, targetpath, sphinxroot, mode): root_path = os.path.abspath(sphinxroot) pkg_path = os.path.join(root_path, pckpath) targetpath = os.path.join(root_path, targetpath) + coretrg = os.path.join(sphinxroot, "Core") + modules = [] # collect modules for _, modname, _ in pkgutil.walk_packages(path=[pkg_path], onerror=lambda x: None): @@ -193,30 +257,34 @@ def main(pckpath, targetpath, sphinxroot, mode): shutil.rmtree(targetpath) os.makedirs(targetpath, exist_ok=True) + if os.path.isdir(coretrg): + shutil.rmtree(coretrg) + os.makedirs(coretrg, exist_ok=True) + # parse all the functions module_paths = [os.path.join(pkg_path, f"{m}.py") for m in modules] mod_dict = parse_module_dcstrings(module_paths) + mod_dict = dict( + zip([k + "_dcstring" for k in mod_dict.keys()], list(mod_dict.values())) + ) func_dict = parse_func_dcstrings(module_paths) - if mode == "intro_doc": - make_doc_module(targetpath, func_dict, doc_mod_structure) - if mode == "registered_doc": - doc_struct = {} - for dm in func_dict.keys(): - module = func_dict[dm][2] - if module: - if module in doc_struct.keys(): - doc_struct[module].append(dm) - else: - doc_struct[module] = [dm] - doc_struct[module + "_dcstring"] = mod_dict[module] - make_doc_module(targetpath, func_dict, doc_struct) - if mode == "module_doc": + if mode == "Functions": + # module docs doc_struct = {m: [] for m in modules} for dm in func_dict.keys(): module = re.search("([^ .]*)\.[^ ]*$", dm).group(1) doc_struct[module].append(dm) + makeModuleAPIs(list(doc_struct.keys())) + doc_struct.update(mod_dict) make_doc_module(targetpath, func_dict, doc_struct) + # complete docs + doc_mod_structure = {"saqc": [f for f in func_dict.keys()], "saqc_dcstring": ""} + makeModuleAPIs(["saqc"]) + make_doc_module(targetpath, func_dict, doc_mod_structure) + + make_doc_core(root_path, func_dict, doc_mod_structure) + if __name__ == "__main__": main() diff --git a/sphinx-doc/make_doc_rst.py b/sphinx-doc/scripts/make_doc_rst.py similarity index 100% rename from sphinx-doc/make_doc_rst.py rename to sphinx-doc/scripts/make_doc_rst.py diff --git a/sphinx-doc/scripts/make_env_tab.py b/sphinx-doc/scripts/make_env_tab.py new file mode 100644 index 0000000000000000000000000000000000000000..af92bcb06e0bbce22c70af284b8b02f7d4b5a69d --- /dev/null +++ b/sphinx-doc/scripts/make_env_tab.py @@ -0,0 +1,96 @@ +import ast +import os +import click +import pkgutil +import shutil +import re +from collections import OrderedDict +import pickle + + +@click.command() +@click.option( + "-p", + "--envpath", + type=str, + required=True, + default="saqc/constants.py", + help="Relative path to the module containing the env dict (relative to sphinx root).", +) +@click.option( + "-t", + "--targetpath", + type=str, + required=True, + default="sphinx-doc/environment", + help="Output path to contain configEnv.rst (relative to sphinx root).", +) +@click.option( + "-sr", + "--sphinxroot", + type=str, + required=True, + default="..", + help="Relative path to the sphinx root.", +) +def main(envpath, targetpath, sphinxroot): + root_path = os.path.abspath(sphinxroot) + source_path = os.path.join(root_path, envpath) + target_path = os.path.join(root_path, targetpath) + + with open(source_path) as f: + lines = f.readlines() + + # get ENV definition linenumber + lino_st = None + lino_end = None + nodes = ast.parse("".join(lines)) + for node in nodes.body: + if lino_st: + lino_end = node.lineno + break + if isinstance(node, ast.Assign): + if isinstance(node.targets[0], ast.Name): + if node.targets[0].id == "ENVIRONMENT": + lino_st = node.lineno + + env_dict = lines[slice(lino_st, lino_end)] + entry = 0 + val_dict = {} + doc_dict = {} + for line in env_dict: + val = re.match(' *(?P<Key>".*"):', line) + doc = re.match(" *#(?P<Comment>.*)", line) + if val: + if len(val.groups()) > 0: + entry += 1 + val_dict.update({entry: val["Key"]}) + if doc: + if len(doc.groups()) > 0: + doc_dict.update({entry: doc_dict.get(entry, "") + doc["Comment"]}) + + # make heading + heading = "Config file Environment" + lines = [] + lines += [heading, len(heading) * "=", ""] + # make table directive + tab = " " * 3 + new_row = tab + "* - " + new_col = tab + " " + " - " + # directive: + lines += [".. list-table::", tab + ":header-rows: 1", ""] + # table header: + lines += [new_row + "Env-Value"] + lines += [new_col + "Env-Doc"] + # table body: + for k in val_dict.keys(): + lines += [new_row + val_dict[k]] + lines += [new_col + doc_dict.get(k, "")] + + with open(os.path.join(target_path, "configEnv.rst"), "w") as f: + for s in lines: + f.write(s + "\n") + + +if __name__ == "__main__": + main() diff --git a/sphinx-doc/make_md_to_rst.py b/sphinx-doc/scripts/make_md_to_rst.py similarity index 100% rename from sphinx-doc/make_md_to_rst.py rename to sphinx-doc/scripts/make_md_to_rst.py diff --git a/tests/core/test_core.py b/tests/core/test_core.py index e64f6b9a5f0317d136f16e9328b2e921f339227d..5662ba2e5d5c973871f5574df46c01f8516d1fb3 100644 --- a/tests/core/test_core.py +++ b/tests/core/test_core.py @@ -5,18 +5,17 @@ import pytest import numpy as np import pandas as pd - -from saqc.constants import * -from saqc.core import initFlagsLike -from saqc import SaQC, flagging +import saqc +from saqc.core import initFlagsLike, SaQC, register +from saqc.core.flags import Flags +from saqc.core.register import processing from tests.common import initData, flagAll - OPTIONAL = [False, True] -flagging(masking="field")(flagAll) +register(mask=["field"], demask=["field"], squeeze=["field"])(flagAll) @pytest.fixture @@ -31,21 +30,21 @@ def flags(data, optional): def test_errorHandling(data): - @flagging(masking="field") + @processing() def raisingFunc(data, field, flags, **kwargs): raise TypeError var1 = data.columns[0] with pytest.raises(TypeError): - SaQC(data).raisingFunc(var1).getResult() + SaQC(data).raisingFunc(var1) def test_duplicatedVariable(): data = initData(1) var1 = data.columns[0] - pdata, pflags = SaQC(data).flagDummy(var1).getResult() + pflags = SaQC(data).flagDummy(var1).result.flags if isinstance(pflags.columns, pd.MultiIndex): cols = pflags.columns.get_level_values(0).drop_duplicates() @@ -54,33 +53,108 @@ def test_duplicatedVariable(): assert (pflags.columns == [var1]).all() -def test_sourceTarget(): +@pytest.mark.parametrize("optional", OPTIONAL) +def test_dtypes(data, flags): + """ + Test if the categorical dtype is preserved through the core functionality + """ + flags = initFlagsLike(data) + flags_raw = flags.toDios() + var1, var2 = data.columns[:2] + + pflags = SaQC(data, flags=flags_raw).flagAll(var1).flagAll(var2).result.flags_raw + + for c in pflags.columns: + assert pflags[c].dtype == flags[c].dtype + + +def test_copy(data): + qc = saqc.SaQC(data) + + qc = qc.flagRange("var1").flagRange("var1", min=0, max=0) + + deep = qc.copy(deep=True) + shallow = qc.copy(deep=False) + + for copy in [deep, shallow]: + assert copy is not qc + assert copy._called is not qc._called + assert copy._scheme is not qc._scheme + assert copy._attrs is not qc._attrs + + assert copy._data is not qc._data + assert copy._flags is not qc._flags + + assert copy._data._data is not qc._data._data + assert copy._flags._data is not qc._flags._data + + # underling data copied + assert deep._data._data.iloc[0] is not qc._data._data.iloc[0] + assert ( + deep._flags._data["var1"].hist.index is not qc._flags._data["var1"].hist.index + ) + + # underling data NOT copied + assert shallow._data._data.iloc[0] is qc._data._data.iloc[0] + assert shallow._flags._data["var1"].hist.index is qc._flags._data["var1"].hist.index + + +def test_sourceTargetCopy(): """ - test implicit assignments + test implicit copies """ data = initData(1) var1 = data.columns[0] target = "new" - pdata, pflags = SaQC(data).flagAll(field=var1, target=target).getResult(raw=True) + @register(mask=["field"], demask=["field"], squeeze=["field"], handles_target=False) + def flagTarget(data, field, flags, **kwargs): + assert "target" not in kwargs + return data, flags - assert (pdata[var1] == pdata[target]).all(axis=None) - assert all(pflags[var1] == UNFLAGGED) - assert all(pflags[target] > UNFLAGGED) + qc = SaQC(data, flags=Flags({var1: pd.Series(127.0, index=data[var1].index)})) + qc = qc.flagTarget(field=var1, target=target) + assert (qc.data[var1] == qc.data[target]).all(axis=None) + assert all(qc.flags[var1] == qc.flags[target]) -@pytest.mark.parametrize("optional", OPTIONAL) -def test_dtypes(data, flags): + +def test_sourceTargetNoCopy(): """ - Test if the categorical dtype is preserved through the core functionality + test bypassing of the imlpicit copy machiners """ - flags = initFlagsLike(data) - flags_raw = flags.toDios() - var1, var2 = data.columns[:2] + data = initData(1) + var1 = data.columns[0] + target = "new" - pdata, pflags = ( - SaQC(data, flags=flags_raw).flagAll(var1).flagAll(var2).getResult(raw=True) - ) + @register(mask=["field"], demask=["field"], squeeze=["field"], handles_target=True) + def flagField(data, field, flags, **kwargs): + assert "target" in kwargs + assert "target" not in data + assert "target" not in flags + return data, flags - for c in pflags.columns: - assert pflags[c].dtype == flags[c].dtype + SaQC(data).flagField(field=var1, target=target) + + +def test_sourceTargetMultivariate(): + """ + test bypassing of the imlpicit copy machiners + """ + data = initData(3) + + @register( + mask=["field"], + demask=["field"], + squeeze=["field"], + handles_target=True, + multivariate=True, + ) + def flagMulti(data, field, flags, **kwargs): + assert "target" in kwargs + assert "target" not in data + assert "target" not in flags + assert field == kwargs["target"] + return data, flags + + SaQC(data).flagMulti(field=data.columns, target=data.columns) diff --git a/tests/core/test_flags.py b/tests/core/test_flags.py index 7bc08c00740d3577b8bd4f3f1ed90948b4cb3f5a..1e66ce62f42ba99f0869d5c77859e7dc567d50c2 100644 --- a/tests/core/test_flags.py +++ b/tests/core/test_flags.py @@ -72,16 +72,20 @@ def test_copy(data: Union[pd.DataFrame, dios.DictOfSeries, Dict[str, pd.Series]] assert isinstance(copy, Flags) assert copy is not flags assert copy._data is not flags._data + for c in copy.columns: + assert copy._data[c] is not flags._data[c] is_equal(copy, flags) assert deep is not shallow is_equal(deep, shallow) + # the underling series data is the same for c in shallow.columns: - assert shallow._data[c] is flags._data[c] + assert shallow._data[c].index is flags._data[c].index + # the underling series data was copied for c in deep.columns: - assert deep._data[c] is not flags._data[c] + assert deep._data[c].index is not flags._data[c].index @pytest.mark.parametrize("data", data) diff --git a/tests/core/test_history.py b/tests/core/test_history.py index 6ced94eb4f24040fcea733acf45bd1f03f5148a4..6cfcffc336dd968329e50f7a728351ad0781d7dd 100644 --- a/tests/core/test_history.py +++ b/tests/core/test_history.py @@ -124,54 +124,63 @@ def test_copy(data): deep = hist.copy(deep=True) # checks - for copy in [deep, shallow]: check_invariants(copy) assert copy is not hist + assert copy.hist is not hist.hist + assert copy.meta is not hist.meta assert is_equal(copy, hist) assert deep is not shallow assert is_equal(deep, shallow) - assert deep.hist is not hist.hist - assert deep.meta is not hist.meta - - assert shallow.hist is hist.hist - assert shallow.meta is hist.meta + # underling pandas data was only copied with deep=True + assert shallow.hist.index is hist.hist.index + assert deep.hist.index is not hist.hist.index +@pytest.mark.parametrize("copy", [True, False]) @pytest.mark.parametrize("data", data + [None]) -def test_reindex_trivial_cases(data): +def test_reindex_trivial_cases(data, copy): df = pd.DataFrame(data, dtype=float) orig = dummyHistory(hist=df) # checks for index in [df.index, pd.Index([])]: - hist = orig.copy() - ref = hist.reindex(index) - assert ref is hist # check if working inplace + ref = orig.copy() + hist = ref.reindex(index, copy=copy) + if copy: + assert hist is not ref + else: + assert hist is ref check_invariants(hist) +@pytest.mark.parametrize("copy", [True, False]) @pytest.mark.parametrize("data", data + [None]) -def test_reindex_missing_indicees(data): +def test_reindex_missing_indicees(data, copy): df = pd.DataFrame(data, dtype=float) - hist = dummyHistory(hist=df) + orig = dummyHistory(hist=df) index = df.index[1:-1] - # checks - ref = hist.reindex(index) - assert ref is hist # check if working inplace + hist = orig.reindex(index, copy=copy) + if copy: + assert hist is not orig + else: + assert hist is orig check_invariants(hist) +@pytest.mark.parametrize("copy", [True, False]) @pytest.mark.parametrize("data", data + [None]) -def test_reindex_extra_indicees(data): +def test_reindex_extra_indicees(data, copy): df = pd.DataFrame(data, dtype=float) - hist = dummyHistory(hist=df) + orig = dummyHistory(hist=df) index = df.index.append(pd.Index(range(len(df.index), len(df.index) + 5))) - # checks - ref = hist.reindex(index) - assert ref is hist # check if working inplace + hist = orig.reindex(index, copy=copy) + if copy: + assert hist is not orig + else: + assert hist is orig check_invariants(hist) diff --git a/tests/core/test_reader.py b/tests/core/test_reader.py index e13f2976f97876e957c8640ac4e5680543b857e7..a1ddc8c5784b96a7dcfe50b4d51f4fe849ee1ef4 100644 --- a/tests/core/test_reader.py +++ b/tests/core/test_reader.py @@ -8,8 +8,7 @@ import dios from pathlib import Path from saqc.core.reader import fromConfig, readFile -from saqc.core.register import FUNC_MAP, flagging -from saqc.constants import UNTOUCHED +from saqc.core.register import FUNC_MAP, register, flagging from tests.common import initData, writeIO @@ -23,7 +22,7 @@ def test_packagedConfig(): path = Path(__file__).parents[2] / "ressources/data" - config_path = path / "config_ci.csv" + config_path = path / "config.csv" data_path = path / "data.csv" data = pd.read_csv( @@ -32,7 +31,7 @@ def test_packagedConfig(): parse_dates=True, ) saqc = fromConfig(config_path, data) - saqc.getResult() + saqc.result._validate() def test_variableRegex(data): @@ -42,17 +41,27 @@ def test_variableRegex(data): ("'.*'", data.columns), ("'var(1|2)'", [c for c in data.columns if c[-1] in ("1", "2")]), ("'var[12]'", [c for c in data.columns if c[-1] in ("1", "2")]), - ("var[12]", ["var[12]"]), # not quoted -> not a regex ('".*3"', [c for c in data.columns if c[-1] == "3"]), ] for regex, expected in tests: fobj = writeIO(header + "\n" + f"{regex} ; flagDummy()") saqc = fromConfig(fobj, data=data) - result = [field for field, _ in saqc.called] + result = [field for field, _ in saqc._called] + assert np.all(result == expected) + + tests = [ + ("var[12]", ["var[12]"]), # not quoted -> not a regex + ] + for regex, expected in tests: + fobj = writeIO(header + "\n" + f"{regex} ; flagDummy()") + with pytest.warns(RuntimeWarning): + saqc = fromConfig(fobj, data=data) + result = [field for field, _ in saqc._called] assert np.all(result == expected) +@pytest.mark.filterwarnings("ignore::RuntimeWarning") def test_inlineComments(data): """ adresses issue #3 @@ -63,11 +72,11 @@ def test_inlineComments(data): """ saqc = fromConfig(writeIO(config), data) - _, func = saqc.called[0] + _, func = saqc._called[0] assert func[0] == FUNC_MAP["flagDummy"] -def test_configReaderLineNumbers(data): +def test_configReaderLineNumbers(): config = f""" varname ; test #temp1 ; flagDummy() @@ -84,6 +93,7 @@ def test_configReaderLineNumbers(data): assert (planned.index == expected).all() +@pytest.mark.filterwarnings("ignore::RuntimeWarning") def test_configFile(data): # check that the reader accepts different whitespace patterns @@ -107,9 +117,9 @@ def test_configChecks(data): var1, _, var3, *_ = data.columns - @flagging(masking="none") + @flagging() def flagFunc(data, field, flags, arg, opt_arg=None, **kwargs): - flags[:, field] = UNTOUCHED + flags[:, field] = np.nan return data, flags header = f"varname;test" @@ -123,7 +133,7 @@ def test_configChecks(data): for test, expected in tests: fobj = writeIO(header + "\n" + test) with pytest.raises(expected): - fromConfig(fobj, data=data).evaluate() + fromConfig(fobj, data=data) def test_supportedArguments(data): @@ -133,9 +143,9 @@ def test_supportedArguments(data): # TODO: necessary? - @flagging(masking="field") + @flagging() def func(data, field, flags, kwarg, **kwargs): - flags[:, field] = UNTOUCHED + flags[:, field] = np.nan return data, flags var1 = data.columns[0] diff --git a/tests/core/test_translator.py b/tests/core/test_translator.py index 3e06597e5a676dbc567e6a20470f6cda56968ad3..581aeceb4f2c7dfd271280d095aa3089e8642e0b 100644 --- a/tests/core/test_translator.py +++ b/tests/core/test_translator.py @@ -9,13 +9,11 @@ import pandas as pd import pytest -from dios import DictOfSeries - -from saqc.constants import UNFLAGGED, BAD, DOUBTFUL -from saqc.core.translator import ( - PositionalTranslator, - Translator, - DmpTranslator, +from saqc.constants import UNFLAGGED, BAD, DOUBTFUL, FILTER_NONE +from saqc.core.translation import ( + PositionalScheme, + TranslationScheme, + DmpScheme, ) from saqc.core.flags import Flags from saqc.core.core import SaQC @@ -30,8 +28,8 @@ def _genTranslators(): dtype(-1): BAD, **{dtype(f * 10): float(f) for f in range(10)}, } - translator = Translator(flags, {v: k for k, v in flags.items()}) - yield flags, translator + scheme = TranslationScheme(flags, {v: k for k, v in flags.items()}) + yield flags, scheme def _genFlags(data: Dict[str, Union[Sequence, pd.Series]]) -> Flags: @@ -48,58 +46,56 @@ def _genFlags(data: Dict[str, Union[Sequence, pd.Series]]) -> Flags: def test_forwardTranslation(): - for flags, translator in _genTranslators(): + for flags, scheme in _genTranslators(): for k, expected in flags.items(): - got = translator(k) + got = scheme(k) assert expected == got or np.isnan([got, expected]).all() for k in ["bad", 3.14, max]: with pytest.raises(ValueError): - translator(k) + scheme(k) def test_backwardTranslation(): field = "var1" - for _, translator in _genTranslators(): - keys = tuple(translator._backward.keys()) + for _, scheme in _genTranslators(): + keys = tuple(scheme._backward.keys()) flags = _genFlags({field: np.array(keys)}) - translated = translator.backward(flags) - expected = set(translator._backward.values()) + translated = scheme.backward(flags) + expected = set(scheme._backward.values()) assert not (set(translated[field]) - expected) def test_backwardTranslationFail(): field = "var1" - for _, translator in _genTranslators(): - keys = tuple(translator._backward.keys()) + for _, scheme in _genTranslators(): + keys = tuple(scheme._backward.keys()) # add an scheme invalid value to the flags flags = _genFlags({field: np.array(keys + (max(keys) + 1,))}) with pytest.raises(ValueError): - translator.backward(flags) + scheme.backward(flags) def test_dmpTranslator(): - translator = DmpTranslator() + scheme = DmpScheme() # generate a bunch of dummy flags - keys = np.array(tuple(translator._backward.keys()) * 50) + keys = np.array(tuple(scheme._backward.keys()) * 50) flags = _genFlags({"var1": keys, "var2": keys, "var3": keys}) flags[:, "var1"] = BAD flags[:, "var1"] = DOUBTFUL flags[:, "var2"] = BAD history1 = flags.history["var1"] - history1.meta[1].update({"func": "flagFoo", "keywords": {"cause": "AUTOFLAGGED"}}) - history1.meta[2].update({"func": "flagBar", "keywords": {"comment": "I did it"}}) - flags.history["var1"] = history1 + history1.meta[1].update({"func": "flagFoo", "kwargs": {"cause": "AUTOFLAGGED"}}) + history1.meta[2].update({"func": "flagBar", "kwargs": {"comment": "I did it"}}) history2 = flags.history["var2"] history2.meta[-1].update( - {"func": "flagFoo", "keywords": {"cause": "BELOW_OR_ABOVE_MIN_MAX"}} + {"func": "flagFoo", "kwargs": {"cause": "BELOW_OR_ABOVE_MIN_MAX"}} ) - flags.history["var2"] = history2 - tflags = translator.backward(flags) + tflags = scheme.backward(flags) assert set(tflags.columns.get_level_values(1)) == { "quality_flag", @@ -136,13 +132,13 @@ def test_dmpTranslator(): def test_positionalTranslator(): - translator = PositionalTranslator() + scheme = PositionalScheme() flags = _genFlags({"var1": np.zeros(100), "var2": np.zeros(50)}) flags[1::3, "var1"] = BAD flags[1::3, "var1"] = DOUBTFUL flags[2::3, "var1"] = BAD - tflags = translator.backward(flags) + tflags = scheme.backward(flags) assert (tflags["var2"].replace(-9999, np.nan).dropna() == 90).all(axis=None) assert (tflags["var1"].iloc[1::3] == 90210).all(axis=None) assert (tflags["var1"].iloc[2::3] == 90002).all(axis=None) @@ -153,15 +149,15 @@ def test_positionalTranslatorIntegration(): data = initData(3) col: str = data.columns[0] - translator = PositionalTranslator() - saqc = SaQC(data=data, scheme=translator) + scheme = PositionalScheme() + saqc = SaQC(data=data, scheme=scheme) saqc = saqc.flagMissing(col).flagRange(col, min=3, max=10, flag=DOUBTFUL) - data, flags = saqc.getResult() + flags = saqc.result.flags for field in flags.columns: assert flags[field].astype(str).str.match("^9[012]*$").all() - round_trip = translator.backward(translator.forward(flags)) + round_trip = scheme.backward(scheme.forward(flags)) assert (flags.values == round_trip.values).all() assert (flags.index == round_trip.index).all() @@ -173,10 +169,10 @@ def test_dmpTranslatorIntegration(): data = initData(1) col = data.columns[0] - translator = DmpTranslator() - saqc = SaQC(data=data, scheme=translator) + scheme = DmpScheme() + saqc = SaQC(data=data, scheme=scheme) saqc = saqc.flagMissing(col).flagRange(col, min=3, max=10) - data, flags = saqc.getResult() + flags = saqc.result.flags qflags = flags.xs("quality_flag", axis="columns", level=1) qfunc = flags.xs("quality_comment", axis="columns", level=1).applymap( @@ -184,11 +180,11 @@ def test_dmpTranslatorIntegration(): ) qcause = flags.xs("quality_cause", axis="columns", level=1) - assert qflags.isin(translator._forward.keys()).all(axis=None) + assert qflags.isin(scheme._forward.keys()).all(axis=None) assert qfunc.isin({"", "flagMissing", "flagRange"}).all(axis=None) assert (qcause[qflags[col] == "BAD"] == "OTHER").all(axis=None) - round_trip = translator.backward(translator.forward(flags)) + round_trip = scheme.backward(scheme.forward(flags)) assert round_trip.xs("quality_flag", axis="columns", level=1).equals(qflags) @@ -205,14 +201,14 @@ def test_dmpValidCombinations(): data = initData(1) col = data.columns[0] - translator = DmpTranslator() - saqc = SaQC(data=data, scheme=translator) + scheme = DmpScheme() + saqc = SaQC(data=data, scheme=scheme) - with pytest.raises(ValueError): - saqc.flagRange(col, min=3, max=10, cause="SOMETHING_STUPID").getResult() + with pytest.raises(RuntimeError): + saqc.flagRange(col, min=3, max=10, cause="SOMETHING_STUPID").result - with pytest.raises(ValueError): - saqc.flagRange(col, min=3, max=10, cause="").getResult() + with pytest.raises(RuntimeError): + saqc.flagRange(col, min=3, max=10, cause="").result def _buildupSaQCObjects(): @@ -229,8 +225,8 @@ def _buildupSaQCObjects(): out = [] for _ in range(2): saqc = SaQC(data=data, flags=flags) - saqc = saqc.flagRange(field=col, min=5, max=6, to_mask=False).flagRange( - col, min=3, max=10, to_mask=False + saqc = saqc.flagRange(field=col, min=5, max=6, dfilter=FILTER_NONE).flagRange( + col, min=3, max=10, dfilter=FILTER_NONE ) flags = saqc._flags out.append(saqc) @@ -240,8 +236,8 @@ def _buildupSaQCObjects(): def test_translationPreservesFlags(): saqc1, saqc2 = _buildupSaQCObjects() - _, flags1 = saqc1.getResult(raw=True) - _, flags2 = saqc2.getResult(raw=True) + flags1 = saqc1.result.flags_raw + flags2 = saqc2.result.flags_raw for k in flags2.columns: got = flags2.history[k].hist @@ -255,8 +251,8 @@ def test_translationPreservesFlags(): def test_multicallsPreserveHistory(): saqc1, saqc2 = _buildupSaQCObjects() - _, flags1 = saqc1.getResult(raw=True) - _, flags2 = saqc2.getResult(raw=True) + flags1 = saqc1.result.flags_raw + flags2 = saqc2.result.flags_raw # check, that the `History` is duplicated for col in flags2.columns: @@ -278,11 +274,11 @@ def test_positionalMulitcallsPreserveState(): saqc1, saqc2 = _buildupSaQCObjects() - translator = PositionalTranslator() - _, flags1 = saqc1.getResult(raw=True) - _, flags2 = saqc2.getResult(raw=True) - tflags1 = translator.backward(flags1).astype(str) - tflags2 = translator.backward(flags2).astype(str) + scheme = PositionalScheme() + flags1 = saqc1.result.flags_raw + flags2 = saqc2.result.flags_raw + tflags1 = scheme.backward(flags1).astype(str) + tflags2 = scheme.backward(flags2).astype(str) for k in flags2.columns: expected = tflags1[k].str.slice(start=1) * 2 diff --git a/tests/funcs/test_functions.py b/tests/funcs/test_functions.py index 7b8885d7434998f7e6b37e87a05f43d3f80ec129..ab8fa8f4985586b4b3f55ed2c6152464282eeaae 100644 --- a/tests/funcs/test_functions.py +++ b/tests/funcs/test_functions.py @@ -16,7 +16,7 @@ from saqc.funcs.drift import ( from saqc.funcs.outliers import flagCrossStatistic, flagRange from saqc.funcs.flagtools import flagManual, forceFlags, clearFlags from saqc.funcs.tools import dropField, copyField, maskTime -from saqc.funcs.resampling import reindexFlags +from saqc.funcs.resampling import concatFlags from saqc.funcs.breaks import flagIsolated from tests.fixtures import * @@ -107,8 +107,8 @@ def test_flagSesonalRange(data, field): data, flags = flagRange( data, newfield, flags, min=test["min"], max=test["max"], flag=BAD ) - data, flags = reindexFlags( - data, field, flags, method="match", source=newfield, flag=BAD + data, flags = concatFlags( + data, newfield, flags, method="match", target=field, flag=BAD ) data, flags = dropField(data, newfield, flags) flagged = flags[field] > UNFLAGGED @@ -129,8 +129,8 @@ def test_forceFlags(data, field): flags[:, field] = BAD assert all(flags[field] == BAD) - _, flags = forceFlags(data, field, flags, flag=DOUBT) - assert all(flags[field] == DOUBT) + _, flags = forceFlags(data, field, flags, flag=DOUBTFUL) + assert all(flags[field] == DOUBTFUL) def test_flagIsolated(data, field): @@ -175,7 +175,6 @@ def test_flagIsolated(data, field): def test_flagCrossScoring(dat): data1, characteristics = dat(initial_level=0, final_level=0, out_val=0) data2, characteristics = dat(initial_level=0, final_level=0, out_val=10) - field = "dummy" fields = ["data1", "data2"] s1, s2 = data1.squeeze(), data2.squeeze() s1 = pd.Series(data=s1.values, index=s1.index) @@ -183,7 +182,7 @@ def test_flagCrossScoring(dat): data = dios.DictOfSeries([s1, s2], columns=["data1", "data2"]) flags = initFlagsLike(data) _, flags_result = flagCrossStatistic( - data, field, flags, fields=fields, thresh=3, method=np.mean, flag=BAD + data, fields, flags, thresh=3, method=np.mean, flag=BAD ) for field in fields: isflagged = flags_result[field] > UNFLAGGED @@ -192,7 +191,6 @@ def test_flagCrossScoring(dat): def test_flagManual(data, field): flags = initFlagsLike(data) - args = data, field, flags dat = data[field] mdata = pd.Series("lala", index=dat.index) @@ -202,25 +200,31 @@ def test_flagManual(data, field): shrinked = mdata.loc[index_exp.union(mdata.iloc[[1, 2, 3, 4, 600, 601]].index)] kwargs_list = [ - dict(mdata=mdata, mflag="a", method="plain", flag=BAD), - dict(mdata=mdata.to_list(), mflag="a", method="plain", flag=BAD), - dict(mdata=mdata, mflag="a", method="ontime", flag=BAD), - dict(mdata=shrinked, mflag="a", method="ontime", flag=BAD), + dict(mdata=mdata, mflag="a", method="plain", mformat="mflag", flag=BAD), + dict(mdata=mdata, mflag="a", method="ontime", mformat="mflag", flag=BAD), + dict(mdata=shrinked, mflag="a", method="ontime", mformat="mflag", flag=BAD), ] for kw in kwargs_list: - _, fl = flagManual(*args, **kw) + _, fl = flagManual(data.copy(), field, flags.copy(), **kw) isflagged = fl[field] > UNFLAGGED assert isflagged[isflagged].index.equals(index_exp) # flag not exist in mdata _, fl = flagManual( - *args, mdata=mdata, mflag="i do not exist", method="ontime", flag=BAD + data.copy(), + field, + flags.copy(), + mdata=mdata, + mflag="i do not exist", + method="ontime", + mformat="mflag", + flag=BAD, ) isflagged = fl[field] > UNFLAGGED assert isflagged[isflagged].index.equals(pd.DatetimeIndex([])) - # check right-open / ffill + # check closure methods index = pd.date_range(start="2016-01-01", end="2018-12-31", periods=11) mdata = pd.Series(0, index=index) mdata.loc[index[[1, 5, 6, 7, 9, 10]]] = 1 @@ -237,41 +241,34 @@ def test_flagManual(data, field): # 2018-09-12 12:00:00 1 # 2018-12-31 00:00:00 1 # dtype: int64 - - # add first and last index from data - expected = mdata.copy() - expected.loc[dat.index[0]] = 0 - expected.loc[dat.index[-1]] = 1 - expected = expected.astype(bool) - - _, fl = flagManual(*args, mdata=mdata, mflag=1, method="right-open", flag=BAD) - isflagged = fl[field] > UNFLAGGED - last = expected.index[0] - - for curr in expected.index[1:]: - expected_value = mdata[last] - # datetime slicing is inclusive ! - i = isflagged[last:curr].index[:-1] - chunk = isflagged.loc[i] - assert (chunk == expected_value).all() - last = curr - # check last value - assert isflagged[curr] == expected[curr] - - # check left-open / bfill - expected.loc[dat.index[-1]] = 0 # this time the last is False - _, fl = flagManual(*args, mdata=mdata, mflag=1, method="left-open", flag=BAD) - isflagged = fl[field] > UNFLAGGED - last = expected.index[0] - assert isflagged[last] == expected[last] - - for curr in expected.index[1:]: - expected_value = mdata[curr] - # datetime slicing is inclusive ! - i = isflagged[last:curr].index[1:] - chunk = isflagged.loc[i] - assert (chunk == expected_value).all() - last = curr + m_index = mdata.index + flag_intervals = [ + (m_index[1], m_index[2]), + (m_index[5], m_index[8]), + (m_index[9], dat.index.shift(freq="1h")[-1]), + ] + bound_drops = {"right-open": [1], "left-open": [0], "closed": []} + for method in ["right-open", "left-open", "closed"]: + _, fl = flagManual( + data.copy(), + field, + flags.copy(), + mdata=mdata, + mflag=1, + method=method, + mformat="mflag", + flag=BAD, + ) + isflagged = fl[field] > UNFLAGGED + for flag_i in flag_intervals: + f_i = isflagged[slice(flag_i[0], flag_i[-1])].index + check_i = f_i.drop( + [flag_i[k] for k in bound_drops[method]], errors="ignore" + ) + assert isflagged[check_i].all() + unflagged = isflagged[f_i.difference(check_i)] + if not unflagged.empty: + assert ~unflagged.all() @pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_1")]) @@ -283,30 +280,29 @@ def test_flagDriftFromNormal(dat): data["d5"] = 3 + 4 * data["d1"] flags = initFlagsLike(data) - data_norm, flags_norm = flagDriftFromNorm( - data, - "dummy", - flags, - ["d1", "d2", "d3"], + _, flags_norm = flagDriftFromNorm( + data=data.copy(), + field=["d1", "d2", "d3"], + flags=flags.copy(), freq="200min", spread=5, flag=BAD, ) - data_ref, flags_ref = flagDriftFromReference( - data, - "d1", - flags, - ["d1", "d2", "d3"], + _, flags_ref = flagDriftFromReference( + data=data.copy(), + field=["d1", "d2", "d3"], + flags=flags.copy(), + reference="d1", freq="3D", thresh=20, flag=BAD, ) - data_scale, flags_scale = flagDriftFromScaledNorm( - data, + _, flags_scale = flagDriftFromScaledNorm( + data.copy(), "dummy", - flags, + flags.copy(), ["d1", "d3"], ["d4", "d5"], freq="3D", diff --git a/tests/funcs/test_generic_api_functions.py b/tests/funcs/test_generic_api_functions.py index 360418cbb4254c206784746577a4a23550b218db..c8eecb617f1ff4cf6e94647b20310fcb4b5ac3d5 100644 --- a/tests/funcs/test_generic_api_functions.py +++ b/tests/funcs/test_generic_api_functions.py @@ -3,16 +3,14 @@ import pytest import pandas as pd +from dios.dios.dios import DictOfSeries -from saqc.constants import * -from saqc.core.register import flagging -from saqc.funcs.tools import maskTime +from saqc.constants import BAD, UNFLAGGED, FILTER_ALL +from saqc.core.flags import Flags from saqc import SaQC +from saqc.lib.tools import toSequence -from tests.common import initData, flagAll - - -flagging(masking="field")(flagAll) +from tests.common import initData @pytest.fixture @@ -20,23 +18,158 @@ def data(): return initData() -def test_addFieldFlagGeneric(data): - saqc = SaQC(data=data) +def test_writeTargetFlagGeneric(data): + params = [ + (["tmp"], lambda x, y: pd.Series(True, index=x.index.union(y.index))), + ( + ["tmp1", "tmp2"], + lambda x, y: [pd.Series(True, index=x.index.union(y.index))] * 2, + ), + ] + for targets, func in params: + expected_meta = { + "func": "flagGeneric", + "args": (), + "kwargs": { + "field": data.columns.tolist(), + "func": func.__name__, + "target": targets, + "flag": BAD, + "dfilter": FILTER_ALL, + }, + } + + saqc = SaQC(data=data) + saqc = saqc.flagGeneric(field=data.columns, target=targets, func=func, flag=BAD) + for target in targets: + assert saqc._flags.history[target].hist.iloc[0].tolist() == [BAD] + assert saqc._flags.history[target].hist.iloc[0].tolist() == [BAD] + assert saqc._flags.history[target].meta[0] == expected_meta + + +def test_overwriteFieldFlagGeneric(data): + params = [ + (["var1"], lambda x: pd.Series(True, index=x.index)), + ( + ["var1", "var2"], + lambda x, y: [pd.Series(True, index=x.index.union(y.index))] * 2, + ), + ] + + flag = 12 + + for fields, func in params: + expected_meta = { + "func": "flagGeneric", + "args": (), + "kwargs": { + "field": fields, + "target": fields, + "func": func.__name__, + "flag": flag, + "dfilter": FILTER_ALL, + }, + } + + saqc = SaQC( + data=data.copy(), + flags=Flags( + { + k: pd.Series(data[k] % 2, index=data[k].index).replace( + {0: UNFLAGGED, 1: 127} + ) + for k in data.columns + } + ), + ) + + res = saqc.flagGeneric(field=fields, func=func, flag=flag) + for field in fields: + assert (data[field] == res.data[field]).all(axis=None) + histcol0 = res._flags.history[field].hist[0] + histcol1 = res._flags.history[field].hist[1] + assert (histcol1[histcol0 == 127.0].isna()).all() + assert (histcol1[histcol0 != 127.0] == flag).all() + assert res._flags.history[field].meta[0] == {} + assert res._flags.history[field].meta[1] == expected_meta + + +def test_writeTargetProcGeneric(data): + fields = ["var1", "var2"] + params = [ + (["tmp"], lambda x, y: x + y), + (["tmp1", "tmp2"], lambda x, y: (x + y, y * 2)), + ] + dfilter = 128 + for targets, func in params: + + expected_data = DictOfSeries( + func(*[data[f] for f in fields]), columns=toSequence(targets) + ).squeeze() + + expected_meta = { + "func": "procGeneric", + "args": (), + "kwargs": { + "field": data.columns.tolist(), + "target": targets, + "func": func.__name__, + "flag": BAD, + "dfilter": dfilter, + }, + } + saqc = SaQC( + data=data, + flags=Flags( + {k: pd.Series(127.0, index=data[k].index) for k in data.columns} + ), + ) + res = saqc.processGeneric( + field=fields, target=targets, func=func, flag=BAD, dfilter=dfilter + ) + assert (expected_data == res.data[targets].squeeze()).all(axis=None) + # check that new histories where created + for target in targets: + assert res._flags.history[target].hist.iloc[0].tolist() == [BAD] + assert res._flags.history[target].meta[0] == expected_meta - func = lambda var1: pd.Series(False, index=data[var1.name].index) - data, flags = saqc.genericFlag("tmp1", func, flag=BAD).getResult() - assert "tmp1" in flags.columns and "tmp1" not in data +def test_overwriteFieldProcGeneric(data): + params = [ + (["var1"], lambda x: x * 2), + (["var1", "var2"], lambda x, y: (x + y, y * 2)), + ] + dfilter = 128 + flag = 12 + for fields, func in params: + expected_data = DictOfSeries( + func(*[data[f] for f in fields]), columns=fields + ).squeeze() -def test_addFieldProcGeneric(data): - saqc = SaQC(data=data) + expected_meta = { + "func": "procGeneric", + "args": (), + "kwargs": { + "field": fields, + "target": fields, + "func": func.__name__, + "flag": flag, + "dfilter": dfilter, + }, + } - func = lambda: pd.Series([]) - data, flags = saqc.genericProcess("tmp1", func, flag=BAD).getResult(raw=True) - assert "tmp1" in data.columns and data["tmp1"].empty + saqc = SaQC( + data=data, + flags=Flags( + {k: pd.Series(127.0, index=data[k].index) for k in data.columns} + ), + ) - func = lambda var1, var2: var1 + var2 - data, flags = saqc.genericProcess("tmp2", func, flag=BAD).getResult() - assert "tmp2" in data.columns and (data["tmp2"] == data["var1"] + data["var2"]).all( - axis=None - ) + res = saqc.processGeneric(field=fields, func=func, flag=flag, dfilter=dfilter) + assert (expected_data == res.data[fields].squeeze()).all(axis=None) + # check that the histories got appended + for field in fields: + assert (res._flags.history[field].hist[0] == 127.0).all() + assert (res._flags.history[field].hist[1] == 12.0).all() + assert res._flags.history[field].meta[0] == {} + assert res._flags.history[field].meta[1] == expected_meta diff --git a/tests/funcs/test_generic_config_functions.py b/tests/funcs/test_generic_config_functions.py index 2046ff8e9b02114e1390eb658323068a78ebcba8..556aeba816c9ae38345a3ac5bab965791a2ca55a 100644 --- a/tests/funcs/test_generic_config_functions.py +++ b/tests/funcs/test_generic_config_functions.py @@ -2,6 +2,7 @@ # -*- coding: utf-8 -*- import ast +from saqc.core.flags import Flags from saqc.core.reader import fromConfig import pytest import numpy as np @@ -9,9 +10,9 @@ import pandas as pd import dios from saqc.constants import * -from saqc.core import initFlagsLike, Flags +from saqc.core import initFlagsLike from saqc.core.visitor import ConfigFunctionParser -from saqc.core.register import flagging +from saqc.core.register import register from saqc.funcs.generic import _execGeneric from saqc import SaQC @@ -38,30 +39,13 @@ def data_diff(): ) -def _compileGeneric(expr, flags): +def _compileGeneric(expr): tree = ast.parse(expr, mode="eval") _, kwargs = ConfigFunctionParser().parse(tree.body) return kwargs["func"] -def test_missingIdentifier(data): - flags = Flags() - - # NOTE: - # - the error is only raised at runtime during parsing would be better - tests = [ - "fff(var2) < 5", - "var3 != 42", - ] - - for test in tests: - func = _compileGeneric(f"genericFlag(func={test})", flags) - with pytest.raises(NameError): - _execGeneric(flags, data, func, field="") - - def test_syntaxError(): - flags = Flags() tests = [ "range(x=5", "rangex=5)", @@ -70,212 +54,171 @@ def test_syntaxError(): for test in tests: with pytest.raises(SyntaxError): - _compileGeneric(f"flag(func={test})", flags) + _compileGeneric(f"flag(func={test})") def test_typeError(): """ test that forbidden constructs actually throw an error - TODO: find a few more cases or get rid of the test """ - flags = Flags() - # : think about cases that should be forbidden + # TODO: think about cases that should be forbidden tests = ("lambda x: x * 2",) for test in tests: with pytest.raises(TypeError): - _compileGeneric(f"genericFlag(func={test})", flags) + _compileGeneric(f"flagGeneric(func={test})") def test_comparisonOperators(data): - flags = initFlagsLike(data) var1, var2, *_ = data.columns - this = var1 + flags = initFlagsLike(data) tests = [ - ("this > 100", data[this] > 100), - (f"10 >= {var2}", 10 >= data[var2]), - (f"{var2} < 100", data[var2] < 100), - (f"this <= {var2}", data[this] <= data[var2]), - (f"{var1} == {var2}", data[this] == data[var2]), - (f"{var1} != {var2}", data[this] != data[var2]), + (["var1"], "x > 100", data[var1] > 100), + (["var2"], "10 >= y", 10 >= data[var2]), + (["var2"], f"y < 100", data[var2] < 100), + (["var1", "var2"], "x <= y", data[var1] <= data[var2]), + (["var1", "var2"], "x == y", data[var1] == data[var2]), + (["var1", "var2"], "x != y", data[var1] != data[var2]), ] - for test, expected in tests: - func = _compileGeneric(f"genericFlag(func={test})", flags) - result = _execGeneric(flags, data, func, field=var1) - assert np.all(result == expected) + for field, test, expected in tests: + func = _compileGeneric(f"flagGeneric(func={test})") + result = _execGeneric(Flags({f: flags[f] for f in field}), data[field], func) + assert (result == expected).all(axis=None) def test_arithmeticOperators(data): - flags = initFlagsLike(data) - var1, *_ = data.columns - this = data[var1] - - tests = [ - ("var1 + 100 > 110", this + 100 > 110), - ("var1 - 100 > 0", this - 100 > 0), - ("var1 * 100 > 200", this * 100 > 200), - ("var1 / 100 > .1", this / 100 > 0.1), - ("var1 % 2 == 1", this % 2 == 1), - ("var1 ** 2 == 0", this ** 2 == 0), - ] - for test, expected in tests: - func = _compileGeneric(f"genericProcess(func={test})", flags) - result = _execGeneric(flags, data, func, field=var1) - assert np.all(result == expected) - - -def test_nonReduncingBuiltins(data): - flags = initFlagsLike(data) var1, *_ = data.columns - this = var1 - tests = [ - (f"abs({this})", np.abs(data[this])), - (f"log({this})", np.log(data[this])), - (f"exp({this})", np.exp(data[this])), - ] - - for test, expected in tests: - func = _compileGeneric(f"genericProcess(func={test})", flags) - result = _execGeneric(flags, data, func, field=this) - assert (result == expected).all() - - -def test_reduncingBuiltins(data): - data.loc[::4] = np.nan - flags = initFlagsLike(data) - var1 = data.columns[0] - this = data.iloc[:, 0] + data = data[var1] + flags = Flags({var1: pd.Series(UNFLAGGED, index=data.index)}) tests = [ - ("min(this)", np.nanmin(this)), - (f"max({var1})", np.nanmax(this)), - (f"sum({var1})", np.nansum(this)), - ("mean(this)", np.nanmean(this)), - (f"std({this.name})", np.std(this)), - (f"len({this.name})", len(this)), + ("var1 + 100 > 110", data + 100 > 110), + ("var1 - 100 > 0", data - 100 > 0), + ("var1 * 100 > 200", data * 100 > 200), + ("var1 / 100 > .1", data / 100 > 0.1), + ("var1 % 2 == 1", data % 2 == 1), + ("var1 ** 2 == 0", data ** 2 == 0), ] for test, expected in tests: - func = _compileGeneric(f"genericProcess(func={test})", flags) - result = _execGeneric(flags, data, func, field=this.name) - assert result == expected - + func = _compileGeneric(f"processGeneric(func={test})") + result = _execGeneric(flags, data, func) + assert (result == expected).all(axis=None) -def test_ismissing(data): - flags = initFlagsLike(data) - data.iloc[: len(data) // 2, 0] = np.nan - data.iloc[(len(data) // 2) + 1 :, 0] = -9999 - this = data.iloc[:, 0] +def test_nonReduncingBuiltins(data): + var1, *_ = data.columns + data = data.iloc[1:10, 0] + flags = Flags({var1: pd.Series(UNFLAGGED, index=data.index)}) tests = [ - (f"ismissing({this.name})", pd.isnull(this)), - (f"~ismissing({this.name})", pd.notnull(this)), + ("abs(x)", np.abs(data)), + ("log(x)", np.log(data)), + ("exp(x)", np.exp(data)), ] for test, expected in tests: - func = _compileGeneric(f"genericFlag(func={test})", flags) - result = _execGeneric(flags, data, func, this.name) - assert np.all(result == expected) + func = _compileGeneric(f"processGeneric(func={test})") + result = _execGeneric(flags, data, func) + assert (result == expected).all(axis=None) def test_bitOps(data): var1, var2, *_ = data.columns - this = var1 - flags = initFlagsLike(data) tests = [ - ("~(this > mean(this))", ~(data[this] > np.nanmean(data[this]))), - (f"(this <= 0) | (0 < {var1})", (data[this] <= 0) | (0 < data[var1])), - (f"({var2} >= 0) & (0 > this)", (data[var2] >= 0) & (0 > data[this])), + ([var1], "~(x > mean(x))", ~(data[var1] > np.nanmean(data[var1]))), + ([var1], "(x <= 0) | (0 < x)", (data[var1] <= 0) | (0 < data[var1])), + ([var1, var2], "(y>= 0) & (0 > x)", (data[var2] >= 0) & (0 > data[var1])), ] - for test, expected in tests: - func = _compileGeneric(f"genericFlag(func={test})", flags) - result = _execGeneric(flags, data, func, this) - assert np.all(result == expected) + for field, test, expected in tests: + func = _compileGeneric(f"flagGeneric(func={test})") + result = _execGeneric(Flags({f: flags[f] for f in field}), data[field], func) + assert (result == expected).all(axis=None) -def test_isflagged(data): +def test_variableAssignments(data): - var1, var2, *_ = data.columns - flags = initFlagsLike(data) - flags[data[var1].index[::2], var1] = BAD + config = f""" + varname ; test + dummy1 ; processGeneric(field=["var1", "var2"], func=x + y) + dummy2 ; flagGeneric(field=["var1", "var2"], func=x + y > 0) + """ - tests = [ - (f"isflagged({var1})", flags[var1] > UNFLAGGED), - (f"isflagged({var1}, flag=BAD)", flags[var1] >= BAD), - (f"isflagged({var1}, UNFLAGGED, '==')", flags[var1] == UNFLAGGED), - (f"~isflagged({var2})", flags[var2] == UNFLAGGED), - ( - f"~({var2}>999) & (~isflagged({var2}))", - ~(data[var2] > 999) & (flags[var2] == UNFLAGGED), - ), - ] + fobj = writeIO(config) + saqc = fromConfig(fobj, data) - for i, (test, expected) in enumerate(tests): - try: - func = _compileGeneric(f"genericFlag(func={test}, flag=BAD)", flags) - result = _execGeneric(flags, data, func, field=None) - assert np.all(result == expected) - except Exception: - print(i, test) - raise + expected_columns = set(data.columns) | {"dummy1", "dummy2"} + assert set(saqc.data.columns) == expected_columns + assert set(saqc.flags.columns) == expected_columns - # test bad combination - for comp in [">", ">=", "==", "!=", "<", "<="]: - fails = f"isflagged({var1}, comparator='{comp}')" - func = _compileGeneric(f"genericFlag(func={fails}, flag=BAD)", flags) - with pytest.raises(ValueError): - _execGeneric(flags, data, func, field=None) +def test_processExistingTarget(data): + config = f""" + varname ; test + var2 ; flagMissing() + var2 ; processGeneric(func=y - 1, flag=DOUBTFUL) + """ + fobj = writeIO(config) + saqc = fromConfig(fobj, data) + assert (saqc._data["var2"] == data["var2"] - 1).all() + assert len(saqc._flags.history["var2"]) == 2 + assert saqc._flags.history["var2"].hist[0].isna().all() + assert (saqc._flags.history["var2"].hist[1] == DOUBTFUL).all() -def test_variableAssignments(data): - var1, var2, *_ = data.columns +def test_flagTargetExisting(data): config = f""" varname ; test - dummy1 ; genericProcess(func=var1 + var2) - dummy2 ; genericFlag(func=var1 + var2 > 0) + dummy ; processGeneric(field="var1", func=x < 1) + dummy ; processGeneric(field="var2", func=y >1) """ fobj = writeIO(config) saqc = fromConfig(fobj, data) - result_data, result_flags = saqc.getResult(raw=True) + assert len(saqc.data["dummy"]) == len(saqc.flags["dummy"]) + - assert set(result_data.columns) == set(data.columns) | { - "dummy1", - } - assert set(result_flags.columns) == set(data.columns) | {"dummy1", "dummy2"} +def test_processTargetExistingFail(data_diff): + config = f""" + varname ; test + dummy ; processGeneric(field="var1", func=x + 1) + dummy ; processGeneric(field="var2", func=y - 1) + """ + + fobj = writeIO(config) + with pytest.raises(ValueError): + fromConfig(fobj, data_diff) -def test_processMultiple(data_diff): +def test_flagTargetExistingFail(data_diff): config = f""" varname ; test - dummy ; genericProcess(func=var1 + 1) - dummy ; genericProcess(func=var2 - 1) + dummy ; flagGeneric(field="var1", func=x < 1) + dummy ; flagGeneric(field="var2", func=y > 1) """ fobj = writeIO(config) - saqc = fromConfig(fobj, data_diff) - result_data, result_flags = saqc.getResult() - assert len(result_data["dummy"]) == len(result_flags["dummy"]) + with pytest.raises(ValueError): + fromConfig(fobj, data_diff) def test_callableArgumentsUnary(data): window = 5 - @flagging(masking="field") + @register(mask=["field"], demask=["field"], squeeze=["field"]) def testFuncUnary(data, field, flags, func, **kwargs): - data[field] = data[field].rolling(window=window).apply(func) + value = data[field].rolling(window=window).apply(func) + data[field] = value return data, initFlagsLike(data) var = data.columns[0] @@ -286,14 +229,14 @@ def test_callableArgumentsUnary(data): """ tests = [ - ("sum", np.nansum), + # ("sum", np.nansum), ("std(exp(x))", lambda x: np.std(np.exp(x))), ] for (name, func) in tests: fobj = writeIO(config.format(name)) - result_config, _ = fromConfig(fobj, data).getResult() - result_api, _ = SaQC(data).testFuncUnary(var, func=func).getResult() + result_config = fromConfig(fobj, data).result.data + result_api = SaQC(data).testFuncUnary(var, func=func).result.data expected = data[var].rolling(window=window).apply(func) assert (result_config[var].dropna() == expected.dropna()).all(axis=None) assert (result_api[var].dropna() == expected.dropna()).all(axis=None) @@ -302,7 +245,7 @@ def test_callableArgumentsUnary(data): def test_callableArgumentsBinary(data): var1, var2 = data.columns[:2] - @flagging(masking="field") + @register(mask=["field"], demask=["field"], squeeze=["field"]) def testFuncBinary(data, field, flags, func, **kwargs): data[field] = func(data[var1], data[var2]) return data, initFlagsLike(data) @@ -319,8 +262,31 @@ def test_callableArgumentsBinary(data): for (name, func) in tests: fobj = writeIO(config.format(name)) - result_config, _ = fromConfig(fobj, data).getResult() - result_api, _ = SaQC(data).testFuncBinary(var1, func=func).getResult() + result_config = fromConfig(fobj, data).result.data + result_api = SaQC(data).testFuncBinary(var1, func=func).result.data expected = func(data[var1], data[var2]) assert (result_config[var1].dropna() == expected.dropna()).all(axis=None) assert (result_api[var1].dropna() == expected.dropna()).all(axis=None) + + +def test_isflagged(data): + + var1, var2, *_ = data.columns + flags = initFlagsLike(data) + flags[data[var1].index[::2], var1] = BAD + + tests = [ + ([var1], f"isflagged(x)", flags[var1] > UNFLAGGED), + ([var1], f"isflagged(x)", flags[var1] >= BAD), + ([var2], f"~isflagged(x)", flags[var2] == UNFLAGGED), + ( + [var1, var2], + f"~(x > 999) & (~isflagged(y))", + ~(data[var1] > 999) & (flags[var2] == UNFLAGGED), + ), + ] + + for field, test, expected in tests: + func = _compileGeneric(f"flagGeneric(func={test}, flag=BAD)") + result = _execGeneric(Flags({f: flags[f] for f in field}), data[field], func) + assert (result == expected).all(axis=None) diff --git a/tests/funcs/test_harm_funcs.py b/tests/funcs/test_harm_funcs.py index d645e1bd9478321921afc4ab58ba7660510137f4..2819a884bc7c1532fd168e80f091743329b93874 100644 --- a/tests/funcs/test_harm_funcs.py +++ b/tests/funcs/test_harm_funcs.py @@ -8,7 +8,7 @@ import dios from saqc.core import initFlagsLike, Flags from saqc.constants import BAD, UNFLAGGED -from saqc.funcs.resampling import linear, interpolate, shift, reindexFlags, resample +from saqc.funcs.resampling import linear, interpolate, shift, concatFlags, resample from saqc.funcs.tools import copyField, dropField from tests.common import checkDataFlagsInvariants @@ -37,7 +37,7 @@ def data(): ("linear", dict()), ("shift", dict(method="nshift")), ("interpolate", dict(method="spline")), - ("resample", dict(agg_func=np.nansum, method="nagg")), + ("resample", dict(func=np.nansum, method="nagg")), ], ) def test_wrapper(data, func, kws): @@ -67,23 +67,28 @@ def test_gridInterpolation(data, method): # we are just testing if the interpolation gets passed to the series without # causing an error: res = interpolate( - data, field, flags, freq, method=method, downcast_interpolation=True + data.copy(), + field, + flags.copy(), + freq, + method=method, + downcast_interpolation=True, ) if method == "polynomial": res = interpolate( - data, + data.copy(), field, - flags, + flags.copy(), freq, order=2, method=method, downcast_interpolation=True, ) res = interpolate( - data, + data.copy(), field, - flags, + flags.copy(), freq, order=10, method=method, @@ -142,8 +147,8 @@ def test_harmSingleVarIntermediateFlagging(data, reshaper): # flag something bad flags[data[field + "_interpolated"].index[3:4], field + "_interpolated"] = BAD - data, flags = reindexFlags( - data, field, flags, method="inverse_" + reshaper, source=field + "_interpolated" + data, flags = concatFlags( + data, field + "_interpolated", flags, method="inverse_" + reshaper, target=field ) data, flags = dropField(data, field + "_interpolated", flags) @@ -243,8 +248,8 @@ def test_harmSingleVarInterpolationAgg(data, params, expected): assert data_harm[h_field].index.freq == pd.Timedelta(freq) assert data_harm[h_field].equals(expected) - data_deharm, flags_deharm = reindexFlags( - data_harm, field, flags_harm, source=h_field, method="inverse_" + method + data_deharm, flags_deharm = concatFlags( + data_harm, h_field, flags_harm, target=field, method="inverse_" + method ) data_deharm, flags_deharm = dropField(data_deharm, h_field, flags_deharm) checkDataFlagsInvariants(data_deharm, flags_deharm, field, identical=True) @@ -324,8 +329,8 @@ def test_harmSingleVarInterpolationShift(data, params, expected): assert data_harm[h_field].equals(expected) checkDataFlagsInvariants(data_harm, flags_harm, field, identical=True) - data_deharm, flags_deharm = reindexFlags( - data_harm, field, flags_harm, source=h_field, method="inverse_" + method + data_deharm, flags_deharm = concatFlags( + data_harm, h_field, flags_harm, target=field, method="inverse_" + method ) checkDataFlagsInvariants(data_deharm, flags_deharm, field, identical=True) diff --git a/tests/funcs/test_modelling.py b/tests/funcs/test_modelling.py index ff244da97d922915fba48ff905152809825b5b7c..33d4fee458db6a8c26e6c0cbbd447fa8e5c41a41 100644 --- a/tests/funcs/test_modelling.py +++ b/tests/funcs/test_modelling.py @@ -3,6 +3,7 @@ # see test/functs/fixtures.py for global fixtures "course_..." +import pytest import dios @@ -14,6 +15,7 @@ from saqc.funcs.residues import calculatePolynomialResidues, calculateRollingRes from tests.fixtures import * +@pytest.mark.filterwarnings("ignore: The fit may be poorly conditioned") @pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_2")]) def test_modelling_polyFit_forRegular(dat): data, _ = dat( @@ -54,7 +56,6 @@ def test_modelling_rollingMean_forRegular(dat): flags, 5, func=np.mean, - set_flags=True, min_periods=0, center=True, ) @@ -64,7 +65,6 @@ def test_modelling_rollingMean_forRegular(dat): flags, 5, func=np.mean, - set_flags=True, min_periods=0, center=False, ) diff --git a/tests/funcs/test_pattern_rec.py b/tests/funcs/test_pattern_rec.py index 2c35dda3addbb2a20af0d1a3e6ea797a6a836507..18bb3384087fc63d502d15d2bdfcd8dfe2da37c1 100644 --- a/tests/funcs/test_pattern_rec.py +++ b/tests/funcs/test_pattern_rec.py @@ -5,9 +5,9 @@ import pytest import pandas as pd import dios -from saqc.constants import * +from saqc.constants import BAD, UNFLAGGED from saqc.core import initFlagsLike -from saqc.funcs.pattern import * +from saqc.funcs.pattern import flagPatternByDTW from tests.common import initData @@ -21,23 +21,6 @@ def field(data): return data.columns[0] -@pytest.mark.skip(reason="faulty implementation - wait for #GL216") -def test_flagPattern_wavelet(): - data = pd.Series(0, index=pd.date_range(start="2000", end="2001", freq="1d")) - data.iloc[10:18] = [0, 5, 6, 7, 6, 8, 5, 0] - pattern = data.iloc[10:18] - - data = dios.DictOfSeries(dict(data=data, pattern_data=pattern)) - flags = initFlagsLike(data, name="data") - data, flags = flagPatternByWavelet( - data, "data", flags, reference="pattern_data", flag=BAD - ) - - assert all(flags["data"].iloc[10:18] == BAD) - assert all(flags["data"].iloc[:9] == UNFLAGGED) - assert all(flags["data"].iloc[18:] == UNFLAGGED) - - def test_flagPattern_dtw(): data = pd.Series(0, index=pd.date_range(start="2000", end="2001", freq="1d")) data.iloc[10:18] = [0, 5, 6, 7, 6, 8, 5, 0] @@ -52,7 +35,3 @@ def test_flagPattern_dtw(): assert all(flags["data"].iloc[10:18] == BAD) assert all(flags["data"].iloc[:9] == UNFLAGGED) assert all(flags["data"].iloc[18:] == UNFLAGGED) - - # visualize: - # data['data'].plot() - # ((flags['data']>0) *5.).plot() diff --git a/tests/funcs/test_proc_functions.py b/tests/funcs/test_proc_functions.py index 62a33cf313b77252f4f2a27152b35948e39ad781..0d63371877ddef401d5643db9fd5ecb6998d55c6 100644 --- a/tests/funcs/test_proc_functions.py +++ b/tests/funcs/test_proc_functions.py @@ -27,9 +27,9 @@ def test_rollingInterpolateMissing(course_5): data = dios.DictOfSeries(data) flags = initFlagsLike(data) dataInt, *_ = interpolateByRolling( - data, + data.copy(), field, - flags, + flags.copy(), 3, func=np.median, center=True, @@ -38,9 +38,9 @@ def test_rollingInterpolateMissing(course_5): ) assert dataInt[field][characteristics["missing"]].notna().all() dataInt, *_ = interpolateByRolling( - data, + data.copy(), field, - flags, + flags.copy(), 3, func=np.nanmean, center=False, diff --git a/tests/funcs/test_spikes_detection.py b/tests/funcs/test_spikes_detection.py index f5cb61bdfab078c8aabb7dc30d1ce62b9abcc7a5..9c951fc4d849d2a06288b2099f4277bb4c6e8157 100644 --- a/tests/funcs/test_spikes_detection.py +++ b/tests/funcs/test_spikes_detection.py @@ -86,7 +86,6 @@ def test_flagMultivarScores(dat): data2, characteristics = dat( periods=1000, initial_level=20, final_level=1, out_val=30 ) - field = "dummy" fields = ["data1", "data2"] s1, s2 = data1.squeeze(), data2.squeeze() s1 = pd.Series(data=s1.values, index=s1.index) @@ -94,10 +93,9 @@ def test_flagMultivarScores(dat): data = dios.DictOfSeries([s1, s2], columns=["data1", "data2"]) flags = initFlagsLike(data) _, flags_result = flagMVScores( - data, - field, - flags, - fields=fields, + data=data, + field=fields, + flags=flags, trafo=np.log, iter_start=0.95, n=10, diff --git a/tests/funcs/test_tools.py b/tests/funcs/test_tools.py index c181277cc01129b2921ef6e494014a8ceeacb748..eb3daefa524309aff04c45082bd1be98e4624289 100644 --- a/tests/funcs/test_tools.py +++ b/tests/funcs/test_tools.py @@ -27,10 +27,8 @@ def test_makeFig(): dummy_path = "" d_saqc = d_saqc.plot(field="data", path="") + d_saqc = d_saqc.plot(field="data", path=dummy_path, history="valid", stats=True) + d_saqc = d_saqc.plot(field="data", path=dummy_path, history="complete") d_saqc = d_saqc.plot( - field="data", path=dummy_path, plot_kwargs={"history": "valid"}, stats=True - ) - d_saqc = d_saqc.plot(field="data", path=dummy_path, plot_kwargs={"history": "all"}) - d_saqc = d_saqc.plot( - field="data", path=dummy_path, plot_kwargs={"slice": "2000-10"}, stats=True + field="data", path=dummy_path, ax_kwargs={"ylim": "2000-10"}, stats=True ) diff --git a/tests/fuzzy/lib.py b/tests/fuzzy/lib.py index 4b77a8b06e411c26bff8a2d1948b1e3228a19010..69ab3c6df58091c3f6d4236d1614e0009eff5e0f 100644 --- a/tests/fuzzy/lib.py +++ b/tests/fuzzy/lib.py @@ -24,7 +24,6 @@ from hypothesis.strategies._internal.types import _global_type_lookup from saqc.constants import * from saqc.core.register import FUNC_MAP -from saqc.lib.types import FreqString from saqc.core import initFlagsLike MAX_EXAMPLES = 50 diff --git a/tests/fuzzy/test_masking.py b/tests/fuzzy/test_masking.py index 15051ff0604f890c3f867bd49e8a548125c55f26..5faaa466a99a98670c0729603f8d83d07f88cc45 100644 --- a/tests/fuzzy/test_masking.py +++ b/tests/fuzzy/test_masking.py @@ -6,7 +6,7 @@ import pandas as pd from hypothesis import given, settings from saqc.constants import UNFLAGGED, BAD -from saqc.core.register import _maskData, _unmaskData, CallState +from saqc.core.register import FunctionWrapper from tests.fuzzy.lib import dataFieldFlags, MAX_EXAMPLES @@ -18,7 +18,7 @@ def test_maskingMasksData(data_field_flags): test if flagged values are replaced by np.nan """ data_in, field, flags = data_field_flags - data_masked, mask = _maskData( + data_masked, mask = FunctionWrapper._maskData( data_in, flags, columns=[field], thresh=UNFLAGGED ) # thresh UNFLAGGED | np.inf assert data_masked[field].iloc[mask[field].index].isna().all() @@ -35,21 +35,12 @@ def test_dataMutationPreventsUnmasking(data_field_flags): filler = -9999 data_in, field, flags = data_field_flags - data_masked, mask = _maskData(data_in, flags, columns=[field], thresh=UNFLAGGED) - state = CallState( - func=lambda x: x, - func_name="", - flags=flags, - field=field, - args=(), - kwargs={}, - masking="field", - mthresh=UNFLAGGED, - mask=mask, - ) + data_masked, mask = FunctionWrapper._maskData( + data_in, flags, columns=[field], thresh=UNFLAGGED + ) data_masked[field] = filler - data_out = _unmaskData(data_masked, state) + data_out = FunctionWrapper._unmaskData(data_masked, mask) assert (data_out[field] == filler).all(axis=None) @@ -61,20 +52,12 @@ def test_flagsMutationPreventsUnmasking(data_field_flags): if `flags` is mutated after `_maskData`, `_unmaskData` should be a no-op """ data_in, field, flags = data_field_flags - data_masked, mask = _maskData(data_in, flags, columns=[field], thresh=UNFLAGGED) - state = CallState( - func=lambda x: x, - func_name="", - flags=flags, - field=field, - args=(), - kwargs={}, - masking="field", - mthresh=UNFLAGGED, - mask=mask, + + data_masked, mask = FunctionWrapper._maskData( + data_in, flags, columns=[field], thresh=UNFLAGGED ) flags[:, field] = UNFLAGGED - data_out = _unmaskData(data_masked, state) + data_out = FunctionWrapper._unmaskData(data_masked, mask) assert (data_out.loc[flags[field] == BAD, field].isna()).all(axis=None) @@ -90,17 +73,9 @@ def test_reshapingPreventsUnmasking(data_field_flags): filler = -1111 data_in, field, flags = data_field_flags - data_masked, mask = _maskData(data_in, flags, columns=[field], thresh=UNFLAGGED) - state = CallState( - func=lambda x: x, - func_name="", - flags=flags, - field=field, - args=(), - kwargs={}, - masking="field", - mthresh=UNFLAGGED, - mask=mask, + + data_masked, mask = FunctionWrapper._maskData( + data_in, flags, columns=[field], thresh=UNFLAGGED ) # mutate indexes of `data` and `flags` index = data_masked[field].index.to_series() @@ -111,7 +86,7 @@ def test_reshapingPreventsUnmasking(data_field_flags): flags.drop(field) flags[field] = pd.Series(data=fflags.values, index=index) - data_out = _unmaskData(data_masked, state) + data_out = FunctionWrapper._unmaskData(data_masked, mask) assert (data_out[field] == filler).all(axis=None) @@ -122,19 +97,11 @@ def test_unmaskingInvertsMasking(data_field_flags): unmasking data should invert the masking """ data_in, field, flags = data_field_flags - data_masked, mask = _maskData(data_in, flags, columns=[field], thresh=UNFLAGGED) - state = CallState( - func=lambda x: x, - func_name="", - flags=flags, - field=field, - args=(), - kwargs={}, - masking="field", - mthresh=UNFLAGGED, - mask=mask, + + data_masked, mask = FunctionWrapper._maskData( + data_in, flags, columns=[field], thresh=UNFLAGGED ) - data_out = _unmaskData(data_masked, state) + data_out = FunctionWrapper._unmaskData(data_masked, mask) assert pd.DataFrame.equals( data_out.to_df().astype(float), data_in.to_df().astype(float) ) @@ -153,10 +120,10 @@ def test_unmaskingInvertsMasking(data_field_flags): # data_in, field, flags = data_field_flags -# data_masked, mask = _maskData(data_in, flags, columns=[field], to_mask=flags.BAD) +# data_masked, mask = _maskData(data_in, flags, columns=[field], dfilter=flags.BAD) # func, kwargs = func_kwargs # data_masked, _ = func(data_masked, field, flags, **kwargs) -# data_out = _unmaskData(data_in, mask, data_masked, flags, to_mask=flags.BAD) +# data_out = _unmaskData(data_in, mask, data_masked, flags, dfilter=flags.BAD) # flags_in = flags.isFlagged(flag=flags.BAD) # assert data_in.aloc[flags_in].equals(data_out.aloc[flags_in]) @@ -176,7 +143,7 @@ def test_unmaskingInvertsMasking(data_field_flags): # flagged_in = flags.isFlagged(flag=flags.BAD, comparator=">=") # # mask and call -# data_left, _ = _maskData(data, flags, columns=[field], to_mask=flags.BAD) +# data_left, _ = _maskData(data, flags, columns=[field], dfilter=flags.BAD) # data_left, _ = func(data_left, field, flags, **kwargs) # # remove and call diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index 634e2352167cf0ca24df77d5ccf5d687343fab37..7e47dd1544134847f67844420b1da00a632d4ad6 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -1,23 +1,22 @@ #!/usr/bin/env python from click.testing import CliRunner -import os +from pathlib import Path -def test__main__py(): +def test__main__py(tmp_path): import saqc.__main__ # if not run from project root - projpath = os.path.dirname(saqc.__file__) + "/../" + projpath = Path(saqc.__file__).parents[1] args = [ "--config", - projpath + "ressources/data/config_ci.csv", + Path(projpath, "ressources/data/config.csv"), "--data", - projpath + "ressources/data/data.csv", + Path(projpath, "ressources/data/data.csv"), "--outfile", - "/tmp/test.csv", # the filesystem temp dir + Path(tmp_path, "test.csv"), # the filesystem temp dir ] runner = CliRunner() - for scheme in ["float", "positional", "dmp", "simple"]: result = runner.invoke(saqc.__main__.main, args + ["--scheme", scheme]) assert result.exit_code == 0, result.output diff --git a/tests/lib/test_rolling.py b/tests/lib/test_rolling.py index ef94c987210dddeeee32f82ab859dc093ac089d0..c78fb61d03149215691852cb49504a5349227e3c 100644 --- a/tests/lib/test_rolling.py +++ b/tests/lib/test_rolling.py @@ -9,7 +9,7 @@ n = np.nan def test_rolling_existence_of_attrs(): r = pd.DataFrame().rolling(0).validate() - c = customRoller(pd.DataFrame(), 0) + c = customRoller(pd.DataFrame(), 0, min_periods=0) expected = [attr for attr in dir(r) if not attr.startswith("_")] result = [attr for attr in dir(c) if not attr.startswith("_")] diff = [attr for attr in expected if attr not in result]